diff --git a/0001-try-to-adapt-to-poppler-0.58.patch b/0001-try-to-adapt-to-poppler-0.58.patch new file mode 100644 index 0000000..21e600a --- /dev/null +++ b/0001-try-to-adapt-to-poppler-0.58.patch @@ -0,0 +1,1093 @@ +From 50a6171b4d01c296b7d634fdef0679da5c258d7c Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Thu, 7 Sep 2017 17:02:51 +0200 +Subject: [PATCH] try to adapt to poppler 0.58 + +--- + texk/web2c/luatexdir/image/pdftoepdf.w | 53 ++++----- + texk/web2c/luatexdir/lua/lepdflib.cc | 114 ++++++++------------ + texk/web2c/luatexdir/lua/lpdfscannerlib.cc | 2 +- + texk/web2c/pdftexdir/pdftoepdf.cc | 168 ++++++++++++----------------- + texk/web2c/pdftexdir/pdftosrc.cc | 31 ++---- + 7 files changed, 162 insertions(+), 259 deletions(-) + +diff --git a/source/texk/web2c/luatexdir/image/pdftoepdf.w b/source/texk/web2c/luatexdir/image/pdftoepdf.w +index d86504f..885ca47 100644 +--- a/source/texk/web2c/luatexdir/image/pdftoepdf.w ++++ b/source/texk/web2c/luatexdir/image/pdftoepdf.w +@@ -224,7 +224,7 @@ PdfDocument *refMemStreamPdfDocument(char *docstream, unsigned long long streams + free(checksum); + } + if (pdf_doc->doc == NULL) { +- docmemstream = new MemStream( docstream,0,streamsize, obj.initNull() ); ++ docmemstream = new MemStream( docstream,0,streamsize, Object(objNull)); + doc = new PDFDoc(docmemstream); /* takes ownership of docmemstream */ + pdf_doc->pc++; + if (!doc->isOk() || !doc->okToPrint()) { +@@ -408,9 +408,8 @@ static void copyArray(PDF pdf, PdfDocument * pdf_doc, Array * array) + Object obj1; + pdf_begin_array(pdf); + for (i = 0, l = array->getLength(); i < l; ++i) { +- array->getNF(i, &obj1); ++ obj1 = array->getNF(i); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + } + pdf_end_array(pdf); + } +@@ -422,9 +421,8 @@ static void copyDict(PDF pdf, PdfDocument * pdf_doc, Dict * dict) + pdf_begin_dict(pdf); + for (i = 0, l = dict->getLength(); i < l; ++i) { + copyName(pdf, dict->getKey(i)); +- dict->getValNF(i, &obj1); ++ obj1 = dict->getValNF(i); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + } + pdf_end_dict(pdf); + } +@@ -510,13 +508,12 @@ static void writeRefs(PDF pdf, PdfDocument * pdf_doc) + PDFDoc *doc = pdf_doc->doc; + xref = doc->getXRef(); + for (r = pdf_doc->inObjList; r != NULL;) { +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (obj1.isStream()) + pdf_begin_obj(pdf, r->num, OBJSTM_NEVER); + else + pdf_begin_obj(pdf, r->num, 2); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + pdf_end_obj(pdf); + n = r->next; + delete r; +@@ -736,7 +733,7 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + catalog = doc->getCatalog(); + page = catalog->getPage(img_pagenum(idict)); + pageref = catalog->getPageRef(img_pagenum(idict)); +- doc->getXRef()->fetch(pageref->num, pageref->gen, &pageobj); ++ pageobj = doc->getXRef()->fetch(pageref->num, pageref->gen); + pageDict = pageobj.getDict(); + /* write the Page header */ + pdf_begin_obj(pdf, img_objnum(idict), OBJSTM_NEVER); +@@ -753,12 +750,11 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + pdf_dict_add_int(pdf, "PTEX.PageNumber", (int) img_pagenum(idict)); + } + if ((suppress_optional_info & 8) == 0) { +- doc->getDocInfoNF(&obj1); ++ obj1 = doc->getDocInfoNF(); + if (obj1.isRef()) { + /* the info dict must be indirect (PDF Ref p. 61) */ + pdf_dict_add_ref(pdf, "PTEX.InfoDict", addInObj(pdf, pdf_doc, obj1.getRef())); + } +- obj1.free(); + } + if (img_is_bbox(idict)) { + bbox[0] = sp2bp(img_bbox(idict)[0]); +@@ -784,19 +780,17 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + Now all relevant parts of the Page dictionary are copied. Metadata validity + check is needed(as a stream it must be indirect). + */ +- pageDict->lookupNF("Metadata", &obj1); ++ obj1 = pageDict->lookupNF("Metadata"); + if (!obj1.isNull() && !obj1.isRef()) + formatted_warning("pdf inclusion","/Metadata must be indirect object"); +- obj1.free(); + /* copy selected items in Page dictionary */ + for (i = 0; pagedictkeys[i] != NULL; i++) { +- pageDict->lookupNF(pagedictkeys[i], &obj1); ++ obj1 = pageDict->lookupNF(pagedictkeys[i]); + if (!obj1.isNull()) { + pdf_add_name(pdf, pagedictkeys[i]); + /* preserves indirection */ + copyObject(pdf, pdf_doc, &obj1); + } +- obj1.free(); + } + /* + If there are no Resources in the Page dict of the embedded page, +@@ -804,32 +798,28 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + PDF file, climbing up the tree until the Resources are found. + (This fixes a problem with Scribus 1.3.3.14.) + */ +- pageDict->lookupNF("Resources", &obj1); ++ obj1 = pageDict->lookupNF("Resources"); + if (obj1.isNull()) { + op1 = &pagesobj1; + op2 = &pagesobj2; +- pageDict->lookup("Parent", op1); ++ *op1 = pageDict->lookup("Parent"); + while (op1->isDict()) { +- obj1.free(); +- op1->dictLookupNF("Resources", &obj1); ++ obj1 = op1->dictLookupNF("Resources"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "Resources"); + copyObject(pdf, pdf_doc, &obj1); + break; + } +- op1->dictLookup("Parent", op2); ++ *op2 = op1->dictLookup("Parent"); + optmp = op1; + op1 = op2; + op2 = optmp; +- op2->free(); + }; + if (!op1->isDict()) + formatted_warning("pdf inclusion","Page /Resources missing"); +- op1->free(); + } +- obj1.free(); + /* Write the Page contents. */ +- page->getContents(&contents); ++ contents = page->getContents(); + if (contents.isStream()) { + /* + Variant A: get stream and recompress under control of \pdfcompresslevel +@@ -840,27 +830,23 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + + Variant B: copy stream without recompressing + */ +- contents.streamGetDict()->lookup("F", &obj1); ++ obj1 = contents.streamGetDict()->lookup("F"); + if (!obj1.isNull()) { + normal_error("pdf inclusion","unsupported external stream"); + } +- obj1.free(); +- contents.streamGetDict()->lookup("Length", &obj1); ++ obj1 = contents.streamGetDict()->lookup("Length"); + pdf_add_name(pdf, "Length"); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); +- contents.streamGetDict()->lookup("Filter", &obj1); ++ obj1 = contents.streamGetDict()->lookup("Filter"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "Filter"); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); +- contents.streamGetDict()->lookup("DecodeParms", &obj1); ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "DecodeParms"); + copyObject(pdf, pdf_doc, &obj1); + } + } +- obj1.free(); + pdf_end_dict(pdf); + pdf_begin_stream(pdf); + copyStreamStream(pdf, contents.getStream()->getUndecodedStream()); +@@ -871,8 +857,7 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + pdf_end_dict(pdf); + pdf_begin_stream(pdf); + for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { +- copyStreamStream(pdf, (contents.arrayGet(i, &obj1))->getStream()); +- obj1.free(); ++ copyStreamStream(pdf, (obj1 = contents.arrayGet(i)).getStream()); + if (i < (l - 1)) { + /* + Put a space between streams to be on the safe side (streams +@@ -893,8 +878,6 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + } + /* write out all indirect objects */ + writeRefs(pdf, pdf_doc); +- contents.free(); +- pageobj.free(); + /* + unrefPdfDocument() must come after contents.free() and pageobj.free()! + TH: The next line makes repeated pdf inclusion unacceptably slow +diff --git a/source/texk/web2c/luatexdir/lua/lepdflib.cc b/source/texk/web2c/luatexdir/lua/lepdflib.cc +index 00e2786..8d7005b 100644 +--- a/source/texk/web2c/luatexdir/lua/lepdflib.cc ++++ b/source/texk/web2c/luatexdir/lua/lepdflib.cc +@@ -538,7 +538,7 @@ static int m_##in##_##function(lua_State * L) \ + pdfdoc_changed_error(L); \ + uout = new_Object_userdata(L); \ + uout->d = new Object(); \ +- ((in *) uin->d)->function((Object *) uout->d); \ ++ *((Object *) uout->d) = ((in *) uin->d)->function(); \ + uout->atype = ALLOC_LEPDF; \ + uout->pc = uin->pc; \ + uout->pd = uin->pd; \ +@@ -668,25 +668,13 @@ static const struct luaL_Reg Annots_m[] = { + + static int m_Array_incRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Array); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Array *) uin->d)->incRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + + static int m_Array_decRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Array); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Array *) uin->d)->decRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + +@@ -702,7 +690,7 @@ static int m_Array_add(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uobj->pd != NULL && uobj->pd->pc != uobj->pc)) + pdfdoc_changed_error(L); +- ((Array *) uin->d)->add(((Object *) uobj->d)); ++ ((Array *) uin->d)->add(std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -718,7 +706,7 @@ static int m_Array_get(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Array *) uin->d)->get(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Array *) uin->d)->get(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -739,7 +727,7 @@ static int m_Array_getNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Array *) uin->d)->getNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Array *) uin->d)->getNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -953,25 +941,13 @@ static const struct luaL_Reg Catalog_m[] = { + + static int m_Dict_incRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Dict); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Dict *) uin->d)->incRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + + static int m_Dict_decRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Dict); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Dict *) uin->d)->decRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + +@@ -986,7 +962,7 @@ static int m_Dict_add(lua_State * L) + pdfdoc_changed_error(L); + s = copyString(luaL_checkstring(L, 2)); + uobj = (udstruct *) luaL_checkudata(L, 3, M_Object); +- ((Dict *) uin->d)->add(s, ((Object *) uobj->d)); ++ ((Dict *) uin->d)->add(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -999,7 +975,7 @@ static int m_Dict_set(lua_State * L) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); + uobj = (udstruct *) luaL_checkudata(L, 3, M_Object); +- ((Dict *) uin->d)->set(s, ((Object *) uobj->d)); ++ ((Dict *) uin->d)->set(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1027,7 +1003,7 @@ static int m_Dict_lookup(lua_State * L) + s = luaL_checkstring(L, 2); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->lookup(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->lookup(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1044,7 +1020,7 @@ static int m_Dict_lookupNF(lua_State * L) + s = luaL_checkstring(L, 2); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->lookupNF(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->lookupNF(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1096,7 +1072,7 @@ static int m_Dict_getVal(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->getVal(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->getVal(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1117,7 +1093,7 @@ static int m_Dict_getValNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->getValNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->getValNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1381,9 +1357,9 @@ static int m_Object_initBool(lua_State * L) + pdfdoc_changed_error(L); + luaL_checktype(L, 2, LUA_TBOOLEAN); + if (lua_toboolean(L, 2) != 0) +- ((Object *) uin->d)->initBool(gTrue); ++ *((Object *) uin->d) = Object(gTrue); + else +- ((Object *) uin->d)->initBool(gFalse); ++ *((Object *) uin->d) = Object(gFalse); + return 0; + } + +@@ -1395,7 +1371,7 @@ static int m_Object_initInt(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + i = luaL_checkint(L, 2); +- ((Object *) uin->d)->initInt(i); ++ *((Object *) uin->d) = Object(i); + return 0; + } + +@@ -1407,7 +1383,7 @@ static int m_Object_initReal(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + d = luaL_checknumber(L, 2); +- ((Object *) uin->d)->initReal(d); ++ *((Object *) uin->d) = Object(d); + return 0; + } + +@@ -1422,7 +1398,7 @@ static int m_Object_initString(lua_State * L) + pdfdoc_changed_error(L); + s = luaL_checklstring(L, 2, &len); + gs = new GooString(s, len); +- ((Object *) uin->d)->initString(gs); ++ *((Object *) uin->d) = Object(gs); + return 0; + } + +@@ -1434,7 +1410,7 @@ static int m_Object_initName(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); +- ((Object *) uin->d)->initName(s); ++ *((Object *) uin->d) = Object(objName, s); + return 0; + } + +@@ -1444,7 +1420,7 @@ static int m_Object_initNull(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initNull(); ++ *((Object *) uin->d) = Object(); + return 0; + } + +@@ -1458,7 +1434,7 @@ static int m_Object_initArray(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uxref->pd != NULL && uxref->pd->pc != uxref->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initArray((XRef *) uxref->d); ++ *((Object *) uin->d) = Object(new Array((XRef *) uxref->d)); + return 0; + } + +@@ -1476,7 +1452,7 @@ static int m_Object_initDict(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uxref->pd != NULL && uxref->pd->pc != uxref->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initDict((XRef *) uxref->d); ++ *((Object *) uin->d) = Object(new Dict((XRef *) uxref->d)); + return 0; + } + +@@ -1490,7 +1466,7 @@ static int m_Object_initStream(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (ustream->pd != NULL && ustream->pd->pc != ustream->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initStream((Stream *) ustream->d); ++ *((Object *) uin->d) = Object((Stream *) ustream->d); + return 0; + } + +@@ -1503,7 +1479,7 @@ static int m_Object_initRef(lua_State * L) + pdfdoc_changed_error(L); + num = luaL_checkint(L, 2); + gen = luaL_checkint(L, 3); +- ((Object *) uin->d)->initRef(num, gen); ++ *((Object *) uin->d) = Object(num, gen); + return 0; + } + +@@ -1515,7 +1491,7 @@ static int m_Object_initCmd(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); +- ((Object *) uin->d)->initCmd(CHARP_CAST s); ++ *((Object *) uin->d) = Object(objCmd, CHARP_CAST s); + return 0; + } + +@@ -1525,7 +1501,7 @@ static int m_Object_initError(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initError(); ++ *((Object *) uin->d) = Object(objError); + return 0; + } + +@@ -1535,7 +1511,7 @@ static int m_Object_initEOF(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initEOF(); ++ *((Object *) uin->d) = Object(objEOF); + return 0; + } + +@@ -1551,7 +1527,7 @@ static int m_Object_fetch(lua_State * L) + pdfdoc_changed_error(L); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->fetch((XRef *) uxref->d, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->fetch((XRef *) uxref->d); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1816,7 +1792,7 @@ static int m_Object_arrayAdd(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isArray()) + luaL_error(L, "Object is not an Array"); +- ((Object *) uin->d)->arrayAdd((Object *) uobj->d); ++ ((Object *) uin->d)->arrayAdd(std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1833,7 +1809,7 @@ static int m_Object_arrayGet(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->arrayGet(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->arrayGet(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1857,7 +1833,7 @@ static int m_Object_arrayGetNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->arrayGetNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->arrayGetNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1897,7 +1873,7 @@ static int m_Object_dictAdd(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isDict()) + luaL_error(L, "Object is not a Dict"); +- ((Object *) uin->d)->dictAdd(copyString(s), (Object *) uobj->d); ++ ((Object *) uin->d)->dictAdd(copyString(s), std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1915,7 +1891,7 @@ static int m_Object_dictSet(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isDict()) + luaL_error(L, "Object is not a Dict"); +- ((Object *) uin->d)->dictSet(s, (Object *) uobj->d); ++ ((Object *) uin->d)->dictSet(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1930,7 +1906,7 @@ static int m_Object_dictLookup(lua_State * L) + if (((Object *) uin->d)->isDict()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictLookup(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictLookup(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1950,7 +1926,7 @@ static int m_Object_dictLookupNF(lua_State * L) + if (((Object *) uin->d)->isDict()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictLookupNF(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictLookupNF(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1991,7 +1967,7 @@ static int m_Object_dictGetVal(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictGetVal(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictGetVal(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2015,7 +1991,7 @@ static int m_Object_dictGetValNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictGetValNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictGetValNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2243,7 +2219,7 @@ m_poppler_get_poppler(Page, Stream, getMetadata); + m_poppler_get_poppler(Page, Dict, getPieceInfo); + m_poppler_get_poppler(Page, Dict, getSeparationInfo); + m_poppler_get_poppler(Page, Dict, getResourceDict); +-m_poppler_get_OBJECT(Page, getAnnots); ++m_poppler_get_OBJECT(Page, getAnnotsObject); + + m_poppler_get_OBJECT(Page, getContents); + +@@ -2270,7 +2246,7 @@ static const struct luaL_Reg Page_m[] = { + {"getPieceInfo", m_Page_getPieceInfo}, + {"getSeparationInfo", m_Page_getSeparationInfo}, + {"getResourceDict", m_Page_getResourceDict}, +- {"getAnnots", m_Page_getAnnots}, ++ {"getAnnots", m_Page_getAnnotsObject}, + {"getContents", m_Page_getContents}, + {"__tostring", m_Page__tostring}, + {NULL, NULL} // sentinel +@@ -2520,7 +2496,7 @@ static int m_PDFDoc_getDocInfo(lua_State * L) + if (((PdfDocument *) uin->d)->doc->getXRef()->isOk()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((PdfDocument *) uin->d)->doc->getDocInfo((Object *) uout->d); ++ *((Object *) uout->d) = ((PdfDocument *) uin->d)->doc->getDocInfo(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2538,7 +2514,7 @@ static int m_PDFDoc_getDocInfoNF(lua_State * L) + if (((PdfDocument *) uin->d)->doc->getXRef()->isOk()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((PdfDocument *) uin->d)->doc->getDocInfoNF((Object *) uout->d); ++ *((Object *) uout->d) = ((PdfDocument *) uin->d)->doc->getDocInfoNF(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2841,7 +2817,7 @@ static int m_Attribute_getValue(lua_State * L) + uout = new_Object_userdata(L); + uout->d = new Object(); + origin = (Object *) (((Attribute *) uin->d)->getValue()); +- origin->copy ( ((Object *)uout->d) ); ++ *((Object *)uout->d) = origin->copy(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -3320,7 +3296,7 @@ static int m_StructTreeRoot_findParentElement(lua_State * L) + parent = root->findParentElement(i-1); + if (parent != NULL) { + uout = new_StructElement_userdata(L); +- uout->d = new StructElement( *parent ); ++ uout->d = (StructElement *) parent; + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -3370,7 +3346,7 @@ static int m_XRef_fetch(lua_State * L) + gen = luaL_checkint(L, 3); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((XRef *) uin->d)->fetch(num, gen, (Object *) uout->d); ++ *((Object *) uout->d) = ((XRef *) uin->d)->fetch(num, gen); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +diff --git a/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc b/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc +index cc311da..f36c556 100644 +--- a/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc ++++ b/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc +@@ -634,7 +634,7 @@ static int scanner_scan(lua_State * L) + int i; + for (i=0;iget(i, val); ++ *val = arrayref->get(i); + if (val->isStream()) { + ObjectList *rover = self->_streams; + ObjectList *item = (ObjectList *)xmalloc (sizeof(ObjectList)); +diff --git a/source/texk/web2c/pdftexdir/pdftoepdf.cc b/source/texk/web2c/pdftexdir/pdftoepdf.cc +index 253024f..5b3d7b4 100644 +--- a/source/texk/web2c/pdftexdir/pdftoepdf.cc ++++ b/source/texk/web2c/pdftexdir/pdftoepdf.cc +@@ -83,31 +83,6 @@ extern integer getpdfsuppressptexinfo(void); + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04 + #define MASK_SUPPRESS_PTEX_INFODICT 0x08 + +-// PdfObject encapsulates the xpdf Object type, +-// and properly frees its resources on destruction. +-// Use obj-> to access members of the Object, +-// and &obj to get a pointer to the object. +-// It is no longer necessary to call Object::free explicitely. +- +-class PdfObject { +- public: +- PdfObject() { // nothing +- } ~PdfObject() { +- iObject.free(); +- } +- Object *operator->() { +- return &iObject; +- } +- Object *operator&() { +- return &iObject; +- } +- private: // no copying or assigning +- PdfObject(const PdfObject &); +- void operator=(const PdfObject &); +- public: +- Object iObject; +-}; +- + // When copying the Resources of the selected page, all objects are copied + // recusively top-down. Indirect objects however are not fetched during + // copying, but get a new object number from pdfTeX and then will be +@@ -214,12 +189,12 @@ static void delete_document(PdfDocument * pdf_doc) + // Replacement for + // Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } + +-static void initDictFromDict(PdfObject & obj, Dict * dict) ++static void initDictFromDict(Object & obj, Dict * dict) + { +- obj->initDict(xref); ++ obj = Object(new Dict(xref)); + for (int i = 0, l = dict->getLength(); i < l; i++) { + Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); ++ obj.dictAdd(copyString(dict->getKey(i)), dict->getValNF(i)); + } + } + +@@ -319,10 +294,10 @@ static void copyName(char *s) + + static void copyDictEntry(Object * obj, int i) + { +- PdfObject obj1; ++ Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj->dictGetValNF(i, &obj1); ++ obj1 = obj->dictGetValNF(i); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -375,17 +350,17 @@ static void copyStream(Stream * str) + static void copyProcSet(Object * obj) + { + int i, l; +- PdfObject procset; ++ Object procset; + if (!obj->isArray()) + pdftex_fail("PDF inclusion: invalid ProcSet array type <%s>", + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &procset); +- if (!procset->isName()) ++ procset = obj->arrayGetNF(i); ++ if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", +- procset->getTypeName()); +- copyName(procset->getName()); ++ procset.getTypeName()); ++ copyName(procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -395,7 +370,7 @@ static void copyProcSet(Object * obj) + + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + fontfile, ffsubtype, stemV; + GfxFont *gfont; + fd_entry *fd; +@@ -412,31 +387,30 @@ static void copyFont(char *tag, Object * fontRef) + } + // Only handle included Type1 (and Type1C) fonts; anything else will be copied. + // Type1C fonts are replaced by Type1 fonts, if REPLACE_TYPE1C is true. +- if (!fixedinclusioncopyfont && fontRef->fetch(xref, &fontdict)->isDict() +- && fontdict->dictLookup("Subtype", &subtype)->isName() +- && !strcmp(subtype->getName(), "Type1") +- && fontdict->dictLookup("BaseFont", &basefont)->isName() +- && fontdict->dictLookupNF("FontDescriptor", &fontdescRef)->isRef() +- && fontdescRef->fetch(xref, &fontdesc)->isDict() +- && (fontdesc->dictLookup("FontFile", &fontfile)->isStream() ++ if (!fixedinclusioncopyfont && (fontdict = fontRef->fetch(xref)).isDict() ++ && (subtype = fontdict.dictLookup("Subtype")).isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && (basefont = fontdict.dictLookup("BaseFont")).isName() ++ && (fontdescRef = fontdict.dictLookupNF("FontDescriptor")).isRef() ++ && (fontdesc = fontdescRef.fetch(xref)).isDict() ++ && ((fontfile = fontdesc.dictLookup("FontFile")).isStream() + || (REPLACE_TYPE1C +- && fontdesc->dictLookup("FontFile3", &fontfile)->isStream() +- && fontfile->streamGetDict()->lookup("Subtype", +- &ffsubtype)->isName() +- && !strcmp(ffsubtype->getName(), "Type1C"))) +- && (fontmap = lookup_fontmap(basefont->getName())) != NULL) { ++ && (fontfile = fontdesc.dictLookup("FontFile3")).isStream() ++ && (ffsubtype = fontfile.streamGetDict()->lookup("Subtype")).isName() ++ && !strcmp(ffsubtype.getName(), "Type1C"))) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // copy the value of /StemV +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, stemV->getInt()); +- if (fontdesc->dictLookup("CharSet", &charset) && +- charset->isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset->getString()->getCString()); ++ stemV = fontdesc.dictLookup("StemV"); ++ fd = epdf_create_fontdescriptor(fontmap, stemV.getInt()); ++ if (!(charset = fontdesc.dictLookup("CharSet")).isNull() && ++ charset.isString() && is_subsetable(fontmap)) ++ epdf_mark_glyphs(fd, charset.getString()->getCString()); + else + embed_whole_font(fd); +- addFontDesc(fontdescRef->getRef(), fd); ++ addFontDesc(fontdescRef.getRef(), fd); + copyName(tag); + gfont = GfxFont::makeFont(xref, tag, fontRef->getRef(), +- fontdict->getDict()); ++ fontdict.getDict()); + pdf_printf(" %d 0 R ", addFont(fontRef->getRef(), fd, + addEncoding(gfont))); + } else { +@@ -448,24 +422,24 @@ static void copyFont(char *tag, Object * fontRef) + + static void copyFontResources(Object * obj) + { +- PdfObject fontRef; ++ Object fontRef; + int i, l; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid font resources dict type <%s>", + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- obj->dictGetValNF(i, &fontRef); +- if (fontRef->isRef()) ++ fontRef = obj->dictGetValNF(i); ++ if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); +- else if (fontRef->isDict()) { // some programs generate pdf with embedded font object ++ else if (fontRef.isDict()) { // some programs generate pdf with embedded font object + copyName(obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } + else + pdftex_fail("PDF inclusion: invalid font in reference type <%s>", +- fontRef->getTypeName()); ++ fontRef.getTypeName()); + } + pdf_puts(">>\n"); + } +@@ -554,7 +528,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -598,8 +572,8 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &obj1); +- if (!obj1->isName()) ++ obj1 = obj->arrayGetNF(i); ++ if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); + } +@@ -637,7 +611,7 @@ static void writeRefs() + if (!r->written) { + Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (r->type == objFont) { + assert(!obj1.isStream()); + pdfbeginobj(r->num, 2); // \pdfobjcompresslevel = 2 is for this +@@ -653,7 +627,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -836,8 +809,8 @@ void write_epdf(void) + Page *page; + Ref *pageRef; + Dict *pageDict; +- PdfObject contents, obj1, obj2, pageObj, dictObj; +- PdfObject groupDict; ++ Object contents, obj1, obj2, pageObj, dictObj; ++ Object groupDict; + bool writeSepGroup = false; + Object info; + char *key; +@@ -864,8 +837,8 @@ void write_epdf(void) + encodingList = 0; + page = pdf_doc->doc->getCatalog()->getPage(epdf_selected_page); + pageRef = pdf_doc->doc->getCatalog()->getPageRef(epdf_selected_page); +- xref->fetch(pageRef->num, pageRef->gen, &pageObj); +- pageDict = pageObj->getDict(); ++ pageObj = xref->fetch(pageRef->num, pageRef->gen); ++ pageDict = pageObj.getDict(); + rotate = page->getRotate(); + PDFRectangle *pagebox; + // write the Page header +@@ -883,7 +856,7 @@ void write_epdf(void) + pdf_printf("/%s.PageNumber %i\n", pdfkeyprefix, (int) epdf_selected_page); + } + if ((suppress_ptex_info & MASK_SUPPRESS_PTEX_INFODICT) == 0) { +- pdf_doc->doc->getDocInfoNF(&info); ++ info = pdf_doc->doc->getDocInfoNF(); + if (info.isRef()) { + // the info dict must be indirect (PDF Ref p. 61) + pdf_printf("/%s.InfoDict ", pdfkeyprefix); +@@ -939,14 +912,14 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- pageDict->lookupNF("Metadata", &dictObj); +- if (!dictObj->isNull() && !dictObj->isRef()) ++ dictObj = pageDict->lookupNF("Metadata"); ++ if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- pageDict->lookupNF(pageDictKeys[i], &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); + copyObject(&dictObj); // preserves indirection +@@ -954,8 +927,8 @@ void write_epdf(void) + } + + // handle page group +- pageDict->lookupNF("Group", &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF("Group"); ++ if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the + // same page; copy the Group entry as is. See manual for +@@ -969,8 +942,8 @@ void write_epdf(void) + copyObject(&dictObj); + } else { + // write Group dict as a separate object, since the Page dict also refers to it +- pageDict->lookup("Group", &dictObj); +- if (!dictObj->isDict()) ++ dictObj = pageDict->lookup("Group"); ++ if (!dictObj.isDict()) + pdftex_fail("PDF inclusion: /Group dict missing"); + writeSepGroup = true; + initDictFromDict(groupDict, page->getGroup()); +@@ -987,14 +960,14 @@ void write_epdf(void) + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { + initDictFromDict(obj1, page->getResourceDict()); +- if (!obj1->isDict()) ++ if (!obj1.isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", +- obj1->getTypeName()); ++ obj1.getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); +- for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); +- key = obj1->dictGetKey(i); ++ for (i = 0, l = obj1.dictGetLength(); i < l; ++i) { ++ obj2 = obj1.dictGetVal(i); ++ key = obj1.dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); + else if (strcmp("ProcSet", key) == 0) +@@ -1006,8 +979,8 @@ void write_epdf(void) + } + + // write the page contents +- page->getContents(&contents); +- if (contents->isStream()) { ++ contents = page->getContents(); ++ if (contents.isStream()) { + + // Variant A: get stream and recompress under control + // of \pdfcompresslevel +@@ -1018,36 +991,35 @@ void write_epdf(void) + + // Variant B: copy stream without recompressing + // +- contents->streamGetDict()->lookup("F", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("F"); ++ if (!obj1.isNull()) { + pdftex_fail("PDF inclusion: Unsupported external stream"); + } +- contents->streamGetDict()->lookup("Length", &obj1); +- assert(!obj1->isNull()); ++ obj1 = contents.streamGetDict()->lookup("Length"); ++ assert(!obj1.isNull()); + pdf_puts("/Length "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("Filter", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("Filter"); ++ if (!obj1.isNull()) { + pdf_puts("/Filter "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("DecodeParms", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); ++ if (!obj1.isNull()) { + pdf_puts("/DecodeParms "); + copyObject(&obj1); + pdf_puts("\n"); + } + } + pdf_puts(">>\nstream\n"); +- copyStream(contents->getStream()->getUndecodedStream()); ++ copyStream(contents.getStream()->getUndecodedStream()); + pdfendstream(); +- } else if (contents->isArray()) { ++ } else if (contents.isArray()) { + pdfbeginstream(); +- for (i = 0, l = contents->arrayGetLength(); i < l; ++i) { ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { + Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ copyStream((contentsobj = contents.arrayGet(i)).getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff --git a/source/texk/web2c/pdftexdir/pdftosrc.cc b/source/texk/web2c/pdftexdir/pdftosrc.cc +index 42b9e06..010b1d0 100644 +--- a/source/texk/web2c/pdftexdir/pdftosrc.cc ++++ b/source/texk/web2c/pdftexdir/pdftosrc.cc +@@ -86,22 +86,19 @@ int main(int argc, char *argv[]) + objgen = atoi(argv[3]); + } + xref = doc->getXRef(); +- catalogDict.initNull(); +- xref->getCatalog(&catalogDict); ++ catalogDict = xref->getCatalog(); + if (!catalogDict.isDict("Catalog")) { + fprintf(stderr, "No Catalog found\n"); + exit(1); + } +- srcStream.initNull(); + if (objnum == 0) { +- catalogDict.dictLookup("SourceObject", &srcStream); ++ srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; + if (!srcStream.isStream(const_SourceFile)) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +- srcName.initNull(); +- srcStream.getStream()->getDict()->lookup("SourceName", &srcName); ++ srcName = srcStream.getStream()->getDict()->lookup("SourceName"); + if (!srcName.isString()) { + fprintf(stderr, "No SourceName found\n"); + exit(1); +@@ -110,7 +107,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -159,29 +156,23 @@ int main(int argc, char *argv[]) + int localOffset = 0; + Guint firstOffset; + +- assert(xref->fetch(e->offset, 0, &objStr)->isStream()); +- nObjects = objStr.streamGetDict()->lookup("N", &obj1)->getInt(); +- obj1.free(); +- first = objStr.streamGetDict()->lookup("First", &obj1)->getInt(); +- obj1.free(); ++ assert((objStr = xref->fetch(e->offset, 0)).isStream()); ++ nObjects = (obj1 = objStr.streamGetDict()->lookup("N")).getInt(); ++ first = (obj1 = objStr.streamGetDict()->lookup("First")).getInt(); + firstOffset = objStr.getStream()->getBaseStream()->getStart() + first; + + // parse the header: object numbers and offsets + objStr.streamReset(); +- obj1.initNull(); +- str = new EmbedStream(objStr.getStream(), &obj1, gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(), gTrue, first); + parser = new Parser(xref, new Lexer(xref, str), gFalse); + for (n = 0; n < nObjects; ++n) { +- parser->getObj(&obj1); +- parser->getObj(&obj2); ++ obj1 = parser->getObj(); ++ obj2 = parser->getObj(); + if (n == e->gen) + localOffset = obj2.getInt(); +- obj1.free(); +- obj2.free(); + } + while (str->getChar() != EOF) ; + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -192,7 +183,6 @@ int main(int argc, char *argv[]) + s->reset(); + while ((c = s->getChar()) != EOF) + fputc(c, outfile); +- srcStream.free(); + } + if (objnum == 0) + fprintf(stderr, "Source file extracted to %s\n", outname); +@@ -201,7 +191,6 @@ int main(int argc, char *argv[]) + else + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); +- catalogDict.free(); + delete doc; + delete globalParams; + } +-- +2.13.5 + diff --git a/texlive.spec b/texlive.spec index bdc70e3..5df2758 100644 --- a/texlive.spec +++ b/texlive.spec @@ -24,7 +24,7 @@ Name: texlive Version: %{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Epoch: 6 Summary: TeX formatting system Group: Applications/Publishing @@ -68,6 +68,7 @@ Patch104: texlive-mpost-CVE-2016-10243.patch Patch105: texlive-2016-upmendex-crash # fix bz#1442706, set correct python path Patch106: texlive-bz#1442706-python-path.patch +Patch107: 0001-try-to-adapt-to-poppler-0.58.patch Source0: %{source_name}.tar.xz Source1: tl2rpm.c Source2: texlive.tlpdb @@ -7428,7 +7429,7 @@ Provides: tex-kpathsea = %{tl_version} License: LGPLv2+ Summary: Path searching library for TeX-related files Version: svn41139 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Provides: kpathsea = %{tl_version} Obsoletes: kpathsea < %{tl_version} @@ -7800,7 +7801,7 @@ Provides: tex-12many = %{tl_version} License: LPPL Summary: Generalising mathematical index sets Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7821,7 +7822,7 @@ one-line change. %package 12many-doc Summary: Documentation for 12many Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-12many-doc BuildArch: noarch AutoReqProv: No @@ -7834,7 +7835,7 @@ Provides: tex-2up = %{tl_version} License: LPPL Summary: 2up package Version: svn40417 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7848,7 +7849,7 @@ Provides: tex(2up.tex) = %{tl_version} %package 2up-doc Summary: Documentation for 2up Version: svn40417 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-2up-doc BuildArch: noarch AutoReqProv: No @@ -7861,7 +7862,7 @@ Provides: tex-a0poster = %{tl_version} License: LPPL Summary: Support for designing posters on large paper Version: svn15878.1.22b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7879,7 +7880,7 @@ sizes are DIN A0, DIN A1, DIN A2 and DIN A3. %package a0poster-doc Summary: Documentation for a0poster Version: svn15878.1.22b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-a0poster-doc BuildArch: noarch AutoReqProv: No @@ -7892,7 +7893,7 @@ Provides: tex-a2ping = %{tl_version} License: GPL+ Summary: Advanced PS, PDF, EPS converter Version: svn29725.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7916,7 +7917,7 @@ Summary: Binaries for a2ping Version: svn27321.0 Requires: texlive-base Requires: texlive-a2ping -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description a2ping-bin @@ -7927,7 +7928,7 @@ Provides: tex-a4wide = %{tl_version} License: LPPL Summary: "Wide" a4 layout Version: svn20943.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7945,7 +7946,7 @@ package. %package a4wide-doc Summary: Documentation for a4wide Version: svn20943.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-a4wide-doc BuildArch: noarch AutoReqProv: No @@ -7958,7 +7959,7 @@ Provides: tex-a5comb = %{tl_version} License: Public Domain Summary: Support for a5 paper sizes Version: svn17020.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7971,7 +7972,7 @@ Superceded by geometry. %package a5comb-doc Summary: Documentation for a5comb Version: svn17020.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-a5comb-doc BuildArch: noarch AutoReqProv: No @@ -7984,7 +7985,7 @@ Provides: tex-aastex = %{tl_version} License: LPPL Summary: Macros for Manuscript Preparation for AAS Journals Version: svn39929 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8005,7 +8006,7 @@ class in preference to any of the alternatives available. %package aastex-doc Summary: Documentation for aastex Version: svn39929 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aastex-doc BuildArch: noarch AutoReqProv: No @@ -8018,7 +8019,7 @@ Provides: tex-abbr = %{tl_version} License: Public Domain Summary: Simple macros supporting abreviations for Plain and LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8034,7 +8035,7 @@ space after parameterless macros. %package abbr-doc Summary: Documentation for abbr Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abbr-doc BuildArch: noarch AutoReqProv: No @@ -8047,7 +8048,7 @@ Provides: tex-abc = %{tl_version} License: LPPL 1.2 Summary: Support ABC music notation in LaTeX Version: svn41157 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8069,7 +8070,7 @@ inclusion in your document. %package abc-doc Summary: Documentation for abc Version: svn41157 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abc-doc BuildArch: noarch AutoReqProv: No @@ -8082,7 +8083,7 @@ Provides: tex-abntex2 = %{tl_version} License: LPPL 1.3 Summary: Typeset technical and scientific Brazilian documents based on ABNT rules Version: svn39913 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8114,7 +8115,7 @@ abntex. %package abntex2-doc Summary: Documentation for abntex2 Version: svn39913 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abntex2-doc BuildArch: noarch AutoReqProv: No @@ -8127,7 +8128,7 @@ Provides: tex-abraces = %{tl_version} License: LPPL Summary: Asymmetric over-/underbraces in maths Version: svn27880.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8142,7 +8143,7 @@ supplement new constructions of the traditional \overbrace and %package abraces-doc Summary: Documentation for abraces Version: svn27880.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abraces-doc BuildArch: noarch AutoReqProv: No @@ -8155,7 +8156,7 @@ Provides: tex-abstract = %{tl_version} License: LPPL Summary: Control the typesetting of the abstract environment Version: svn15878.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8170,7 +8171,7 @@ column abstract in a two column paper. %package abstract-doc Summary: Documentation for abstract Version: svn15878.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abstract-doc BuildArch: noarch AutoReqProv: No @@ -8183,7 +8184,7 @@ Provides: tex-abstyles = %{tl_version} License: Abstyles Summary: Adaptable BibTeX styles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8199,7 +8200,7 @@ nowadays in its adaptation for working with Babel. %package abstyles-doc Summary: Documentation for abstyles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-abstyles-doc BuildArch: noarch AutoReqProv: No @@ -8212,7 +8213,7 @@ Provides: tex-academicons = %{tl_version} License: LPPL 1.3 Summary: Font containing icons of online academic profiles Version: svn41439 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8239,7 +8240,7 @@ can be found in the manual. %package academicons-doc Summary: Documentation for academicons Version: svn41439 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-academicons-doc BuildArch: noarch AutoReqProv: No @@ -8252,7 +8253,7 @@ Provides: tex-accanthis = %{tl_version} License: GPLv2+ Summary: Accanthis fonts, with LaTeX support Version: svn32089.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8358,7 +8359,7 @@ use with all LaTeX engines. %package accanthis-doc Summary: Documentation for accanthis Version: svn32089.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-accanthis-doc BuildArch: noarch AutoReqProv: No @@ -8371,7 +8372,7 @@ Provides: tex-accfonts = %{tl_version} License: GPL+ Summary: Utilities to derive new fonts from existing ones Version: svn18835.0.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8401,7 +8402,7 @@ poor resolutions. The programs are written in Perl. %package accfonts-doc Summary: Documentation for accfonts Version: svn18835.0.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-accfonts-doc BuildArch: noarch AutoReqProv: No @@ -8414,7 +8415,7 @@ Summary: Binaries for accfonts Version: svn12688.0 Requires: texlive-base Requires: texlive-accfonts -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description accfonts-bin @@ -8425,7 +8426,7 @@ Provides: tex-achemso = %{tl_version} License: LPPL 1.3 Summary: Support for American Chemical Society journal submissions Version: svn41037 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8502,7 +8503,7 @@ distributed as part of the bundle. %package achemso-doc Summary: Documentation for achemso Version: svn41037 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-achemso-doc BuildArch: noarch AutoReqProv: No @@ -8515,7 +8516,7 @@ Provides: tex-acmconf = %{tl_version} License: LPPL Summary: Class for ACM conference proceedings Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8532,7 +8533,7 @@ class is based on the ACM's own specification. %package acmconf-doc Summary: Documentation for acmconf Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-acmconf-doc BuildArch: noarch AutoReqProv: No @@ -8545,7 +8546,7 @@ Provides: tex-acronym = %{tl_version} License: LPPL 1.3 Summary: Expand acronyms at least once Version: svn36582.1.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8565,7 +8566,7 @@ package, which in turn requires that it runs under e-TeX. %package acronym-doc Summary: Documentation for acronym Version: svn36582.1.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-acronym-doc BuildArch: noarch AutoReqProv: No @@ -8578,7 +8579,7 @@ Provides: tex-acroterm = %{tl_version} License: LPPL 1.3 Summary: Manage and index acronyms and terms Version: svn20498.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8595,7 +8596,7 @@ index each of terms and acronyms with their expanded form. %package acroterm-doc Summary: Documentation for acroterm Version: svn20498.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-acroterm-doc BuildArch: noarch AutoReqProv: No @@ -8608,7 +8609,7 @@ Provides: tex-acro = %{tl_version} License: LPPL 1.3 Summary: Typeset acronyms Version: svn41386 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8638,7 +8639,7 @@ which automatically sorts the list created by \printacronyms. %package acro-doc Summary: Documentation for acro Version: svn41386 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-acro-doc BuildArch: noarch AutoReqProv: No @@ -8651,7 +8652,7 @@ Provides: tex-active-conf = %{tl_version} License: LPPL Summary: Class for typesetting ACTIVE conference papers Version: svn15878.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8682,7 +8683,7 @@ file. %package active-conf-doc Summary: Documentation for active-conf Version: svn15878.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-active-conf-doc BuildArch: noarch AutoReqProv: No @@ -8695,7 +8696,7 @@ Provides: tex-actuarialangle = %{tl_version} License: Public Domain Summary: Symbol for use in "present value" statements of an annuity Version: svn28004.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8710,7 +8711,7 @@ actuarial and financial notation. %package actuarialangle-doc Summary: Documentation for actuarialangle Version: svn28004.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-actuarialangle-doc BuildArch: noarch AutoReqProv: No @@ -8723,7 +8724,7 @@ Provides: tex-addlines = %{tl_version} License: LPPL Summary: A user-friendly wrapper around \enlargethispage Version: svn37805.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8742,7 +8743,7 @@ page in a two-sided document. %package addlines-doc Summary: Documentation for addlines Version: svn37805.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-addlines-doc BuildArch: noarch AutoReqProv: No @@ -8755,7 +8756,7 @@ Provides: tex-adfathesis = %{tl_version} License: Public Domain Summary: Australian Defence Force Academy thesis format Version: svn26048.2.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8769,7 +8770,7 @@ The bundle includes a BibTeX style file. %package adfathesis-doc Summary: Documentation for adfathesis Version: svn26048.2.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adfathesis-doc BuildArch: noarch AutoReqProv: No @@ -8782,7 +8783,7 @@ Provides: tex-adforn = %{tl_version} License: LPPL Summary: OrnementsADF font with TeX/LaTeX support Version: svn20019.1.001_b_2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8807,7 +8808,7 @@ README, manifest.txt.) %package adforn-doc Summary: Documentation for adforn Version: svn20019.1.001_b_2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adforn-doc BuildArch: noarch AutoReqProv: No @@ -8820,7 +8821,7 @@ Provides: tex-adfsymbols = %{tl_version} License: LPPL Summary: SymbolsADF with TeX/LaTeX support Version: svn19766.1.001 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8852,7 +8853,7 @@ manifest.txt.) %package adfsymbols-doc Summary: Documentation for adfsymbols Version: svn19766.1.001 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adfsymbols-doc BuildArch: noarch AutoReqProv: No @@ -8865,7 +8866,7 @@ Provides: tex-adhocfilelist = %{tl_version} License: LPPL Summary: '\listfiles' entries from the command line Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8882,7 +8883,7 @@ things) the gnu variant of the find command. %package adhocfilelist-doc Summary: Documentation for adhocfilelist Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adhocfilelist-doc BuildArch: noarch AutoReqProv: No @@ -8895,7 +8896,7 @@ Summary: Binaries for adhocfilelist Version: svn28038.0 Requires: texlive-base Requires: texlive-adhocfilelist -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description adhocfilelist-bin @@ -8906,7 +8907,7 @@ Provides: tex-adjmulticol = %{tl_version} License: LPPL 1.3 Summary: Adjusting margins for multicolumn and single column output Version: svn28936.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8923,7 +8924,7 @@ two side printing. %package adjmulticol-doc Summary: Documentation for adjmulticol Version: svn28936.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adjmulticol-doc BuildArch: noarch AutoReqProv: No @@ -8936,7 +8937,7 @@ Provides: tex-adjustbox = %{tl_version} License: LPPL 1.3 Summary: Graphics package-alike macros for "general" boxes Version: svn26555.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -8974,7 +8975,7 @@ matching environments with the identical names as the macros. %package adjustbox-doc Summary: Documentation for adjustbox Version: svn26555.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adjustbox-doc BuildArch: noarch AutoReqProv: No @@ -8987,7 +8988,7 @@ Provides: tex-adobemapping = %{tl_version} License: BSD Summary: Adobe cmap and pdfmapping files Version: svn41067 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9003,7 +9004,7 @@ Provides: tex-adrconv = %{tl_version} License: LPPL Summary: BibTeX styles to implement an address database Version: svn17683.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9023,7 +9024,7 @@ formats for address books or time planners. %package adrconv-doc Summary: Documentation for adrconv Version: svn17683.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-adrconv-doc BuildArch: noarch AutoReqProv: No @@ -9036,7 +9037,7 @@ Provides: tex-advdate = %{tl_version} License: LPPL 1.3 Summary: Print a date relative to "today" Version: svn20538.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9053,7 +9054,7 @@ The package has only been tested with Czech dates. %package advdate-doc Summary: Documentation for advdate Version: svn20538.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-advdate-doc BuildArch: noarch AutoReqProv: No @@ -9066,7 +9067,7 @@ Provides: tex-aecc = %{tl_version} License: LPPL Summary: Almost European Concrete Roman virtual fonts Version: svn28574.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9106,7 +9107,7 @@ missing. For the typewriter fonts, the situation is worse. %package aecc-doc Summary: Documentation for aecc Version: svn28574.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aecc-doc BuildArch: noarch AutoReqProv: No @@ -9119,7 +9120,7 @@ Provides: tex-aeguill = %{tl_version} License: LPPL Summary: Add several kinds of guillemets to the ae fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9139,7 +9140,7 @@ in Adobe Type 1 format. %package aeguill-doc Summary: Documentation for aeguill Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aeguill-doc BuildArch: noarch AutoReqProv: No @@ -9152,7 +9153,7 @@ Provides: tex-ae = %{tl_version} License: LPPL Summary: Virtual fonts for T1 encoded CMR-fonts Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9286,7 +9287,7 @@ font sets. %package ae-doc Summary: Documentation for ae Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ae-doc BuildArch: noarch AutoReqProv: No @@ -9299,7 +9300,7 @@ Provides: tex-afm2pl = %{tl_version} License: LPPL Summary: afm2pl package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9320,7 +9321,7 @@ Summary: Binaries for afm2pl Version: svn40473 Requires: texlive-base Requires: texlive-afm2pl -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description afm2pl-bin @@ -9331,7 +9332,7 @@ Provides: tex-afparticle = %{tl_version} License: LPPL 1.3 Summary: Typesetting articles for Archives of Forensic Psychology Version: svn35900.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9353,7 +9354,7 @@ open access journal Archives of Forensic Psychology. %package afparticle-doc Summary: Documentation for afparticle Version: svn35900.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-afparticle-doc BuildArch: noarch AutoReqProv: No @@ -9366,7 +9367,7 @@ Provides: tex-afthesis = %{tl_version} License: Public Domain Summary: Air Force Institute of Technology thesis class Version: svn15878.2.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9386,7 +9387,7 @@ Technology. %package afthesis-doc Summary: Documentation for afthesis Version: svn15878.2.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-afthesis-doc BuildArch: noarch AutoReqProv: No @@ -9399,7 +9400,7 @@ Provides: tex-aguplus = %{tl_version} License: LPPL Summary: Styles for American Geophysical Union Version: svn17156.1.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9418,7 +9419,7 @@ official distribution. %package aguplus-doc Summary: Documentation for aguplus Version: svn17156.1.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aguplus-doc BuildArch: noarch AutoReqProv: No @@ -9431,7 +9432,7 @@ Provides: tex-aiaa = %{tl_version} License: LPPL Summary: Typeset AIAA conference papers Version: svn15878.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9455,7 +9456,7 @@ Astronautics (AIAA). %package aiaa-doc Summary: Documentation for aiaa Version: svn15878.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aiaa-doc BuildArch: noarch AutoReqProv: No @@ -9468,7 +9469,7 @@ Provides: tex-aichej = %{tl_version} License: LPPL Summary: Bibliography style file for the AIChE Journal Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9484,7 +9485,7 @@ Provides: tex-ajl = %{tl_version} License: LPPL Summary: BibTeX style for AJL Version: svn34016.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9499,7 +9500,7 @@ Provides: tex-akktex = %{tl_version} License: LPPL Summary: A collection of packages and classes Version: svn26055.0.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9565,7 +9566,7 @@ tools and predefined abbreviations. %package akktex-doc Summary: Documentation for akktex Version: svn26055.0.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-akktex-doc BuildArch: noarch AutoReqProv: No @@ -9578,7 +9579,7 @@ Provides: tex-akletter = %{tl_version} License: LPPL Summary: Comprehensive letter support Version: svn15878.1.5i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -9602,7 +9603,7 @@ earlier class called myletter. %package akletter-doc Summary: Documentation for akletter Version: svn15878.1.5i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-akletter-doc BuildArch: noarch AutoReqProv: No @@ -9615,7 +9616,7 @@ Provides: tex-alegreya = %{tl_version} License: OFL Summary: Alegreya fonts with LaTeX support Version: svn38689 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -11968,7 +11969,7 @@ Bold, black, small caps and five number styles are available. %package alegreya-doc Summary: Documentation for alegreya Version: svn38689 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-alegreya-doc BuildArch: noarch AutoReqProv: No @@ -11981,7 +11982,7 @@ Provides: tex-aleph = %{tl_version} License: GPL+ Summary: Extended TeX Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12013,7 +12014,7 @@ fi %package aleph-doc Summary: Documentation for aleph Version: svn40678 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aleph-doc BuildArch: noarch AutoReqProv: No @@ -12027,7 +12028,7 @@ Provides: tex-latex = %{tl_version} License: LPPL 1.3 Summary: A TeX macro package that defines LaTeX Version: svn40218 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12198,7 +12199,7 @@ entries above. %package latex-doc Summary: Documentation for latex Version: svn40218 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-doc BuildArch: noarch AutoReqProv: No @@ -12214,7 +12215,7 @@ Provides: tex-luatex = %{tl_version} License: GPLv2+ Summary: The LuaTeX engine Version: svn40963 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12256,7 +12257,7 @@ fi %package luatex-doc Summary: Documentation for luatex Version: svn40963 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatex-doc BuildArch: noarch AutoReqProv: No @@ -12269,7 +12270,7 @@ Summary: Binaries for luatex Version: svn41091 Requires: texlive-base Requires: texlive-luatex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description luatex-bin @@ -12280,7 +12281,7 @@ Provides: tex-pdftex = %{tl_version} License: GPL+ Summary: A TeX extension for direct creation of PDF Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12328,7 +12329,7 @@ fi %package pdftex-doc Summary: Documentation for pdftex Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdftex-doc BuildArch: noarch AutoReqProv: No @@ -12340,7 +12341,7 @@ Documentation for pdftex %package kpathsea-doc Summary: Documentation for kpathsea Version: svn41139 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kpathsea-doc BuildArch: noarch AutoReqProv: No @@ -12352,7 +12353,7 @@ Documentation for kpathsea Summary: Binaries for kpathsea Version: svn40473 Requires: texlive-kpathsea -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} Requires: texlive-metafont-bin%{?_isa} @@ -12365,7 +12366,7 @@ Version: svn40987 Requires: texlive-base Requires: texlive-pdftex Requires: texlive-pdftex-doc -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description pdftex-bin @@ -12376,7 +12377,7 @@ Provides: tex-pdftex-def = %{tl_version} License: LPPL 1.3 Summary: Colour and Graphics support for PDFTeX Version: svn22653.0.06d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12392,7 +12393,7 @@ Provides: tex-latexconfig = %{tl_version} License: LPPL Summary: latexconfig package Version: svn40274 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12413,7 +12414,7 @@ Provides: tex-latex-fonts = %{tl_version} License: LPPL Summary: A collection of fonts used in LaTeX distributions Version: svn28888.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12457,7 +12458,7 @@ format, in the amsfonts distribution. %package latex-fonts-doc Summary: Documentation for latex-fonts Version: svn28888.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-fonts-doc BuildArch: noarch AutoReqProv: No @@ -12470,7 +12471,7 @@ Provides: tex-plain = %{tl_version} License: Knuth Summary: The Plain TeX format Version: svn40274 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12497,7 +12498,7 @@ Provides: tex-lambda = %{tl_version} License: LPPL Summary: lambda package Version: svn28669.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12531,7 +12532,7 @@ Summary: Binaries for aleph Version: svn40987 Requires: texlive-base Requires: texlive-aleph -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description aleph-bin @@ -12542,7 +12543,7 @@ Provides: tex-alertmessage = %{tl_version} License: LPPL 1.3 Summary: Alert messages for LaTeX Version: svn38055.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12562,7 +12563,7 @@ warnings and success messages). %package alertmessage-doc Summary: Documentation for alertmessage Version: svn38055.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-alertmessage-doc BuildArch: noarch AutoReqProv: No @@ -12575,7 +12576,7 @@ Provides: tex-algorithm2e = %{tl_version} License: LPPL Summary: Floating algorithm environment with algorithmic keywords Version: svn38805 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12602,7 +12603,7 @@ reused in the text or in other algorithms. %package algorithm2e-doc Summary: Documentation for algorithm2e Version: svn38805 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-algorithm2e-doc BuildArch: noarch AutoReqProv: No @@ -12615,7 +12616,7 @@ Provides: tex-algorithmicx = %{tl_version} License: LPPL Summary: The algorithmic style you always wanted Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12639,7 +12640,7 @@ his native language. %package algorithmicx-doc Summary: Documentation for algorithmicx Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-algorithmicx-doc BuildArch: noarch AutoReqProv: No @@ -12652,7 +12653,7 @@ Provides: tex-algorithms = %{tl_version} License: LGPLv2+ Summary: A suite of tools for typesetting algorithms in pseudo-code Version: svn38085.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12673,7 +12674,7 @@ popular algorithmic constructs are available. %package algorithms-doc Summary: Documentation for algorithms Version: svn38085.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-algorithms-doc BuildArch: noarch AutoReqProv: No @@ -12686,7 +12687,7 @@ Provides: tex-alg = %{tl_version} License: LPPL Summary: LaTeX environments for typesetting algorithms Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12706,7 +12707,7 @@ floating body together with a header, a caption, etc. %package alg-doc Summary: Documentation for alg Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-alg-doc BuildArch: noarch AutoReqProv: No @@ -12719,7 +12720,7 @@ Provides: tex-allrunes = %{tl_version} License: LPPL Summary: Fonts and LaTeX package for almost all runes Version: svn21886.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -12961,7 +12962,7 @@ lot of varieties. %package allrunes-doc Summary: Documentation for allrunes Version: svn21886.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-allrunes-doc BuildArch: noarch AutoReqProv: No @@ -12974,7 +12975,7 @@ Provides: tex-almfixed = %{tl_version} License: LPPL Summary: Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support Version: svn35065.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13008,7 +13009,7 @@ Arabic texts will now be much easier to input and to proofread. %package almfixed-doc Summary: Documentation for almfixed Version: svn35065.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-almfixed-doc BuildArch: noarch AutoReqProv: No @@ -13021,7 +13022,7 @@ Provides: tex-alnumsec = %{tl_version} License: LPPL Summary: Alphanumeric section numbering Version: svn15878.v0.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13040,7 +13041,7 @@ and different delimiters around them are supported. %package alnumsec-doc Summary: Documentation for alnumsec Version: svn15878.v0.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-alnumsec-doc BuildArch: noarch AutoReqProv: No @@ -13053,7 +13054,7 @@ Provides: tex-alterqcm = %{tl_version} License: LPPL Summary: Multiple choice questionnaires in two column tables Version: svn23385.3.7c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13073,7 +13074,7 @@ questionnaires in two-column tables. %package alterqcm-doc Summary: Documentation for alterqcm Version: svn23385.3.7c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-alterqcm-doc BuildArch: noarch AutoReqProv: No @@ -13086,7 +13087,7 @@ Provides: tex-altfont = %{tl_version} License: GPL+ Summary: Alternative font handling in LaTeX Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13106,7 +13107,7 @@ author. %package altfont-doc Summary: Documentation for altfont Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-altfont-doc BuildArch: noarch AutoReqProv: No @@ -13119,7 +13120,7 @@ Provides: tex-ametsoc = %{tl_version} License: LPPL Summary: Official American Meteorological Society LaTeX Template Version: svn36030.4.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13138,7 +13139,7 @@ for the author's personal use. %package ametsoc-doc Summary: Documentation for ametsoc Version: svn36030.4.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ametsoc-doc BuildArch: noarch AutoReqProv: No @@ -13151,7 +13152,7 @@ Provides: tex-amiri = %{tl_version} License: OFL Summary: A classical Arabic typeface, Naskh style Version: svn38429 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13174,7 +13175,7 @@ supported by Unicode. %package amiri-doc Summary: Documentation for amiri Version: svn38429 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amiri-doc BuildArch: noarch AutoReqProv: No @@ -13187,7 +13188,7 @@ Provides: tex-amsaddr = %{tl_version} License: LPPL Summary: Alter the position of affiliations in amsart Version: svn29630.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13204,7 +13205,7 @@ the front page. %package amsaddr-doc Summary: Documentation for amsaddr Version: svn29630.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsaddr-doc BuildArch: noarch AutoReqProv: No @@ -13217,7 +13218,7 @@ Provides: tex-amscls = %{tl_version} License: LPPL 1.3 Summary: AMS document classes for LaTeX Version: svn36804.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13247,7 +13248,7 @@ distribution. %package amscls-doc Summary: Documentation for amscls Version: svn36804.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amscls-doc BuildArch: noarch AutoReqProv: No @@ -13260,7 +13261,7 @@ Provides: tex-amsfonts = %{tl_version} License: OFL Summary: TeX fonts from the American Mathematical Society Version: svn29208.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13538,7 +13539,7 @@ LaTeX macros for using the fonts are provided. %package amsfonts-doc Summary: Documentation for amsfonts Version: svn29208.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsfonts-doc BuildArch: noarch AutoReqProv: No @@ -13549,7 +13550,7 @@ Documentation for amsfonts %package amslatex-primer-doc Summary: Documentation for amslatex-primer Version: svn28980.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amslatex-primer-doc BuildArch: noarch AutoReqProv: No @@ -13560,7 +13561,7 @@ Documentation for amslatex-primer %package amsldoc-it-doc Summary: Documentation for amsldoc-it Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsldoc-it-doc BuildArch: noarch AutoReqProv: No @@ -13571,7 +13572,7 @@ Documentation for amsldoc-it %package amsldoc-vn-doc Summary: Documentation for amsldoc-vn Version: svn21855.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsldoc-vn-doc BuildArch: noarch AutoReqProv: No @@ -13582,7 +13583,7 @@ Documentation for amsldoc-vn %package amsmath-it-doc Summary: Documentation for amsmath-it Version: svn22930.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsmath-it-doc BuildArch: noarch AutoReqProv: No @@ -13595,7 +13596,7 @@ Provides: tex-amsmath = %{tl_version} License: LPPL Summary: AMS mathematical facilities for LaTeX Version: svn41561 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13627,7 +13628,7 @@ highlighting mathematics, and ntheorem, for specifying theorem %package amsmath-doc Summary: Documentation for amsmath Version: svn40218 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsmath-doc BuildArch: noarch AutoReqProv: No @@ -13640,7 +13641,7 @@ Provides: tex-amsrefs = %{tl_version} License: LPPL 1.3 Summary: A LaTeX-based replacement for BibTeX Version: svn30646.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13668,7 +13669,7 @@ a replacement for BibTeX. %package amsrefs-doc Summary: Documentation for amsrefs Version: svn30646.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsrefs-doc BuildArch: noarch AutoReqProv: No @@ -13681,7 +13682,7 @@ Provides: tex-amstex = %{tl_version} License: LPPL Summary: American Mathematical Society plain TeX macros Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13718,7 +13719,7 @@ fi %package amstex-doc Summary: Documentation for amstex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amstex-doc BuildArch: noarch AutoReqProv: No @@ -13731,7 +13732,7 @@ Provides: tex-tex = %{tl_version} License: Knuth Summary: A sophisticated typesetting engine Version: svn40793 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13772,7 +13773,7 @@ Summary: Binaries for tex Version: svn40987 Requires: texlive-base Requires: texlive-tex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description tex-bin @@ -13783,7 +13784,7 @@ Summary: Binaries for amstex Version: svn3006.0 Requires: texlive-base Requires: texlive-amstex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description amstex-bin @@ -13792,7 +13793,7 @@ Binaries for amstex %package amsthdoc-it-doc Summary: Documentation for amsthdoc-it Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-amsthdoc-it-doc BuildArch: noarch AutoReqProv: No @@ -13805,7 +13806,7 @@ Provides: tex-animate = %{tl_version} License: LPPL Summary: Create PDF animations from graphics files and inline graphics Version: svn41324 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13833,7 +13834,7 @@ text. %package animate-doc Summary: Documentation for animate Version: svn41324 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-animate-doc BuildArch: noarch AutoReqProv: No @@ -13846,7 +13847,7 @@ Provides: tex-anonchap = %{tl_version} License: LPPL Summary: Make chapters be typeset like sections Version: svn17049.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13863,7 +13864,7 @@ ante. %package anonchap-doc Summary: Documentation for anonchap Version: svn17049.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-anonchap-doc BuildArch: noarch AutoReqProv: No @@ -13876,7 +13877,7 @@ Provides: tex-anonymouspro = %{tl_version} License: LPPL 1.3 Summary: Use AnonymousPro fonts with LaTeX Version: svn33441.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13962,7 +13963,7 @@ and LaTeX support is also provided. %package anonymouspro-doc Summary: Documentation for anonymouspro Version: svn33441.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-anonymouspro-doc BuildArch: noarch AutoReqProv: No @@ -13975,7 +13976,7 @@ Provides: tex-answers = %{tl_version} License: LPPL Summary: Setting questions (or exercises) and answers Version: svn35032.2.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -13990,7 +13991,7 @@ question and answer sheets. %package answers-doc Summary: Documentation for answers Version: svn35032.2.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-answers-doc BuildArch: noarch AutoReqProv: No @@ -14003,7 +14004,7 @@ Provides: tex-antiqua = %{tl_version} License: GPL+ Summary: URW Antiqua condensed font, for use with TeX Version: svn24266.001.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14043,7 +14044,7 @@ supporting files for use with (La)TeX. %package antiqua-doc Summary: Documentation for antiqua Version: svn24266.001.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-antiqua-doc BuildArch: noarch AutoReqProv: No @@ -14056,7 +14057,7 @@ Provides: tex-antomega = %{tl_version} License: LPPL Summary: Alternative language support for Omega/Lambda Version: svn21933.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14101,7 +14102,7 @@ eases porting of LaTeX documents to Lambda). %package antomega-doc Summary: Documentation for antomega Version: svn21933.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-antomega-doc BuildArch: noarch AutoReqProv: No @@ -14115,7 +14116,7 @@ Provides: tex-omega = %{tl_version} License: GPL+ Summary: A wide-character-set extension of TeX Version: svn33046.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14194,7 +14195,7 @@ Omega (and Aleph) ideas include Omega-2 and LuaTeX. %package omega-doc Summary: Documentation for omega Version: svn33046.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-omega-doc BuildArch: noarch AutoReqProv: No @@ -14207,7 +14208,7 @@ Provides: tex-antt = %{tl_version} License: GFSL Summary: Antykwa Torunska: a Type 1 family of a Polish traditional type Version: svn18651.2.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14690,7 +14691,7 @@ as Type 1. %package antt-doc Summary: Documentation for antt Version: svn18651.2.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-antt-doc BuildArch: noarch AutoReqProv: No @@ -14701,7 +14702,7 @@ Documentation for antt %package anufinalexam-doc Summary: Documentation for anufinalexam Version: svn26053.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-anufinalexam-doc BuildArch: noarch AutoReqProv: No @@ -14714,7 +14715,7 @@ Provides: tex-anyfontsize = %{tl_version} License: LPPL Summary: Select any font size in LaTeX Version: svn17050.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14734,7 +14735,7 @@ package generalises the facility. %package anyfontsize-doc Summary: Documentation for anyfontsize Version: svn17050.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-anyfontsize-doc BuildArch: noarch AutoReqProv: No @@ -14747,7 +14748,7 @@ Provides: tex-anysize = %{tl_version} License: Public Domain Summary: A simple package to set up document margins Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14762,7 +14763,7 @@ package. %package anysize-doc Summary: Documentation for anysize Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-anysize-doc BuildArch: noarch AutoReqProv: No @@ -14775,7 +14776,7 @@ Provides: tex-aobs-tikz = %{tl_version} License: LPPL 1.3 Summary: TikZ styles for creating overlaid pictures in beamer Version: svn32662.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14792,7 +14793,7 @@ library; the latter method necessitates TikZ manual load. %package aobs-tikz-doc Summary: Documentation for aobs-tikz Version: svn32662.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aobs-tikz-doc BuildArch: noarch AutoReqProv: No @@ -14805,7 +14806,7 @@ Provides: tex-aomart = %{tl_version} License: LPPL 1.3 Summary: Typeset articles for the Annals of Mathematics Version: svn36324.1.14a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14825,7 +14826,7 @@ Annals of Mathematics. %package aomart-doc Summary: Documentation for aomart Version: svn36324.1.14a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aomart-doc BuildArch: noarch AutoReqProv: No @@ -14838,7 +14839,7 @@ Provides: tex-apa6e = %{tl_version} License: BSD Summary: Format manuscripts to APA 6th edition guidelines Version: svn23350.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14864,7 +14865,7 @@ coverage of the requirements. %package apa6e-doc Summary: Documentation for apa6e Version: svn23350.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apa6e-doc BuildArch: noarch AutoReqProv: No @@ -14877,7 +14878,7 @@ Provides: tex-apa6 = %{tl_version} License: LPPL 1.3 Summary: Format documents in APA style (6th edition) Version: svn41402 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14925,7 +14926,7 @@ maintained). %package apa6-doc Summary: Documentation for apa6 Version: svn41402 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apa6-doc BuildArch: noarch AutoReqProv: No @@ -14938,7 +14939,7 @@ Provides: tex-apacite = %{tl_version} License: LPPL Summary: Citation style following the rules of the APA Version: svn31264.6.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14963,7 +14964,7 @@ for a document. %package apacite-doc Summary: Documentation for apacite Version: svn31264.6.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apacite-doc BuildArch: noarch AutoReqProv: No @@ -14976,7 +14977,7 @@ Provides: tex-apalike2 = %{tl_version} License: Knuth Summary: Bibliography style that approaches APA requirements Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -14991,7 +14992,7 @@ Provides: tex-apa = %{tl_version} License: LPPL Summary: American Psychological Association format Version: svn15878.1.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15025,7 +15026,7 @@ updated for use with apa6. %package apa-doc Summary: Documentation for apa Version: svn15878.1.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apa-doc BuildArch: noarch AutoReqProv: No @@ -15038,7 +15039,7 @@ Provides: tex-apnum = %{tl_version} License: Public Domain Summary: Arbitrary precision numbers implemented by TeX macros Version: svn39710 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15058,7 +15059,7 @@ and \newcount macro. %package apnum-doc Summary: Documentation for apnum Version: svn39710 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apnum-doc BuildArch: noarch AutoReqProv: No @@ -15071,7 +15072,7 @@ Provides: tex-appendixnumberbeamer = %{tl_version} License: GPLv3+ Summary: Manage frame numbering in appendixes in beamer Version: svn40322 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15086,7 +15087,7 @@ appendixes are numbered starting from one. %package appendixnumberbeamer-doc Summary: Documentation for appendixnumberbeamer Version: svn40322 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-appendixnumberbeamer-doc BuildArch: noarch AutoReqProv: No @@ -15099,7 +15100,7 @@ Provides: tex-appendix = %{tl_version} License: LPPL Summary: Extra control of appendices Version: svn39039 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15121,7 +15122,7 @@ instead of the \appendix command. %package appendix-doc Summary: Documentation for appendix Version: svn39039 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-appendix-doc BuildArch: noarch AutoReqProv: No @@ -15132,7 +15133,7 @@ Documentation for appendix %package apprends-latex-doc Summary: Documentation for apprends-latex Version: svn19306.4.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apprends-latex-doc BuildArch: noarch AutoReqProv: No @@ -15145,7 +15146,7 @@ Provides: tex-apptools = %{tl_version} License: LPPL 1.3 Summary: Tools for customising appendices Version: svn28400.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15162,7 +15163,7 @@ already been called. %package apptools-doc Summary: Documentation for apptools Version: svn28400.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-apptools-doc BuildArch: noarch AutoReqProv: No @@ -15175,7 +15176,7 @@ Provides: tex-arabi = %{tl_version} License: LPPL Summary: (La)TeX support for Arabic and Farsi, compliant with Babel Version: svn25095.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15398,7 +15399,7 @@ and text may be copied from them and pasted elsewhere. %package arabi-doc Summary: Documentation for arabi Version: svn25095.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arabi-doc BuildArch: noarch AutoReqProv: No @@ -15411,7 +15412,7 @@ Provides: tex-arabtex = %{tl_version} License: LPPL Summary: Macros and fonts for typesetting Arabic Version: svn25711.3.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15537,7 +15538,7 @@ LaTeX. %package arabtex-doc Summary: Documentation for arabtex Version: svn25711.3.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arabtex-doc BuildArch: noarch AutoReqProv: No @@ -15550,7 +15551,7 @@ Provides: tex-arabxetex = %{tl_version} License: LPPL Summary: An ArabTeX-like interface for XeLaTeX Version: svn38299.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15616,7 +15617,7 @@ package ednotes. %package arabxetex-doc Summary: Documentation for arabxetex Version: svn38299.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arabxetex-doc BuildArch: noarch AutoReqProv: No @@ -15629,7 +15630,7 @@ Provides: tex-aramaic-serto = %{tl_version} License: LPPL 1.3 Summary: Fonts and LaTeX for Syriac written in Serto Version: svn30042.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15664,7 +15665,7 @@ examples are included. %package aramaic-serto-doc Summary: Documentation for aramaic-serto Version: svn30042.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aramaic-serto-doc BuildArch: noarch AutoReqProv: No @@ -15677,7 +15678,7 @@ Provides: tex-arara = %{tl_version} License: BSD Summary: Automation of LaTeX compilation Version: svn29762.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15701,7 +15702,7 @@ than relying on indirect resources, such as log file analysis. %package arara-doc Summary: Documentation for arara Version: svn29762.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arara-doc BuildArch: noarch AutoReqProv: No @@ -15714,7 +15715,7 @@ Summary: Binaries for arara Version: svn29036.0 Requires: texlive-base Requires: texlive-arara -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description arara-bin @@ -15725,7 +15726,7 @@ Provides: tex-archaic = %{tl_version} License: LPPL Summary: A collection of archaic fonts Version: svn38005.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15842,7 +15843,7 @@ file for the whole collection. %package archaic-doc Summary: Documentation for archaic Version: svn38005.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-archaic-doc BuildArch: noarch AutoReqProv: No @@ -15855,7 +15856,7 @@ Provides: tex-arcs = %{tl_version} License: LPPL Summary: Draw arcs over and under text Version: svn15878.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15872,7 +15873,7 @@ and may be used both in text and in maths formulae. %package arcs-doc Summary: Documentation for arcs Version: svn15878.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arcs-doc BuildArch: noarch AutoReqProv: No @@ -15885,7 +15886,7 @@ Provides: tex-arev = %{tl_version} License: LPPL Summary: Fonts and LaTeX support files for Arev Sans Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -15967,7 +15968,7 @@ and kerkis. %package arev-doc Summary: Documentation for arev Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arev-doc BuildArch: noarch AutoReqProv: No @@ -15980,7 +15981,7 @@ Provides: tex-armtex = %{tl_version} License: LPPL Summary: A sytem for writing Armenian with TeX and LaTeX Version: svn33894.3.0_beta3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -16033,7 +16034,7 @@ Updating work is still under way. %package armtex-doc Summary: Documentation for armtex Version: svn33894.3.0_beta3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-armtex-doc BuildArch: noarch AutoReqProv: No @@ -16044,7 +16045,7 @@ Documentation for armtex %package around-the-bend-doc Summary: Documentation for around-the-bend Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-around-the-bend-doc BuildArch: noarch AutoReqProv: No @@ -16057,7 +16058,7 @@ Provides: tex-arphic = %{tl_version} License: Arphic Summary: Arphic (Chinese) font packages Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17230,7 +17231,7 @@ like licence). %package arphic-doc Summary: Documentation for arphic Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arphic-doc BuildArch: noarch AutoReqProv: No @@ -17243,7 +17244,7 @@ Provides: tex-arrayjobx = %{tl_version} License: LPPL Summary: Array data structures for (La)TeX Version: svn18125.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17263,7 +17264,7 @@ the arrayjob package. %package arrayjobx-doc Summary: Documentation for arrayjobx Version: svn18125.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arrayjobx-doc BuildArch: noarch AutoReqProv: No @@ -17276,7 +17277,7 @@ Provides: tex-arraysort = %{tl_version} License: LPPL 1.2 Summary: Sort arrays (or portions of them) Version: svn31576.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17299,7 +17300,7 @@ the arrayjobx package. %package arraysort-doc Summary: Documentation for arraysort Version: svn31576.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arraysort-doc BuildArch: noarch AutoReqProv: No @@ -17312,7 +17313,7 @@ Provides: tex-arsclassica = %{tl_version} License: LPPL Summary: A different view of the ClassicThesis package Version: svn25466.4.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17332,7 +17333,7 @@ reproduce the look of the guide The art of writing with LaTeX %package arsclassica-doc Summary: Documentation for arsclassica Version: svn25466.4.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arsclassica-doc BuildArch: noarch AutoReqProv: No @@ -17345,7 +17346,7 @@ Provides: tex-articleingud = %{tl_version} License: LPPL 1.2 Summary: LaTeX class for articles published in INGENIERIA review Version: svn38741 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17359,7 +17360,7 @@ derived from the standard LaTeX class article. %package articleingud-doc Summary: Documentation for articleingud Version: svn38741 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-articleingud-doc BuildArch: noarch AutoReqProv: No @@ -17372,7 +17373,7 @@ Provides: tex-arydshln = %{tl_version} License: LPPL Summary: Horizontal and vertical dashed lines in arrays and tabulars Version: svn40847 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17390,7 +17391,7 @@ The package is compatible with array and colortab. %package arydshln-doc Summary: Documentation for arydshln Version: svn40847 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-arydshln-doc BuildArch: noarch AutoReqProv: No @@ -17403,7 +17404,7 @@ Provides: tex-asaetr = %{tl_version} License: Public Domain Summary: Transactions of the ASAE Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17421,7 +17422,7 @@ Small Caps font. %package asaetr-doc Summary: Documentation for asaetr Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-asaetr-doc BuildArch: noarch AutoReqProv: No @@ -17434,7 +17435,7 @@ Provides: tex-asana-math = %{tl_version} License: OFL Summary: A font to typeset maths in Xe(La)TeX and Lua(La)TeX Version: svn37556.000.955 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Provides: texlive-Asana-Math = %{tl_version}.1 @@ -17456,7 +17457,7 @@ packages. %package asana-math-doc Summary: Documentation for asana-math Version: svn37556.000.955 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-asana-math-doc BuildArch: noarch AutoReqProv: No @@ -17469,7 +17470,7 @@ Provides: tex-ascelike = %{tl_version} License: LPPL Summary: Bibliography style for the ASCE Version: svn29129.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17491,7 +17492,7 @@ documentation/example of how to use the class. %package ascelike-doc Summary: Documentation for ascelike Version: svn29129.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ascelike-doc BuildArch: noarch AutoReqProv: No @@ -17502,7 +17503,7 @@ Documentation for ascelike %package ascii-chart-doc Summary: Documentation for ascii-chart Version: svn20536.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ascii-chart-doc BuildArch: noarch AutoReqProv: No @@ -17515,7 +17516,7 @@ Provides: tex-ascii-font = %{tl_version} License: LPPL Summary: Use the ASCII "font" in LaTeX Version: svn29989.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17538,7 +17539,7 @@ and "font" by R. Ramasubramanian and R.W.D. Nickalls. %package ascii-font-doc Summary: Documentation for ascii-font Version: svn29989.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ascii-font-doc BuildArch: noarch AutoReqProv: No @@ -17551,7 +17552,7 @@ Provides: tex-askmaps = %{tl_version} License: LPPL Summary: Typeset American style Karnaugh maps Version: svn32320.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17569,7 +17570,7 @@ variables are placed left of the rows. %package askmaps-doc Summary: Documentation for askmaps Version: svn32320.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-askmaps-doc BuildArch: noarch AutoReqProv: No @@ -17582,7 +17583,7 @@ Provides: tex-aspectratio = %{tl_version} License: LPPL Summary: Capital A and capital R ligature for Aspect Ratio Version: svn25243.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17641,7 +17642,7 @@ supersedes the package ar %package aspectratio-doc Summary: Documentation for aspectratio Version: svn25243.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aspectratio-doc BuildArch: noarch AutoReqProv: No @@ -17654,7 +17655,7 @@ Provides: tex-assignment = %{tl_version} License: LPPL Summary: A class file for typesetting homework and lab assignments Version: svn20431.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17668,7 +17669,7 @@ A class file for typesetting homework and lab assignments. %package assignment-doc Summary: Documentation for assignment Version: svn20431.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-assignment-doc BuildArch: noarch AutoReqProv: No @@ -17681,7 +17682,7 @@ Provides: tex-assoccnt = %{tl_version} License: LPPL 1.3 Summary: Associate counters, making them step when a master steps Version: svn38497 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17699,7 +17700,7 @@ to be stepped, each time some 'master' counter is stepped. %package assoccnt-doc Summary: Documentation for assoccnt Version: svn38497 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-assoccnt-doc BuildArch: noarch AutoReqProv: No @@ -17712,7 +17713,7 @@ Provides: tex-astro = %{tl_version} License: LPPL Summary: Astronomical (planetary) symbols Version: svn15878.2.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17728,7 +17729,7 @@ font is distributed as Metafont source. %package astro-doc Summary: Documentation for astro Version: svn15878.2.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-astro-doc BuildArch: noarch AutoReqProv: No @@ -17741,7 +17742,7 @@ Provides: tex-asyfig = %{tl_version} License: LPPL Summary: Commands for using Asymptote figures Version: svn17512.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17764,7 +17765,7 @@ migrate (with no fuss) to their use in the target document. %package asyfig-doc Summary: Documentation for asyfig Version: svn17512.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-asyfig-doc BuildArch: noarch AutoReqProv: No @@ -17777,7 +17778,7 @@ Provides: tex-asypictureb = %{tl_version} License: LPPL 1.3 Summary: User-friendly integration of Asymptote into LaTeX Version: svn33490.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17802,7 +17803,7 @@ for identifying unchanged pictures that need not be recompiled. %package asypictureb-doc Summary: Documentation for asypictureb Version: svn33490.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-asypictureb-doc BuildArch: noarch AutoReqProv: No @@ -17815,7 +17816,7 @@ Provides: tex-attachfile = %{tl_version} License: LPPL 1.3 Summary: Attach arbitrary files to a PDF document Version: svn38830 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17844,7 +17845,7 @@ EmbeddedFile's Params dictionary. %package attachfile-doc Summary: Documentation for attachfile Version: svn38830 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-attachfile-doc BuildArch: noarch AutoReqProv: No @@ -17857,7 +17858,7 @@ Provides: tex-augie = %{tl_version} License: LPPL Summary: Calligraphic font for typesetting handwriting Version: svn18948.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17885,7 +17886,7 @@ handwriting. The font is distributed in Adobe Type 1 format. %package augie-doc Summary: Documentation for augie Version: svn18948.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-augie-doc BuildArch: noarch AutoReqProv: No @@ -17898,7 +17899,7 @@ Provides: tex-auncial-new = %{tl_version} License: LPPL Summary: Artificial Uncial font and LaTeX support macros Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -17929,7 +17930,7 @@ mainly follows the standard T1 encoding. %package auncial-new-doc Summary: Documentation for auncial-new Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-auncial-new-doc BuildArch: noarch AutoReqProv: No @@ -17942,7 +17943,7 @@ Provides: tex-aurical = %{tl_version} License: LPPL Summary: Calligraphic fonts for use with LaTeX in T1 encoding Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18016,7 +18017,7 @@ s'. %package aurical-doc Summary: Documentation for aurical Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-aurical-doc BuildArch: noarch AutoReqProv: No @@ -18029,7 +18030,7 @@ Provides: tex-authoraftertitle = %{tl_version} License: Public Domain Summary: Make author, etc., available after \maketitle Version: svn24863.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18044,7 +18045,7 @@ package available to the user (as \MyAuthor, etc) after the %package authoraftertitle-doc Summary: Documentation for authoraftertitle Version: svn24863.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-authoraftertitle-doc BuildArch: noarch AutoReqProv: No @@ -18057,7 +18058,7 @@ Provides: tex-authorindex = %{tl_version} License: LPPL Summary: Index citations by author names Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18077,7 +18078,7 @@ requires Perl (version 5 or higher). %package authorindex-doc Summary: Documentation for authorindex Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-authorindex-doc BuildArch: noarch AutoReqProv: No @@ -18090,7 +18091,7 @@ Summary: Binaries for authorindex Version: svn18790.0 Requires: texlive-base Requires: texlive-authorindex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description authorindex-bin @@ -18101,7 +18102,7 @@ Provides: tex-autoarea = %{tl_version} License: LPPL Summary: Automatic computation of bounding boxes with PiCTeX Version: svn15878.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18118,7 +18119,7 @@ text and margins and for keeping the running text away. %package autoarea-doc Summary: Documentation for autoarea Version: svn15878.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-autoarea-doc BuildArch: noarch AutoReqProv: No @@ -18131,7 +18132,7 @@ Provides: tex-automata = %{tl_version} License: LPPL Summary: Finite state machines, graphs and trees in MetaPost Version: svn19717.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18148,7 +18149,7 @@ nodes and the styles of edges, may be adjusted. %package automata-doc Summary: Documentation for automata Version: svn19717.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-automata-doc BuildArch: noarch AutoReqProv: No @@ -18161,7 +18162,7 @@ Provides: tex-autonum = %{tl_version} License: LPPL 1.3 Summary: Automatic equation references Version: svn36084.0.3.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18181,7 +18182,7 @@ to the showonlyrefs option of the package mathtools. %package autonum-doc Summary: Documentation for autonum Version: svn36084.0.3.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-autonum-doc BuildArch: noarch AutoReqProv: No @@ -18194,7 +18195,7 @@ Provides: tex-autopdf = %{tl_version} License: LPPL 1.2 Summary: Conversion of graphics to pdfLaTeX-compatible formats Version: svn32377.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18215,7 +18216,7 @@ that the LaTeX run starts with write18 enabled. %package autopdf-doc Summary: Documentation for autopdf Version: svn32377.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-autopdf-doc BuildArch: noarch AutoReqProv: No @@ -18228,7 +18229,7 @@ Provides: tex-auto-pst-pdf = %{tl_version} License: LPPL Summary: Wrapper for pst-pdf (with some psfrag features) Version: svn23723.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18251,7 +18252,7 @@ consistently and easily. %package auto-pst-pdf-doc Summary: Documentation for auto-pst-pdf Version: svn23723.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-auto-pst-pdf-doc BuildArch: noarch AutoReqProv: No @@ -18264,7 +18265,7 @@ Provides: tex-avantgar = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18434,7 +18435,7 @@ Provides: tex-avremu = %{tl_version} License: LPPL 1.3 Summary: An 8-Bit Microcontroller Simulator written in LaTeX Version: svn35373.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18460,7 +18461,7 @@ like Mandelbrot sets. %package avremu-doc Summary: Documentation for avremu Version: svn35373.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-avremu-doc BuildArch: noarch AutoReqProv: No @@ -18473,7 +18474,7 @@ Provides: tex-b1encoding = %{tl_version} License: LPPL 1.3 Summary: LaTeX encoding tools for Bookhands fonts Version: svn21271.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18490,7 +18491,7 @@ fonts. %package b1encoding-doc Summary: Documentation for b1encoding Version: svn21271.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-b1encoding-doc BuildArch: noarch AutoReqProv: No @@ -18503,7 +18504,7 @@ Provides: tex-babel-albanian = %{tl_version} License: LPPL Summary: Support for Albanian within babel Version: svn30254.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18517,7 +18518,7 @@ of the babel system). %package babel-albanian-doc Summary: Documentation for babel-albanian Version: svn30254.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-albanian-doc BuildArch: noarch AutoReqProv: No @@ -18530,7 +18531,7 @@ Provides: tex-babel-bahasa = %{tl_version} License: LPPL 1.3 Summary: Support for Bahasa within babel Version: svn30255.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18545,7 +18546,7 @@ for Bahasa Indonesia and Bahasa Malaysia. %package babel-bahasa-doc Summary: Documentation for babel-bahasa Version: svn30255.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-bahasa-doc BuildArch: noarch AutoReqProv: No @@ -18558,7 +18559,7 @@ Provides: tex-babel-basque = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Basque Version: svn30256.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18571,7 +18572,7 @@ The package establishes Basque conventions in a document. %package babel-basque-doc Summary: Documentation for babel-basque Version: svn30256.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-basque-doc BuildArch: noarch AutoReqProv: No @@ -18584,7 +18585,7 @@ Provides: tex-babelbib = %{tl_version} License: LPPL Summary: Multilingual bibliographies Version: svn25245.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18603,7 +18604,7 @@ typography of the bibliographies. %package babelbib-doc Summary: Documentation for babelbib Version: svn25245.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babelbib-doc BuildArch: noarch AutoReqProv: No @@ -18616,7 +18617,7 @@ Provides: tex-babel-bosnian = %{tl_version} License: LPPL 1.3 Summary: Babel contrib support for Bosnian Version: svn38174.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18630,7 +18631,7 @@ support of Bosnian with babel. %package babel-bosnian-doc Summary: Documentation for babel-bosnian Version: svn38174.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-bosnian-doc BuildArch: noarch AutoReqProv: No @@ -18643,7 +18644,7 @@ Provides: tex-babel-breton = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Breton Version: svn30257.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18659,7 +18660,7 @@ rules. %package babel-breton-doc Summary: Documentation for babel-breton Version: svn30257.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-breton-doc BuildArch: noarch AutoReqProv: No @@ -18672,7 +18673,7 @@ Provides: tex-babel-bulgarian = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Bulgarian Version: svn31902.1.2g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18686,7 +18687,7 @@ simply containing some Bulgarian text). %package babel-bulgarian-doc Summary: Documentation for babel-bulgarian Version: svn31902.1.2g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-bulgarian-doc BuildArch: noarch AutoReqProv: No @@ -18699,7 +18700,7 @@ Provides: tex-babel-catalan = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Catalan Version: svn30259.2.2p -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18714,7 +18715,7 @@ of the document). %package babel-catalan-doc Summary: Documentation for babel-catalan Version: svn30259.2.2p -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-catalan-doc BuildArch: noarch AutoReqProv: No @@ -18727,7 +18728,7 @@ Provides: tex-babel-croatian = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Croatian Version: svn35198.1.3l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18742,7 +18743,7 @@ language of the document). %package babel-croatian-doc Summary: Documentation for babel-croatian Version: svn35198.1.3l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-croatian-doc BuildArch: noarch AutoReqProv: No @@ -18755,7 +18756,7 @@ Provides: tex-babel-czech = %{tl_version} License: LPPL 1.3 Summary: Babel support for Czech Version: svn30261.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18771,7 +18772,7 @@ translations to Czech of standard "LaTeX names". %package babel-czech-doc Summary: Documentation for babel-czech Version: svn30261.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-czech-doc BuildArch: noarch AutoReqProv: No @@ -18784,7 +18785,7 @@ Provides: tex-babel-danish = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Danish Version: svn30262.1.3r -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18800,7 +18801,7 @@ of the document). %package babel-danish-doc Summary: Documentation for babel-danish Version: svn30262.1.3r -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-danish-doc BuildArch: noarch AutoReqProv: No @@ -18813,7 +18814,7 @@ Provides: tex-babel-dutch = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for Dutch Version: svn30263.3.8i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18829,7 +18830,7 @@ the document). %package babel-dutch-doc Summary: Documentation for babel-dutch Version: svn30263.3.8i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-dutch-doc BuildArch: noarch AutoReqProv: No @@ -18842,7 +18843,7 @@ Provides: tex-babel-english = %{tl_version} License: LPPL 1.3 Summary: Babel support for English Version: svn30264.3.3p -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18858,7 +18859,7 @@ and default ('american') patterns for Canadian and USA text. %package babel-english-doc Summary: Documentation for babel-english Version: svn30264.3.3p -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-english-doc BuildArch: noarch AutoReqProv: No @@ -18871,7 +18872,7 @@ Provides: tex-babel-esperanto = %{tl_version} License: LPPL 1.3 Summary: Babel support for Esperanto Version: svn30265.1.4t -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18886,7 +18887,7 @@ translations to Esperanto of standard "LaTeX names". %package babel-esperanto-doc Summary: Documentation for babel-esperanto Version: svn30265.1.4t -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-esperanto-doc BuildArch: noarch AutoReqProv: No @@ -18899,7 +18900,7 @@ Provides: tex-babel-estonian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Estonian Version: svn38064.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18914,7 +18915,7 @@ translations to Estonian of standard "LaTeX names". %package babel-estonian-doc Summary: Documentation for babel-estonian Version: svn38064.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-estonian-doc BuildArch: noarch AutoReqProv: No @@ -18927,7 +18928,7 @@ Provides: tex-babel-finnish = %{tl_version} License: LPPL Summary: babel-finnish package Version: svn30267.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18940,7 +18941,7 @@ babel-finnish package %package babel-finnish-doc Summary: Documentation for babel-finnish Version: svn30267.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-finnish-doc BuildArch: noarch AutoReqProv: No @@ -18953,7 +18954,7 @@ Provides: tex-babel-french = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for French Version: svn41244 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18971,7 +18972,7 @@ of the document). %package babel-french-doc Summary: Documentation for babel-french Version: svn41244 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-french-doc BuildArch: noarch AutoReqProv: No @@ -18984,7 +18985,7 @@ Provides: tex-babel-friulan = %{tl_version} License: LPPL 1.3 Summary: Babel/Polyglossia support for Friulan(Furlan) Version: svn39861 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -18998,7 +18999,7 @@ support of Friulan either with babel or with polyglossia. %package babel-friulan-doc Summary: Documentation for babel-friulan Version: svn39861 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-friulan-doc BuildArch: noarch AutoReqProv: No @@ -19011,7 +19012,7 @@ Provides: tex-babel-galician = %{tl_version} License: LPPL Summary: babel-galician package Version: svn30270.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19024,7 +19025,7 @@ babel-galician package %package babel-galician-doc Summary: Documentation for babel-galician Version: svn30270.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-galician-doc BuildArch: noarch AutoReqProv: No @@ -19037,7 +19038,7 @@ Provides: tex-babel-georgian = %{tl_version} License: LPPL 1.3 Summary: Babel Version: svn33527.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19054,7 +19055,7 @@ written in Georgian. The package is adapted for use both under %package babel-georgian-doc Summary: Documentation for babel-georgian Version: svn33527.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-georgian-doc BuildArch: noarch AutoReqProv: No @@ -19067,7 +19068,7 @@ Provides: tex-babel-german = %{tl_version} License: LPPL 1.3 Summary: Babel support for documents written in German Version: svn35349.2.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19089,7 +19090,7 @@ German (including its Austrian dialect), in both 'old' and %package babel-german-doc Summary: Documentation for babel-german Version: svn35349.2.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-german-doc BuildArch: noarch AutoReqProv: No @@ -19102,7 +19103,7 @@ Provides: tex-babel-greek = %{tl_version} License: LPPL 1.3 Summary: Babel support for documents written in Greek Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19120,7 +19121,7 @@ era symbols. %package babel-greek-doc Summary: Documentation for babel-greek Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-greek-doc BuildArch: noarch AutoReqProv: No @@ -19133,7 +19134,7 @@ Provides: tex-babel-hebrew = %{tl_version} License: LPPL 1.3 Summary: Babel support for Hebrew Version: svn30273.2.3h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19185,7 +19186,7 @@ to Hebrew of standard "LaTeX names". %package babel-hebrew-doc Summary: Documentation for babel-hebrew Version: svn30273.2.3h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-hebrew-doc BuildArch: noarch AutoReqProv: No @@ -19198,7 +19199,7 @@ Provides: tex-babel-hungarian = %{tl_version} License: LPPL Summary: Babel support for Hungarian (Magyar) Version: svn41435 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19213,7 +19214,7 @@ support of Magyar (Hungarian) with babel. %package babel-hungarian-doc Summary: Documentation for babel-hungarian Version: svn41435 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-hungarian-doc BuildArch: noarch AutoReqProv: No @@ -19226,7 +19227,7 @@ Provides: tex-babel-icelandic = %{tl_version} License: LPPL 1.3 Summary: Babel support for Icelandic Version: svn39387 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19241,7 +19242,7 @@ translations to Icelandic of standard "LaTeX names". %package babel-icelandic-doc Summary: Documentation for babel-icelandic Version: svn39387 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-icelandic-doc BuildArch: noarch AutoReqProv: No @@ -19254,7 +19255,7 @@ Provides: tex-babel-interlingua = %{tl_version} License: LPPL 1.3 Summary: Babel support for Interlingua Version: svn30276.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19272,7 +19273,7 @@ with some normalisation of spelling. %package babel-interlingua-doc Summary: Documentation for babel-interlingua Version: svn30276.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-interlingua-doc BuildArch: noarch AutoReqProv: No @@ -19285,7 +19286,7 @@ Provides: tex-babel-irish = %{tl_version} License: LPPL 1.3 Summary: Babel support for Irish Version: svn30277.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19300,7 +19301,7 @@ to Irish of standard "LaTeX names". (No shortcuts are defined.) %package babel-irish-doc Summary: Documentation for babel-irish Version: svn30277.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-irish-doc BuildArch: noarch AutoReqProv: No @@ -19313,7 +19314,7 @@ Provides: tex-babel-italian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Italian text Version: svn36645.1.3n -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19327,7 +19328,7 @@ The package provides language definitions for use in babel. %package babel-italian-doc Summary: Documentation for babel-italian Version: svn36645.1.3n -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-italian-doc BuildArch: noarch AutoReqProv: No @@ -19340,7 +19341,7 @@ Provides: tex-babel-kurmanji = %{tl_version} License: LPPL 1.3 Summary: Babel support for Kurmanji Version: svn30279.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19359,7 +19360,7 @@ written in Arabic script. %package babel-kurmanji-doc Summary: Documentation for babel-kurmanji Version: svn30279.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-kurmanji-doc BuildArch: noarch AutoReqProv: No @@ -19372,7 +19373,7 @@ Provides: tex-babel-latin = %{tl_version} License: LPPL Summary: Babel support for Latin Version: svn38173.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19390,7 +19391,7 @@ setting, a further switch permits addition of prosodic marks. %package babel-latin-doc Summary: Documentation for babel-latin Version: svn38173.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-latin-doc BuildArch: noarch AutoReqProv: No @@ -19403,7 +19404,7 @@ Provides: tex-babel-latvian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Latvian Version: svn34377.2.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19417,7 +19418,7 @@ of Latvian in babel. %package babel-latvian-doc Summary: Documentation for babel-latvian Version: svn34377.2.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-latvian-doc BuildArch: noarch AutoReqProv: No @@ -19430,7 +19431,7 @@ Provides: tex-babel-norsk = %{tl_version} License: LPPL 1.3 Summary: Babel support for Norwegian Version: svn30281.2.0i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19445,7 +19446,7 @@ translations to Norsk of standard "LaTeX names". %package babel-norsk-doc Summary: Documentation for babel-norsk Version: svn30281.2.0i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-norsk-doc BuildArch: noarch AutoReqProv: No @@ -19458,7 +19459,7 @@ Provides: tex-babel-piedmontese = %{tl_version} License: LPPL 1.3 Summary: Babel support for Piedmontese Version: svn30282.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19473,7 +19474,7 @@ translations to Piedmontese of standard "LaTeX names". %package babel-piedmontese-doc Summary: Documentation for babel-piedmontese Version: svn30282.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-piedmontese-doc BuildArch: noarch AutoReqProv: No @@ -19486,7 +19487,7 @@ Provides: tex-babel-polish = %{tl_version} License: LPPL 1.3 Summary: Babel support for Polish Version: svn30283.1.2l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19501,7 +19502,7 @@ translations to Polish of standard "LaTeX names". %package babel-polish-doc Summary: Documentation for babel-polish Version: svn30283.1.2l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-polish-doc BuildArch: noarch AutoReqProv: No @@ -19514,7 +19515,7 @@ Provides: tex-babel-portuges = %{tl_version} License: LPPL 1.3 Summary: Babel support for Portuges Version: svn30284.1.2q -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19530,7 +19531,7 @@ are defined, as well as translations to Portuguese of standard %package babel-portuges-doc Summary: Documentation for babel-portuges Version: svn30284.1.2q -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-portuges-doc BuildArch: noarch AutoReqProv: No @@ -19543,7 +19544,7 @@ Provides: tex-babel-romanian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Romanian Version: svn30285.1.2l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19558,7 +19559,7 @@ of Romanian in babel. Translations to Romanian of standard %package babel-romanian-doc Summary: Documentation for babel-romanian Version: svn30285.1.2l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-romanian-doc BuildArch: noarch AutoReqProv: No @@ -19571,7 +19572,7 @@ Provides: tex-babel-romansh = %{tl_version} License: LPPL 1.3 Summary: Babel/Polyglossia support for the Romansh language Version: svn30286.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19585,7 +19586,7 @@ support of Romansh either with babel or with polyglossia. %package babel-romansh-doc Summary: Documentation for babel-romansh Version: svn30286.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-romansh-doc BuildArch: noarch AutoReqProv: No @@ -19598,7 +19599,7 @@ Provides: tex-babel-russian = %{tl_version} License: LPPL 1.3 Summary: Russian language module for Babel Version: svn39784 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19614,7 +19615,7 @@ engines, and under XeTeX and LuaTeX. %package babel-russian-doc Summary: Documentation for babel-russian Version: svn39784 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-russian-doc BuildArch: noarch AutoReqProv: No @@ -19627,7 +19628,7 @@ Provides: tex-babel-samin = %{tl_version} License: LPPL 1.3 Summary: Babel support for Samin Version: svn30288.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19646,7 +19647,7 @@ names". %package babel-samin-doc Summary: Documentation for babel-samin Version: svn30288.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-samin-doc BuildArch: noarch AutoReqProv: No @@ -19659,7 +19660,7 @@ Provides: tex-babel-scottish = %{tl_version} License: LPPL 1.3 Summary: Babel support for Scottish Gaelic Version: svn30289.1.0g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19674,7 +19675,7 @@ defined, as well as translations of standard "LaTeX names". %package babel-scottish-doc Summary: Documentation for babel-scottish Version: svn30289.1.0g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-scottish-doc BuildArch: noarch AutoReqProv: No @@ -19687,7 +19688,7 @@ Provides: tex-babel-serbianc = %{tl_version} License: LPPL 1.3 Summary: Babel module to support Serbian Cyrillic Version: svn30348.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19705,7 +19706,7 @@ Cyrillic, in babel. %package babel-serbianc-doc Summary: Documentation for babel-serbianc Version: svn30348.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-serbianc-doc BuildArch: noarch AutoReqProv: No @@ -19718,7 +19719,7 @@ Provides: tex-babel-serbian = %{tl_version} License: LPPL Summary: babel-serbian package Version: svn30290.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19731,7 +19732,7 @@ babel-serbian package %package babel-serbian-doc Summary: Documentation for babel-serbian Version: svn30290.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-serbian-doc BuildArch: noarch AutoReqProv: No @@ -19744,7 +19745,7 @@ Provides: tex-babel-slovak = %{tl_version} License: LPPL 1.3 Summary: Babel support for typesetting Slovak Version: svn30292.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19760,7 +19761,7 @@ names. Shortcuts are also defined. %package babel-slovak-doc Summary: Documentation for babel-slovak Version: svn30292.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-slovak-doc BuildArch: noarch AutoReqProv: No @@ -19773,7 +19774,7 @@ Provides: tex-babel-slovenian = %{tl_version} License: LPPL 1.3 Summary: Babel support for typesetting Slovenian Version: svn30351.1.2i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19788,7 +19789,7 @@ as translations to Slovenian of standard "LaTeX names". %package babel-slovenian-doc Summary: Documentation for babel-slovenian Version: svn30351.1.2i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-slovenian-doc BuildArch: noarch AutoReqProv: No @@ -19801,7 +19802,7 @@ Provides: tex-babel-sorbian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Upper and Lower Sorbian Version: svn30294 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19818,7 +19819,7 @@ standard "LaTeX names". %package babel-sorbian-doc Summary: Documentation for babel-sorbian Version: svn30294 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-sorbian-doc BuildArch: noarch AutoReqProv: No @@ -19831,7 +19832,7 @@ Provides: tex-babel-spanglish = %{tl_version} License: LPPL 1.3 Summary: Simplified Spanish support for Babel Version: svn37629.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19852,7 +19853,7 @@ provided. %package babel-spanglish-doc Summary: Documentation for babel-spanglish Version: svn37629.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-spanglish-doc BuildArch: noarch AutoReqProv: No @@ -19865,7 +19866,7 @@ Provides: tex-babel-spanish = %{tl_version} License: LPPL Summary: Babel support for Spanish Version: svn39920 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19882,7 +19883,7 @@ Spanish as written in Mexico. %package babel-spanish-doc Summary: Documentation for babel-spanish Version: svn39920 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-spanish-doc BuildArch: noarch AutoReqProv: No @@ -19895,7 +19896,7 @@ Provides: tex-babel-swedish = %{tl_version} License: LPPL 1.3 Summary: Babel support for typesetting Swedish Version: svn30296.2.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19908,7 +19909,7 @@ The package provides the language definition file for Swedish. %package babel-swedish-doc Summary: Documentation for babel-swedish Version: svn30296.2.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-swedish-doc BuildArch: noarch AutoReqProv: No @@ -19921,7 +19922,7 @@ Provides: tex-babel-thai = %{tl_version} License: LPPL 1.3 Summary: Support for Thai within babel Version: svn30564.1.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -19937,7 +19938,7 @@ the babel system. %package babel-thai-doc Summary: Documentation for babel-thai Version: svn30564.1.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-thai-doc BuildArch: noarch AutoReqProv: No @@ -19950,7 +19951,7 @@ Provides: tex-babel = %{tl_version} License: LPPL 1.3 Summary: Multilingual support for Plain TeX or LaTeX Version: svn40706 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20030,7 +20031,7 @@ are advised to use polyglossia rather than Babel. %package babel-doc Summary: Documentation for babel Version: svn40706 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-doc BuildArch: noarch AutoReqProv: No @@ -20043,7 +20044,7 @@ Provides: tex-babel-turkish = %{tl_version} License: LPPL 1.3 Summary: Babel support for Turkish documents Version: svn33284.1.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20057,7 +20058,7 @@ language. %package babel-turkish-doc Summary: Documentation for babel-turkish Version: svn33284.1.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-turkish-doc BuildArch: noarch AutoReqProv: No @@ -20073,7 +20074,7 @@ Provides: tex-babel-ukraineb = %{tl_version} License: LPPL Summary: babel-ukrainian package Version: svn40730 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20086,7 +20087,7 @@ babel-ukrainian package %package babel-ukrainian-doc Summary: Documentation for babel-ukrainian Version: svn40730 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-ukrainian-doc = %{tl_version} Obsoletes: babel-ukraineb-doc < 2016 Provides: tex-babel-ukraineb-doc @@ -20101,7 +20102,7 @@ Provides: tex-babel-vietnamese = %{tl_version} License: LPPL 1.3 Summary: Babel support for typesetting Vietnamese Version: svn39246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20120,7 +20121,7 @@ Provides: tex-babel-welsh = %{tl_version} License: LPPL 1.3 Summary: Babel support for Welsh Version: svn38372.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20135,7 +20136,7 @@ LaTeX file.) %package babel-welsh-doc Summary: Documentation for babel-welsh Version: svn38372.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-babel-welsh-doc BuildArch: noarch AutoReqProv: No @@ -20148,7 +20149,7 @@ Provides: tex-background = %{tl_version} License: LPPL Summary: Placement of background material on pages of a document Version: svn33100.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20170,7 +20171,7 @@ the everypage package, and uses pgf/tikz for attribute control. %package background-doc Summary: Documentation for background Version: svn33100.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-background-doc BuildArch: noarch AutoReqProv: No @@ -20183,7 +20184,7 @@ Provides: tex-backnaur = %{tl_version} License: LPPL 1.3 Summary: Typeset Backus Naur Form definitions Version: svn28513.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20198,7 +20199,7 @@ It can also print in-line BNF expressions using math mode. %package backnaur-doc Summary: Documentation for backnaur Version: svn28513.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-backnaur-doc BuildArch: noarch AutoReqProv: No @@ -20211,7 +20212,7 @@ Provides: tex-bagpipe = %{tl_version} License: LPPL 1.3 Summary: Support for typesetting bagpipe music Version: svn34393.3.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20226,7 +20227,7 @@ simplify this task. %package bagpipe-doc Summary: Documentation for bagpipe Version: svn34393.3.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bagpipe-doc BuildArch: noarch AutoReqProv: No @@ -20239,7 +20240,7 @@ Provides: tex-bangorcsthesis = %{tl_version} License: LPPL 1.3 Summary: Typeset a thesis at Bangor University Version: svn39451 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20289,7 +20290,7 @@ process of producing a thesis. %package bangorcsthesis-doc Summary: Documentation for bangorcsthesis Version: svn39451 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bangorcsthesis-doc BuildArch: noarch AutoReqProv: No @@ -20302,7 +20303,7 @@ Provides: tex-bangtex = %{tl_version} License: LPPL Summary: Writing Bangla and Assamese with LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20328,7 +20329,7 @@ with LaTeX, and Metafont sources for fonts. %package bangtex-doc Summary: Documentation for bangtex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bangtex-doc BuildArch: noarch AutoReqProv: No @@ -20341,7 +20342,7 @@ Provides: tex-bankstatement = %{tl_version} License: LPPL Summary: A LaTeX class for bank statements based on csv data Version: svn38857 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20379,7 +20380,7 @@ adjust the terminology to suit local needs. %package bankstatement-doc Summary: Documentation for bankstatement Version: svn38857 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bankstatement-doc BuildArch: noarch AutoReqProv: No @@ -20392,7 +20393,7 @@ Provides: tex-barcodes = %{tl_version} License: LPPL Summary: Fonts for making barcodes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20412,7 +20413,7 @@ Perl script is needed. %package barcodes-doc Summary: Documentation for barcodes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-barcodes-doc BuildArch: noarch AutoReqProv: No @@ -20425,7 +20426,7 @@ Provides: tex-bardiag = %{tl_version} License: LPPL Summary: LateX package for drawing bar diagrams Version: svn22013.0.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20450,7 +20451,7 @@ inspired by and based on PSTricks. %package bardiag-doc Summary: Documentation for bardiag Version: svn22013.0.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bardiag-doc BuildArch: noarch AutoReqProv: No @@ -20463,7 +20464,7 @@ Provides: tex-barr = %{tl_version} License: LPPL Summary: Diagram macros by Michael Barr Version: svn38479 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20479,7 +20480,7 @@ xypic bundle. %package barr-doc Summary: Documentation for barr Version: svn38479 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-barr-doc BuildArch: noarch AutoReqProv: No @@ -20492,7 +20493,7 @@ Provides: tex-bartel-chess-fonts = %{tl_version} License: GPL+ Summary: A set of fonts supporting chess diagrams Version: svn20619.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20526,7 +20527,7 @@ The fonts are provided as Metafont source. %package bartel-chess-fonts-doc Summary: Documentation for bartel-chess-fonts Version: svn20619.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bartel-chess-fonts-doc BuildArch: noarch AutoReqProv: No @@ -20539,7 +20540,7 @@ Provides: tex-bashful = %{tl_version} License: LPPL 1.3 Summary: Invoke bash commands from within LaTeX Version: svn25597.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20564,7 +20565,7 @@ processing your document. %package bashful-doc Summary: Documentation for bashful Version: svn25597.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bashful-doc BuildArch: noarch AutoReqProv: No @@ -20577,7 +20578,7 @@ Provides: tex-basicarith = %{tl_version} License: LPPL 1.3 Summary: Macros for typesetting basic arithmetic Version: svn35460.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20596,7 +20597,7 @@ and lengths described in the documentation. %package basicarith-doc Summary: Documentation for basicarith Version: svn35460.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-basicarith-doc BuildArch: noarch AutoReqProv: No @@ -20609,7 +20610,7 @@ Provides: tex-baskervald = %{tl_version} License: LPPL Summary: Baskervald ADF fonts collection with TeX/LaTeX support Version: svn19490.1.016 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -20697,7 +20698,7 @@ to these features in LaTeX. %package baskervald-doc Summary: Documentation for baskervald Version: svn19490.1.016 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-baskervald-doc BuildArch: noarch AutoReqProv: No @@ -20710,7 +20711,7 @@ Provides: tex-baskervaldx = %{tl_version} License: GPL+ Summary: Extension and modification of BaskervaldADF with LaTeX support Version: svn36734.1.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21193,7 +21194,7 @@ PostScript fonts, as well as LaTeX support files. %package baskervaldx-doc Summary: Documentation for baskervaldx Version: svn36734.1.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-baskervaldx-doc BuildArch: noarch AutoReqProv: No @@ -21206,7 +21207,7 @@ Provides: tex-basque-book = %{tl_version} License: LPPL 1.2 Summary: Class for book-type documents written in Basque Version: svn32924.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21223,7 +21224,7 @@ writing books, PhD and Master Theses, etc., in Basque. %package basque-book-doc Summary: Documentation for basque-book Version: svn32924.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-basque-book-doc BuildArch: noarch AutoReqProv: No @@ -21236,7 +21237,7 @@ Provides: tex-basque-date = %{tl_version} License: LPPL 1.2 Summary: Print the date in Basque Version: svn26477.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21253,7 +21254,7 @@ in Basque. %package basque-date-doc Summary: Documentation for basque-date Version: svn26477.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-basque-date-doc BuildArch: noarch AutoReqProv: No @@ -21266,7 +21267,7 @@ Provides: tex-bbcard = %{tl_version} License: Public Domain Summary: Bullshit bingo, calendar and baseball-score cards Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21279,7 +21280,7 @@ MetaPost. %package bbcard-doc Summary: Documentation for bbcard Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbcard-doc BuildArch: noarch AutoReqProv: No @@ -21292,7 +21293,7 @@ Provides: tex-bbding = %{tl_version} License: LPPL Summary: A symbol (dingbat) font and LaTeX macros for its use Version: svn17186.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21310,7 +21311,7 @@ the fonts is available in the niceframe fonts bundle. %package bbding-doc Summary: Documentation for bbding Version: svn17186.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbding-doc BuildArch: noarch AutoReqProv: No @@ -21323,7 +21324,7 @@ Provides: tex-bbm-macros = %{tl_version} License: LPPL Summary: LaTeX support for "blackboard-style" cm fonts Version: svn17224.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21342,7 +21343,7 @@ math alphabets for using the fonts within maths. %package bbm-macros-doc Summary: Documentation for bbm-macros Version: svn17224.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbm-macros-doc BuildArch: noarch AutoReqProv: No @@ -21355,7 +21356,7 @@ Provides: tex-bbm = %{tl_version} License: Copyright only Summary: "Blackboard-style" cm fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21414,7 +21415,7 @@ fonts appears in the blackboard bold sampler. %package bbm-doc Summary: Documentation for bbm Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbm-doc BuildArch: noarch AutoReqProv: No @@ -21427,7 +21428,7 @@ Provides: tex-bbold = %{tl_version} License: BSD Summary: Sans serif blackboard bold Version: svn17187.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21454,7 +21455,7 @@ for a feel for the font's appearance. %package bbold-doc Summary: Documentation for bbold Version: svn17187.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbold-doc BuildArch: noarch AutoReqProv: No @@ -21467,7 +21468,7 @@ Provides: tex-bbold-type1 = %{tl_version} License: Copyright only Summary: An Adobe Type 1 format version of the bbold font Version: svn33143.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21492,7 +21493,7 @@ Y&Y closed its doors as a business. %package bbold-type1-doc Summary: Documentation for bbold-type1 Version: svn33143.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bbold-type1-doc BuildArch: noarch AutoReqProv: No @@ -21505,7 +21506,7 @@ Provides: tex-bchart = %{tl_version} License: MIT Summary: Draw simple bar charts in LaTeX Version: svn27496.0.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21520,7 +21521,7 @@ aesthetics. %package bchart-doc Summary: Documentation for bchart Version: svn27496.0.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bchart-doc BuildArch: noarch AutoReqProv: No @@ -21533,7 +21534,7 @@ Provides: tex-bclogo = %{tl_version} License: LPPL Summary: Creating colourful boxes with logos Version: svn39364 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21557,7 +21558,7 @@ engine. %package bclogo-doc Summary: Documentation for bclogo Version: svn39364 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bclogo-doc BuildArch: noarch AutoReqProv: No @@ -21570,7 +21571,7 @@ Provides: tex-beamer2thesis = %{tl_version} License: LPPL Summary: Thesis presentations using beamer Version: svn27539.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21597,7 +21598,7 @@ The package specifies a beamer theme for presenting a thesis. %package beamer2thesis-doc Summary: Documentation for beamer2thesis Version: svn27539.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamer2thesis-doc BuildArch: noarch AutoReqProv: No @@ -21610,7 +21611,7 @@ Provides: tex-beameraudience = %{tl_version} License: LPPL Summary: Assembling beamer frames according to audience Version: svn23427.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21629,7 +21630,7 @@ according to a logical structure in the LaTeX source. %package beameraudience-doc Summary: Documentation for beameraudience Version: svn23427.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beameraudience-doc BuildArch: noarch AutoReqProv: No @@ -21642,7 +21643,7 @@ Provides: tex-beamerdarkthemes = %{tl_version} License: LPPL 1.3 Summary: Dark color themes for beamer Version: svn35101.0.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21661,7 +21662,7 @@ red and magpie for blue. %package beamerdarkthemes-doc Summary: Documentation for beamerdarkthemes Version: svn35101.0.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamerdarkthemes-doc BuildArch: noarch AutoReqProv: No @@ -21672,7 +21673,7 @@ Documentation for beamerdarkthemes %package beamer-FUBerlin-doc Summary: Documentation for beamer-FUBerlin Version: svn38159.0.02b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamer-FUBerlin-doc Provides: tex-beamer-FUBerlin Provides: texlive-beamer-FUBerlin @@ -21687,7 +21688,7 @@ Provides: tex-beamerposter = %{tl_version} License: LPPL Summary: Extend beamer and a0poster for custom sized posters Version: svn37009.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21714,7 +21715,7 @@ landscape; a 'debug mode' is provided. %package beamerposter-doc Summary: Documentation for beamerposter Version: svn37009.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamerposter-doc BuildArch: noarch AutoReqProv: No @@ -21727,7 +21728,7 @@ Provides: tex-beamersubframe = %{tl_version} License: LPPL Summary: Reorder frames in the PDF file Version: svn23510.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21744,7 +21745,7 @@ describes the package as "experimental". %package beamersubframe-doc Summary: Documentation for beamersubframe Version: svn23510.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamersubframe-doc BuildArch: noarch AutoReqProv: No @@ -21757,7 +21758,7 @@ Provides: tex-beamerthemejltree = %{tl_version} License: GPL+ Summary: Contributed beamer theme Version: svn21977.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21772,7 +21773,7 @@ Provides: tex-beamerthemenirma = %{tl_version} License: LPPL Summary: A Beamer theme for academic presentations Version: svn20765.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21789,7 +21790,7 @@ presentations. %package beamerthemenirma-doc Summary: Documentation for beamerthemenirma Version: svn20765.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamerthemenirma-doc BuildArch: noarch AutoReqProv: No @@ -21805,7 +21806,7 @@ Obsoletes: beamerthemephnompenh < 2016 License: LPPL Summary: beamertheme-phnompenh package Version: svn39100 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21818,7 +21819,7 @@ beamertheme-phnompenh package %package beamertheme-phnompenh-doc Summary: Documentation for beamertheme-phnompenh Version: svn39100 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamerthemephnompenh-doc Provides: tex-beamertheme-phnompenh-doc Provides: beamerthemephnompenh-doc = %{tl_version} @@ -21834,7 +21835,7 @@ Provides: tex-beamertheme-upenn-bc = %{tl_version} License: LPPL Summary: Beamer themies for Boston College and the University of Pennsylvania Version: svn29937.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -21855,7 +21856,7 @@ for, these color themes. I give no warranty for the code. %package beamertheme-upenn-bc-doc Summary: Documentation for beamertheme-upenn-bc Version: svn29937.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamertheme-upenn-bc-doc BuildArch: noarch AutoReqProv: No @@ -21868,7 +21869,7 @@ Provides: tex-beamer = %{tl_version} License: LPPL 1.3 Summary: A LaTeX class for producing presentations and slides Version: svn36461.3.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22043,7 +22044,7 @@ other language environments. %package beamer-doc Summary: Documentation for beamer Version: svn36461.3.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamer-doc BuildArch: noarch AutoReqProv: No @@ -22058,7 +22059,7 @@ Provides: tex-pgf = %{tl_version} License: LPPL 1.3 Summary: Create PostScript and PDF graphics in TeX Version: svn40966 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22348,7 +22349,7 @@ output. %package pgf-doc Summary: Documentation for pgf Version: svn40966 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgf-doc BuildArch: noarch AutoReqProv: No @@ -22362,7 +22363,7 @@ Provides: tex-xkeyval = %{tl_version} License: LPPL 1.3 Summary: Extension of the keyval package Version: svn35741.2.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22399,7 +22400,7 @@ keys. %package xkeyval-doc Summary: Documentation for xkeyval Version: svn35741.2.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xkeyval-doc BuildArch: noarch AutoReqProv: No @@ -22412,7 +22413,7 @@ Provides: tex-xcolor = %{tl_version} License: LPPL Summary: Driver-independent color extensions for LaTeX and pdfLaTeX Version: svn41044 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22437,7 +22438,7 @@ lines) in tables. Colors can be mixed like %package xcolor-doc Summary: Documentation for xcolor Version: svn41044 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcolor-doc BuildArch: noarch AutoReqProv: No @@ -22448,7 +22449,7 @@ Documentation for xcolor %package beamer-tut-pt-doc Summary: Documentation for beamer-tut-pt Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beamer-tut-pt-doc BuildArch: noarch AutoReqProv: No @@ -22461,7 +22462,7 @@ Provides: tex-beebe = %{tl_version} License: LPPL Summary: beebe package Version: svn41424 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22478,7 +22479,7 @@ Provides: tex-begingreek = %{tl_version} License: LPPL 1.3 Summary: Greek environment to be used with pdflatex only Version: svn36294.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22494,7 +22495,7 @@ similar action for shorter texts. %package begingreek-doc Summary: Documentation for begingreek Version: svn36294.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-begingreek-doc BuildArch: noarch AutoReqProv: No @@ -22507,7 +22508,7 @@ Provides: tex-begriff = %{tl_version} License: GPL+ Summary: Typeset Begriffschrift Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22521,7 +22522,7 @@ Begriffschrift. %package begriff-doc Summary: Documentation for begriff Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-begriff-doc BuildArch: noarch AutoReqProv: No @@ -22534,7 +22535,7 @@ Provides: tex-belleek = %{tl_version} License: Public Domain Summary: Free replacement for basic MathTime fonts Version: svn18651.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22557,7 +22558,7 @@ currently available commercial bundle). %package belleek-doc Summary: Documentation for belleek Version: svn18651.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-belleek-doc BuildArch: noarch AutoReqProv: No @@ -22570,7 +22571,7 @@ Provides: tex-bengali = %{tl_version} License: LPPL Summary: Support for the Bengali language Version: svn20987.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22591,7 +22592,7 @@ Devanagari. The package also supports Assamese. %package bengali-doc Summary: Documentation for bengali Version: svn20987.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bengali-doc BuildArch: noarch AutoReqProv: No @@ -22604,7 +22605,7 @@ Provides: tex-bera = %{tl_version} License: Bitstream vera Summary: Bera fonts Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22718,7 +22719,7 @@ repackaging, for use with TeX, of the Bitstream Vera family. %package bera-doc Summary: Documentation for bera Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bera-doc BuildArch: noarch AutoReqProv: No @@ -22731,7 +22732,7 @@ Provides: tex-berenisadf = %{tl_version} License: GPLv2+ and LPPL Summary: Berenis ADF fonts and TeX/LaTeX support Version: svn32215.1.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -22990,7 +22991,7 @@ and TS1 encodings. %package berenisadf-doc Summary: Documentation for berenisadf Version: svn32215.1.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-berenisadf-doc BuildArch: noarch AutoReqProv: No @@ -23003,7 +23004,7 @@ Provides: tex-besjournals = %{tl_version} License: LPPL Summary: besjournals package Version: svn35428.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23015,7 +23016,7 @@ besjournals package %package besjournals-doc Summary: Documentation for besjournals Version: svn35428.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-besjournals-doc BuildArch: noarch AutoReqProv: No @@ -23028,7 +23029,7 @@ Provides: tex-betababel = %{tl_version} License: LPPL Summary: Insert ancient greek text coded in Beta Code Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23048,7 +23049,7 @@ example -- without modification. %package betababel-doc Summary: Documentation for betababel Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-betababel-doc BuildArch: noarch AutoReqProv: No @@ -23061,7 +23062,7 @@ Provides: tex-beton = %{tl_version} License: LPPL Summary: Use Concrete fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23075,7 +23076,7 @@ Don Knuth and used in his book "Concrete Mathematics". %package beton-doc Summary: Documentation for beton Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-beton-doc BuildArch: noarch AutoReqProv: No @@ -23088,7 +23089,7 @@ Provides: tex-bewerbung = %{tl_version} License: LPPL 1.3 Summary: Typesetting job application Version: svn37880.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23134,7 +23135,7 @@ application can be edited in a simple csv file. %package bewerbung-doc Summary: Documentation for bewerbung Version: svn37880.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bewerbung-doc BuildArch: noarch AutoReqProv: No @@ -23147,7 +23148,7 @@ Provides: tex-bez123 = %{tl_version} License: LPPL 1.3 Summary: Support for Bezier curves Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23165,7 +23166,7 @@ multiplication of a length without numerical overflow. %package bez123-doc Summary: Documentation for bez123 Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bez123-doc BuildArch: noarch AutoReqProv: No @@ -23178,7 +23179,7 @@ Provides: tex-bezos = %{tl_version} License: LPPL Summary: Packages by Javier Bezos Version: svn25507.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23207,7 +23208,7 @@ fancy underlining. %package bezos-doc Summary: Documentation for bezos Version: svn25507.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bezos-doc BuildArch: noarch AutoReqProv: No @@ -23220,7 +23221,7 @@ Provides: tex-bgreek = %{tl_version} License: LPPL Summary: Using Beccari's fonts in betacode for classical Greek Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23534,7 +23535,7 @@ support macros for use with LaTeX. %package bgreek-doc Summary: Documentation for bgreek Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bgreek-doc BuildArch: noarch AutoReqProv: No @@ -23547,7 +23548,7 @@ Provides: tex-bgteubner = %{tl_version} License: LPPL Summary: Class for producing books for the publisher "Teubner Verlag" Version: svn25892.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23616,7 +23617,7 @@ families are supported: Times and European Computer Modern). %package bgteubner-doc Summary: Documentation for bgteubner Version: svn25892.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bgteubner-doc BuildArch: noarch AutoReqProv: No @@ -23629,7 +23630,7 @@ Provides: tex-bguq = %{tl_version} License: LPPL Summary: Improved quantifier stroke for Begriffsschrift packages Version: svn27401.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23681,7 +23682,7 @@ included as an example of implementation. %package bguq-doc Summary: Documentation for bguq Version: svn27401.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bguq-doc BuildArch: noarch AutoReqProv: No @@ -23694,7 +23695,7 @@ Provides: tex-bhcexam = %{tl_version} License: LPPL Summary: An exam class designed for Mathematics Teachers in China Version: svn39041 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23727,7 +23728,7 @@ for High School Mathematics Teachers in China. %package bhcexam-doc Summary: Documentation for bhcexam Version: svn39041 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bhcexam-doc BuildArch: noarch AutoReqProv: No @@ -23740,7 +23741,7 @@ Provides: tex-bibarts = %{tl_version} License: GPL+ Summary: "Arts"-style bibliographical information Version: svn40096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23757,7 +23758,7 @@ brief introduction in English, as a comment.) %package bibarts-doc Summary: Documentation for bibarts Version: svn40096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibarts-doc BuildArch: noarch AutoReqProv: No @@ -23770,7 +23771,7 @@ Provides: tex-bibexport = %{tl_version} License: LPPL 1.3 Summary: Extract a BibTeX file based on a .aux file Version: svn39928 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23788,7 +23789,7 @@ in ones like month names) and followig the cross-references. %package bibexport-doc Summary: Documentation for bibexport Version: svn39928 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibexport-doc BuildArch: noarch AutoReqProv: No @@ -23801,7 +23802,7 @@ Summary: Binaries for bibexport Version: svn16219.0 Requires: texlive-base Requires: texlive-bibexport -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description bibexport-bin @@ -23812,7 +23813,7 @@ Provides: tex-bib-fr = %{tl_version} License: LPPL Summary: French translation of classical BibTeX styles Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23827,7 +23828,7 @@ redefining FUNCTIONs named fr.*, at the beginning (lines 50- %package bib-fr-doc Summary: Documentation for bib-fr Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bib-fr-doc BuildArch: noarch AutoReqProv: No @@ -23840,7 +23841,7 @@ Provides: tex-bibhtml = %{tl_version} License: GPL+ Summary: BibTeX support for HTML files Version: svn31607.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23860,7 +23861,7 @@ derived from abbrv.bst and unsrt.bst (i.e., eight in total). %package bibhtml-doc Summary: Documentation for bibhtml Version: svn31607.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibhtml-doc BuildArch: noarch AutoReqProv: No @@ -23873,7 +23874,7 @@ Provides: tex-biblatex-anonymous = %{tl_version} License: LPPL 1.3 Summary: A tool to manage anonymous work with biblatex Version: svn42152 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23888,7 +23889,7 @@ classical philology. %package biblatex-anonymous-doc Summary: Documentation for biblatex-anonymous Version: svn42152 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-anonymous-doc BuildArch: noarch AutoReqProv: No @@ -23901,7 +23902,7 @@ Provides: tex-biblatex-apa = %{tl_version} License: LPPL Summary: Biblatex citation and reference style for APA Version: svn42091 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23926,7 +23927,7 @@ of biblatex v2.0 and biber v1.0 (at least). %package biblatex-apa-doc Summary: Documentation for biblatex-apa Version: svn42091 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-apa-doc BuildArch: noarch AutoReqProv: No @@ -23939,7 +23940,7 @@ Provides: tex-biblatex-bookinarticle = %{tl_version} License: LPPL 1.3 Summary: Manage book edited in article Version: svn40323 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23955,7 +23956,7 @@ in a @article or in a @incollection. %package biblatex-bookinarticle-doc Summary: Documentation for biblatex-bookinarticle Version: svn40323 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-bookinarticle-doc BuildArch: noarch AutoReqProv: No @@ -23968,7 +23969,7 @@ Provides: tex-biblatex-bwl = %{tl_version} License: LPPL 1.3 Summary: Biblatex citations for FU Berlin Version: svn26556.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -23986,7 +23987,7 @@ Administration Department of the Free University of Berlin. %package biblatex-bwl-doc Summary: Documentation for biblatex-bwl Version: svn26556.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-bwl-doc BuildArch: noarch AutoReqProv: No @@ -23999,7 +24000,7 @@ Provides: tex-biblatex-caspervector = %{tl_version} License: LPPL 1.3 Summary: A simple citation style for Chinese users Version: svn41406 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24019,7 +24020,7 @@ biblatex. %package biblatex-caspervector-doc Summary: Documentation for biblatex-caspervector Version: svn41406 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-caspervector-doc BuildArch: noarch AutoReqProv: No @@ -24032,7 +24033,7 @@ Provides: tex-biblatex-chem = %{tl_version} License: LPPL 1.3 Summary: A set of biblatex implementations of chemistry-related bibliography styles Version: svn42065 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24058,7 +24059,7 @@ journals). A comprehensive set of examples of use is included. %package biblatex-chem-doc Summary: Documentation for biblatex-chem Version: svn42065 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-chem-doc BuildArch: noarch AutoReqProv: No @@ -24071,7 +24072,7 @@ Provides: tex-biblatex-chicago = %{tl_version} License: LPPL 1.3 Summary: Chicago style files for biblatex Version: svn41351 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24101,7 +24102,7 @@ package was previously known as biblatex-chicago-notes-df. %package biblatex-chicago-doc Summary: Documentation for biblatex-chicago Version: svn41351 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-chicago-doc BuildArch: noarch AutoReqProv: No @@ -24114,7 +24115,7 @@ Provides: tex-biblatex-dw = %{tl_version} License: LPPL Summary: Humanities styles for biblatex Version: svn31752.1.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24144,7 +24145,7 @@ werden. %package biblatex-dw-doc Summary: Documentation for biblatex-dw Version: svn31752.1.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-dw-doc BuildArch: noarch AutoReqProv: No @@ -24157,7 +24158,7 @@ Provides: tex-biblatex-fiwi = %{tl_version} License: LPPL 1.3 Summary: Biblatex styles for use in German humanities Version: svn42069 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24182,7 +24183,7 @@ in German. %package biblatex-fiwi-doc Summary: Documentation for biblatex-fiwi Version: svn42069 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-fiwi-doc BuildArch: noarch AutoReqProv: No @@ -24195,7 +24196,7 @@ Provides: tex-biblatex-gost = %{tl_version} License: LPPL 1.3 Summary: Biblatex support for GOST standard bibliographies Version: svn42096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24237,7 +24238,7 @@ style GOST 7.0.5-2008 %package biblatex-gost-doc Summary: Documentation for biblatex-gost Version: svn42096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-gost-doc BuildArch: noarch AutoReqProv: No @@ -24250,7 +24251,7 @@ Provides: tex-biblatex-historian = %{tl_version} License: LPPL Summary: A Biblatex style Version: svn19787.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24266,7 +24267,7 @@ Chicago). %package biblatex-historian-doc Summary: Documentation for biblatex-historian Version: svn19787.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-historian-doc BuildArch: noarch AutoReqProv: No @@ -24279,7 +24280,7 @@ Provides: tex-biblatex-ieee = %{tl_version} License: LPPL 1.3 Summary: Ieee style files for biblatex Version: svn41962 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24303,7 +24304,7 @@ provided to show how to format input for the style. %package biblatex-ieee-doc Summary: Documentation for biblatex-ieee Version: svn41962 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-ieee-doc BuildArch: noarch AutoReqProv: No @@ -24316,7 +24317,7 @@ Provides: tex-biblatex-juradiss = %{tl_version} License: LPPL Summary: Biblatex stylefiles for German law thesis Version: svn29252.0.1g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24334,7 +24335,7 @@ biblatex-dw and uses biber. %package biblatex-juradiss-doc Summary: Documentation for biblatex-juradiss Version: svn29252.0.1g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-juradiss-doc BuildArch: noarch AutoReqProv: No @@ -24347,7 +24348,7 @@ Provides: tex-biblatex-luh-ipw = %{tl_version} License: LPPL 1.3 Summary: Biblatex styles for social sciences Version: svn32180.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24374,7 +24375,7 @@ Institute of Political Science). The bundle depends on biblatex %package biblatex-luh-ipw-doc Summary: Documentation for biblatex-luh-ipw Version: svn32180.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-luh-ipw-doc BuildArch: noarch AutoReqProv: No @@ -24387,7 +24388,7 @@ Provides: tex-biblatex-manuscripts-philology = %{tl_version} License: LPPL 1.3 Summary: Manage classical manuscripts with biblatex Version: svn42119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24405,7 +24406,7 @@ critical edition. %package biblatex-manuscripts-philology-doc Summary: Documentation for biblatex-manuscripts-philology Version: svn42119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-manuscripts-philology-doc BuildArch: noarch AutoReqProv: No @@ -24418,7 +24419,7 @@ Provides: tex-biblatex-mla = %{tl_version} License: LPPL Summary: MLA style files for biblatex Version: svn41669 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24434,7 +24435,7 @@ format specified by the MLA handbook. %package biblatex-mla-doc Summary: Documentation for biblatex-mla Version: svn41669 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-mla-doc BuildArch: noarch AutoReqProv: No @@ -24447,7 +24448,7 @@ Provides: tex-biblatex-multiple-dm = %{tl_version} License: LPPL 1.3 Summary: Load multiple datamodels in biblatex Version: svn37081.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24464,7 +24465,7 @@ models from multiple sources. %package biblatex-multiple-dm-doc Summary: Documentation for biblatex-multiple-dm Version: svn37081.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-multiple-dm-doc BuildArch: noarch AutoReqProv: No @@ -24477,7 +24478,7 @@ Provides: tex-biblatex-musuos = %{tl_version} License: LPPL Summary: A biblatex style for citations in musuos.cls Version: svn24097.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24494,7 +24495,7 @@ should be usable with other classes, too. %package biblatex-musuos-doc Summary: Documentation for biblatex-musuos Version: svn24097.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-musuos-doc BuildArch: noarch AutoReqProv: No @@ -24507,7 +24508,7 @@ Provides: tex-biblatex-nature = %{tl_version} License: LPPL Summary: Biblatex support for Nature Version: svn42146 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24524,7 +24525,7 @@ when preparing papers for submission to the journal Nature. %package biblatex-nature-doc Summary: Documentation for biblatex-nature Version: svn42146 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-nature-doc BuildArch: noarch AutoReqProv: No @@ -24537,7 +24538,7 @@ Provides: tex-biblatex-nejm = %{tl_version} License: LPPL 1.3 Summary: Biblatex style for the New England Journal of Medicine (NEJM) Version: svn24011.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24554,7 +24555,7 @@ England Journal of Medicine (NEJM). %package biblatex-nejm-doc Summary: Documentation for biblatex-nejm Version: svn24011.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-nejm-doc BuildArch: noarch AutoReqProv: No @@ -24567,7 +24568,7 @@ Provides: tex-biblatex-opcit-booktitle = %{tl_version} License: LPPL 1.3 Summary: Use op. cit. for the booktitle of a subentry Version: svn42071 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24588,7 +24589,7 @@ in Booktitle, op. cit, pages. %package biblatex-opcit-booktitle-doc Summary: Documentation for biblatex-opcit-booktitle Version: svn42071 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-opcit-booktitle-doc BuildArch: noarch AutoReqProv: No @@ -24601,7 +24602,7 @@ Provides: tex-biblatex-philosophy = %{tl_version} License: LPPL 1.3 Summary: Styles for using biblatex for work in philosophy Version: svn41482 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24634,7 +24635,7 @@ redefinitions. %package biblatex-philosophy-doc Summary: Documentation for biblatex-philosophy Version: svn41482 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-philosophy-doc BuildArch: noarch AutoReqProv: No @@ -24647,7 +24648,7 @@ Provides: tex-biblatex-phys = %{tl_version} License: LPPL 1.3 Summary: A biblatex implementation of the AIP and APS bibliography style Version: svn41922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24670,7 +24671,7 @@ variations between the AIP and APS bibliography styles. %package biblatex-phys-doc Summary: Documentation for biblatex-phys Version: svn41922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-phys-doc BuildArch: noarch AutoReqProv: No @@ -24683,7 +24684,7 @@ Provides: tex-biblatex-publist = %{tl_version} License: LPPL 1.3 Summary: BibLaTeX bibliography support for publication lists Version: svn41812 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24703,7 +24704,7 @@ author's own name from author or editor data. %package biblatex-publist-doc Summary: Documentation for biblatex-publist Version: svn41812 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-publist-doc BuildArch: noarch AutoReqProv: No @@ -24716,7 +24717,7 @@ Provides: tex-biblatex-realauthor = %{tl_version} License: LPPL 1.3 Summary: Indicate the real author of a work Version: svn42072 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24732,7 +24733,7 @@ pseudepigraphic name. %package biblatex-realauthor-doc Summary: Documentation for biblatex-realauthor Version: svn42072 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-realauthor-doc BuildArch: noarch AutoReqProv: No @@ -24745,7 +24746,7 @@ Provides: tex-biblatex-science = %{tl_version} License: LPPL Summary: Biblatex implementation of the Science bibliography style Version: svn42147 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24762,7 +24763,7 @@ when preparing papers for submission to the journal Science. %package biblatex-science-doc Summary: Documentation for biblatex-science Version: svn42147 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-science-doc BuildArch: noarch AutoReqProv: No @@ -24775,7 +24776,7 @@ Provides: tex-biblatex-source-division = %{tl_version} License: LPPL 1.3 Summary: References by "division" in classical sources Version: svn41675 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24796,7 +24797,7 @@ square brackets may include the "division" specification, as in %package biblatex-source-division-doc Summary: Documentation for biblatex-source-division Version: svn41675 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-source-division-doc BuildArch: noarch AutoReqProv: No @@ -24809,7 +24810,7 @@ Provides: tex-biblatex-subseries = %{tl_version} License: LPPL 1.3 Summary: Manages subseries with biblatex Version: svn41358 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24828,7 +24829,7 @@ fields to manage such system. %package biblatex-subseries-doc Summary: Documentation for biblatex-subseries Version: svn41358 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-subseries-doc BuildArch: noarch AutoReqProv: No @@ -24841,7 +24842,7 @@ Provides: tex-biblatex-swiss-legal = %{tl_version} License: LPPL 1.3 Summary: Bibliography and citation styles following Swiss legal practice Version: svn32750.1.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24867,7 +24868,7 @@ German documents. %package biblatex-swiss-legal-doc Summary: Documentation for biblatex-swiss-legal Version: svn32750.1.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-swiss-legal-doc BuildArch: noarch AutoReqProv: No @@ -24880,7 +24881,7 @@ Provides: tex-biblatex = %{tl_version} License: LPPL Summary: Bibliographies in LaTeX using BibTeX for sorting only Version: svn42092 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -24994,7 +24995,7 @@ can interface with the babel. %package biblatex-doc Summary: Documentation for biblatex Version: svn42092 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-doc BuildArch: noarch AutoReqProv: No @@ -25007,7 +25008,7 @@ Provides: tex-biblatex-trad = %{tl_version} License: LPPL Summary: "Traditional" BibTeX styles with BibLaTeX Version: svn41656 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25033,7 +25034,7 @@ styles (plain, abbrev, unsrt and alpha) with BibLaTeX. %package biblatex-trad-doc Summary: Documentation for biblatex-trad Version: svn41656 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-trad-doc BuildArch: noarch AutoReqProv: No @@ -25046,7 +25047,7 @@ Provides: tex-biblatex-true-citepages-omit = %{tl_version} License: LPPL 1.3 Summary: Correction of some limitation of the citepages=omit option of biblatex styles Version: svn42120 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25063,7 +25064,7 @@ some text]{key}. The package corrects this problem. %package biblatex-true-citepages-omit-doc Summary: Documentation for biblatex-true-citepages-omit Version: svn42120 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblatex-true-citepages-omit-doc BuildArch: noarch AutoReqProv: No @@ -25076,7 +25077,7 @@ Provides: tex-bibleref-french = %{tl_version} License: LPPL 1.3 Summary: French translations for bibleref Version: svn35497.2.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25092,7 +25093,7 @@ conventions for use of bibleref in French. %package bibleref-french-doc Summary: Documentation for bibleref-french Version: svn35497.2.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-french-doc BuildArch: noarch AutoReqProv: No @@ -25105,7 +25106,7 @@ Provides: tex-bibleref-german = %{tl_version} License: LPPL 1.3 Summary: German adaptation of bibleref Version: svn21923.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25124,7 +25125,7 @@ supported. %package bibleref-german-doc Summary: Documentation for bibleref-german Version: svn21923.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-german-doc BuildArch: noarch AutoReqProv: No @@ -25137,7 +25138,7 @@ Provides: tex-bibleref-lds = %{tl_version} License: LPPL 1.3 Summary: Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints Version: svn25526.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25157,7 +25158,7 @@ package. %package bibleref-lds-doc Summary: Documentation for bibleref-lds Version: svn25526.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-lds-doc BuildArch: noarch AutoReqProv: No @@ -25170,7 +25171,7 @@ Provides: tex-bibleref-mouth = %{tl_version} License: LPPL 1.3 Summary: Consistent formatting of Bible references Version: svn25527.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25190,7 +25191,7 @@ to a \url command. %package bibleref-mouth-doc Summary: Documentation for bibleref-mouth Version: svn25527.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-mouth-doc BuildArch: noarch AutoReqProv: No @@ -25203,7 +25204,7 @@ Provides: tex-bibleref-parse = %{tl_version} License: LPPL 1.3 Summary: Specify Bible passages in human-readable format Version: svn22054.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25222,7 +25223,7 @@ functionality of the bibleref package. %package bibleref-parse-doc Summary: Documentation for bibleref-parse Version: svn22054.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-parse-doc BuildArch: noarch AutoReqProv: No @@ -25235,7 +25236,7 @@ Provides: tex-bibleref = %{tl_version} License: LPPL 1.3 Summary: Format bible citations Version: svn21145.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25253,7 +25254,7 @@ formats. %package bibleref-doc Summary: Documentation for bibleref Version: svn21145.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibleref-doc BuildArch: noarch AutoReqProv: No @@ -25266,7 +25267,7 @@ Provides: tex-biblist = %{tl_version} License: GPL+ Summary: Print a BibTeX database Version: svn17116.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25281,7 +25282,7 @@ associated with \nocite{*}. %package biblist-doc Summary: Documentation for biblist Version: svn17116.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biblist-doc BuildArch: noarch AutoReqProv: No @@ -25294,7 +25295,7 @@ Provides: tex-bibtex8 = %{tl_version} License: GPL+ Summary: A fully 8-bit adaptation of BibTeX 0.99 Version: svn29725.3.71 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25311,7 +25312,7 @@ configuration file. Various examples are included. %package bibtex8-doc Summary: Documentation for bibtex8 Version: svn29725.3.71 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibtex8-doc BuildArch: noarch AutoReqProv: No @@ -25324,7 +25325,7 @@ Summary: Binaries for bibtex8 Version: svn40473 Requires: texlive-base Requires: texlive-bibtex8 -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description bibtex8-bin @@ -25335,7 +25336,7 @@ Provides: tex-bibtex = %{tl_version} License: Knuth Summary: Process bibliographies for LaTeX, etc Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25361,7 +25362,7 @@ and biblatex, if at all possible. %package bibtex-doc Summary: Documentation for bibtex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibtex-doc BuildArch: noarch AutoReqProv: No @@ -25375,7 +25376,7 @@ Summary: Binaries for bibtex Version: svn40473 Requires: texlive-base Requires: texlive-bibtex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description bibtex-bin @@ -25386,7 +25387,7 @@ Provides: tex-bibtexu = %{tl_version} License: LPPL Summary: bibtexu package Version: svn29743.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25398,7 +25399,7 @@ bibtexu package %package bibtexu-doc Summary: Documentation for bibtexu Version: svn29743.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibtexu-doc BuildArch: noarch AutoReqProv: No @@ -25411,7 +25412,7 @@ Summary: Binaries for bibtexu Version: svn40473 Requires: texlive-base Requires: texlive-bibtexu -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description bibtexu-bin @@ -25422,7 +25423,7 @@ Provides: tex-bibtopicprefix = %{tl_version} License: LPPL Summary: Prefix references to bibliographies produced by bibtopic Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25439,7 +25440,7 @@ bibtopic package. %package bibtopicprefix-doc Summary: Documentation for bibtopicprefix Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibtopicprefix-doc BuildArch: noarch AutoReqProv: No @@ -25452,7 +25453,7 @@ Provides: tex-bibtopic = %{tl_version} License: GPL+ Summary: Include multiple bibliographies in a document Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25476,7 +25477,7 @@ or chapterbib. %package bibtopic-doc Summary: Documentation for bibtopic Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibtopic-doc BuildArch: noarch AutoReqProv: No @@ -25489,7 +25490,7 @@ Provides: tex-bibunits = %{tl_version} License: LPPL Summary: Multiple bibliographies in one document Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25510,7 +25511,7 @@ with the babel French option frenchb. %package bibunits-doc Summary: Documentation for bibunits Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bibunits-doc BuildArch: noarch AutoReqProv: No @@ -25523,7 +25524,7 @@ Provides: tex-bidi-atbegshi = %{tl_version} License: LPPL 1.3 Summary: Bidi-aware shipout macros Version: svn35154.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25541,7 +25542,7 @@ before the bidi package. %package bidi-atbegshi-doc Summary: Documentation for bidi-atbegshi Version: svn35154.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidi-atbegshi-doc BuildArch: noarch AutoReqProv: No @@ -25554,7 +25555,7 @@ Provides: tex-bidicontour = %{tl_version} License: LPPL 1.3 Summary: Bidi-aware coloured contour around text Version: svn34631.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25571,7 +25572,7 @@ the outline option of the package is used). %package bidicontour-doc Summary: Documentation for bidicontour Version: svn34631.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidicontour-doc BuildArch: noarch AutoReqProv: No @@ -25584,7 +25585,7 @@ Provides: tex-bidihl = %{tl_version} License: LPPL 1.3 Summary: Experimental bidi-aware text highlighting Version: svn37795.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25598,7 +25599,7 @@ Experimental bidi-aware text highlighting. %package bidihl-doc Summary: Documentation for bidihl Version: svn37795.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidihl-doc BuildArch: noarch AutoReqProv: No @@ -25611,7 +25612,7 @@ Provides: tex-bidipagegrid = %{tl_version} License: LPPL 1.3 Summary: Bidi-aware page grid in background Version: svn34632.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25627,7 +25628,7 @@ The package is based on pagegrid. %package bidipagegrid-doc Summary: Documentation for bidipagegrid Version: svn34632.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidipagegrid-doc BuildArch: noarch AutoReqProv: No @@ -25640,7 +25641,7 @@ Provides: tex-bidipresentation = %{tl_version} License: LPPL 1.3 Summary: Experimental bidi presentation Version: svn35267.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25665,7 +25666,7 @@ both right to left and left to right modes. %package bidipresentation-doc Summary: Documentation for bidipresentation Version: svn35267.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidipresentation-doc BuildArch: noarch AutoReqProv: No @@ -25678,7 +25679,7 @@ Provides: tex-bidishadowtext = %{tl_version} License: LPPL 1.3 Summary: Bidi-aware shadow text Version: svn34633.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25694,7 +25695,7 @@ support. %package bidishadowtext-doc Summary: Documentation for bidishadowtext Version: svn34633.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidishadowtext-doc BuildArch: noarch AutoReqProv: No @@ -25707,7 +25708,7 @@ Provides: tex-bidi = %{tl_version} License: LPPL 1.3 Summary: Bidirectional typesetting in plain TeX and LaTeX, using XeTeX engine Version: svn41411 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25871,7 +25872,7 @@ with many other commonly-used packages. %package bidi-doc Summary: Documentation for bidi Version: svn41411 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bidi-doc BuildArch: noarch AutoReqProv: No @@ -25884,7 +25885,7 @@ Provides: tex-bigfoot = %{tl_version} License: GPLv2+ Summary: Footnotes for critical editions Version: svn38248.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25912,7 +25913,7 @@ provides the perpage and suffix packages. %package bigfoot-doc Summary: Documentation for bigfoot Version: svn38248.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bigfoot-doc BuildArch: noarch AutoReqProv: No @@ -25925,7 +25926,7 @@ Provides: tex-bigints = %{tl_version} License: LPPL Summary: Writing big integrals Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25941,7 +25942,7 @@ matrix. %package bigints-doc Summary: Documentation for bigints Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bigints-doc BuildArch: noarch AutoReqProv: No @@ -25954,7 +25955,7 @@ Provides: tex-binomexp = %{tl_version} License: LPPL Summary: Calculate Pascal's triangle Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -25971,7 +25972,7 @@ or to print the rows inside an array or tabular. %package binomexp-doc Summary: Documentation for binomexp Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-binomexp-doc BuildArch: noarch AutoReqProv: No @@ -25984,7 +25985,7 @@ Provides: tex-biocon = %{tl_version} License: GPL+ Summary: Typesetting biological species names Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26008,7 +26009,7 @@ situations. %package biocon-doc Summary: Documentation for biocon Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-biocon-doc BuildArch: noarch AutoReqProv: No @@ -26021,7 +26022,7 @@ Provides: tex-bitelist = %{tl_version} License: LPPL 1.3 Summary: Split list, in TeX's mouth Version: svn25779.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26044,7 +26045,7 @@ outer braces. %package bitelist-doc Summary: Documentation for bitelist Version: svn25779.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bitelist-doc BuildArch: noarch AutoReqProv: No @@ -26057,7 +26058,7 @@ Provides: tex-bizcard = %{tl_version} License: GPL+ Summary: Typeset business cards Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26074,7 +26075,7 @@ Silvano Balemi. It produces cards at the normal US card size, %package bizcard-doc Summary: Documentation for bizcard Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bizcard-doc BuildArch: noarch AutoReqProv: No @@ -26087,7 +26088,7 @@ Provides: tex-blacklettert1 = %{tl_version} License: LPPL Summary: T1-encoded versions of Haralambous old German fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26112,7 +26113,7 @@ into the LaTeX font selection scheme. %package blacklettert1-doc Summary: Documentation for blacklettert1 Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blacklettert1-doc BuildArch: noarch AutoReqProv: No @@ -26125,7 +26126,7 @@ Provides: tex-blindtext = %{tl_version} License: LPPL Summary: Producing 'blind' text for testing Version: svn25039.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26145,7 +26146,7 @@ fuller lorem ipsum text, see the lipsum package). %package blindtext-doc Summary: Documentation for blindtext Version: svn25039.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blindtext-doc BuildArch: noarch AutoReqProv: No @@ -26158,7 +26159,7 @@ Provides: tex-blkarray = %{tl_version} License: LPPL Summary: Extended array and tabular Version: svn36406.0.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26179,7 +26180,7 @@ blockarray. %package blkarray-doc Summary: Documentation for blkarray Version: svn36406.0.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blkarray-doc BuildArch: noarch AutoReqProv: No @@ -26192,7 +26193,7 @@ Provides: tex-blochsphere = %{tl_version} License: LPPL 1.3 Summary: Draw pseudo-3D diagrams of Bloch spheres Version: svn38388 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26209,7 +26210,7 @@ by setting the environment option nested to true. %package blochsphere-doc Summary: Documentation for blochsphere Version: svn38388 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blochsphere-doc BuildArch: noarch AutoReqProv: No @@ -26222,7 +26223,7 @@ Provides: tex-blockdraw_mp = %{tl_version} License: LPPL Summary: Block diagrams and bond graphs, with MetaPost Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26236,7 +26237,7 @@ will be happy to have a library for the job.. %package blockdraw_mp-doc Summary: Documentation for blockdraw_mp Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blockdraw_mp-doc BuildArch: noarch AutoReqProv: No @@ -26249,7 +26250,7 @@ Provides: tex-block = %{tl_version} License: Public Domain Summary: A block letter style for the letter class Version: svn17209.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26266,7 +26267,7 @@ on the left margin. %package block-doc Summary: Documentation for block Version: svn17209.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-block-doc BuildArch: noarch AutoReqProv: No @@ -26279,7 +26280,7 @@ Provides: tex-bloques = %{tl_version} License: LPPL 1.3 Summary: Generate control diagrams Version: svn22490.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26293,7 +26294,7 @@ control diagrams (specially in power electronics). %package bloques-doc Summary: Documentation for bloques Version: svn22490.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bloques-doc BuildArch: noarch AutoReqProv: No @@ -26308,7 +26309,7 @@ Provides: tex-blowup = %{tl_version} License: LPPL Summary: Upscale or downscale all pages of a document Version: svn15878.0.1j -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26328,7 +26329,7 @@ more accurate and user-friendly. %package blowup-doc Summary: Documentation for blowup Version: svn15878.0.1j -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blowup-doc BuildArch: noarch AutoReqProv: No @@ -26343,7 +26344,7 @@ Provides: tex-blox = %{tl_version} License: LPPL Summary: Draw block diagrams, using TikZ Version: svn35014.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26361,7 +26362,7 @@ translation of the schemabloc package. %package blox-doc Summary: Documentation for blox Version: svn35014.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-blox-doc BuildArch: noarch AutoReqProv: No @@ -26374,7 +26375,7 @@ Provides: tex-bnumexpr = %{tl_version} License: LPPL 1.3 Summary: Extends eTeX's \numexpr...\relax construct to big integers Version: svn38638 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26393,7 +26394,7 @@ macros. %package bnumexpr-doc Summary: Documentation for bnumexpr Version: svn38638 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bnumexpr-doc BuildArch: noarch AutoReqProv: No @@ -26406,7 +26407,7 @@ Provides: tex-bodegraph = %{tl_version} License: LPPL Summary: Draw Bode, Nyquist and Black plots with gnuplot and TikZ Version: svn20047.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26424,7 +26425,7 @@ basic correctors are preprogrammed for use. %package bodegraph-doc Summary: Documentation for bodegraph Version: svn20047.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bodegraph-doc BuildArch: noarch AutoReqProv: No @@ -26437,7 +26438,7 @@ Provides: tex-bohr = %{tl_version} License: LPPL 1.3 Summary: Simple atom representation according to the Bohr model Version: svn37657.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26456,7 +26457,7 @@ symbols or element names and vice versa. %package bohr-doc Summary: Documentation for bohr Version: svn37657.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bohr-doc BuildArch: noarch AutoReqProv: No @@ -26469,7 +26470,7 @@ Provides: tex-boisik = %{tl_version} License: GPLv2+ Summary: A font inspired by Baskerville design Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26535,7 +26536,7 @@ use with OT1, IL2 and OM* encodings. %package boisik-doc Summary: Documentation for boisik Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boisik-doc BuildArch: noarch AutoReqProv: No @@ -26548,7 +26549,7 @@ Provides: tex-boites = %{tl_version} License: GPL+ Summary: Boxes that may break across pages Version: svn32235.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26565,7 +26566,7 @@ examples (shaded box, box with a wavy line on its side, etc). %package boites-doc Summary: Documentation for boites Version: svn32235.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boites-doc BuildArch: noarch AutoReqProv: No @@ -26578,7 +26579,7 @@ Provides: tex-bold-extra = %{tl_version} License: LPPL Summary: Use bold small caps and typewriter fonts Version: svn17076.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26594,7 +26595,7 @@ required is selected by a package option. %package bold-extra-doc Summary: Documentation for bold-extra Version: svn17076.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bold-extra-doc BuildArch: noarch AutoReqProv: No @@ -26607,7 +26608,7 @@ Provides: tex-boldtensors = %{tl_version} License: GPL+ Summary: Bold latin and greek characters through simple prefix characters Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26621,7 +26622,7 @@ This package provides bold latin and greek characters within %package boldtensors-doc Summary: Documentation for boldtensors Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boldtensors-doc BuildArch: noarch AutoReqProv: No @@ -26634,7 +26635,7 @@ Provides: tex-bondgraphs = %{tl_version} License: LPPL 1.3 Summary: Draws bond graphs in LaTeX, using pgf/TikZ Version: svn36605.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26657,7 +26658,7 @@ his, but requires more TikZ knowledge of the user. %package bondgraphs-doc Summary: Documentation for bondgraphs Version: svn36605.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bondgraphs-doc BuildArch: noarch AutoReqProv: No @@ -26670,7 +26671,7 @@ Provides: tex-bondgraph = %{tl_version} License: LPPL 1.3 Summary: Create bond graph figures in LaTeX documents Version: svn21670.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26685,7 +26686,7 @@ The package draws bond graphs using PGF and TikZ. %package bondgraph-doc Summary: Documentation for bondgraph Version: svn21670.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bondgraph-doc BuildArch: noarch AutoReqProv: No @@ -26698,7 +26699,7 @@ Provides: tex-bookcover = %{tl_version} License: LPPL 1.2 Summary: A class for book covers and dust jackets Version: svn41323 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26720,7 +26721,7 @@ This class helps typesetting book covers and dust jackets. %package bookcover-doc Summary: Documentation for bookcover Version: svn41323 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bookcover-doc BuildArch: noarch AutoReqProv: No @@ -26733,7 +26734,7 @@ Provides: tex-bookdb = %{tl_version} License: LPPL 1.3 Summary: A BibTeX style file for cataloguing a home library Version: svn37536.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26748,7 +26749,7 @@ introduction, location, pages, size, value, volumes. %package bookdb-doc Summary: Documentation for bookdb Version: svn37536.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bookdb-doc BuildArch: noarch AutoReqProv: No @@ -26761,7 +26762,7 @@ Provides: tex-bookest = %{tl_version} License: LPPL Summary: Extended book class Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26783,7 +26784,7 @@ footers, front page layout, and other minor items. %package bookest-doc Summary: Documentation for bookest Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bookest-doc BuildArch: noarch AutoReqProv: No @@ -26796,7 +26797,7 @@ Provides: tex-bookhands = %{tl_version} License: LPPL Summary: A collection of book-hand fonts Version: svn23609.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26940,7 +26941,7 @@ Artificial Uncial (6th-10th centuries); and Insular Majuscule %package bookhands-doc Summary: Documentation for bookhands Version: svn23609.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bookhands-doc BuildArch: noarch AutoReqProv: No @@ -26953,7 +26954,7 @@ Provides: tex-booklet = %{tl_version} License: LPPL 1.3 Summary: Aids for printing simple booklets Version: svn15878.0.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -26972,7 +26973,7 @@ included. %package booklet-doc Summary: Documentation for booklet Version: svn15878.0.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-booklet-doc BuildArch: noarch AutoReqProv: No @@ -26985,7 +26986,7 @@ Provides: tex-bookman = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27185,7 +27186,7 @@ Garde); and URW Palladio L (substituting for Adobe's Palatino). %package booktabs-de-doc Summary: Documentation for booktabs-de Version: svn21907.1.61803 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-booktabs-de-doc BuildArch: noarch AutoReqProv: No @@ -27196,7 +27197,7 @@ Documentation for booktabs-de %package booktabs-fr-doc Summary: Documentation for booktabs-fr Version: svn21948.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-booktabs-fr-doc BuildArch: noarch AutoReqProv: No @@ -27209,7 +27210,7 @@ Provides: tex-booktabs = %{tl_version} License: GPL+ Summary: Publication quality tables in LaTeX Version: svn40846 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27226,7 +27227,7 @@ compatibility. %package booktabs-doc Summary: Documentation for booktabs Version: svn40846 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-booktabs-doc BuildArch: noarch AutoReqProv: No @@ -27239,7 +27240,7 @@ Provides: tex-boolexpr = %{tl_version} License: LPPL Summary: A boolean expression evaluator and a switch command Version: svn17830.3.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27262,7 +27263,7 @@ expression>} ... ... \otherwise ... \endswitch %package boolexpr-doc Summary: Documentation for boolexpr Version: svn17830.3.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boolexpr-doc BuildArch: noarch AutoReqProv: No @@ -27275,7 +27276,7 @@ Provides: tex-boondox = %{tl_version} License: LPPL Summary: Mathematical alphabets derived from the STIX fonts Version: svn22313.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27339,7 +27340,7 @@ mode are provided, as are LaTeX support files. %package boondox-doc Summary: Documentation for boondox Version: svn22313.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boondox-doc BuildArch: noarch AutoReqProv: No @@ -27352,7 +27353,7 @@ Provides: tex-bophook = %{tl_version} License: LPPL Summary: Provides an At-Begin-Page hook Version: svn17062.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27368,7 +27369,7 @@ on the page style). %package bophook-doc Summary: Documentation for bophook Version: svn17062.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bophook-doc BuildArch: noarch AutoReqProv: No @@ -27381,7 +27382,7 @@ Provides: tex-borceux = %{tl_version} License: Borceux Summary: Diagram macros by Francois Borceux Version: svn21047.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27400,7 +27401,7 @@ east, etc.); 12 types and 32 directions are available. %package borceux-doc Summary: Documentation for borceux Version: svn21047.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-borceux-doc BuildArch: noarch AutoReqProv: No @@ -27413,7 +27414,7 @@ Provides: tex-bosisio = %{tl_version} License: LPPL Summary: A collection of packages by Francesco Bosisio Version: svn16989.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27438,7 +27439,7 @@ evenpage; graphfig; mathcmd; quotes; and sobolev. %package bosisio-doc Summary: Documentation for bosisio Version: svn16989.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bosisio-doc BuildArch: noarch AutoReqProv: No @@ -27451,7 +27452,7 @@ Provides: tex-boxedminipage2e = %{tl_version} License: LPPL 1.3 Summary: Framed minipages of a specified total width (text and frame combined) Version: svn36477.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27470,7 +27471,7 @@ minipage. %package boxedminipage2e-doc Summary: Documentation for boxedminipage2e Version: svn36477.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boxedminipage2e-doc BuildArch: noarch AutoReqProv: No @@ -27483,7 +27484,7 @@ Provides: tex-boxedminipage = %{tl_version} License: Public Domain Summary: A package for producing framed minipages Version: svn17087.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27497,7 +27498,7 @@ minipage, but with a frame around it. %package boxedminipage-doc Summary: Documentation for boxedminipage Version: svn17087.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boxedminipage-doc BuildArch: noarch AutoReqProv: No @@ -27510,7 +27511,7 @@ Provides: tex-boxhandler = %{tl_version} License: LPPL Summary: Flexible Captioning and Deferred Box/List Printing Version: svn28031.1.30 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27538,7 +27539,7 @@ with figures and tables appearing in the desired location. %package boxhandler-doc Summary: Documentation for boxhandler Version: svn28031.1.30 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-boxhandler-doc BuildArch: noarch AutoReqProv: No @@ -27551,7 +27552,7 @@ Provides: tex-bpchem = %{tl_version} License: LPPL Summary: Typeset chemical names, formulae, etc Version: svn15878.v1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27569,7 +27570,7 @@ reference to labelled compounds. %package bpchem-doc Summary: Documentation for bpchem Version: svn15878.v1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bpchem-doc BuildArch: noarch AutoReqProv: No @@ -27582,7 +27583,7 @@ Provides: tex-bpolynomial = %{tl_version} License: LPPL Summary: Drawing polynomial functions of up to order 3 Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27599,7 +27600,7 @@ derivatives of polynomials can be calculated. %package bpolynomial-doc Summary: Documentation for bpolynomial Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bpolynomial-doc BuildArch: noarch AutoReqProv: No @@ -27612,7 +27613,7 @@ Provides: tex-bracketkey = %{tl_version} License: LPPL 1.3 Summary: Produce bracketed identification keys Version: svn17129.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27626,7 +27627,7 @@ producing lists of species. %package bracketkey-doc Summary: Documentation for bracketkey Version: svn17129.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bracketkey-doc BuildArch: noarch AutoReqProv: No @@ -27639,7 +27640,7 @@ Provides: tex-braids = %{tl_version} License: LPPL 1.3 Summary: Draw braid diagrams with PGF/TikZ Version: svn23790.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27655,7 +27656,7 @@ styling the strands and for drawing "floors". %package braids-doc Summary: Documentation for braids Version: svn23790.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-braids-doc BuildArch: noarch AutoReqProv: No @@ -27668,7 +27669,7 @@ Provides: tex-braille = %{tl_version} License: LPPL Summary: Support for braille Version: svn20655.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27686,7 +27687,7 @@ symbols. %package braille-doc Summary: Documentation for braille Version: svn20655.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-braille-doc BuildArch: noarch AutoReqProv: No @@ -27699,7 +27700,7 @@ Provides: tex-braket = %{tl_version} License: Public Domain Summary: Dirac bra-ket and set notations Version: svn17127.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27717,7 +27718,7 @@ extended primitive \middle for more reliable results %package braket-doc Summary: Documentation for braket Version: svn17127.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-braket-doc BuildArch: noarch AutoReqProv: No @@ -27730,7 +27731,7 @@ Provides: tex-brandeis-dissertation = %{tl_version} License: LPPL 1.2 Summary: Class for Brandeis University dissertations Version: svn32047.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27747,7 +27748,7 @@ Graduate School of Arts and Sciences (GSAS). %package brandeis-dissertation-doc Summary: Documentation for brandeis-dissertation Version: svn32047.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-brandeis-dissertation-doc BuildArch: noarch AutoReqProv: No @@ -27760,7 +27761,7 @@ Provides: tex-breakurl = %{tl_version} License: LPPL Summary: Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf Version: svn29901.1.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27780,7 +27781,7 @@ the generated links. %package breakurl-doc Summary: Documentation for breakurl Version: svn29901.1.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-breakurl-doc BuildArch: noarch AutoReqProv: No @@ -27793,7 +27794,7 @@ Provides: tex-breqn = %{tl_version} License: LPPL 1.3 Summary: Automatic line breaking of displayed equations Version: svn38099.0.98d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27824,7 +27825,7 @@ breqn. %package breqn-doc Summary: Documentation for breqn Version: svn38099.0.98d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-breqn-doc BuildArch: noarch AutoReqProv: No @@ -27837,7 +27838,7 @@ Provides: tex-br-lex = %{tl_version} License: LPPL 1.3 Summary: A Class for Typesetting Brazilian legal texts Version: svn39701 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27864,7 +27865,7 @@ user. %package br-lex-doc Summary: Documentation for br-lex Version: svn39701 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-br-lex-doc BuildArch: noarch AutoReqProv: No @@ -27877,7 +27878,7 @@ Provides: tex-bropd = %{tl_version} License: LPPL 1.3 Summary: Simplified brackets and differentials in LaTeX Version: svn35383.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27893,7 +27894,7 @@ partial differentials to be expressed in an alternate form. %package bropd-doc Summary: Documentation for bropd Version: svn35383.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bropd-doc BuildArch: noarch AutoReqProv: No @@ -27906,7 +27907,7 @@ Provides: tex-brushscr = %{tl_version} License: Public Domain Summary: A handwriting script font Version: svn28363.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27932,7 +27933,7 @@ the package and sample.tex illustrates its use. %package brushscr-doc Summary: Documentation for brushscr Version: svn28363.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-brushscr-doc BuildArch: noarch AutoReqProv: No @@ -27945,7 +27946,7 @@ Provides: tex-bullcntr = %{tl_version} License: LPPL 1.3 Summary: Display list item counter as regular pattern of bullets Version: svn15878.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -27962,7 +27963,7 @@ latter, it displays the value of a counter lying between 1 and %package bullcntr-doc Summary: Documentation for bullcntr Version: svn15878.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bullcntr-doc BuildArch: noarch AutoReqProv: No @@ -27975,7 +27976,7 @@ Provides: tex-bundledoc = %{tl_version} License: LPPL Summary: Bundle together all the files needed to build a LaTeX document Version: svn35041.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28001,7 +28002,7 @@ filecontents* environment. %package bundledoc-doc Summary: Documentation for bundledoc Version: svn35041.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bundledoc-doc BuildArch: noarch AutoReqProv: No @@ -28014,7 +28015,7 @@ Summary: Binaries for bundledoc Version: svn17794.0 Requires: texlive-base Requires: texlive-bundledoc -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description bundledoc-bin @@ -28025,7 +28026,7 @@ Provides: tex-burmese = %{tl_version} License: LPPL Summary: Basic Support for Writing Burmese Version: svn25185.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28047,7 +28048,7 @@ Type 1 font, and LaTeX macros. %package burmese-doc Summary: Documentation for burmese Version: svn25185.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-burmese-doc BuildArch: noarch AutoReqProv: No @@ -28060,7 +28061,7 @@ Provides: tex-bussproofs = %{tl_version} License: LPPL 1.3 Summary: Proof trees in the style of the sequent calculus Version: svn27488.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28080,7 +28081,7 @@ the package file itself. %package bussproofs-doc Summary: Documentation for bussproofs Version: svn27488.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bussproofs-doc BuildArch: noarch AutoReqProv: No @@ -28093,7 +28094,7 @@ Provides: tex-bxbase = %{tl_version} License: MIT Summary: BX bundle base components Version: svn28825.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28112,7 +28113,7 @@ bxbase package %package bxbase-doc Summary: Documentation for bxbase Version: svn28825.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxbase-doc BuildArch: noarch AutoReqProv: No @@ -28125,7 +28126,7 @@ Provides: tex-bxcjkjatype = %{tl_version} License: MIT Summary: Typeset Japanese with pdfLaTeX and CJK Version: svn32048.0.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28149,7 +28150,7 @@ the pLaTeX kernel and some other packages used with it. %package bxcjkjatype-doc Summary: Documentation for bxcjkjatype Version: svn32048.0.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxcjkjatype-doc BuildArch: noarch AutoReqProv: No @@ -28162,7 +28163,7 @@ Provides: tex-bxdpx-beamer = %{tl_version} License: MIT Summary: Dvipdfmx extras for use with beamer Version: svn30220.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28178,7 +28179,7 @@ and \framezoomed regions when using dvipdfmx as PDF generator %package bxdpx-beamer-doc Summary: Documentation for bxdpx-beamer Version: svn30220.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxdpx-beamer-doc BuildArch: noarch AutoReqProv: No @@ -28191,7 +28192,7 @@ Provides: tex-bxeepic = %{tl_version} License: MIT Summary: Eepic facilities using pict2e Version: svn30559.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28206,7 +28207,7 @@ The package provides an eepic driver to use pict2e facilities. %package bxeepic-doc Summary: Documentation for bxeepic Version: svn30559.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxeepic-doc BuildArch: noarch AutoReqProv: No @@ -28219,7 +28220,7 @@ Provides: tex-bxjscls = %{tl_version} License: BSD Summary: Japanese document class collection for all major engines Version: svn41394 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28246,7 +28247,7 @@ typesetting. %package bxjscls-doc Summary: Documentation for bxjscls Version: svn41394 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxjscls-doc BuildArch: noarch AutoReqProv: No @@ -28259,7 +28260,7 @@ Provides: tex-bxpdfver = %{tl_version} License: MIT Summary: Specify version and compression level of output PDF files Version: svn38050.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28277,7 +28278,7 @@ output engines and dvipdfmx. %package bxpdfver-doc Summary: Documentation for bxpdfver Version: svn38050.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bxpdfver-doc BuildArch: noarch AutoReqProv: No @@ -28290,7 +28291,7 @@ Provides: tex-bytefield = %{tl_version} License: LPPL Summary: Create illustrations for network protocol specifications Version: svn38736 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28312,7 +28313,7 @@ user interface from earlier versions. %package bytefield-doc Summary: Documentation for bytefield Version: svn38736 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-bytefield-doc BuildArch: noarch AutoReqProv: No @@ -28325,7 +28326,7 @@ Provides: tex-c90 = %{tl_version} License: LPPL Summary: c90 package Version: svn37676.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28338,7 +28339,7 @@ c90 package %package c90-doc Summary: Documentation for c90 Version: svn37676.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-c90-doc BuildArch: noarch AutoReqProv: No @@ -28351,7 +28352,7 @@ Provides: tex-cabin = %{tl_version} License: OFL Summary: A humanist Sans Serif font, with LaTeX support Version: svn39875 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28744,7 +28745,7 @@ fontaxes package is required for use with [pdf]LaTeX. %package cabin-doc Summary: Documentation for cabin Version: svn39875 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cabin-doc BuildArch: noarch AutoReqProv: No @@ -28757,7 +28758,7 @@ Provides: tex-cachepic = %{tl_version} License: LPPL 1.3 Summary: Convert document fragments into graphics Version: svn26313.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28778,7 +28779,7 @@ generates the external graphics. %package cachepic-doc Summary: Documentation for cachepic Version: svn26313.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cachepic-doc BuildArch: noarch AutoReqProv: No @@ -28791,7 +28792,7 @@ Summary: Binaries for cachepic Version: svn15543.0 Requires: texlive-base Requires: texlive-cachepic -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description cachepic-bin @@ -28802,7 +28803,7 @@ Provides: tex-caladea = %{tl_version} License: ASL 2.0 Summary: Support for the Caladea family of fonts Version: svn34991.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28883,7 +28884,7 @@ replacement for Cambria. %package caladea-doc Summary: Documentation for caladea Version: svn34991.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-caladea-doc BuildArch: noarch AutoReqProv: No @@ -28896,7 +28897,7 @@ Provides: tex-calcage = %{tl_version} License: LPPL 1.3 Summary: Calculate the age of something, in years Version: svn27725.0.90 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28919,7 +28920,7 @@ performed, taking care of leap years and such odd things. %package calcage-doc Summary: Documentation for calcage Version: svn27725.0.90 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calcage-doc BuildArch: noarch AutoReqProv: No @@ -28932,7 +28933,7 @@ Provides: tex-calctab = %{tl_version} License: LPPL Summary: Language for numeric tables Version: svn15878.v0.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28958,7 +28959,7 @@ computes sum and percentage with floating point numeric methods %package calctab-doc Summary: Documentation for calctab Version: svn15878.v0.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calctab-doc BuildArch: noarch AutoReqProv: No @@ -28971,7 +28972,7 @@ Provides: tex-calculation = %{tl_version} License: LPPL 1.3 Summary: Typesetting reasoned calculations, also called calculational proofs Version: svn35973.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -28997,7 +28998,7 @@ although numbering and commenting is then disabled. %package calculation-doc Summary: Documentation for calculation Version: svn35973.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calculation-doc BuildArch: noarch AutoReqProv: No @@ -29010,7 +29011,7 @@ Provides: tex-calculator = %{tl_version} License: LPPL 1.2 Summary: Use LaTeX as a scientific calculator Version: svn33041.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29030,7 +29031,7 @@ xpicture, but the numeric abilities of "calculator" and %package calculator-doc Summary: Documentation for calculator Version: svn33041.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calculator-doc BuildArch: noarch AutoReqProv: No @@ -29043,7 +29044,7 @@ Provides: tex-calligra = %{tl_version} License: Copyright only Summary: Calligraphic font Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29059,7 +29060,7 @@ fundus bundle. %package calligra-doc Summary: Documentation for calligra Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calligra-doc BuildArch: noarch AutoReqProv: No @@ -29072,7 +29073,7 @@ Provides: tex-calligra-type1 = %{tl_version} License: Copyright only Summary: Type 1 version of Calligra Version: svn24302.001.000 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29089,7 +29090,7 @@ handwriting font. %package calligra-type1-doc Summary: Documentation for calligra-type1 Version: svn24302.001.000 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calligra-type1-doc BuildArch: noarch AutoReqProv: No @@ -29102,7 +29103,7 @@ Provides: tex-calrsfs = %{tl_version} License: Public Domain Summary: Copperplate calligraphic letters in LaTeX Version: svn17125.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29116,7 +29117,7 @@ Provides a maths interface to the rsfs fonts. %package calrsfs-doc Summary: Documentation for calrsfs Version: svn17125.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calrsfs-doc BuildArch: noarch AutoReqProv: No @@ -29129,7 +29130,7 @@ Provides: tex-cals = %{tl_version} License: LPPL 1.3 Summary: Multipage tables with wide range of features Version: svn30784.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29146,7 +29147,7 @@ compatible with multicol and pdfsync. %package cals-doc Summary: Documentation for cals Version: svn30784.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cals-doc BuildArch: noarch AutoReqProv: No @@ -29159,7 +29160,7 @@ Provides: tex-calxxxx-yyyy = %{tl_version} License: LPPL 1.3 Summary: Print a calendar for a group of years Version: svn39245 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29176,7 +29177,7 @@ speaking world. %package calxxxx-yyyy-doc Summary: Documentation for calxxxx-yyyy Version: svn39245 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-calxxxx-yyyy-doc BuildArch: noarch AutoReqProv: No @@ -29189,7 +29190,7 @@ Provides: tex-cancel = %{tl_version} License: Public Domain Summary: Place lines through maths formulae Version: svn32508.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29204,7 +29205,7 @@ parts of maths formulae. %package cancel-doc Summary: Documentation for cancel Version: svn32508.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cancel-doc BuildArch: noarch AutoReqProv: No @@ -29217,7 +29218,7 @@ Provides: tex-canoniclayout = %{tl_version} License: LPPL 1.3 Summary: Create canonical page layouts with memoir Version: svn24523.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29232,7 +29233,7 @@ user to use a canonic layout with the memoir class. %package canoniclayout-doc Summary: Documentation for canoniclayout Version: svn24523.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-canoniclayout-doc BuildArch: noarch AutoReqProv: No @@ -29245,7 +29246,7 @@ Provides: tex-cantarell = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for the Cantarell font family Version: svn27066.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29397,7 +29398,7 @@ Dvips. %package cantarell-doc Summary: Documentation for cantarell Version: svn27066.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cantarell-doc BuildArch: noarch AutoReqProv: No @@ -29410,7 +29411,7 @@ Provides: tex-captcont = %{tl_version} License: LPPL Summary: Retain float number across several floats Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29431,7 +29432,7 @@ Captcont also fully supports the subfigure package. %package captcont-doc Summary: Documentation for captcont Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-captcont-doc BuildArch: noarch AutoReqProv: No @@ -29444,7 +29445,7 @@ Provides: tex-captdef = %{tl_version} License: LPPL Summary: Declare free-standing \caption commands Version: svn17353.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29462,7 +29463,7 @@ or table environments. %package captdef-doc Summary: Documentation for captdef Version: svn17353.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-captdef-doc BuildArch: noarch AutoReqProv: No @@ -29475,7 +29476,7 @@ Provides: tex-caption = %{tl_version} License: LPPL 1.3 Summary: Customising captions in floating environments Version: svn41409 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29506,7 +29507,7 @@ capt-of do. The package supersedes caption2. %package caption-doc Summary: Documentation for caption Version: svn41409 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-caption-doc BuildArch: noarch AutoReqProv: No @@ -29519,7 +29520,7 @@ Provides: tex-capt-of = %{tl_version} License: LPPL Summary: Captions on more than floats Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29535,7 +29536,7 @@ this package. %package capt-of-doc Summary: Documentation for capt-of Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-capt-of-doc BuildArch: noarch AutoReqProv: No @@ -29548,7 +29549,7 @@ Provides: tex-carlisle = %{tl_version} License: LPPL Summary: David Carlisle's small packages Version: svn18258.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29579,7 +29580,7 @@ environment for including HTML in LaTeX documents. %package carlisle-doc Summary: Documentation for carlisle Version: svn18258.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-carlisle-doc BuildArch: noarch AutoReqProv: No @@ -29592,7 +29593,7 @@ Provides: tex-carlito = %{tl_version} License: OFL Summary: Support for Carlito sans-serif fonts Version: svn35002.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29837,7 +29838,7 @@ Calibri. %package carlito-doc Summary: Documentation for carlito Version: svn35002.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-carlito-doc BuildArch: noarch AutoReqProv: No @@ -29850,7 +29851,7 @@ Provides: tex-carolmin-ps = %{tl_version} License: LPPL Summary: Adobe Type 1 format of Carolingian Minuscule fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29874,7 +29875,7 @@ replacements for the Metafont originals. %package carolmin-ps-doc Summary: Documentation for carolmin-ps Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-carolmin-ps-doc BuildArch: noarch AutoReqProv: No @@ -29887,7 +29888,7 @@ Provides: tex-cascadilla = %{tl_version} License: LPPL Summary: Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project Version: svn25144.1.8.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29912,7 +29913,7 @@ WCCFL). %package cascadilla-doc Summary: Documentation for cascadilla Version: svn25144.1.8.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cascadilla-doc BuildArch: noarch AutoReqProv: No @@ -29925,7 +29926,7 @@ Provides: tex-cases = %{tl_version} License: Public Domain Summary: Numbered cases environment Version: svn17123.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29942,7 +29943,7 @@ set as a whole. %package cases-doc Summary: Documentation for cases Version: svn17123.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cases-doc BuildArch: noarch AutoReqProv: No @@ -29955,7 +29956,7 @@ Provides: tex-casyl = %{tl_version} License: Public Domain Summary: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -29970,7 +29971,7 @@ macros for its use within a document. %package casyl-doc Summary: Documentation for casyl Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-casyl-doc BuildArch: noarch AutoReqProv: No @@ -29983,7 +29984,7 @@ Provides: tex-catchfilebetweentags = %{tl_version} License: LPPL 1.3 Summary: Catch text delimited by docstrip tags Version: svn21476.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30005,7 +30006,7 @@ region may be included or dropped). %package catchfilebetweentags-doc Summary: Documentation for catchfilebetweentags Version: svn21476.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-catchfilebetweentags-doc BuildArch: noarch AutoReqProv: No @@ -30018,7 +30019,7 @@ Provides: tex-catcodes = %{tl_version} License: LPPL 1.3 Summary: Generic handling of TeX category codes Version: svn38859 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30039,7 +30040,7 @@ control mechanism. %package catcodes-doc Summary: Documentation for catcodes Version: svn38859 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-catcodes-doc BuildArch: noarch AutoReqProv: No @@ -30052,7 +30053,7 @@ Provides: tex-catechis = %{tl_version} License: LPPL Summary: Macros for typesetting catechisms Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30071,7 +30072,7 @@ customisable. %package catechis-doc Summary: Documentation for catechis Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-catechis-doc BuildArch: noarch AutoReqProv: No @@ -30084,7 +30085,7 @@ Provides: tex-catoptions = %{tl_version} License: LPPL 1.3 Summary: Preserving and recalling standard catcodes Version: svn35069.0.2.7h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30107,7 +30108,7 @@ programming tools. %package catoptions-doc Summary: Documentation for catoptions Version: svn35069.0.2.7h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-catoptions-doc BuildArch: noarch AutoReqProv: No @@ -30120,7 +30121,7 @@ Provides: tex-cbcoptic = %{tl_version} License: LPPL Summary: Coptic fonts and LaTeX macros for general usage and for philology Version: svn16666.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30146,7 +30147,7 @@ some macros of philological interest. %package cbcoptic-doc Summary: Documentation for cbcoptic Version: svn16666.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cbcoptic-doc BuildArch: noarch AutoReqProv: No @@ -30159,7 +30160,7 @@ Provides: tex-cbfonts-fd = %{tl_version} License: LPPL 1.3 Summary: LaTeX font description files for the CB Greek fonts Version: svn39936 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -30184,7 +30185,7 @@ requesting. %package cbfonts-fd-doc Summary: Documentation for cbfonts-fd Version: svn39936 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cbfonts-fd-doc BuildArch: noarch AutoReqProv: No @@ -30197,7 +30198,7 @@ Provides: tex-cbfonts = %{tl_version} License: LPPL Summary: Complete set of Greek fonts Version: svn31624.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32108,7 +32109,7 @@ font sets as the EC fonts. %package cbfonts-doc Summary: Documentation for cbfonts Version: svn31624.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cbfonts-doc BuildArch: noarch AutoReqProv: No @@ -32122,7 +32123,7 @@ Provides: tex-ccaption = %{tl_version} License: LPPL 1.3 Summary: Continuation headings and legends for floats Version: svn23443.3.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32140,7 +32141,7 @@ are provided for specifying your own captioning styles. %package ccaption-doc Summary: Documentation for ccaption Version: svn23443.3.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ccaption-doc BuildArch: noarch AutoReqProv: No @@ -32153,7 +32154,7 @@ Provides: tex-ccfonts = %{tl_version} License: LPPL Summary: Support for Concrete text and math fonts in LaTeX Version: svn17122.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32171,7 +32172,7 @@ mathematics including AMS fonts (Ulrik Vieth's concmath). %package ccfonts-doc Summary: Documentation for ccfonts Version: svn17122.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ccfonts-doc BuildArch: noarch AutoReqProv: No @@ -32184,7 +32185,7 @@ Provides: tex-ccicons = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for Creative Commons icons Version: svn30020.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32207,7 +32208,7 @@ Adobe Type 1 format) and LaTeX support macros are provided. %package ccicons-doc Summary: Documentation for ccicons Version: svn30020.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ccicons-doc BuildArch: noarch AutoReqProv: No @@ -32220,7 +32221,7 @@ Provides: tex-cclicenses = %{tl_version} License: LPPL Summary: Typeset Creative Commons licence logos Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32236,7 +32237,7 @@ write these logos, related to CC licences versions 1.0 and 2.0. %package cclicenses-doc Summary: Documentation for cclicenses Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cclicenses-doc BuildArch: noarch AutoReqProv: No @@ -32249,7 +32250,7 @@ Provides: tex-cc-pl = %{tl_version} License: Public Domain Summary: Polish extension of Computer Concrete fonts Version: svn15878.1.02.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32289,7 +32290,7 @@ included. %package cc-pl-doc Summary: Documentation for cc-pl Version: svn15878.1.02.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cc-pl-doc BuildArch: noarch AutoReqProv: No @@ -32302,7 +32303,7 @@ Provides: tex-cd-cover = %{tl_version} License: GPL+ Summary: Typeset CD covers Version: svn17121.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32318,7 +32319,7 @@ plastic slip-cover. %package cd-cover-doc Summary: Documentation for cd-cover Version: svn17121.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cd-cover-doc BuildArch: noarch AutoReqProv: No @@ -32331,7 +32332,7 @@ Provides: tex-cdpbundl = %{tl_version} License: LPPL Summary: Business letters in the Italian style Version: svn36697.0.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32366,7 +32367,7 @@ etc., independant from the other ones. %package cdpbundl-doc Summary: Documentation for cdpbundl Version: svn36697.0.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cdpbundl-doc BuildArch: noarch AutoReqProv: No @@ -32379,7 +32380,7 @@ Provides: tex-cd = %{tl_version} License: GPL+ Summary: Typeset CD covers Version: svn34452.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32395,7 +32396,7 @@ case (it copes with both normal and slim cases). %package cd-doc Summary: Documentation for cd Version: svn34452.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cd-doc BuildArch: noarch AutoReqProv: No @@ -32408,7 +32409,7 @@ Provides: tex-cellspace = %{tl_version} License: LPPL Summary: Ensure minimal spacing of table cells Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32433,7 +32434,7 @@ columns. %package cellspace-doc Summary: Documentation for cellspace Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cellspace-doc BuildArch: noarch AutoReqProv: No @@ -32446,7 +32447,7 @@ Provides: tex-cell = %{tl_version} License: Public Domain Summary: Bibliography style for Cell Version: svn20756.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32462,7 +32463,7 @@ supporting LaTeX package is also provided. %package cell-doc Summary: Documentation for cell Version: svn20756.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cell-doc BuildArch: noarch AutoReqProv: No @@ -32475,7 +32476,7 @@ Provides: tex-celtic = %{tl_version} License: LPPL 1.3 Summary: A TikZ library for drawing celtic knots Version: svn39797 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32488,7 +32489,7 @@ The package provides a TikZ library for drawing celtic knots. %package celtic-doc Summary: Documentation for celtic Version: svn39797 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-celtic-doc BuildArch: noarch AutoReqProv: No @@ -32501,7 +32502,7 @@ Provides: tex-censor = %{tl_version} License: LPPL 1.3 Summary: Facilities for controlling restricted text in a document Version: svn31332.3.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32517,7 +32518,7 @@ enclosed by a LaTeX box. %package censor-doc Summary: Documentation for censor Version: svn31332.3.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-censor-doc BuildArch: noarch AutoReqProv: No @@ -32530,7 +32531,7 @@ Provides: tex-cfr-initials = %{tl_version} License: LPPL 1.3 Summary: LaTeX packages for use of initials Version: svn36728.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -32595,7 +32596,7 @@ generally available via CTAN. %package cfr-initials-doc Summary: Documentation for cfr-initials Version: svn36728.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cfr-initials-doc BuildArch: noarch AutoReqProv: No @@ -32608,7 +32609,7 @@ Provides: tex-cfr-lm = %{tl_version} License: LPPL 1.3 Summary: Enhanced support for the Latin Modern fonts Version: svn36195.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33530,7 +33531,7 @@ Modern. %package cfr-lm-doc Summary: Documentation for cfr-lm Version: svn36195.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cfr-lm-doc BuildArch: noarch AutoReqProv: No @@ -33543,7 +33544,7 @@ Provides: tex-changebar = %{tl_version} License: LPPL Summary: Generate changebars in LaTeX documents Version: svn29349.3.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33560,7 +33561,7 @@ DVI drivers, and VTeX and PDFTeX. %package changebar-doc Summary: Documentation for changebar Version: svn29349.3.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-changebar-doc BuildArch: noarch AutoReqProv: No @@ -33573,7 +33574,7 @@ Provides: tex-changelayout = %{tl_version} License: LPPL Summary: Change the layout of individual pages and their text Version: svn16094.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33592,7 +33593,7 @@ texts. %package changelayout-doc Summary: Documentation for changelayout Version: svn16094.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-changelayout-doc BuildArch: noarch AutoReqProv: No @@ -33605,7 +33606,7 @@ Provides: tex-changepage = %{tl_version} License: LPPL 1.3 Summary: Margin adjustment and detection of odd/even pages Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33625,7 +33626,7 @@ distributed with the package. %package changepage-doc Summary: Documentation for changepage Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-changepage-doc BuildArch: noarch AutoReqProv: No @@ -33638,7 +33639,7 @@ Provides: tex-changes = %{tl_version} License: LPPL 1.3 Summary: Manual change markup Version: svn37104.2.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33663,7 +33664,7 @@ the changes. %package changes-doc Summary: Documentation for changes Version: svn37104.2.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-changes-doc BuildArch: noarch AutoReqProv: No @@ -33676,7 +33677,7 @@ Provides: tex-chappg = %{tl_version} License: LPPL Summary: Page numbering by chapter Version: svn15878.2.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33691,7 +33692,7 @@ backmatter in book class. %package chappg-doc Summary: Documentation for chappg Version: svn15878.2.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chappg-doc BuildArch: noarch AutoReqProv: No @@ -33704,7 +33705,7 @@ Provides: tex-chapterfolder = %{tl_version} License: LPPL Summary: Package for working with complicated folder structures Version: svn15878.2.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33724,7 +33725,7 @@ makes easy changing the name of a folder, for example. %package chapterfolder-doc Summary: Documentation for chapterfolder Version: svn15878.2.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chapterfolder-doc BuildArch: noarch AutoReqProv: No @@ -33737,7 +33738,7 @@ Provides: tex-charter = %{tl_version} License: Copyright only Summary: Charter fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33804,7 +33805,7 @@ use with LaTeX is available in freenfss, part of psnfss. %package charter-doc Summary: Documentation for charter Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-charter-doc BuildArch: noarch AutoReqProv: No @@ -33817,7 +33818,7 @@ Provides: tex-chbibref = %{tl_version} License: LPPL Summary: Change the Bibliography/References title Version: svn17120.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33832,7 +33833,7 @@ and report.cls, and \refname is used in article.cls.) %package chbibref-doc Summary: Documentation for chbibref Version: svn17120.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chbibref-doc BuildArch: noarch AutoReqProv: No @@ -33845,7 +33846,7 @@ Provides: tex-checkcites = %{tl_version} License: LPPL 1.3 Summary: Check citation commands in a document Version: svn28572.1.0i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33860,7 +33861,7 @@ auxiliary or bibliography files. %package checkcites-doc Summary: Documentation for checkcites Version: svn28572.1.0i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-checkcites-doc BuildArch: noarch AutoReqProv: No @@ -33873,7 +33874,7 @@ Summary: Binaries for checkcites Version: svn25623.0 Requires: texlive-base Requires: texlive-checkcites -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description checkcites-bin @@ -33884,7 +33885,7 @@ Provides: tex-checklistings = %{tl_version} License: LPPL 1.2 Summary: Pass verbatim contents through a compiler and reincorporate the resulting output Version: svn38300.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33909,7 +33910,7 @@ ML family. %package checklistings-doc Summary: Documentation for checklistings Version: svn38300.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-checklistings-doc BuildArch: noarch AutoReqProv: No @@ -33922,7 +33923,7 @@ Summary: Binaries for checklistings Version: svn38300.0 Requires: texlive-base Requires: texlive-checklistings -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description checklistings-bin @@ -33933,7 +33934,7 @@ Provides: tex-chemarrow = %{tl_version} License: Public Domain Summary: Arrows for use in chemistry Version: svn17146.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33954,7 +33955,7 @@ like those in chemistry text-books than do Knuth's originals. %package chemarrow-doc Summary: Documentation for chemarrow Version: svn17146.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemarrow-doc BuildArch: noarch AutoReqProv: No @@ -33967,7 +33968,7 @@ Provides: tex-chembst = %{tl_version} License: LPPL Summary: A collection of BibTeX files for chemistry journals Version: svn15878.0.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -33986,7 +33987,7 @@ German should be cited simultaneously. %package chembst-doc Summary: Documentation for chembst Version: svn15878.0.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chembst-doc BuildArch: noarch AutoReqProv: No @@ -33999,7 +34000,7 @@ Provides: tex-chemcompounds = %{tl_version} License: LPPL Summary: Simple consecutive numbering of chemical compounds Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34016,7 +34017,7 @@ of compounds inside the text. %package chemcompounds-doc Summary: Documentation for chemcompounds Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemcompounds-doc BuildArch: noarch AutoReqProv: No @@ -34029,7 +34030,7 @@ Provides: tex-chemcono = %{tl_version} License: LPPL Summary: Support for compound numbers in chemistry documents Version: svn17119.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34049,7 +34050,7 @@ citation routines. %package chemcono-doc Summary: Documentation for chemcono Version: svn17119.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemcono-doc BuildArch: noarch AutoReqProv: No @@ -34062,7 +34063,7 @@ Provides: tex-chemexec = %{tl_version} License: LPPL 1.3 Summary: Creating (chemical) exercise sheets Version: svn21632.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34088,7 +34089,7 @@ exercise sheets, with separating printing of solutions %package chemexec-doc Summary: Documentation for chemexec Version: svn21632.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemexec-doc BuildArch: noarch AutoReqProv: No @@ -34101,7 +34102,7 @@ Provides: tex-chemfig = %{tl_version} License: LPPL 1.3 Summary: Draw molecules with easy syntax Version: svn38991 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34123,7 +34124,7 @@ actual drawing operations. %package chemfig-doc Summary: Documentation for chemfig Version: svn38991 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemfig-doc BuildArch: noarch AutoReqProv: No @@ -34136,7 +34137,7 @@ Provides: tex-chemformula = %{tl_version} License: LPPL 1.3 Summary: Command for typesetting chemical formulas and reactions Version: svn413226 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34160,7 +34161,7 @@ chemmacros. %package chemformula-doc Summary: Documentation for chemformula Version: svn41326 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemformula-doc BuildArch: noarch AutoReqProv: No @@ -34173,7 +34174,7 @@ Provides: tex-chemgreek = %{tl_version} License: LPPL 1.3 Summary: Upright Greek letters in chemistry Version: svn39681 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34190,7 +34191,7 @@ distributed as a part of chemmacros. %package chemgreek-doc Summary: Documentation for chemgreek Version: svn39681 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemgreek-doc BuildArch: noarch AutoReqProv: No @@ -34203,7 +34204,7 @@ Provides: tex-chem-journal = %{tl_version} License: GPL+ Summary: Various BibTeX formats for journals in Chemistry Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34220,7 +34221,7 @@ Provides: tex-chemmacros = %{tl_version} License: LPPL 1.3 Summary: A collection of macros to support typesetting chemistry documents Version: svn41327 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34286,7 +34287,7 @@ support packages. %package chemmacros-doc Summary: Documentation for chemmacros Version: svn41327 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemmacros-doc BuildArch: noarch AutoReqProv: No @@ -34299,7 +34300,7 @@ Provides: tex-chemnum = %{tl_version} License: LPPL 1.3 Summary: A method of numbering chemical compounds Version: svn40522 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34321,7 +34322,7 @@ bundle). %package chemnum-doc Summary: Documentation for chemnum Version: svn40522 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemnum-doc BuildArch: noarch AutoReqProv: No @@ -34334,7 +34335,7 @@ Provides: tex-chemschemex = %{tl_version} License: LPPL 1.2 Summary: Typeset and cross-reference chemical schemes based on TikZ code Version: svn34667.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34357,7 +34358,7 @@ referencing. %package chemschemex-doc Summary: Documentation for chemschemex Version: svn34667.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemschemex-doc BuildArch: noarch AutoReqProv: No @@ -34370,7 +34371,7 @@ Provides: tex-chemstyle = %{tl_version} License: LPPL 1.3 Summary: Writing chemistry with style Version: svn31096.2.0m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34412,7 +34413,7 @@ documentation uses the auto-pst-pdf package. %package chemstyle-doc Summary: Documentation for chemstyle Version: svn31096.2.0m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chemstyle-doc BuildArch: noarch AutoReqProv: No @@ -34425,7 +34426,7 @@ Provides: tex-cherokee = %{tl_version} License: Copyright only Summary: A font for the Cherokee script Version: svn21046.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34449,7 +34450,7 @@ the CTAN team for details). %package cherokee-doc Summary: Documentation for cherokee Version: svn21046.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cherokee-doc BuildArch: noarch AutoReqProv: No @@ -34462,7 +34463,7 @@ Provides: tex-chessboard = %{tl_version} License: LPPL Summary: Print chess boards Version: svn33801.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34490,7 +34491,7 @@ animations. %package chessboard-doc Summary: Documentation for chessboard Version: svn33801.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chessboard-doc BuildArch: noarch AutoReqProv: No @@ -34503,7 +34504,7 @@ Provides: tex-chessfss = %{tl_version} License: LPPL Summary: A package to handle chess fonts Version: svn19440.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34556,7 +34557,7 @@ contains also a section about installation of chess fonts. %package chessfss-doc Summary: Documentation for chessfss Version: svn19440.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chessfss-doc BuildArch: noarch AutoReqProv: No @@ -34569,7 +34570,7 @@ Provides: tex-chess-problem-diagrams = %{tl_version} License: LPPL 1.2 Summary: A package for typesetting chess problem diagrams Version: svn39317 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34587,7 +34588,7 @@ pieces) and other boards. %package chess-problem-diagrams-doc Summary: Documentation for chess-problem-diagrams Version: svn39317 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chess-problem-diagrams-doc BuildArch: noarch AutoReqProv: No @@ -34600,7 +34601,7 @@ Provides: tex-chess = %{tl_version} License: Public Domain Summary: Fonts for typesetting chess boards Version: svn20582.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34621,7 +34622,7 @@ support), or chessfss (for flexible font choices). %package chess-doc Summary: Documentation for chess Version: svn20582.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chess-doc BuildArch: noarch AutoReqProv: No @@ -34634,7 +34635,7 @@ Provides: tex-chet = %{tl_version} License: LPPL 1.3 Summary: LaTeX layout inspired by harvmac Version: svn38161.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34649,7 +34650,7 @@ provide the look and feel of harvmac for readers. %package chet-doc Summary: Documentation for chet Version: svn38161.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chet-doc BuildArch: noarch AutoReqProv: No @@ -34662,7 +34663,7 @@ Provides: tex-chextras = %{tl_version} License: LPPL 1.3 Summary: A companion package for the Swiss typesetter Version: svn27118.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34697,7 +34698,7 @@ tied to it and may be used as a general purpose package. %package chextras-doc Summary: Documentation for chextras Version: svn27118.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chextras-doc BuildArch: noarch AutoReqProv: No @@ -34710,7 +34711,7 @@ Provides: tex-chicago-annote = %{tl_version} License: LPPL Summary: Chicago-based annotated BibTeX style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34723,7 +34724,7 @@ annote field in place of the original's annotation. %package chicago-annote-doc Summary: Documentation for chicago-annote Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chicago-annote-doc BuildArch: noarch AutoReqProv: No @@ -34736,7 +34737,7 @@ Provides: tex-chicago = %{tl_version} License: Knuth Summary: A "Chicago" bibliography style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34754,7 +34755,7 @@ Provides: tex-chickenize = %{tl_version} License: LPPL 1.3 Summary: Use lua callbacks for "interesting" textual effects Version: svn39341 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34774,7 +34775,7 @@ document. %package chickenize-doc Summary: Documentation for chickenize Version: svn39341 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chickenize-doc BuildArch: noarch AutoReqProv: No @@ -34787,7 +34788,7 @@ Provides: tex-chkfloat = %{tl_version} License: LPPL 1.3 Summary: Warn whenever a float is placed "to far away" Version: svn27473.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34803,7 +34804,7 @@ and answer page. %package chkfloat-doc Summary: Documentation for chkfloat Version: svn27473.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chkfloat-doc BuildArch: noarch AutoReqProv: No @@ -34816,7 +34817,7 @@ Provides: tex-chktex = %{tl_version} License: GPL+ Summary: Check for errors in LaTeX documents Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34833,7 +34834,7 @@ parts of CWEB documents. %package chktex-doc Summary: Documentation for chktex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chktex-doc BuildArch: noarch AutoReqProv: No @@ -34846,7 +34847,7 @@ Summary: Binaries for chktex Version: svn40473 Requires: texlive-base Requires: texlive-chktex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description chktex-bin @@ -34857,7 +34858,7 @@ Provides: tex-chletter = %{tl_version} License: LPPL Summary: Class for typesetting letters to Swiss rules Version: svn20060.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34875,7 +34876,7 @@ it is used with the chextras package. %package chletter-doc Summary: Documentation for chletter Version: svn20060.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chletter-doc BuildArch: noarch AutoReqProv: No @@ -34888,7 +34889,7 @@ Provides: tex-chngcntr = %{tl_version} License: LPPL Summary: Change the resetting of counters Version: svn17157.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34903,7 +34904,7 @@ unsets such a relationship). %package chngcntr-doc Summary: Documentation for chngcntr Version: svn17157.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chngcntr-doc BuildArch: noarch AutoReqProv: No @@ -34916,7 +34917,7 @@ Provides: tex-chronology = %{tl_version} License: LPPL 1.3 Summary: Provides a horizontal timeline Version: svn37934.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34935,7 +34936,7 @@ to specified width. %package chronology-doc Summary: Documentation for chronology Version: svn37934.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chronology-doc BuildArch: noarch AutoReqProv: No @@ -34948,7 +34949,7 @@ Provides: tex-chronosys = %{tl_version} License: LPPL 1.3 Summary: Drawing time-line diagrams Version: svn26700.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34966,7 +34967,7 @@ Context and LaTeX are provided. %package chronosys-doc Summary: Documentation for chronosys Version: svn26700.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chronosys-doc BuildArch: noarch AutoReqProv: No @@ -34979,7 +34980,7 @@ Provides: tex-chscite = %{tl_version} License: LPPL 1.2 Summary: Bibliography style for Chalmers University of Technology Version: svn28552.2.9999 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -34997,7 +34998,7 @@ recommendations. %package chscite-doc Summary: Documentation for chscite Version: svn28552.2.9999 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-chscite-doc BuildArch: noarch AutoReqProv: No @@ -35010,7 +35011,7 @@ Provides: tex-cinzel = %{tl_version} License: OFL Summary: LaTeX support for Cinzel and Cinzel Decorative fonts Version: svn34408.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35125,7 +35126,7 @@ support. %package cinzel-doc Summary: Documentation for cinzel Version: svn34408.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cinzel-doc BuildArch: noarch AutoReqProv: No @@ -35138,7 +35139,7 @@ Provides: tex-circ = %{tl_version} License: GPL+ Summary: Macros for typesetting circuit diagrams Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35166,7 +35167,7 @@ better. %package circ-doc Summary: Documentation for circ Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-circ-doc BuildArch: noarch AutoReqProv: No @@ -35179,7 +35180,7 @@ Provides: tex-circuitikz = %{tl_version} License: LPPL Summary: Draw electrical networks with TikZ Version: svn41299 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35215,7 +35216,7 @@ package. %package circuitikz-doc Summary: Documentation for circuitikz Version: svn41299 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-circuitikz-doc BuildArch: noarch AutoReqProv: No @@ -35228,7 +35229,7 @@ Provides: tex-citeall = %{tl_version} License: LPPL 1.3 Summary: Cite all entries of a bbl created with biblatex Version: svn37103.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35244,7 +35245,7 @@ created with biblatex (v1.9). %package citeall-doc Summary: Documentation for citeall Version: svn37103.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-citeall-doc BuildArch: noarch AutoReqProv: No @@ -35257,7 +35258,7 @@ Provides: tex-cite = %{tl_version} License: Copyright only Summary: Improved citation handling in LaTeX Version: svn36428.5.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35278,7 +35279,7 @@ bundle of the author's citation-related packages. %package cite-doc Summary: Documentation for cite Version: svn36428.5.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cite-doc BuildArch: noarch AutoReqProv: No @@ -35291,7 +35292,7 @@ Provides: tex-cjhebrew = %{tl_version} License: LPPL Summary: Typeset Hebrew with LaTeX Version: svn15878.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35323,7 +35324,7 @@ TeX, so should be run using an "e-LaTeX". %package cjhebrew-doc Summary: Documentation for cjhebrew Version: svn15878.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cjhebrew-doc BuildArch: noarch AutoReqProv: No @@ -35336,7 +35337,7 @@ Provides: tex-cjk-gs-integrate = %{tl_version} License: GPLv3+ Summary: Tools to integrate CJK fonts into Ghostscript Version: svn39391 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35352,7 +35353,7 @@ arguments should effect in a complete setup of GhostScript. %package cjk-gs-integrate-doc Summary: Documentation for cjk-gs-integrate Version: svn39391 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cjk-gs-integrate-doc BuildArch: noarch AutoReqProv: No @@ -35365,7 +35366,7 @@ Summary: Binaries for cjk-gs-integrate Version: svn37223.0 Requires: texlive-base Requires: texlive-cjk-gs-integrate -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description cjk-gs-integrate-bin @@ -35376,7 +35377,7 @@ Provides: tex-cjk-ko = %{tl_version} License: GPL+ and LPPL and Public Domain Summary: Extension of the CJK package for Korean typesetting Version: svn40373 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35405,7 +35406,7 @@ requires nanumtype1 fonts. %package cjk-ko-doc Summary: Documentation for cjk-ko Version: svn40373 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cjk-ko-doc BuildArch: noarch AutoReqProv: No @@ -35418,7 +35419,7 @@ Provides: tex-cjkpunct = %{tl_version} License: LPPL Summary: Adjust locations and kerning of CJK punctuation marks Version: svn41119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35431,7 +35432,7 @@ The package serves as a companion package for CJK. %package cjkpunct-doc Summary: Documentation for cjkpunct Version: svn41119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cjkpunct-doc BuildArch: noarch AutoReqProv: No @@ -35444,7 +35445,7 @@ Provides: tex-cjk = %{tl_version} License: GPL+ Summary: CJK language support Version: svn36951.4.8.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35631,7 +35632,7 @@ Vietnamese are supported. %package cjk-doc Summary: Documentation for cjk Version: svn36951.4.8.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cjk-doc BuildArch: noarch AutoReqProv: No @@ -35648,7 +35649,7 @@ Provides: tex-cns = %{tl_version} License: LPPL Summary: cns package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35918,7 +35919,7 @@ cns package %package cns-doc Summary: Documentation for cns Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cns-doc BuildArch: noarch AutoReqProv: No @@ -35931,7 +35932,7 @@ Provides: tex-garuda-c90 = %{tl_version} License: LPPL Summary: TeX support (from CJK) for the garuda font Version: svn37677.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -35953,7 +35954,7 @@ Provides: tex-fonts-tlwg = %{tl_version} License: GPL+ Summary: Thai fonts for LaTeX from TLWG Version: svn41366 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -36188,7 +36189,7 @@ package. %package fonts-tlwg-doc Summary: Documentation for fonts-tlwg Version: svn41366 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fonts-tlwg-doc BuildArch: noarch AutoReqProv: No @@ -36201,7 +36202,7 @@ Provides: tex-norasi-c90 = %{tl_version} License: LPPL Summary: TeX support (from CJK) for the norasi font Version: svn37675.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -36223,7 +36224,7 @@ Provides: tex-uhc = %{tl_version} License: LPPL Summary: Fonts for the Korean language Version: svn16791.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -39400,7 +39401,7 @@ codes for LaTeX2e. %package uhc-doc Summary: Documentation for uhc Version: svn16791.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uhc-doc BuildArch: noarch AutoReqProv: No @@ -39413,7 +39414,7 @@ Provides: tex-wadalab = %{tl_version} License: Wadalab Summary: Wadalab (Japanese) font packages Version: svn22576.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40546,7 +40547,7 @@ subfonts. %package wadalab-doc Summary: Documentation for wadalab Version: svn22576.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wadalab-doc BuildArch: noarch AutoReqProv: No @@ -40559,7 +40560,7 @@ Provides: tex-cjkutils = %{tl_version} License: LPPL Summary: cjkutils package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40589,7 +40590,7 @@ Summary: Binaries for cjkutils Version: svn40473 Requires: texlive-base Requires: texlive-cjkutils -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description cjkutils-bin @@ -40600,7 +40601,7 @@ Provides: tex-classics = %{tl_version} License: LPPL 1.3 Summary: Cite classic works Version: svn29018.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40619,7 +40620,7 @@ citation packages. %package classics-doc Summary: Documentation for classics Version: svn29018.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-classics-doc BuildArch: noarch AutoReqProv: No @@ -40632,7 +40633,7 @@ Provides: tex-classicthesis = %{tl_version} License: GPLv2+ Summary: A "classically styled" thesis package Version: svn38304.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40670,7 +40671,7 @@ make thesis writing easier. %package classicthesis-doc Summary: Documentation for classicthesis Version: svn38304.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-classicthesis-doc BuildArch: noarch AutoReqProv: No @@ -40683,7 +40684,7 @@ Provides: tex-classpack = %{tl_version} License: LPPL 1.3 Summary: XML mastering for LaTeX classes and packages Version: svn33101.0.77 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40699,7 +40700,7 @@ expected by end users. %package classpack-doc Summary: Documentation for classpack Version: svn33101.0.77 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-classpack-doc BuildArch: noarch AutoReqProv: No @@ -40712,7 +40713,7 @@ Provides: tex-cleanthesis = %{tl_version} License: LPPL 1.3 Summary: A clean LaTeX style for thesis documents Version: svn38221.0.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40747,7 +40748,7 @@ thesis documents. %package cleanthesis-doc Summary: Documentation for cleanthesis Version: svn38221.0.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cleanthesis-doc BuildArch: noarch AutoReqProv: No @@ -40760,7 +40761,7 @@ Provides: tex-clearsans = %{tl_version} License: ASL 2.0 Summary: Clear Sans fonts with LaTeX support Version: svn34405.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40906,7 +40907,7 @@ TrueType and Type 1 formats. %package clearsans-doc Summary: Documentation for clearsans Version: svn34405.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clearsans-doc BuildArch: noarch AutoReqProv: No @@ -40919,7 +40920,7 @@ Provides: tex-clefval = %{tl_version} License: LPPL Summary: Key/value support with a hash Version: svn16549.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40938,7 +40939,7 @@ we have sometimes to protect them. %package clefval-doc Summary: Documentation for clefval Version: svn16549.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clefval-doc BuildArch: noarch AutoReqProv: No @@ -40951,7 +40952,7 @@ Provides: tex-cleveref = %{tl_version} License: LPPL Summary: Intelligent cross-referencing Version: svn32513.0.19 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40974,7 +40975,7 @@ range. %package cleveref-doc Summary: Documentation for cleveref Version: svn32513.0.19 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cleveref-doc BuildArch: noarch AutoReqProv: No @@ -40987,7 +40988,7 @@ Provides: tex-clipboard = %{tl_version} License: LPPL 1.3 Summary: Copy and paste into and across documents Version: svn28876.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41002,7 +41003,7 @@ documents. It replaces the copypaste package. %package clipboard-doc Summary: Documentation for clipboard Version: svn28876.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clipboard-doc BuildArch: noarch AutoReqProv: No @@ -41015,7 +41016,7 @@ Provides: tex-clock = %{tl_version} License: GPL+ Summary: Graphical and textual clocks for TeX and LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41034,7 +41035,7 @@ expandable; the default uses a custom Metafont font. %package clock-doc Summary: Documentation for clock Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clock-doc BuildArch: noarch AutoReqProv: No @@ -41047,7 +41048,7 @@ Provides: tex-cloze = %{tl_version} License: LPPL 1.3 Summary: A LuaLaTeX package for creating cloze texts Version: svn37811.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41068,7 +41069,7 @@ and one environment to generate cloze texts: \cloze, \clozefix, %package cloze-doc Summary: Documentation for cloze Version: svn37811.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cloze-doc BuildArch: noarch AutoReqProv: No @@ -41081,7 +41082,7 @@ Provides: tex-clrscode3e = %{tl_version} License: LPPL Summary: Typesets pseudocode as in Introduction to Algorithms Version: svn34887.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41100,7 +41101,7 @@ pseudocode in the text. %package clrscode3e-doc Summary: Documentation for clrscode3e Version: svn34887.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clrscode3e-doc BuildArch: noarch AutoReqProv: No @@ -41113,7 +41114,7 @@ Provides: tex-clrscode = %{tl_version} License: LPPL Summary: Typesets pseudocode as in Introduction to Algorithms Version: svn15878.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41131,7 +41132,7 @@ the pseudocode in the text. %package clrscode-doc Summary: Documentation for clrscode Version: svn15878.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-clrscode-doc BuildArch: noarch AutoReqProv: No @@ -41144,7 +41145,7 @@ Provides: tex-cmap = %{tl_version} License: LPPL Summary: Make PDF files searchable and copyable Version: svn41168 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41165,7 +41166,7 @@ pdfTeX. %package cmap-doc Summary: Documentation for cmap Version: svn41168 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmap-doc BuildArch: noarch AutoReqProv: No @@ -41178,7 +41179,7 @@ Provides: tex-cmarrows = %{tl_version} License: LPPL Summary: MetaPost arrows and braces in the Computer Modern style Version: svn24378.v0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41191,7 +41192,7 @@ in the Computer Modern style. %package cmarrows-doc Summary: Documentation for cmarrows Version: svn24378.v0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmarrows-doc BuildArch: noarch AutoReqProv: No @@ -41204,7 +41205,7 @@ Provides: tex-cmbright = %{tl_version} License: LPPL Summary: Computer Modern Bright fonts Version: svn21107.8.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41298,7 +41299,7 @@ part, and the maths fonts). %package cmbright-doc Summary: Documentation for cmbright Version: svn21107.8.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmbright-doc BuildArch: noarch AutoReqProv: No @@ -41311,7 +41312,7 @@ Provides: tex-cmcyr = %{tl_version} License: Public Domain Summary: Computer Modern fonts with cyrillic extensions Version: svn39273 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41914,7 +41915,7 @@ encodings. %package cmcyr-doc Summary: Documentation for cmcyr Version: svn39273 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmcyr-doc BuildArch: noarch AutoReqProv: No @@ -41927,7 +41928,7 @@ Provides: tex-cmdstring = %{tl_version} License: LPPL Summary: Get command name reliably Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41941,7 +41942,7 @@ Extracts the letters of a command's name (e.g., foo for command %package cmdstring-doc Summary: Documentation for cmdstring Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmdstring-doc BuildArch: noarch AutoReqProv: No @@ -41954,7 +41955,7 @@ Provides: tex-cmextra = %{tl_version} License: Knuth Summary: Knuth's local information Version: svn32831.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -41993,7 +41994,7 @@ Provides: tex-cm-lgc = %{tl_version} License: GPL+ Summary: Type 1 CM-based fonts for Latin, Greek and Cyrillic Version: svn28250.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -42464,7 +42465,7 @@ standards, and virtual fonts are provided for use with TeX. %package cm-lgc-doc Summary: Documentation for cm-lgc Version: svn28250.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cm-lgc-doc BuildArch: noarch AutoReqProv: No @@ -42477,7 +42478,7 @@ Provides: tex-cmll = %{tl_version} License: LPPL Summary: Symbols for linear logic Version: svn17964.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -42570,7 +42571,7 @@ support is provided. %package cmll-doc Summary: Documentation for cmll Version: svn17964.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmll-doc BuildArch: noarch AutoReqProv: No @@ -42583,7 +42584,7 @@ Provides: tex-cmpica = %{tl_version} License: Public Domain Summary: A Computer Modern Pica variant Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -42603,7 +42604,7 @@ supplied as Metafont source. %package cmpica-doc Summary: Documentation for cmpica Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmpica-doc BuildArch: noarch AutoReqProv: No @@ -42616,7 +42617,7 @@ Provides: tex-cmpj = %{tl_version} License: LPPL Summary: Style for the journal Condensed Matter Physics Version: svn33275.2.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -42645,7 +42646,7 @@ Physics of the National Academy of Sciences of Ukraine. %package cmpj-doc Summary: Documentation for cmpj Version: svn33275.2.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmpj-doc BuildArch: noarch AutoReqProv: No @@ -42658,7 +42659,7 @@ Provides: tex-cmsd = %{tl_version} License: LPPL Summary: Interfaces to the CM Sans Serif Bold fonts Version: svn18787.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -42682,7 +42683,7 @@ ones. %package cmsd-doc Summary: Documentation for cmsd Version: svn18787.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmsd-doc BuildArch: noarch AutoReqProv: No @@ -42695,7 +42696,7 @@ Provides: tex-cm-super = %{tl_version} License: GPL+ Summary: CM-Super family of fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43137,7 +43138,7 @@ the same metrics as the Metafont-encoded originals. %package cm-super-doc Summary: Documentation for cm-super Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cm-super-doc BuildArch: noarch AutoReqProv: No @@ -43150,7 +43151,7 @@ Provides: tex-cmtiup = %{tl_version} License: LPPL 1.3 Summary: Upright punctuation with CM italic Version: svn39728 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43178,7 +43179,7 @@ of vf files; a package for support in LaTeX 2e is provided. %package cmtiup-doc Summary: Documentation for cmtiup Version: svn39728 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cmtiup-doc BuildArch: noarch AutoReqProv: No @@ -43191,7 +43192,7 @@ Provides: tex-cm = %{tl_version} License: Knuth Summary: Computer Modern fonts Version: svn32865.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43291,7 +43292,7 @@ European Computer Modern and the Latin Modern families. %package cm-doc Summary: Documentation for cm Version: svn32865.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cm-doc BuildArch: noarch AutoReqProv: No @@ -43304,7 +43305,7 @@ Provides: tex-cm-unicode = %{tl_version} License: OFL Summary: Computer Modern Unicode font family Version: svn19445.0.7.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43408,7 +43409,7 @@ features, such as XeTeX and LuaTeX. %package cm-unicode-doc Summary: Documentation for cm-unicode Version: svn19445.0.7.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cm-unicode-doc BuildArch: noarch AutoReqProv: No @@ -43421,7 +43422,7 @@ Provides: tex-cnbwp = %{tl_version} License: LPPL Summary: Typeset working papers of the Czech National Bank Version: svn32550.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43458,7 +43459,7 @@ but it is also intended for authors from outside CNB. %package cnbwp-doc Summary: Documentation for cnbwp Version: svn32550.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cnbwp-doc BuildArch: noarch AutoReqProv: No @@ -43471,7 +43472,7 @@ Provides: tex-cnltx = %{tl_version} License: LPPL 1.3 Summary: LaTeX tools and documenting facilities Version: svn38138.0.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43536,7 +43537,7 @@ makeindex directory. %package cnltx-doc Summary: Documentation for cnltx Version: svn38138.0.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cnltx-doc BuildArch: noarch AutoReqProv: No @@ -43549,7 +43550,7 @@ Provides: tex-cntformats = %{tl_version} License: LPPL 1.3 Summary: A different way to read counters Version: svn34668.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43566,7 +43567,7 @@ counters with 'patterns'. These patterns do not affect affect %package cntformats-doc Summary: Documentation for cntformats Version: svn34668.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cntformats-doc BuildArch: noarch AutoReqProv: No @@ -43579,7 +43580,7 @@ Provides: tex-cntperchap = %{tl_version} License: LPPL 1.3 Summary: Store counter values per chapter Version: svn37572.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43604,7 +43605,7 @@ author) and xparse are needed as well. %package cntperchap-doc Summary: Documentation for cntperchap Version: svn37572.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cntperchap-doc BuildArch: noarch AutoReqProv: No @@ -43617,7 +43618,7 @@ Provides: tex-codedoc = %{tl_version} License: LPPL Summary: LaTeX code and documentation in LaTeX-format file Version: svn17630.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43640,7 +43641,7 @@ execute it. %package codedoc-doc Summary: Documentation for codedoc Version: svn17630.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-codedoc-doc BuildArch: noarch AutoReqProv: No @@ -43653,7 +43654,7 @@ Provides: tex-codepage = %{tl_version} License: BSD Summary: Support for variant code pages Version: svn21126.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43675,7 +43676,7 @@ LaTeX distribution. %package codepage-doc Summary: Documentation for codepage Version: svn21126.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-codepage-doc BuildArch: noarch AutoReqProv: No @@ -43688,7 +43689,7 @@ Provides: tex-codesection = %{tl_version} License: LPPL 1.3 Summary: Provides an environment that may be conditionally included Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43707,7 +43708,7 @@ are executed. %package codesection-doc Summary: Documentation for codesection Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-codesection-doc BuildArch: noarch AutoReqProv: No @@ -43720,7 +43721,7 @@ Provides: tex-codicefiscaleitaliano = %{tl_version} License: LPPL 1.3 Summary: Test the consistency of the Italian personal Fiscal Code Version: svn29803.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43737,7 +43738,7 @@ accountants that use fiscal codes very frequently. %package codicefiscaleitaliano-doc Summary: Documentation for codicefiscaleitaliano Version: svn29803.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-codicefiscaleitaliano-doc BuildArch: noarch AutoReqProv: No @@ -43750,7 +43751,7 @@ Provides: tex-collcell = %{tl_version} License: LPPL 1.3 Summary: Collect contents of a tabular cell as argument to a macro Version: svn21539.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43771,7 +43772,7 @@ cells. %package collcell-doc Summary: Documentation for collcell Version: svn21539.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-collcell-doc BuildArch: noarch AutoReqProv: No @@ -43784,7 +43785,7 @@ Provides: tex-collectbox = %{tl_version} License: LPPL 1.3 Summary: Collect and process macro arguments as boxes Version: svn26557.0.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43806,7 +43807,7 @@ The macros were designed for use within other macros. %package collectbox-doc Summary: Documentation for collectbox Version: svn26557.0.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-collectbox-doc BuildArch: noarch AutoReqProv: No @@ -43817,7 +43818,7 @@ Documentation for collectbox %package collection-basic Summary: Essential programs and files Version: svn41149 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: tex-texlive.infra @@ -43872,7 +43873,7 @@ Provides: tex-texlive.infra = %{tl_version} License: LPPL Summary: basic TeX Live infrastructure Version: svn41280 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43890,7 +43891,7 @@ install packages, and in the tlcritical repository. %package texlive.infra-doc Summary: Documentation for texlive.infra Version: svn41280 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive.infra-doc BuildArch: noarch AutoReqProv: No @@ -43903,7 +43904,7 @@ Summary: Binaries for texlive.infra Version: svn40312 Requires: texlive-base Requires: texlive-texlive.infra -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description texlive.infra-bin @@ -43914,7 +43915,7 @@ Provides: tex-dvipdfmx = %{tl_version} License: GPL+ Summary: An extended version of dvipdfm Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43943,7 +43944,7 @@ well, of course, as the package Readme. %package dvipdfmx-doc Summary: Documentation for dvipdfmx Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dvipdfmx-doc BuildArch: noarch AutoReqProv: No @@ -43956,7 +43957,7 @@ Provides: tex-glyphlist = %{tl_version} License: LPPL Summary: glyphlist package Version: svn28576.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43970,7 +43971,7 @@ Provides: tex-dvipdfmx-def = %{tl_version} License: LPPL Summary: Configuration file for dvipdfmx graphics Version: svn40328 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -43989,7 +43990,7 @@ Requires: texlive-dvipdfmx Requires: texlive-xetex-bin Provides: dvipdfmx = %{tl_version}, dvipdfm = %{tl_version}, texlive-dvipdfm-bin = %{epoch}:%{tl_version} Obsoletes: dvipdfmx < %{tl_version}, dvipdfm < %{tl_version}, texlive-dvipdfm-bin < %{epoch}:%{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvipdfmx-bin @@ -44000,7 +44001,7 @@ Provides: tex-dvips = %{tl_version} License: GPL+ Summary: A DVI to PostScript driver Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44082,7 +44083,7 @@ fi %package dvips-doc Summary: Documentation for dvips Version: svn41149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dvips-doc BuildArch: noarch AutoReqProv: No @@ -44095,7 +44096,7 @@ Summary: Binaries for dvips Version: svn40987 Requires: texlive-base Requires: texlive-dvips -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvips-bin @@ -44106,7 +44107,7 @@ Provides: tex-enctex = %{tl_version} License: GPL+ Summary: A TeX extension that translates input on its way into TeX Version: svn34957.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44161,7 +44162,7 @@ sequences, such as utf-8 encoding. %package enctex-doc Summary: Documentation for enctex Version: svn34957.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-enctex-doc BuildArch: noarch AutoReqProv: No @@ -44174,7 +44175,7 @@ Provides: tex-etex = %{tl_version} License: Knuth Summary: An extended version of TeX, from the NTS project Version: svn37057.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44193,7 +44194,7 @@ source repository. %package etex-doc Summary: Documentation for etex Version: svn37057.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etex-doc BuildArch: noarch AutoReqProv: No @@ -44206,7 +44207,7 @@ Provides: tex-etex-pkg = %{tl_version} License: LPPL Summary: E-TeX support package Version: svn39355 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44223,7 +44224,7 @@ more sophisticated use of e-TeX's facilities. %package etex-pkg-doc Summary: Documentation for etex-pkg Version: svn39355 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etex-pkg-doc BuildArch: noarch AutoReqProv: No @@ -44236,7 +44237,7 @@ Provides: tex-gsftopk = %{tl_version} License: GPL+ Summary: Convert "ghostscript fonts" to PK files Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44255,7 +44256,7 @@ Summary: Binaries for gsftopk Version: svn40473 Requires: texlive-base Requires: texlive-gsftopk -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description gsftopk-bin @@ -44266,7 +44267,7 @@ Provides: tex-hyph-utf8 = %{tl_version} License: Copyright only Summary: Hyphenation patterns expressed in UTF-8 Version: svn41189 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44297,7 +44298,7 @@ the older patterns. %package hyph-utf8-doc Summary: Documentation for hyph-utf8 Version: svn41189 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyph-utf8-doc BuildArch: noarch AutoReqProv: No @@ -44310,7 +44311,7 @@ Provides: tex-hyphen-base = %{tl_version} License: LPPL Summary: hyphen-base package Version: svn41138 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44331,7 +44332,7 @@ Provides: tex-ifluatex = %{tl_version} License: LPPL 1.3 Summary: Provides the \ifluatex switch Version: svn41346 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44346,7 +44347,7 @@ LaTeX. The package is part of the oberdiek bundle. %package ifluatex-doc Summary: Documentation for ifluatex Version: svn41346 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifluatex-doc BuildArch: noarch AutoReqProv: No @@ -44359,7 +44360,7 @@ Provides: tex-ifxetex = %{tl_version} License: LPPL Summary: Am I running under XeTeX? Version: svn19685.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44375,7 +44376,7 @@ set. %package ifxetex-doc Summary: Documentation for ifxetex Version: svn19685.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifxetex-doc BuildArch: noarch AutoReqProv: No @@ -44388,7 +44389,7 @@ Provides: tex-knuth-lib = %{tl_version} License: Knuth Summary: A small library of MetaFont sources Version: svn35820.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44416,7 +44417,7 @@ Provides: tex-knuth-local = %{tl_version} License: Knuth Summary: Knuth's local information Version: svn38627 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44436,7 +44437,7 @@ Provides: tex-lua-alt-getopt = %{tl_version} License: MIT Summary: Process application arguments the same way as getopt_long Version: svn29349.0.7.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44451,7 +44452,7 @@ writers to have consistent command line parsing routines. %package lua-alt-getopt-doc Summary: Documentation for lua-alt-getopt Version: svn29349.0.7.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lua-alt-getopt-doc BuildArch: noarch AutoReqProv: No @@ -44464,7 +44465,7 @@ Provides: tex-makeindex = %{tl_version} License: MakeIndex Summary: Makeindex development sources Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44479,7 +44480,7 @@ derived from the texlive subversion repository. %package makeindex-doc Summary: Documentation for makeindex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makeindex-doc BuildArch: noarch AutoReqProv: No @@ -44492,7 +44493,7 @@ Summary: Binaries for makeindex Version: svn40473 Requires: texlive-base Requires: texlive-makeindex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description makeindex-bin @@ -44503,7 +44504,7 @@ Provides: tex-metafont = %{tl_version} License: Knuth Summary: A system for specifying fonts Version: svn40793 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44541,7 +44542,7 @@ Summary: Binaries for metafont Version: svn40987 Requires: texlive-base Requires: texlive-metafont -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description metafont-bin @@ -44552,7 +44553,7 @@ Provides: tex-mflogo = %{tl_version} License: LPPL Summary: LaTeX support for Metafont logo fonts Version: svn38628 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44568,7 +44569,7 @@ Metafont logos in LaTeX documents. %package mflogo-doc Summary: Documentation for mflogo Version: svn38628 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mflogo-doc BuildArch: noarch AutoReqProv: No @@ -44581,7 +44582,7 @@ Provides: tex-mfware = %{tl_version} License: Knuth Summary: Supporting tools for use with Metafont Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44597,7 +44598,7 @@ Summary: Binaries for mfware Version: svn40473 Requires: texlive-base Requires: texlive-mfware -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description mfware-bin @@ -44608,7 +44609,7 @@ Provides: tex-tetex = %{tl_version} License: GPL+ and GPLv2+ and LPPL Summary: scripts and files originally written for or included in teTeX Version: svn41059 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44651,7 +44652,7 @@ of programs and packages. %package tetex-doc Summary: Documentation for tetex Version: svn41059 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tetex-doc BuildArch: noarch AutoReqProv: No @@ -44665,7 +44666,7 @@ Version: svn36770.0 Requires: texlive-base Requires: texlive-tetex Requires: texlive-texlive.infra -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description tetex-bin @@ -44676,7 +44677,7 @@ Provides: tex-texconfig = %{tl_version} License: LPPL Summary: texconfig package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44692,7 +44693,7 @@ Summary: Binaries for texconfig Version: svn29741.0 Requires: texlive-base Requires: texlive-texconfig -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texconfig-bin @@ -44701,7 +44702,7 @@ Binaries for texconfig %package texlive-common-doc Summary: Documentation for texlive-common Version: svn40682 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-common-doc BuildArch: noarch AutoReqProv: No @@ -44714,7 +44715,7 @@ Provides: tex-texlive-en = %{tl_version} License: LPPL Summary: TeX Live manual (English) Version: svn41185 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44735,7 +44736,7 @@ fi %package texlive-en-doc Summary: Documentation for texlive-en Version: svn41185 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-en-doc BuildArch: noarch AutoReqProv: No @@ -44748,7 +44749,7 @@ Provides: tex-texlive-msg-translations = %{tl_version} License: LPPL Summary: translations of the TeX Live installer and TeX Live Manager Version: svn41431 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44765,7 +44766,7 @@ Provides: tex-texlive-scripts = %{tl_version} License: LPPL Summary: TeX Live infrastructure programs Version: svn41433 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44782,7 +44783,7 @@ Summary: Binaries for texlive-scripts Version: svn29741.0 Requires: texlive-base Requires: texlive-texlive-scripts -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texlive-scripts-bin @@ -44793,7 +44794,7 @@ Provides: tex-xdvi = %{tl_version} License: MIT Summary: A DVI previewer for the X Window System Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -44814,7 +44815,7 @@ Requires: texlive-base Requires: texlive-xdvi Provides: xdvi = %{tl_version}, xdvik = %{tl_version}, tetex-xdvi = 3.1-99 Obsoletes: xdvi < %{tl_version}, xdvik < %{tl_version}, tetex-xdvi < 3.1-99 -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description xdvi-bin @@ -44823,7 +44824,7 @@ Binaries for xdvi %package collection-bibtexextra Summary: BibTeX additional styles Version: svn41332 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -44945,7 +44946,7 @@ including BibLaTeX. %package collection-latex Summary: LaTeX fundamental packages Version: svn41011 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -44990,7 +44991,7 @@ Provides: tex-colortbl = %{tl_version} License: LPPL Summary: Add colour to LaTeX tables Version: svn29803.v1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45006,7 +45007,7 @@ individual cells. %package colortbl-doc Summary: Documentation for colortbl Version: svn29803.v1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colortbl-doc BuildArch: noarch AutoReqProv: No @@ -45019,7 +45020,7 @@ Provides: tex-fancyhdr = %{tl_version} License: LPPL Summary: Extensive control of page headers and footers in LaTeX2e Version: svn15878.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45037,7 +45038,7 @@ the heading style in use). %package fancyhdr-doc Summary: Documentation for fancyhdr Version: svn15878.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancyhdr-doc BuildArch: noarch AutoReqProv: No @@ -45050,7 +45051,7 @@ Provides: tex-fix2col = %{tl_version} License: LPPL Summary: Fix miscellaneous two column mode features Version: svn38770 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45066,7 +45067,7 @@ figure. %package fix2col-doc Summary: Documentation for fix2col Version: svn38770 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fix2col-doc BuildArch: noarch AutoReqProv: No @@ -45079,7 +45080,7 @@ Provides: tex-geometry = %{tl_version} License: LPPL Summary: Flexible and complete interface to document dimensions Version: svn19716.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45108,7 +45109,7 @@ direct interaction with PDF(La)TeX). %package geometry-doc Summary: Documentation for geometry Version: svn19716.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-geometry-doc BuildArch: noarch AutoReqProv: No @@ -45121,7 +45122,7 @@ Provides: tex-graphics = %{tl_version} License: LPPL 1.3 Summary: Standard LaTeX graphics Version: svn41015 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45165,7 +45166,7 @@ set of packages. %package graphics-doc Summary: Documentation for graphics Version: svn41015 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphics-doc BuildArch: noarch AutoReqProv: No @@ -45178,7 +45179,7 @@ Provides: tex-hyperref = %{tl_version} License: LPPL Summary: Extensive support for hypertext in LaTeX Version: svn41396 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45253,7 +45254,7 @@ author's kvoptions, ltxcmdsand refcount packages. %package hyperref-doc Summary: Documentation for hyperref Version: svn41396 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyperref-doc BuildArch: noarch AutoReqProv: No @@ -45266,7 +45267,7 @@ Provides: tex-latex-bin = %{tl_version} License: LPPL Summary: LaTeX executables and man pages Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45305,7 +45306,7 @@ Requires: texlive-base Requires: texlive-latex-bin # bz 995752 Requires: texlive-texconfig-bin -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latex-bin-bin @@ -45316,7 +45317,7 @@ Provides: tex-ltxmisc = %{tl_version} License: Public Domain Summary: Miscellaneous LaTeX packages, etc Version: svn21927.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45350,7 +45351,7 @@ Provides: tex-mfnfss = %{tl_version} License: LPPL Summary: Packages to typeset oldgerman and pandora fonts in LaTeX Version: svn19410.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45374,7 +45375,7 @@ also available via the pandora-latex package. %package mfnfss-doc Summary: Documentation for mfnfss Version: svn19410.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mfnfss-doc BuildArch: noarch AutoReqProv: No @@ -45387,7 +45388,7 @@ Provides: tex-mptopdf = %{tl_version} License: LPPL Summary: mpost to PDF, native MetaPost graphics inclusion Version: svn41282 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45421,7 +45422,7 @@ fi %package mptopdf-doc Summary: Documentation for mptopdf Version: svn41282 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mptopdf-doc BuildArch: noarch AutoReqProv: No @@ -45434,7 +45435,7 @@ Summary: Binaries for mptopdf Version: svn18674.0 Requires: texlive-base Requires: texlive-mptopdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mptopdf-bin @@ -45445,7 +45446,7 @@ Provides: tex-natbib = %{tl_version} License: LPPL Summary: Flexible bibliography support Version: svn20668.8.31b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45465,7 +45466,7 @@ natbib. %package natbib-doc Summary: Documentation for natbib Version: svn20668.8.31b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-natbib-doc BuildArch: noarch AutoReqProv: No @@ -45478,7 +45479,7 @@ Provides: tex-oberdiek = %{tl_version} License: LPPL Summary: A bundle of packages submitted by Heiko Oberdiek Version: svn41346 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45857,7 +45858,7 @@ running the .dtx file with Plain TeX. %package oberdiek-doc Summary: Documentation for oberdiek Version: svn41346 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oberdiek-doc BuildArch: noarch AutoReqProv: No @@ -45870,7 +45871,7 @@ Provides: tex-pslatex = %{tl_version} License: LPPL Summary: Use PostScript fonts by default Version: svn16416.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -45905,7 +45906,7 @@ Provides: tex-psnfss = %{tl_version} License: LPPL Summary: Font support for common PostScript fonts Version: svn33946.9.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46054,7 +46055,7 @@ packages. %package psnfss-doc Summary: Documentation for psnfss Version: svn33946.9.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psnfss-doc BuildArch: noarch AutoReqProv: No @@ -46068,7 +46069,7 @@ Provides: tex-pspicture = %{tl_version} License: LPPL Summary: PostScript picture support Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46083,7 +46084,7 @@ pict2e. %package pspicture-doc Summary: Documentation for pspicture Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pspicture-doc BuildArch: noarch AutoReqProv: No @@ -46096,7 +46097,7 @@ Provides: tex-tools = %{tl_version} License: LPPL 1.3 Summary: The LaTeX standard tools bundle Version: svn40934 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46153,7 +46154,7 @@ theorem, trace, varioref, verbatim, xr, and xspace. %package tools-doc Summary: Documentation for tools Version: svn40934 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tools-doc BuildArch: noarch AutoReqProv: No @@ -46166,7 +46167,7 @@ Provides: tex-url = %{tl_version} License: LPPL Summary: Verbatim with URL-sensitive line breaks Version: svn32528.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46189,7 +46190,7 @@ file names. %package url-doc Summary: Documentation for url Version: svn32528.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-url-doc BuildArch: noarch AutoReqProv: No @@ -46202,7 +46203,7 @@ Provides: tex-collref = %{tl_version} License: LPPL 1.3 Summary: Collect blocks of references into a single reference Version: svn35084.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46217,7 +46218,7 @@ into a single \bibitem block. %package collref-doc Summary: Documentation for collref Version: svn35084.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-collref-doc BuildArch: noarch AutoReqProv: No @@ -46230,7 +46231,7 @@ Provides: tex-compactbib = %{tl_version} License: LPPL Summary: Multiple thebibliography environments Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46246,7 +46247,7 @@ Provides: tex-crossrefware = %{tl_version} License: GPL+ Summary: Scripts for working with crossref.org Version: svn39727 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46265,7 +46266,7 @@ parent site %package crossrefware-doc Summary: Documentation for crossrefware Version: svn39727 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crossrefware-doc BuildArch: noarch AutoReqProv: No @@ -46278,7 +46279,7 @@ Summary: Binaries for crossrefware Version: svn35401.0 Requires: texlive-base Requires: texlive-crossrefware -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description crossrefware-bin @@ -46289,7 +46290,7 @@ Provides: tex-custom-bib = %{tl_version} License: LPPL Summary: Customised BibTeX styles Version: svn24729.4.33 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46307,7 +46308,7 @@ citations. %package custom-bib-doc Summary: Documentation for custom-bib Version: svn24729.4.33 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-custom-bib-doc BuildArch: noarch AutoReqProv: No @@ -46320,7 +46321,7 @@ Provides: tex-din1505 = %{tl_version} License: Bibtex Summary: Bibliography styles for German texts Version: svn19441.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46334,7 +46335,7 @@ abbrv), together with a style natdin to work with natbib. %package din1505-doc Summary: Documentation for din1505 Version: svn19441.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-din1505-doc BuildArch: noarch AutoReqProv: No @@ -46347,7 +46348,7 @@ Provides: tex-dk-bib = %{tl_version} License: GPLv2+ Summary: Danish variants of standard BibTeX styles Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46368,7 +46369,7 @@ order files for BibTeX8. %package dk-bib-doc Summary: Documentation for dk-bib Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dk-bib-doc BuildArch: noarch AutoReqProv: No @@ -46381,7 +46382,7 @@ Provides: tex-doipubmed = %{tl_version} License: LPPL Summary: Special commands for use in bibliographies Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46397,7 +46398,7 @@ bibliographies. A LaTeX2HTML style file is also provided. %package doipubmed-doc Summary: Documentation for doipubmed Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doipubmed-doc BuildArch: noarch AutoReqProv: No @@ -46410,7 +46411,7 @@ Provides: tex-economic = %{tl_version} License: LPPL Summary: BibTeX support for submitting to Economics journals Version: svn32639.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46464,7 +46465,7 @@ provide variations of author-date styles of presentation. %package economic-doc Summary: Documentation for economic Version: svn32639.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-economic-doc BuildArch: noarch AutoReqProv: No @@ -46477,7 +46478,7 @@ Provides: tex-fbs = %{tl_version} License: LPPL Summary: BibTeX style for Frontiers in Bioscience Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46495,7 +46496,7 @@ Provides: tex-figbib = %{tl_version} License: LPPL Summary: Organize figure databases with BibTeX Version: svn19388.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46514,7 +46515,7 @@ in a separate part at the end of your document. %package figbib-doc Summary: Documentation for figbib Version: svn19388.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-figbib-doc BuildArch: noarch AutoReqProv: No @@ -46527,7 +46528,7 @@ Provides: tex-footbib = %{tl_version} License: LPPL Summary: Bibliographic references as footnotes Version: svn17115.2.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46549,7 +46550,7 @@ standard bibliography style may be used. %package footbib-doc Summary: Documentation for footbib Version: svn17115.2.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-footbib-doc BuildArch: noarch AutoReqProv: No @@ -46562,7 +46563,7 @@ Provides: tex-francais-bst = %{tl_version} License: LPPL 1.3 Summary: Bibliographies conforming to French typographic standards Version: svn38922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46578,7 +46579,7 @@ with natbib %package francais-bst-doc Summary: Documentation for francais-bst Version: svn38922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-francais-bst-doc BuildArch: noarch AutoReqProv: No @@ -46591,7 +46592,7 @@ Provides: tex-geschichtsfrkl = %{tl_version} License: LPPL Summary: BibLaTeX style for historians Version: svn41302 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46608,7 +46609,7 @@ Freiburg (Germany). %package geschichtsfrkl-doc Summary: Documentation for geschichtsfrkl Version: svn41302 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-geschichtsfrkl-doc BuildArch: noarch AutoReqProv: No @@ -46621,7 +46622,7 @@ Provides: tex-harvard = %{tl_version} License: LPPL Summary: Harvard citation package for use with LaTeX 2e Version: svn15878.2.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46648,7 +46649,7 @@ behaviour. %package harvard-doc Summary: Documentation for harvard Version: svn15878.2.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harvard-doc BuildArch: noarch AutoReqProv: No @@ -46661,7 +46662,7 @@ Provides: tex-harvmac = %{tl_version} License: CC-BY Summary: Macros for scientific articles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46674,7 +46675,7 @@ Known as 'Harvard macros', since written at that University. %package harvmac-doc Summary: Documentation for harvmac Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harvmac-doc BuildArch: noarch AutoReqProv: No @@ -46687,7 +46688,7 @@ Provides: tex-historische-zeitschrift = %{tl_version} License: LPPL Summary: Biblatex style for the journal 'Historische Zeitschrift' Version: svn34703.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46708,7 +46709,7 @@ biblatex (version 0.8 or higher) as well as etoolbox (version %package historische-zeitschrift-doc Summary: Documentation for historische-zeitschrift Version: svn34703.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-historische-zeitschrift-doc BuildArch: noarch AutoReqProv: No @@ -46721,7 +46722,7 @@ Provides: tex-ijqc = %{tl_version} License: LPPL Summary: BibTeX style file for the Intl. J. Quantum Chem Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46736,7 +46737,7 @@ is provided without any warranty one could ever think of. %package ijqc-doc Summary: Documentation for ijqc Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ijqc-doc BuildArch: noarch AutoReqProv: No @@ -46749,7 +46750,7 @@ Provides: tex-inlinebib = %{tl_version} License: LPPL Summary: Citations in footnotes Version: svn22018.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46766,7 +46767,7 @@ and "ibid." contractions. %package inlinebib-doc Summary: Documentation for inlinebib Version: svn22018.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-inlinebib-doc BuildArch: noarch AutoReqProv: No @@ -46779,7 +46780,7 @@ Provides: tex-iopart-num = %{tl_version} License: LPPL Summary: Numeric citation style for IOP journals Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46793,7 +46794,7 @@ journals, including Journal of Physics. %package iopart-num-doc Summary: Documentation for iopart-num Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iopart-num-doc BuildArch: noarch AutoReqProv: No @@ -46806,7 +46807,7 @@ Provides: tex-jneurosci = %{tl_version} License: LPPL Summary: BibTeX style for the Journal of Neuroscience Version: svn17346.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46822,7 +46823,7 @@ style; a BibTeX style and a LaTeX package are provided. %package jneurosci-doc Summary: Documentation for jneurosci Version: svn17346.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jneurosci-doc BuildArch: noarch AutoReqProv: No @@ -46835,7 +46836,7 @@ Provides: tex-jurabib = %{tl_version} License: GPL+ Summary: Extended BibTeX citation support for the humanities and legal texts Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46878,7 +46879,7 @@ bibliography entries is possible by the special language field. %package jurabib-doc Summary: Documentation for jurabib Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jurabib-doc BuildArch: noarch AutoReqProv: No @@ -46891,7 +46892,7 @@ Provides: tex-ksfh_nat = %{tl_version} License: LPPL 1.3 Summary: BibTeX style for KSFH Munich Version: svn24825.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46908,7 +46909,7 @@ Provides: tex-listbib = %{tl_version} License: GPL+ Summary: Lists contents of BibTeX files Version: svn29349.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46927,7 +46928,7 @@ styles. %package listbib-doc Summary: Documentation for listbib Version: svn29349.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listbib-doc BuildArch: noarch AutoReqProv: No @@ -46940,7 +46941,7 @@ Summary: Binaries for listbib Version: svn26126.0 Requires: texlive-base Requires: texlive-listbib -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description listbib-bin @@ -46951,7 +46952,7 @@ Provides: tex-logreq = %{tl_version} License: LPPL 1.3 Summary: Support for automation of the LaTeX workflow Version: svn19640.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -46978,7 +46979,7 @@ external XML file at the end of the document. %package logreq-doc Summary: Documentation for logreq Version: svn19640.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logreq-doc BuildArch: noarch AutoReqProv: No @@ -46991,7 +46992,7 @@ Provides: tex-margbib = %{tl_version} License: GPL+ Summary: Display bibitem tags in the margins Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47005,7 +47006,7 @@ place the citation key into the margin. %package margbib-doc Summary: Documentation for margbib Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-margbib-doc BuildArch: noarch AutoReqProv: No @@ -47018,7 +47019,7 @@ Provides: tex-multibib = %{tl_version} License: LPPL Summary: Multiple bibliographies within one document Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47036,7 +47037,7 @@ compatible with inlinebib, natbib, and koma-script. %package multibib-doc Summary: Documentation for multibib Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multibib-doc BuildArch: noarch AutoReqProv: No @@ -47049,7 +47050,7 @@ Provides: tex-multibibliography = %{tl_version} License: LPPL 1.3 Summary: Multiple versions of a bibliography, with different sort orders Version: svn30939.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47069,7 +47070,7 @@ bibliography packages). %package multibibliography-doc Summary: Documentation for multibibliography Version: svn30939.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multibibliography-doc BuildArch: noarch AutoReqProv: No @@ -47082,7 +47083,7 @@ Summary: Binaries for multibibliography Version: svn30534.0 Requires: texlive-base Requires: texlive-multibibliography -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description multibibliography-bin @@ -47093,7 +47094,7 @@ Provides: tex-munich = %{tl_version} License: LPPL Summary: An alternative authordate bibliography style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47107,7 +47108,7 @@ to such author-date styles as harvard and oxford. %package munich-doc Summary: Documentation for munich Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-munich-doc BuildArch: noarch AutoReqProv: No @@ -47120,7 +47121,7 @@ Provides: tex-nar = %{tl_version} License: Bibtex Summary: BibTeX style for Nucleic Acid Research Version: svn38100.3.19 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47136,7 +47137,7 @@ Provides: tex-nmbib = %{tl_version} License: LPPL 1.3 Summary: Multiple versions of a bibliography, with different sort orders Version: svn37984.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47154,7 +47155,7 @@ natbib package, and provides other improvements. %package nmbib-doc Summary: Documentation for nmbib Version: svn37984.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nmbib-doc BuildArch: noarch AutoReqProv: No @@ -47167,7 +47168,7 @@ Provides: tex-notes2bib = %{tl_version} License: LPPL Summary: Integrating notes into the bibliography Version: svn31162.2.0k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47192,7 +47193,7 @@ LaTeX 3 support from the l3kernel and l3packages bundles. %package notes2bib-doc Summary: Documentation for notes2bib Version: svn31162.2.0k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-notes2bib-doc BuildArch: noarch AutoReqProv: No @@ -47205,7 +47206,7 @@ Provides: tex-oscola = %{tl_version} License: LPPL 1.3 Summary: BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities Version: svn34207.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47226,7 +47227,7 @@ conjunction with appropriate indexing packages). %package oscola-doc Summary: Documentation for oscola Version: svn34207.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oscola-doc BuildArch: noarch AutoReqProv: No @@ -47239,7 +47240,7 @@ Provides: tex-perception = %{tl_version} License: LPPL Summary: BibTeX style for the journal Perception Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47251,7 +47252,7 @@ A product of custom-bib, provided simply to save others' time. %package perception-doc Summary: Documentation for perception Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-perception-doc BuildArch: noarch AutoReqProv: No @@ -47264,7 +47265,7 @@ Provides: tex-pnas2009 = %{tl_version} License: Bibtex Summary: Bibtex style for PNAS Version: svn16287.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47281,7 +47282,7 @@ Provides: tex-rsc = %{tl_version} License: GPL+ Summary: BibTeX style for use with RSC journals Version: svn20942.3.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47303,7 +47304,7 @@ unify the writing of articles with a chemistry content. %package rsc-doc Summary: Documentation for rsc Version: svn20942.3.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rsc-doc BuildArch: noarch AutoReqProv: No @@ -47316,7 +47317,7 @@ Provides: tex-showtags = %{tl_version} License: Public Domain Summary: Print the tags of bibliography entries Version: svn20336.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47329,7 +47330,7 @@ Prints the tag right-aligned on each line of the bibliography. %package showtags-doc Summary: Documentation for showtags Version: svn20336.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showtags-doc BuildArch: noarch AutoReqProv: No @@ -47342,7 +47343,7 @@ Provides: tex-sort-by-letters = %{tl_version} License: Bibtex Summary: Bibliography styles for alphabetic sorting Version: svn27128.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47357,7 +47358,7 @@ from standard ones or from natbib ones. %package sort-by-letters-doc Summary: Documentation for sort-by-letters Version: svn27128.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sort-by-letters-doc BuildArch: noarch AutoReqProv: No @@ -47370,7 +47371,7 @@ Provides: tex-splitbib = %{tl_version} License: LPPL Summary: Split and reorder your bibliography Version: svn15878.1.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47385,7 +47386,7 @@ bibliography may be split and reordered. %package splitbib-doc Summary: Documentation for splitbib Version: svn15878.1.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-splitbib-doc BuildArch: noarch AutoReqProv: No @@ -47398,7 +47399,7 @@ Provides: tex-turabian-formatting = %{tl_version} License: LPPL 1.3 Summary: Formatting based on Turabian's Manual Version: svn40065 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47429,7 +47430,7 @@ Students and Researchers" (8th edition). %package turabian-formatting-doc Summary: Documentation for turabian-formatting Version: svn40065 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-turabian-formatting-doc BuildArch: noarch AutoReqProv: No @@ -47442,7 +47443,7 @@ Provides: tex-uni-wtal-ger = %{tl_version} License: LPPL 1.3 Summary: Citation style for literary studies at the University of Wuppertal Version: svn31541.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47461,7 +47462,7 @@ Universitat Wuppertal. %package uni-wtal-ger-doc Summary: Documentation for uni-wtal-ger Version: svn31541.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uni-wtal-ger-doc BuildArch: noarch AutoReqProv: No @@ -47474,7 +47475,7 @@ Provides: tex-uni-wtal-lin = %{tl_version} License: LPPL 1.3 Summary: Citation style for linguistic studies at the University of Wuppertal Version: svn31409.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47493,7 +47494,7 @@ Bergische Universitat Wuppertal. %package uni-wtal-lin-doc Summary: Documentation for uni-wtal-lin Version: svn31409.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uni-wtal-lin-doc BuildArch: noarch AutoReqProv: No @@ -47506,7 +47507,7 @@ Provides: tex-urlbst = %{tl_version} License: GPL+ Summary: Web support for BibTeX Version: svn29803.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47523,7 +47524,7 @@ is meant to be robust rather than pretty. %package urlbst-doc Summary: Documentation for urlbst Version: svn29803.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-urlbst-doc BuildArch: noarch AutoReqProv: No @@ -47536,7 +47537,7 @@ Summary: Binaries for urlbst Version: svn23262.0 Requires: texlive-base Requires: texlive-urlbst -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description urlbst-bin @@ -47547,7 +47548,7 @@ Provides: tex-usebib = %{tl_version} License: LPPL 1.3 Summary: A simple bibliography processor Version: svn25969.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47567,7 +47568,7 @@ database. %package usebib-doc Summary: Documentation for usebib Version: svn25969.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-usebib-doc BuildArch: noarch AutoReqProv: No @@ -47580,7 +47581,7 @@ Provides: tex-vak = %{tl_version} License: LPPL Summary: BibTeX style for Russian Theses, books, etc Version: svn23431.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47599,7 +47600,7 @@ requires a 8-bit BibTeX system. %package vak-doc Summary: Documentation for vak Version: svn23431.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vak-doc BuildArch: noarch AutoReqProv: No @@ -47612,7 +47613,7 @@ Provides: tex-xcite = %{tl_version} License: LPPL 1.3 Summary: Use citation keys from a different document Version: svn23783.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47626,7 +47627,7 @@ just as the xr package allows cross-document use of labels. %package xcite-doc Summary: Documentation for xcite Version: svn23783.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcite-doc BuildArch: noarch AutoReqProv: No @@ -47637,7 +47638,7 @@ Documentation for xcite %package collection-binextra Summary: TeX auxiliary programs Version: svn40690 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -47727,7 +47728,7 @@ programming, patgen, and the TeX Works Editor. %package ctan_chk-doc Summary: Documentation for ctan_chk Version: svn36304.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctan_chk-doc BuildArch: noarch AutoReqProv: No @@ -47740,7 +47741,7 @@ Provides: tex-ctanify = %{tl_version} License: LPPL 1.3 Summary: Prepare a package for upload to CTAN Version: svn39569 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47760,7 +47761,7 @@ install/ tree.) %package ctanify-doc Summary: Documentation for ctanify Version: svn39569 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctanify-doc BuildArch: noarch AutoReqProv: No @@ -47773,7 +47774,7 @@ Summary: Binaries for ctanify Version: svn24061.0 Requires: texlive-base Requires: texlive-ctanify -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ctanify-bin @@ -47784,7 +47785,7 @@ Provides: tex-ctanupload = %{tl_version} License: GPLv3+ Summary: Support for users uploading to CTAN Version: svn26313.1.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47801,7 +47802,7 @@ currently not working. %package ctanupload-doc Summary: Documentation for ctanupload Version: svn26313.1.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctanupload-doc BuildArch: noarch AutoReqProv: No @@ -47814,7 +47815,7 @@ Summary: Binaries for ctanupload Version: svn23866.0 Requires: texlive-base Requires: texlive-ctanupload -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ctanupload-bin @@ -47825,7 +47826,7 @@ Provides: tex-ctie = %{tl_version} License: GPL+ Summary: C version of tie (merging Web change files) Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47841,7 +47842,7 @@ Summary: Binaries for ctie Version: svn40473 Requires: texlive-base Requires: texlive-ctie -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description ctie-bin @@ -47852,7 +47853,7 @@ Provides: tex-cweb = %{tl_version} License: Knuth Summary: A Web system in C Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47874,7 +47875,7 @@ programming language C. %package cweb-doc Summary: Documentation for cweb Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cweb-doc BuildArch: noarch AutoReqProv: No @@ -47887,7 +47888,7 @@ Summary: Binaries for cweb Version: svn40473 Requires: texlive-base Requires: texlive-cweb -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description cweb-bin @@ -47898,7 +47899,7 @@ Provides: tex-de-macro = %{tl_version} License: AFL Summary: Expand private macros in a document Version: svn26355.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47917,7 +47918,7 @@ document, or in the document's "private" package file. %package de-macro-doc Summary: Documentation for de-macro Version: svn26355.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-de-macro-doc BuildArch: noarch AutoReqProv: No @@ -47930,7 +47931,7 @@ Summary: Binaries for de-macro Version: svn17399.0 Requires: texlive-base Requires: texlive-de-macro -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description de-macro-bin @@ -47941,7 +47942,7 @@ Provides: tex-detex = %{tl_version} License: NCSA Summary: Strip TeX from a source file Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47961,7 +47962,7 @@ Summary: Binaries for detex Version: svn40750 Requires: texlive-base Requires: texlive-detex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description detex-bin @@ -47972,7 +47973,7 @@ Provides: tex-dtl = %{tl_version} License: Public Domain Summary: Tools to dis-assemble and re-assemble DVI files Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -47992,7 +47993,7 @@ Summary: Binaries for dtl Version: svn40473 Requires: texlive-base Requires: texlive-dtl -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dtl-bin @@ -48003,7 +48004,7 @@ Provides: tex-dtxgen = %{tl_version} License: GPL+ Summary: Creates a template for a self-extracting .dtx file Version: svn38419 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48018,7 +48019,7 @@ Documented LaTeX Source (.dtx) file. %package dtxgen-doc Summary: Documentation for dtxgen Version: svn38419 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dtxgen-doc BuildArch: noarch AutoReqProv: No @@ -48031,7 +48032,7 @@ Summary: Binaries for dtxgen Version: svn29031.0 Requires: texlive-base Requires: texlive-dtxgen -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description dtxgen-bin @@ -48042,7 +48043,7 @@ Provides: tex-dvi2tty = %{tl_version} License: GPL+ Summary: Produce ASCII from DVI Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48059,7 +48060,7 @@ Summary: Binaries for dvi2tty Version: svn40473 Requires: texlive-base Requires: texlive-dvi2tty -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvi2tty-bin @@ -48070,7 +48071,7 @@ Provides: tex-dviasm = %{tl_version} License: GPLv3+ Summary: A utility for editing DVI files Version: svn36814.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48086,7 +48087,7 @@ preprint number or watermarks. %package dviasm-doc Summary: Documentation for dviasm Version: svn36814.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dviasm-doc BuildArch: noarch AutoReqProv: No @@ -48099,7 +48100,7 @@ Summary: Binaries for dviasm Version: svn8329.0 Requires: texlive-base Requires: texlive-dviasm -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description dviasm-bin @@ -48110,7 +48111,7 @@ Provides: tex-dvicopy = %{tl_version} License: GPL+ Summary: Copy DVI files, flattening VFs Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48128,7 +48129,7 @@ Summary: Binaries for dvicopy Version: svn40473 Requires: texlive-base Requires: texlive-dvicopy -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvicopy-bin @@ -48139,7 +48140,7 @@ Provides: tex-dvidvi = %{tl_version} License: Copyright only Summary: Convert one DVI file into another Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48156,7 +48157,7 @@ Summary: Binaries for dvidvi Version: svn40473 Requires: texlive-base Requires: texlive-dvidvi -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvidvi-bin @@ -48167,7 +48168,7 @@ Provides: tex-dviljk = %{tl_version} License: GPL+ Summary: DVI to Laserjet output Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48186,7 +48187,7 @@ Summary: Binaries for dviljk Version: svn40473 Requires: texlive-base Requires: texlive-dviljk -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dviljk-bin @@ -48197,7 +48198,7 @@ Provides: tex-dvipng = %{tl_version} License: LGPLv2+ Summary: A fast DVI to PNG/GIF converter Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48233,7 +48234,7 @@ fi %package dvipng-doc Summary: Documentation for dvipng Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dvipng-doc BuildArch: noarch AutoReqProv: No @@ -48248,7 +48249,7 @@ Requires: texlive-base Requires: texlive-dvipng Provides: dvipng = %{tl_version} Obsoletes: dvipng < %{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvipng-bin @@ -48259,7 +48260,7 @@ Provides: tex-dvipos = %{tl_version} License: LPPL Summary: dvipos package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48274,7 +48275,7 @@ Summary: Binaries for dvipos Version: svn40473 Requires: texlive-base Requires: texlive-dvipos -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvipos-bin @@ -48285,7 +48286,7 @@ Provides: tex-dvisvgm = %{tl_version} License: GPL+ Summary: Convert DVI files to Scalable Vector Graphics format (SVG) Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48313,7 +48314,7 @@ Requires: texlive-base Requires: texlive-dvisvgm Provides: dvisvgm = %{tl_version} Obsoletes: dvisvgm < %{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description dvisvgm-bin @@ -48324,7 +48325,7 @@ Provides: tex-findhyph = %{tl_version} License: GPL+ Summary: Find hyphenated words in a document Version: svn38674 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48340,7 +48341,7 @@ word that's being referenced. %package findhyph-doc Summary: Documentation for findhyph Version: svn38674 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-findhyph-doc BuildArch: noarch AutoReqProv: No @@ -48353,7 +48354,7 @@ Summary: Binaries for findhyph Version: svn14758.0 Requires: texlive-base Requires: texlive-findhyph -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description findhyph-bin @@ -48364,7 +48365,7 @@ Provides: tex-fragmaster = %{tl_version} License: GPL+ Summary: Using psfrag with PDFLaTeX Version: svn26313.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48379,7 +48380,7 @@ produces PDF and EPS files with the substitutions included. %package fragmaster-doc Summary: Documentation for fragmaster Version: svn26313.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fragmaster-doc BuildArch: noarch AutoReqProv: No @@ -48392,7 +48393,7 @@ Summary: Binaries for fragmaster Version: svn13663.0 Requires: texlive-base Requires: texlive-fragmaster -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description fragmaster-bin @@ -48401,7 +48402,7 @@ Binaries for fragmaster %package hook-pre-commit-pkg-doc Summary: Documentation for hook-pre-commit-pkg Version: svn41378 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hook-pre-commit-pkg-doc BuildArch: noarch AutoReqProv: No @@ -48414,7 +48415,7 @@ Provides: tex-hyphenex = %{tl_version} License: Public Domain Summary: US English hyphenation exceptions file Version: svn37354.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48434,7 +48435,7 @@ Provides: tex-installfont = %{tl_version} License: LPPL Summary: A bash script for installing a LaTeX font family Version: svn31205.v1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48454,7 +48455,7 @@ have a working font installation in your local TeX tree. %package installfont-doc Summary: Documentation for installfont Version: svn31205.v1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-installfont-doc BuildArch: noarch AutoReqProv: No @@ -48467,7 +48468,7 @@ Provides: tex-lacheck = %{tl_version} License: GPL+ Summary: LaTeX checker Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48484,7 +48485,7 @@ Summary: Binaries for lacheck Version: svn40473 Requires: texlive-base Requires: texlive-lacheck -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description lacheck-bin @@ -48495,7 +48496,7 @@ Provides: tex-latex-git-log = %{tl_version} License: GPLv3+ Summary: Typeset git log information Version: svn30983.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48511,7 +48512,7 @@ typesetting in landscape orientation. %package latex-git-log-doc Summary: Documentation for latex-git-log Version: svn30983.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-git-log-doc BuildArch: noarch AutoReqProv: No @@ -48524,7 +48525,7 @@ Summary: Binaries for latex-git-log Version: svn30983.0 Requires: texlive-base Requires: texlive-latex-git-log -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latex-git-log-bin @@ -48535,7 +48536,7 @@ Provides: tex-latex2man = %{tl_version} License: LPPL Summary: Translate LaTeX-based manual pages into Unix man format Version: svn31989.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48566,7 +48567,7 @@ fi %package latex2man-doc Summary: Documentation for latex2man Version: svn31989.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex2man-doc BuildArch: noarch AutoReqProv: No @@ -48579,7 +48580,7 @@ Summary: Binaries for latex2man Version: svn13663.0 Requires: texlive-base Requires: texlive-latex2man -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latex2man-bin @@ -48590,7 +48591,7 @@ Provides: tex-latexdiff = %{tl_version} License: GPLv3+ Summary: Determine and mark up significant differences between LaTeX files Version: svn39223 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48613,7 +48614,7 @@ selected changes only. %package latexdiff-doc Summary: Documentation for latexdiff Version: svn39223 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexdiff-doc BuildArch: noarch AutoReqProv: No @@ -48626,7 +48627,7 @@ Summary: Binaries for latexdiff Version: svn16420.0 Requires: texlive-base Requires: texlive-latexdiff -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latexdiff-bin @@ -48637,7 +48638,7 @@ Provides: tex-latexfileversion = %{tl_version} License: LPPL Summary: Prints the version and date of a LaTeX class or style file Version: svn29349.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48654,7 +48655,7 @@ must be given. %package latexfileversion-doc Summary: Documentation for latexfileversion Version: svn29349.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexfileversion-doc BuildArch: noarch AutoReqProv: No @@ -48667,7 +48668,7 @@ Summary: Binaries for latexfileversion Version: svn25012.0 Requires: texlive-base Requires: texlive-latexfileversion -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latexfileversion-bin @@ -48678,7 +48679,7 @@ Provides: tex-latexpand = %{tl_version} License: BSD Summary: Expand \input and \include in a LaTeX document Version: svn37592.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48693,7 +48694,7 @@ The script does not deal with \includeonly commands. %package latexpand-doc Summary: Documentation for latexpand Version: svn37592.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexpand-doc BuildArch: noarch AutoReqProv: No @@ -48706,7 +48707,7 @@ Summary: Binaries for latexpand Version: svn27025.0 Requires: texlive-base Requires: texlive-latexpand -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latexpand-bin @@ -48717,7 +48718,7 @@ Provides: tex-latexindent = %{tl_version} License: GPLv3+ Summary: Indent a LaTeX document, highlighting the programming structure Version: svn36955.2.1R -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48732,7 +48733,7 @@ structure for the reader. %package latexindent-doc Summary: Documentation for latexindent Version: svn36955.2.1R -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexindent-doc BuildArch: noarch AutoReqProv: No @@ -48745,7 +48746,7 @@ Summary: Binaries for latexindent Version: svn32150.0 Requires: texlive-base Requires: texlive-latexindent -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description latexindent-bin @@ -48756,7 +48757,7 @@ Provides: tex-ltxfileinfo = %{tl_version} License: GPL+ Summary: Print version information for a LaTeX file Version: svn38663 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48774,7 +48775,7 @@ Uwe Luck's readprov.sty. %package ltxfileinfo-doc Summary: Documentation for ltxfileinfo Version: svn38663 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxfileinfo-doc BuildArch: noarch AutoReqProv: No @@ -48787,7 +48788,7 @@ Summary: Binaries for ltxfileinfo Version: svn29005.0 Requires: texlive-base Requires: texlive-ltxfileinfo -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ltxfileinfo-bin @@ -48798,7 +48799,7 @@ Provides: tex-ltximg = %{tl_version} License: GPLv2+ Summary: Split LaTeX files to sanitise a conversion process Version: svn37006.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48814,7 +48815,7 @@ preview bundle. %package ltximg-doc Summary: Documentation for ltximg Version: svn37006.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltximg-doc BuildArch: noarch AutoReqProv: No @@ -48827,7 +48828,7 @@ Summary: Binaries for ltximg Version: svn32346.0 Requires: texlive-base Requires: texlive-ltximg -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ltximg-bin @@ -48838,7 +48839,7 @@ Provides: tex-listings-ext = %{tl_version} License: LPPL 1.2 Summary: Automated input of source Version: svn29349.67 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48860,7 +48861,7 @@ being run.y %package listings-ext-doc Summary: Documentation for listings-ext Version: svn29349.67 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listings-ext-doc BuildArch: noarch AutoReqProv: No @@ -48873,7 +48874,7 @@ Summary: Binaries for listings-ext Version: svn15093.0 Requires: texlive-base Requires: texlive-listings-ext -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description listings-ext-bin @@ -48884,7 +48885,7 @@ Provides: tex-make4ht = %{tl_version} License: LPPL 1.3 Summary: A build system for tex4ht Version: svn39075 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48899,7 +48900,7 @@ which can be used to create customized conversion programs. %package make4ht-doc Summary: Documentation for make4ht Version: svn39075 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-make4ht-doc BuildArch: noarch AutoReqProv: No @@ -48912,7 +48913,7 @@ Summary: Binaries for make4ht Version: svn37750.0 Requires: texlive-base Requires: texlive-make4ht -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description make4ht-bin @@ -48923,7 +48924,7 @@ Provides: tex-match_parens = %{tl_version} License: GPL+ Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts Version: svn36270.1.43 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48941,7 +48942,7 @@ mismatches. %package match_parens-doc Summary: Documentation for match_parens Version: svn36270.1.43 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-match_parens-doc BuildArch: noarch AutoReqProv: No @@ -48954,7 +48955,7 @@ Summary: Binaries for match_parens Version: svn23500.0 Requires: texlive-base Requires: texlive-match_parens -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description match_parens-bin @@ -48965,7 +48966,7 @@ Provides: tex-mkjobtexmf = %{tl_version} License: GPLv2 or Artistic Summary: Generate a texmf tree for a particular job Version: svn29725.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -48984,7 +48985,7 @@ later TeX runs. %package mkjobtexmf-doc Summary: Documentation for mkjobtexmf Version: svn29725.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mkjobtexmf-doc BuildArch: noarch AutoReqProv: No @@ -48997,7 +48998,7 @@ Summary: Binaries for mkjobtexmf Version: svn8457.0 Requires: texlive-base Requires: texlive-mkjobtexmf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mkjobtexmf-bin @@ -49008,7 +49009,7 @@ Provides: tex-patgen = %{tl_version} License: Knuth Summary: Generate hyphenation patterns Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49027,7 +49028,7 @@ Summary: Binaries for patgen Version: svn40473 Requires: texlive-base Requires: texlive-patgen -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description patgen-bin @@ -49038,7 +49039,7 @@ Provides: tex-pdfbook2 = %{tl_version} License: GPLv3+ Summary: Create booklets from PDF files Version: svn37537.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49062,7 +49063,7 @@ processed seperately. %package pdfbook2-doc Summary: Documentation for pdfbook2 Version: svn37537.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfbook2-doc BuildArch: noarch AutoReqProv: No @@ -49075,7 +49076,7 @@ Summary: Binaries for pdfbook2 Version: svn37537.0 Requires: texlive-base Requires: texlive-pdfbook2 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pdfbook2-bin @@ -49086,7 +49087,7 @@ Provides: tex-pdfcrop = %{tl_version} License: LPPL Summary: Crop PDF graphics Version: svn29348.1.37 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No Requires: texlive-base @@ -49101,7 +49102,7 @@ border, or trim them of a fixed border. %package pdfcrop-doc Summary: Documentation for pdfcrop Version: svn29348.1.37 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfcrop-doc BuildArch: noarch AutoReqProv: No @@ -49116,7 +49117,7 @@ Requires: texlive-base Requires: texlive-pdfcrop # invalid # Requires: ghostscript-devel -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pdfcrop-bin @@ -49127,7 +49128,7 @@ Provides: tex-pdfjam = %{tl_version} License: GPLv2+ Summary: Shell scripts interfacing to pdfpages Version: svn29752.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49146,7 +49147,7 @@ and so on. %package pdfjam-doc Summary: Documentation for pdfjam Version: svn29752.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfjam-doc BuildArch: noarch AutoReqProv: No @@ -49160,7 +49161,7 @@ Version: svn17868.0 Requires: texlive-base Requires: texlive-pdfjam Requires: tex(pdfpages.sty) -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pdfjam-bin @@ -49171,7 +49172,7 @@ Provides: tex-pdftools = %{tl_version} License: Public Domain Summary: PDF-related utilities, including PostScript-to-PDF conversion Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49191,7 +49192,7 @@ Summary: Binaries for pdftools Version: svn40473 Requires: texlive-base Requires: texlive-pdftools -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description pdftools-bin @@ -49202,7 +49203,7 @@ Provides: tex-pfarrei = %{tl_version} License: LPPL 1.3 Summary: LaTeX support of pastors' and priests' work Version: svn31934.r36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49228,7 +49229,7 @@ installation.) %package pfarrei-doc Summary: Documentation for pfarrei Version: svn31934.r36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pfarrei-doc BuildArch: noarch AutoReqProv: No @@ -49241,7 +49242,7 @@ Summary: Binaries for pfarrei Version: svn29348.0 Requires: texlive-base Requires: texlive-pfarrei -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pfarrei-bin @@ -49252,7 +49253,7 @@ Provides: tex-pkfix = %{tl_version} License: LPPL 1.3 Summary: Replace pk fonts in PostScript with Type 1 fonts Version: svn26032.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49267,7 +49268,7 @@ replaces them by type 1 versions of the fonts, if possible. %package pkfix-doc Summary: Documentation for pkfix Version: svn26032.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pkfix-doc BuildArch: noarch AutoReqProv: No @@ -49280,7 +49281,7 @@ Summary: Binaries for pkfix Version: svn13364.0 Requires: texlive-base Requires: texlive-pkfix -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pkfix-bin @@ -49291,7 +49292,7 @@ Provides: tex-pkfix-helper = %{tl_version} License: LPPL Summary: Make PostScript files accessible to pkfix Version: svn29725.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49315,7 +49316,7 @@ verify and, if needed, correct its decisions. %package pkfix-helper-doc Summary: Documentation for pkfix-helper Version: svn29725.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pkfix-helper-doc BuildArch: noarch AutoReqProv: No @@ -49328,7 +49329,7 @@ Summary: Binaries for pkfix-helper Version: svn13663.0 Requires: texlive-base Requires: texlive-pkfix-helper -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pkfix-helper-bin @@ -49339,7 +49340,7 @@ Provides: tex-purifyeps = %{tl_version} License: LPPL Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX Version: svn29725.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49360,7 +49361,7 @@ file into the same stylized format that MetaPost outputs. %package purifyeps-doc Summary: Documentation for purifyeps Version: svn29725.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-purifyeps-doc BuildArch: noarch AutoReqProv: No @@ -49373,7 +49374,7 @@ Summary: Binaries for purifyeps Version: svn13663.0 Requires: texlive-base Requires: texlive-purifyeps -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description purifyeps-bin @@ -49384,7 +49385,7 @@ Provides: tex-pythontex = %{tl_version} License: LPPL 1.3 Summary: Run Python from within a document, typesetting the results Version: svn34673.0.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49421,7 +49422,7 @@ conversion to other formats. %package pythontex-doc Summary: Documentation for pythontex Version: svn34673.0.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pythontex-doc BuildArch: noarch AutoReqProv: No @@ -49434,7 +49435,7 @@ Summary: Binaries for pythontex Version: svn31638.0 Requires: texlive-base Requires: texlive-pythontex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pythontex-bin @@ -49445,7 +49446,7 @@ Provides: tex-seetexk = %{tl_version} License: MIT Summary: Utilities for manipulating DVI files Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49468,7 +49469,7 @@ Summary: Binaries for seetexk Version: svn40473 Requires: texlive-base Requires: texlive-seetexk -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description seetexk-bin @@ -49479,7 +49480,7 @@ Provides: tex-sty2dtx = %{tl_version} License: GPLv3+ Summary: Create a .dtx file from a .sty file Version: svn29743.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49504,7 +49505,7 @@ corresponding .ins file can be generated as well. %package sty2dtx-doc Summary: Documentation for sty2dtx Version: svn29743.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sty2dtx-doc BuildArch: noarch AutoReqProv: No @@ -49517,7 +49518,7 @@ Summary: Binaries for sty2dtx Version: svn21215.0 Requires: texlive-base Requires: texlive-sty2dtx -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description sty2dtx-bin @@ -49528,7 +49529,7 @@ Provides: tex-synctex = %{tl_version} License: LPPL Summary: synctex package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49543,7 +49544,7 @@ Summary: Binaries for synctex Version: svn40473 Requires: texlive-base Requires: texlive-synctex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description synctex-bin @@ -49554,7 +49555,7 @@ Provides: tex-tex4ebook = %{tl_version} License: LPPL 1.3 Summary: Convertor from LaTeX to ebook formats Version: svn40199 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49573,7 +49574,7 @@ and epub3. tex4ht is used as conversion engine. %package tex4ebook-doc Summary: Documentation for tex4ebook Version: svn40199 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex4ebook-doc BuildArch: noarch AutoReqProv: No @@ -49586,7 +49587,7 @@ Summary: Binaries for tex4ebook Version: svn37771 Requires: texlive-base Requires: texlive-tex4ebook -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description tex4ebook-bin @@ -49597,7 +49598,7 @@ Provides: tex-texcount = %{tl_version} License: LPPL Summary: Count words in a LaTeX document Version: svn31323.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49614,7 +49615,7 @@ as a Web service via its home page. %package texcount-doc Summary: Documentation for texcount Version: svn31323.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texcount-doc BuildArch: noarch AutoReqProv: No @@ -49627,7 +49628,7 @@ Summary: Binaries for texcount Version: svn13013.0 Requires: texlive-base Requires: texlive-texcount -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texcount-bin @@ -49638,7 +49639,7 @@ Provides: tex-texdef = %{tl_version} License: GPLv3+ Summary: Display the definitions of TeX commands Version: svn26420.1.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49666,7 +49667,7 @@ over the script name: latexdef will use LaTeX as default, etc. %package texdef-doc Summary: Documentation for texdef Version: svn26420.1.7b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texdef-doc BuildArch: noarch AutoReqProv: No @@ -49679,7 +49680,7 @@ Summary: Binaries for texdef Version: svn21802.0 Requires: texlive-base Requires: texlive-texdef -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texdef-bin @@ -49690,7 +49691,7 @@ Provides: tex-texdirflatten = %{tl_version} License: GPL+ or Artistic Summary: Collect files related to a LaTeX job in a single directory Version: svn29725.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49709,7 +49710,7 @@ Summary: Binaries for texdirflatten Version: svn12782.0 Requires: texlive-base Requires: texlive-texdirflatten -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texdirflatten-bin @@ -49720,7 +49721,7 @@ Provides: tex-texdoc = %{tl_version} License: GPL+ Summary: Documentation access for TeX distributions Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49741,7 +49742,7 @@ and a derivative is distributed with miktex. %package texdoc-doc Summary: Documentation for texdoc Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texdoc-doc BuildArch: noarch AutoReqProv: No @@ -49755,7 +49756,7 @@ Summary: Binaries for texdoc Version: svn29741.0 Requires: texlive-base Requires: texlive-texdoc -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texdoc-bin @@ -49766,7 +49767,7 @@ Provides: tex-texfot = %{tl_version} License: Public Domain Summary: Filter clutter from the output of a TeX run Version: svn39660 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49782,7 +49783,7 @@ invocation itself need not change. %package texfot-doc Summary: Documentation for texfot Version: svn39660 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texfot-doc BuildArch: noarch AutoReqProv: No @@ -49795,7 +49796,7 @@ Summary: Binaries for texfot Version: svn33155.0 Requires: texlive-base Requires: texlive-texfot -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texfot-bin @@ -49806,7 +49807,7 @@ Provides: tex-texliveonfly = %{tl_version} License: GPLv3+ Summary: On-the-fly download of missing TeX live packages Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49826,7 +49827,7 @@ The script is designed to work on Linux distributions. %package texliveonfly-doc Summary: Documentation for texliveonfly Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texliveonfly-doc BuildArch: noarch AutoReqProv: No @@ -49839,7 +49840,7 @@ Summary: Binaries for texliveonfly Version: svn24062.0 Requires: texlive-base Requires: texlive-texliveonfly -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texliveonfly-bin @@ -49850,7 +49851,7 @@ Provides: tex-texloganalyser = %{tl_version} License: BSD Summary: Analyse TeX logs Version: svn35584.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49864,7 +49865,7 @@ elements of the log file %package texloganalyser-doc Summary: Documentation for texloganalyser Version: svn35584.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texloganalyser-doc BuildArch: noarch AutoReqProv: No @@ -49877,7 +49878,7 @@ Summary: Binaries for texloganalyser Version: svn13663.0 Requires: texlive-base Requires: texlive-texloganalyser -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texloganalyser-bin @@ -49888,7 +49889,7 @@ Provides: tex-texware = %{tl_version} License: Knuth Summary: Utility programs for use with TeX Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49908,7 +49909,7 @@ Summary: Binaries for texware Version: svn40473 Requires: texlive-base Requires: texlive-texware -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description texware-bin @@ -49919,7 +49920,7 @@ Provides: tex-tie = %{tl_version} License: Latex2e Summary: Allow multiple web change files Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49938,7 +49939,7 @@ Summary: Binaries for tie Version: svn40473 Requires: texlive-base Requires: texlive-tie -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description tie-bin @@ -49949,7 +49950,7 @@ Provides: tex-tpic2pdftex = %{tl_version} License: GPL+ Summary: Use tpic commands in PDFTeX Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -49963,7 +49964,7 @@ The AWK script converts pic language, embedded inline %package tpic2pdftex-doc Summary: Documentation for tpic2pdftex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tpic2pdftex-doc BuildArch: noarch AutoReqProv: No @@ -49976,7 +49977,7 @@ Summary: Binaries for tpic2pdftex Version: svn29741.0 Requires: texlive-base Requires: texlive-tpic2pdftex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description tpic2pdftex-bin @@ -49987,7 +49988,7 @@ Provides: tex-typeoutfileinfo = %{tl_version} License: LPPL 1.3 Summary: Display class/package/file information Version: svn29349.0.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50004,7 +50005,7 @@ package is available. %package typeoutfileinfo-doc Summary: Documentation for typeoutfileinfo Version: svn29349.0.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-typeoutfileinfo-doc BuildArch: noarch AutoReqProv: No @@ -50017,7 +50018,7 @@ Summary: Binaries for typeoutfileinfo Version: svn25648.0 Requires: texlive-base Requires: texlive-typeoutfileinfo -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description typeoutfileinfo-bin @@ -50028,7 +50029,7 @@ Provides: tex-web = %{tl_version} License: Knuth Summary: original web programs tangle and weave Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50047,7 +50048,7 @@ Summary: Binaries for web Version: svn40473 Requires: texlive-base Requires: texlive-web -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description web-bin @@ -50056,7 +50057,7 @@ Binaries for web %package collection-context Summary: ConTeXt and packages Version: svn36190.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -50104,7 +50105,7 @@ Provides: tex-context = %{tl_version} License: GPL+ or LPPL Summary: The ConTeXt macro package Version: svn41282 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50336,7 +50337,7 @@ fi Summary: Documentation for context Version: svn41282 License: CC-BY-SA -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-doc BuildArch: noarch AutoReqProv: No @@ -50359,7 +50360,7 @@ Provides: tex-metapost = %{tl_version} License: LGPLv2+ Summary: A development of Metafont for creating graphics Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50420,7 +50421,7 @@ PostScript or SVG, rather than the bitmaps Metafont creates. %package metapost-doc Summary: Documentation for metapost Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metapost-doc BuildArch: noarch AutoReqProv: No @@ -50434,7 +50435,7 @@ Summary: Binaries for metapost Version: svn40473 Requires: texlive-base Requires: texlive-metapost -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description metapost-bin @@ -50445,7 +50446,7 @@ Provides: tex-xetex = %{tl_version} License: MIT Summary: Unicode and OpenType-enabled TeX engine Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50478,7 +50479,7 @@ fi %package xetex-doc Summary: Documentation for xetex Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetex-doc BuildArch: noarch AutoReqProv: No @@ -50491,7 +50492,7 @@ Provides: tex-xetexconfig = %{tl_version} License: LPPL Summary: Configuration files for XeTeX Version: svn41133 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -50509,7 +50510,7 @@ Requires: texlive-xetex Requires: teckit Provides: xdvipdfmx = %{version}-%{release} Obsoletes: xdvipdfmx < %{version}-%{release} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description xetex-bin @@ -50520,7 +50521,7 @@ Provides: tex-lm = %{tl_version} License: GFSL Summary: Latin modern fonts in outline formats Version: svn28119.2.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51418,7 +51419,7 @@ fonts aka TS1 (ts1-*.tfm). %package lm-doc Summary: Documentation for lm Version: svn28119.2.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lm-doc BuildArch: noarch AutoReqProv: No @@ -51431,7 +51432,7 @@ Provides: tex-lm-math = %{tl_version} License: LPPL Summary: OpenType maths fonts for Latin Modern Version: svn36915.1.959 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51446,7 +51447,7 @@ XeLaTeX, support is available from the unicode-math package. %package lm-math-doc Summary: Documentation for lm-math Version: svn36915.1.959 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lm-math-doc BuildArch: noarch AutoReqProv: No @@ -51459,7 +51460,7 @@ Provides: tex-manfnt-font = %{tl_version} License: LPPL Summary: manfnt-font package Version: svn35799.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51477,7 +51478,7 @@ Provides: tex-mflogo-font = %{tl_version} License: Knuth Summary: Metafont logo font Version: svn36898.1.002 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51505,7 +51506,7 @@ format by Taco Hoekwater. %package mflogo-font-doc Summary: Documentation for mflogo-font Version: svn36898.1.002 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mflogo-font-doc BuildArch: noarch AutoReqProv: No @@ -51518,7 +51519,7 @@ Provides: tex-stmaryrd = %{tl_version} License: LPPL Summary: St Mary Road symbols for theoretical computer science Version: svn22027.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51551,7 +51552,7 @@ what is loaded, for those who don't need the whole font. %package stmaryrd-doc Summary: Documentation for stmaryrd Version: svn22027.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stmaryrd-doc BuildArch: noarch AutoReqProv: No @@ -51564,7 +51565,7 @@ Summary: Binaries for context Version: svn34112.0 Requires: texlive-base Requires: texlive-context -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description context-bin @@ -51575,7 +51576,7 @@ Provides: tex-jmn = %{tl_version} License: LPPL Summary: jmn package Version: svn22719.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51595,7 +51596,7 @@ Provides: tex-context-account = %{tl_version} License: Public Domain Summary: A simple accounting package Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51610,7 +51611,7 @@ The package deals with "accounts" of its own specification. %package context-account-doc Summary: Documentation for context-account Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-account-doc BuildArch: noarch AutoReqProv: No @@ -51624,7 +51625,7 @@ Provides: tex-context-algorithmic = %{tl_version} License: GPL+ Summary: Algorithm handling in ConTeXt Version: svn31026.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51640,7 +51641,7 @@ Provides: tex-context-animation = %{tl_version} License: GPLv3+ Summary: Generate fieldstack based animation with ConTeXt Version: svn36188.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51654,7 +51655,7 @@ LaTeX package. %package context-animation-doc Summary: Documentation for context-animation Version: svn36188.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-animation-doc BuildArch: noarch AutoReqProv: No @@ -51668,7 +51669,7 @@ Provides: tex-context-annotation = %{tl_version} License: LPPL Summary: context-annotation package Version: svn36188.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51681,7 +51682,7 @@ context-annotation package %package context-annotation-doc Summary: Documentation for context-annotation Version: svn36188.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-annotation-doc BuildArch: noarch AutoReqProv: No @@ -51695,7 +51696,7 @@ Provides: tex-context-bnf = %{tl_version} License: GPL+ Summary: A BNF module for Context Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51715,7 +51716,7 @@ looking at the source ConTeXt document. %package context-bnf-doc Summary: Documentation for context-bnf Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-bnf-doc BuildArch: noarch AutoReqProv: No @@ -51729,7 +51730,7 @@ Provides: tex-context-chromato = %{tl_version} License: GPL+ Summary: ConTeXt macros for chromatograms Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51743,7 +51744,7 @@ The module provides macros for drawing chromatograms. %package context-chromato-doc Summary: Documentation for context-chromato Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-chromato-doc BuildArch: noarch AutoReqProv: No @@ -51757,7 +51758,7 @@ Provides: tex-context-construction-plan = %{tl_version} License: GPL+ Summary: Construction plans in ConTeXt Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51771,7 +51772,7 @@ Generate a page with a figure at a well-defined scale. %package context-construction-plan-doc Summary: Documentation for context-construction-plan Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-construction-plan-doc BuildArch: noarch AutoReqProv: No @@ -51785,7 +51786,7 @@ Provides: tex-context-cyrillicnumbers = %{tl_version} License: BSD Summary: Write numbers as cyrillic glyphs Version: svn29905.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51799,7 +51800,7 @@ adding numeration using cyrillic letters. %package context-cyrillicnumbers-doc Summary: Documentation for context-cyrillicnumbers Version: svn29905.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-cyrillicnumbers-doc BuildArch: noarch AutoReqProv: No @@ -51813,7 +51814,7 @@ Provides: tex-context-degrade = %{tl_version} License: GPL+ Summary: Degrading JPEG images in ConTeXt Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51827,7 +51828,7 @@ context-degrade package %package context-degrade-doc Summary: Documentation for context-degrade Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-degrade-doc BuildArch: noarch AutoReqProv: No @@ -51841,7 +51842,7 @@ Provides: tex-context-fancybreak = %{tl_version} License: GPL+ Summary: Overfull pages with ConTeXt Version: svn36948.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51856,7 +51857,7 @@ content and set a default symbol. %package context-fancybreak-doc Summary: Documentation for context-fancybreak Version: svn36948.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-fancybreak-doc BuildArch: noarch AutoReqProv: No @@ -51870,7 +51871,7 @@ Provides: tex-context-filter = %{tl_version} License: BSD Summary: Run external programs on the contents of a start-stop environment Version: svn36285.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51890,7 +51891,7 @@ both MkII and MkIV. %package context-filter-doc Summary: Documentation for context-filter Version: svn36285.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-filter-doc BuildArch: noarch AutoReqProv: No @@ -51904,7 +51905,7 @@ Provides: tex-context-fixme = %{tl_version} License: Public Domain Summary: Make editorial marks on a document Version: svn29341.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51920,7 +51921,7 @@ Provides: tex-context-french = %{tl_version} License: GPL+ Summary: Support for writing French in ConTeXt Version: svn24582.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51934,7 +51935,7 @@ distributed for ConTeXt Mark iv only. %package context-french-doc Summary: Documentation for context-french Version: svn24582.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-french-doc BuildArch: noarch AutoReqProv: No @@ -51948,7 +51949,7 @@ Provides: tex-context-fullpage = %{tl_version} License: GPL+ Summary: Overfull pages with ConTeXt Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51962,7 +51963,7 @@ and adds a styling parameter, given in the \usemodule command %package context-fullpage-doc Summary: Documentation for context-fullpage Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-fullpage-doc BuildArch: noarch AutoReqProv: No @@ -51976,7 +51977,7 @@ Provides: tex-context-games = %{tl_version} License: LPPL Summary: context-games package Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -51993,7 +51994,7 @@ context-games package %package context-games-doc Summary: Documentation for context-games Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-games-doc BuildArch: noarch AutoReqProv: No @@ -52008,7 +52009,7 @@ Provides: tex-skaknew = %{tl_version} License: LPPL Summary: The skak chess fonts redone in Adobe Type 1 Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52039,7 +52040,7 @@ as Metafont source by the skak bundle. %package skaknew-doc Summary: Documentation for skaknew Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skaknew-doc BuildArch: noarch AutoReqProv: No @@ -52052,7 +52053,7 @@ Provides: tex-context-gantt = %{tl_version} License: Public Domain Summary: GANTT module for ConTeXt Version: svn27472.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52070,7 +52071,7 @@ pgf/tikz. %package context-gantt-doc Summary: Documentation for context-gantt Version: svn27472.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-gantt-doc BuildArch: noarch AutoReqProv: No @@ -52085,7 +52086,7 @@ Provides: tex-hatching = %{tl_version} License: Public Domain Summary: MetaPost macros for hatching interior of closed paths Version: svn23818.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52099,7 +52100,7 @@ included. %package hatching-doc Summary: Documentation for hatching Version: svn23818.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hatching-doc BuildArch: noarch AutoReqProv: No @@ -52112,7 +52113,7 @@ Provides: tex-context-gnuplot = %{tl_version} License: GPL+ Summary: Inclusion of Gnuplot graphs in ConTeXt Version: svn30380.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52128,7 +52129,7 @@ See the ConTeXt Garden package page for further details. %package context-gnuplot-doc Summary: Documentation for context-gnuplot Version: svn30380.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-gnuplot-doc BuildArch: noarch AutoReqProv: No @@ -52142,7 +52143,7 @@ Provides: tex-context-letter = %{tl_version} License: GPL+ Summary: ConTeXt package for writing letters Version: svn38202.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52157,7 +52158,7 @@ letters may be amended by a wide range of style specifications. %package context-letter-doc Summary: Documentation for context-letter Version: svn38202.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-letter-doc BuildArch: noarch AutoReqProv: No @@ -52171,7 +52172,7 @@ Provides: tex-context-lettrine = %{tl_version} License: Public Domain Summary: A ConTeXt implementation of lettrines Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52185,7 +52186,7 @@ This is a re-implementation of the LaTeX package lettrine. %package context-lettrine-doc Summary: Documentation for context-lettrine Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-lettrine-doc BuildArch: noarch AutoReqProv: No @@ -52199,7 +52200,7 @@ Provides: tex-context-lilypond = %{tl_version} License: GPL+ Summary: Lilypond code in ConTeXt Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52214,7 +52215,7 @@ document. %package context-lilypond-doc Summary: Documentation for context-lilypond Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-lilypond-doc BuildArch: noarch AutoReqProv: No @@ -52228,7 +52229,7 @@ Provides: tex-context-mathsets = %{tl_version} License: BSD Summary: Set notation in ConTeXt Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52244,7 +52245,7 @@ probabilities, etc. The package is at least inspired by braket. %package context-mathsets-doc Summary: Documentation for context-mathsets Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-mathsets-doc BuildArch: noarch AutoReqProv: No @@ -52258,7 +52259,7 @@ Provides: tex-context-notes-zh-cn = %{tl_version} License: GPL+ Summary: Notes on using ConTeXt MkIV Version: svn23171.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52272,7 +52273,7 @@ reference, project structure, metafun and presentation design. %package context-notes-zh-cn-doc Summary: Documentation for context-notes-zh-cn Version: svn23171.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-notes-zh-cn-doc BuildArch: noarch AutoReqProv: No @@ -52286,7 +52287,7 @@ Provides: tex-context-rst = %{tl_version} License: BSD Summary: Process reStructuredText with ConTeXt Version: svn33092.0.6c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52302,7 +52303,7 @@ which seems to be readable as text, but... %package context-rst-doc Summary: Documentation for context-rst Version: svn33092.0.6c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-rst-doc BuildArch: noarch AutoReqProv: No @@ -52316,7 +52317,7 @@ Provides: tex-context-ruby = %{tl_version} License: Public Domain Summary: Ruby annotations in ConTeXt Version: svn28434.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52333,7 +52334,7 @@ text and the ruby text can becontrolled by parameters. %package context-ruby-doc Summary: Documentation for context-ruby Version: svn28434.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-ruby-doc BuildArch: noarch AutoReqProv: No @@ -52347,7 +52348,7 @@ Provides: tex-context-simplefonts = %{tl_version} License: GPL+ Summary: Simplified font usage for ConTeXt Version: svn29229.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52361,7 +52362,7 @@ fonts in ConTeXt. %package context-simplefonts-doc Summary: Documentation for context-simplefonts Version: svn29229.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-simplefonts-doc BuildArch: noarch AutoReqProv: No @@ -52375,7 +52376,7 @@ Provides: tex-context-simpleslides = %{tl_version} License: LPPL Summary: context-simpleslides package Version: svn34438.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52412,7 +52413,7 @@ context-simpleslides package %package context-simpleslides-doc Summary: Documentation for context-simpleslides Version: svn34438.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-simpleslides-doc BuildArch: noarch AutoReqProv: No @@ -52426,7 +52427,7 @@ Provides: tex-context-title = %{tl_version} License: LPPL Summary: context-title package Version: svn36189.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52439,7 +52440,7 @@ context-title package %package context-title-doc Summary: Documentation for context-title Version: svn36189.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-title-doc BuildArch: noarch AutoReqProv: No @@ -52453,7 +52454,7 @@ Provides: tex-context-transliterator = %{tl_version} License: BSD Summary: Transliterate text from 'other' alphabets Version: svn29801.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52470,7 +52471,7 @@ allowance for hyphenation. %package context-transliterator-doc Summary: Documentation for context-transliterator Version: svn29801.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-transliterator-doc BuildArch: noarch AutoReqProv: No @@ -52484,7 +52485,7 @@ Provides: tex-context-typearea = %{tl_version} License: GPL+ Summary: Something like Koma-Script typearea Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52499,7 +52500,7 @@ as the LaTeX package typearea does. %package context-typearea-doc Summary: Documentation for context-typearea Version: svn23167.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-typearea-doc BuildArch: noarch AutoReqProv: No @@ -52513,7 +52514,7 @@ Provides: tex-context-typescripts = %{tl_version} License: GPLv2+ Summary: Small modules to load various fonts for use in ConTeXt Version: svn25411.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52528,7 +52529,7 @@ foundry); each is available in a .mkii and a .mkiv version. %package context-typescripts-doc Summary: Documentation for context-typescripts Version: svn25411.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-typescripts-doc BuildArch: noarch AutoReqProv: No @@ -52542,7 +52543,7 @@ Provides: tex-context-vim = %{tl_version} License: BSD Summary: Generate Context syntax highlighting code from vim Version: svn37413.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52566,7 +52567,7 @@ generate the syntax highlighting. There is a helper %package context-vim-doc Summary: Documentation for context-vim Version: svn37413.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-vim-doc BuildArch: noarch AutoReqProv: No @@ -52581,7 +52582,7 @@ Provides: tex-context-visualcounter = %{tl_version} License: LPPL Summary: context-visualcounter package Version: svn36190.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -52594,7 +52595,7 @@ context-visualcounter package %package context-visualcounter-doc Summary: Documentation for context-visualcounter Version: svn36190.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-context-visualcounter-doc BuildArch: noarch AutoReqProv: No @@ -52606,7 +52607,7 @@ Documentation for context-visualcounter %package collection-fontsextra Summary: Additional fonts Version: svn41166 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -52863,7 +52864,7 @@ Provides: tex-comfortaa = %{tl_version} License: LPPL 1.3 Summary: Sans serif font, with LaTeX support Version: svn27536.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53112,7 +53113,7 @@ conversions to Adobe Type 1 format. %package comfortaa-doc Summary: Documentation for comfortaa Version: svn27536.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-comfortaa-doc BuildArch: noarch AutoReqProv: No @@ -53125,7 +53126,7 @@ Provides: tex-comicneue = %{tl_version} License: OFL Summary: Use Comic Neue with TeX(-alike) systems Version: svn37744.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53379,7 +53380,7 @@ GitHub or emailed to tex@slxh.nl. %package comicneue-doc Summary: Documentation for comicneue Version: svn37744.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-comicneue-doc BuildArch: noarch AutoReqProv: No @@ -53392,7 +53393,7 @@ Provides: tex-concmath-fonts = %{tl_version} License: LPPL Summary: Concrete mathematics fonts Version: svn17218.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53435,7 +53436,7 @@ concmath package. %package concmath-fonts-doc Summary: Documentation for concmath-fonts Version: svn17218.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-concmath-fonts-doc BuildArch: noarch AutoReqProv: No @@ -53448,7 +53449,7 @@ Provides: tex-cookingsymbols = %{tl_version} License: LPPL Summary: Symbols for recipes Version: svn35929.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53464,7 +53465,7 @@ others). The symbols are defined using Metafont. %package cookingsymbols-doc Summary: Documentation for cookingsymbols Version: svn35929.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cookingsymbols-doc BuildArch: noarch AutoReqProv: No @@ -53477,7 +53478,7 @@ Provides: tex-countriesofeurope = %{tl_version} License: LPPL Summary: A font with the images of the countries of Europe Version: svn26042.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53501,7 +53502,7 @@ cartographic scale. %package countriesofeurope-doc Summary: Documentation for countriesofeurope Version: svn26042.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-countriesofeurope-doc BuildArch: noarch AutoReqProv: No @@ -53514,7 +53515,7 @@ Provides: tex-courier-scaled = %{tl_version} License: LPPL 1.2 Summary: Provides a scaled Courier font Version: svn24940.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53540,7 +53541,7 @@ for Helvetica works for sans serif). %package courier-scaled-doc Summary: Documentation for courier-scaled Version: svn24940.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-courier-scaled-doc BuildArch: noarch AutoReqProv: No @@ -53553,7 +53554,7 @@ Provides: tex-cryst = %{tl_version} License: LPPL Summary: Font for graphical symbols used in crystallography Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53569,7 +53570,7 @@ file and (with a font diagram) in the documentation. %package cryst-doc Summary: Documentation for cryst Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cryst-doc BuildArch: noarch AutoReqProv: No @@ -53582,7 +53583,7 @@ Provides: tex-cyklop = %{tl_version} License: LPPL Summary: The Cyclop typeface Version: svn18651.0.915 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53678,7 +53679,7 @@ Czech fonts). %package cyklop-doc Summary: Documentation for cyklop Version: svn18651.0.915 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cyklop-doc BuildArch: noarch AutoReqProv: No @@ -53691,7 +53692,7 @@ Provides: tex-dancers = %{tl_version} License: Copyright only Summary: Font for Conan Doyle'ss "The Dancing Men" Version: svn13293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53718,7 +53719,7 @@ Provides: tex-dantelogo = %{tl_version} License: LPPL Summary: A font for DANTE's logo Version: svn38599 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -53762,7 +53763,7 @@ interface for LuaLaTeX/XeLaTeX/pdfLaTeX. %package dantelogo-doc Summary: Documentation for dantelogo Version: svn38599 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dantelogo-doc BuildArch: noarch AutoReqProv: No @@ -53775,7 +53776,7 @@ Provides: tex-dejavu = %{tl_version} License: LPPL Summary: LaTeX support for the DejaVu fonts Version: svn31771.2.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54324,7 +54325,7 @@ and/or features are expected. %package dejavu-doc Summary: Documentation for dejavu Version: svn31771.2.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dejavu-doc BuildArch: noarch AutoReqProv: No @@ -54337,7 +54338,7 @@ Provides: tex-dice = %{tl_version} License: LPPL Summary: A font for die faces Version: svn28501.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54351,7 +54352,7 @@ various 3D effects. %package dice-doc Summary: Documentation for dice Version: svn28501.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dice-doc BuildArch: noarch AutoReqProv: No @@ -54364,7 +54365,7 @@ Provides: tex-dictsym = %{tl_version} License: LPPL Summary: DictSym font and macro package Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54388,7 +54389,7 @@ makes the symbols accessible as LaTeX commands. %package dictsym-doc Summary: Documentation for dictsym Version: svn20031.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dictsym-doc BuildArch: noarch AutoReqProv: No @@ -54401,7 +54402,7 @@ Provides: tex-dingbat = %{tl_version} License: LPPL Summary: Two dingbat symbol fonts Version: svn27918.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54421,7 +54422,7 @@ bundle. %package dingbat-doc Summary: Documentation for dingbat Version: svn27918.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dingbat-doc BuildArch: noarch AutoReqProv: No @@ -54434,7 +54435,7 @@ Provides: tex-doublestroke = %{tl_version} License: Doublestroke Summary: Typeset mathematical double stroke symbols Version: svn15878.1.111 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54470,7 +54471,7 @@ provided. The fonts appear in the blackboard bold sampler. %package doublestroke-doc Summary: Documentation for doublestroke Version: svn15878.1.111 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doublestroke-doc BuildArch: noarch AutoReqProv: No @@ -54483,7 +54484,7 @@ Provides: tex-dozenal = %{tl_version} License: LPPL 1.3 Summary: Typeset documents using base twelve numbering (also called "dozenal") Version: svn37698.6.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -54563,7 +54564,7 @@ source and in Adobe Type 1 format. %package dozenal-doc Summary: Documentation for dozenal Version: svn37698.6.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dozenal-doc BuildArch: noarch AutoReqProv: No @@ -54576,7 +54577,7 @@ Provides: tex-drm = %{tl_version} License: LPPL 1.3 Summary: A complete family of fonts written in Metafont Version: svn38157.4.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -55605,7 +55606,7 @@ an extremely flexible ellipsis package. %package drm-doc Summary: Documentation for drm Version: svn38157.4.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-drm-doc BuildArch: noarch AutoReqProv: No @@ -55618,7 +55619,7 @@ Provides: tex-droid = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for the Droid font families Version: svn23912.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56167,7 +56168,7 @@ fonts, available for purchase from the Ascender foundry. %package droid-doc Summary: Documentation for droid Version: svn23912.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-droid-doc BuildArch: noarch AutoReqProv: No @@ -56180,7 +56181,7 @@ Provides: tex-duerer = %{tl_version} License: Public Domain Summary: Computer Duerer fonts Version: svn20741.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56202,7 +56203,7 @@ in the duerer-latex bundle. %package duerer-doc Summary: Documentation for duerer Version: svn20741.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-duerer-doc BuildArch: noarch AutoReqProv: No @@ -56215,7 +56216,7 @@ Provides: tex-duerer-latex = %{tl_version} License: GPL+ Summary: LaTeX support for the Duerer fonts Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56233,7 +56234,7 @@ standard fontname names. %package duerer-latex-doc Summary: Documentation for duerer-latex Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-duerer-latex-doc BuildArch: noarch AutoReqProv: No @@ -56246,7 +56247,7 @@ Provides: tex-dutchcal = %{tl_version} License: LPPL Summary: A reworking of ESSTIX13, adding a bold version Version: svn23448.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56276,7 +56277,7 @@ the SIL OPEN FONT LICENSE, version 1.1. %package dutchcal-doc Summary: Documentation for dutchcal Version: svn23448.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dutchcal-doc BuildArch: noarch AutoReqProv: No @@ -56289,7 +56290,7 @@ Provides: tex-ean = %{tl_version} License: GPL+ Summary: Macros for making EAN barcodes Version: svn20851.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56305,7 +56306,7 @@ licence, as the macros are. %package ean-doc Summary: Documentation for ean Version: svn20851.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ean-doc BuildArch: noarch AutoReqProv: No @@ -56318,7 +56319,7 @@ Provides: tex-ebgaramond = %{tl_version} License: OFL Summary: LaTeX support for EBGaramond fonts Version: svn35662.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56683,7 +56684,7 @@ files for use with microtype are provided. %package ebgaramond-doc Summary: Documentation for ebgaramond Version: svn35662.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebgaramond-doc BuildArch: noarch AutoReqProv: No @@ -56696,7 +56697,7 @@ Provides: tex-ebgaramond-maths = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for EBGaramond fonts in mathematics Version: svn35701.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56720,7 +56721,7 @@ the same forum. %package ebgaramond-maths-doc Summary: Documentation for ebgaramond-maths Version: svn35701.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebgaramond-maths-doc BuildArch: noarch AutoReqProv: No @@ -56733,7 +56734,7 @@ Provides: tex-ecc = %{tl_version} License: LPPL Summary: Sources for the European Concrete fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -56777,7 +56778,7 @@ cm-super font bundle. %package ecc-doc Summary: Documentation for ecc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ecc-doc BuildArch: noarch AutoReqProv: No @@ -56790,7 +56791,7 @@ Provides: tex-eco = %{tl_version} License: GPL+ Summary: Oldstyle numerals using EC fonts Version: svn29349.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57308,7 +57309,7 @@ font families as well, e.g., PostScript fonts, try altfont. %package eco-doc Summary: Documentation for eco Version: svn29349.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eco-doc BuildArch: noarch AutoReqProv: No @@ -57321,7 +57322,7 @@ Provides: tex-eiad = %{tl_version} License: Public Domain Summary: Traditional style Irish fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57374,7 +57375,7 @@ LaTeX. %package eiad-doc Summary: Documentation for eiad Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eiad-doc BuildArch: noarch AutoReqProv: No @@ -57387,7 +57388,7 @@ Provides: tex-eiad-ltx = %{tl_version} License: LPPL Summary: LaTeX support for the eiad font Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57402,7 +57403,7 @@ described in the font package, but not provided there. %package eiad-ltx-doc Summary: Documentation for eiad-ltx Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eiad-ltx-doc BuildArch: noarch AutoReqProv: No @@ -57415,7 +57416,7 @@ Provides: tex-electrum = %{tl_version} License: GPLv2+ with exceptions and LPPL Summary: Electrum ADF fonts collection Version: svn19705.1.005_b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57701,7 +57702,7 @@ LaTeX support; GPL with font exception for the fonts. %package electrum-doc Summary: Documentation for electrum Version: svn19705.1.005_b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-electrum-doc BuildArch: noarch AutoReqProv: No @@ -57714,7 +57715,7 @@ Provides: tex-elvish = %{tl_version} License: Elvish Summary: Fonts for typesetting Tolkien Elvish scripts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57730,7 +57731,7 @@ in teng.tex, or by the (better documented) tengtex package. %package elvish-doc Summary: Documentation for elvish Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elvish-doc BuildArch: noarch AutoReqProv: No @@ -57743,7 +57744,7 @@ Provides: tex-epigrafica = %{tl_version} License: GPL+ Summary: A Greek and Latin font Version: svn17210.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57814,7 +57815,7 @@ of Mathematics of the University of the Aegean, Greece. %package epigrafica-doc Summary: Documentation for epigrafica Version: svn17210.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epigrafica-doc BuildArch: noarch AutoReqProv: No @@ -57827,7 +57828,7 @@ Provides: tex-epsdice = %{tl_version} License: LPPL Summary: A scalable dice "font" Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -57847,7 +57848,7 @@ PostScript and PDF formats. %package epsdice-doc Summary: Documentation for epsdice Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epsdice-doc BuildArch: noarch AutoReqProv: No @@ -57860,7 +57861,7 @@ Provides: tex-erewhon = %{tl_version} License: OFL Summary: Font package derived from Heuristica and Utopia Version: svn41392 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58590,7 +58591,7 @@ matching that of UtopiaStd. %package erewhon-doc Summary: Documentation for erewhon Version: svn41392 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-erewhon-doc BuildArch: noarch AutoReqProv: No @@ -58603,7 +58604,7 @@ Provides: tex-esrelation = %{tl_version} License: LPPL 1.3 Summary: Provides a symbol set for describing relations between ordered pairs Version: svn37236.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58638,7 +58639,7 @@ describing relations between ordered pairs by using Metafont. %package esrelation-doc Summary: Documentation for esrelation Version: svn37236.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esrelation-doc BuildArch: noarch AutoReqProv: No @@ -58651,7 +58652,7 @@ Provides: tex-esstix = %{tl_version} License: OFL Summary: PostScript versions of the ESSTIX, with macro support Version: svn22426.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58704,7 +58705,7 @@ double-struck (blackboard bold) in maths mode. %package esstix-doc Summary: Documentation for esstix Version: svn22426.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esstix-doc BuildArch: noarch AutoReqProv: No @@ -58717,7 +58718,7 @@ Provides: tex-esvect = %{tl_version} License: GPL+ Summary: Vector arrows Version: svn32098.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58749,7 +58750,7 @@ a package to use it. %package esvect-doc Summary: Documentation for esvect Version: svn32098.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esvect-doc BuildArch: noarch AutoReqProv: No @@ -58762,7 +58763,7 @@ Provides: tex-eulervm = %{tl_version} License: LPPL Summary: Euler virtual math fonts Version: svn15878.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58816,7 +58817,7 @@ better with certain text fonts, e.g., Minion. %package eulervm-doc Summary: Documentation for eulervm Version: svn15878.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eulervm-doc BuildArch: noarch AutoReqProv: No @@ -58829,7 +58830,7 @@ Provides: tex-euxm = %{tl_version} License: LPPL Summary: euxm package Version: svn20202.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -58846,7 +58847,7 @@ Provides: tex-fbb = %{tl_version} License: OFL Summary: A free Bembo-like font Version: svn41408 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -59296,7 +59297,7 @@ newtxmath's libertine option. %package fbb-doc Summary: Documentation for fbb Version: svn41408 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fbb-doc BuildArch: noarch AutoReqProv: No @@ -59309,7 +59310,7 @@ Provides: tex-fdsymbol = %{tl_version} License: OFL Summary: A maths symbol font Version: svn26722.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -59388,7 +59389,7 @@ contemporary typefaces. %package fdsymbol-doc Summary: Documentation for fdsymbol Version: svn26722.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fdsymbol-doc BuildArch: noarch AutoReqProv: No @@ -59401,7 +59402,7 @@ Provides: tex-fetamont = %{tl_version} License: LPPL 1.3 Summary: Extended version of Knuth's logo typeface Version: svn38746 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -59531,7 +59532,7 @@ shapes of the corresponding glyphs in the METATYPE1 logo. %package fetamont-doc Summary: Documentation for fetamont Version: svn38746 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fetamont-doc BuildArch: noarch AutoReqProv: No @@ -59544,7 +59545,7 @@ Provides: tex-feyn = %{tl_version} License: GPL+ Summary: A font for in-text Feynman diagrams Version: svn15878.0.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -59572,7 +59573,7 @@ source, and macros for their use are also provided. %package feyn-doc Summary: Documentation for feyn Version: svn15878.0.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-feyn-doc BuildArch: noarch AutoReqProv: No @@ -59585,7 +59586,7 @@ Provides: tex-fge = %{tl_version} License: LPPL Summary: A font for Frege's Grundgesetze der Arithmetik Version: svn37628.1.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -59609,7 +59610,7 @@ The fonts are provided as Metafont source and Adobe Type 1 %package fge-doc Summary: Documentation for fge Version: svn37628.1.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fge-doc BuildArch: noarch AutoReqProv: No @@ -59622,7 +59623,7 @@ Provides: tex-fira = %{tl_version} License: OFL Summary: Fira fonts with LaTeX support Version: svn39731 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61455,7 +61456,7 @@ light, regular, medium, bold, ... %package fira-doc Summary: Documentation for fira Version: svn39731 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fira-doc BuildArch: noarch AutoReqProv: No @@ -61468,7 +61469,7 @@ Provides: tex-foekfont = %{tl_version} License: GPL+ Summary: The title font of the Mads Fok magazine Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61490,7 +61491,7 @@ places. %package foekfont-doc Summary: Documentation for foekfont Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-foekfont-doc BuildArch: noarch AutoReqProv: No @@ -61503,7 +61504,7 @@ Provides: tex-fonetika = %{tl_version} License: GPL+ and LPPL Summary: Support for the Danish "Dania" phonetic system Version: svn21326.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61537,7 +61538,7 @@ were created using FontForge. %package fonetika-doc Summary: Documentation for fonetika Version: svn21326.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fonetika-doc BuildArch: noarch AutoReqProv: No @@ -61550,7 +61551,7 @@ Provides: tex-fontawesome = %{tl_version} License: LPPL 1.3 Summary: Font containing web-related icons Version: svn41412 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch # This is a bit of a lie, but I don't want someone who installs texlive-fontawesome to wonder where their # system fonts are. @@ -61587,7 +61588,7 @@ package, fontspec, if run with XeTeX or LuaTeX. %package fontawesome-doc Summary: Documentation for fontawesome Version: svn41412 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontawesome-doc BuildArch: noarch AutoReqProv: No @@ -61600,7 +61601,7 @@ Provides: tex-fontmfizz = %{tl_version} License: MIT Summary: Font Mfizz icons for use in LaTeX Version: svn35892.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61618,7 +61619,7 @@ Xe(La)TeX or Lua(La)TeX engine to load the included ttf font. %package fontmfizz-doc Summary: Documentation for fontmfizz Version: svn35892.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontmfizz-doc BuildArch: noarch AutoReqProv: No @@ -61631,7 +61632,7 @@ Provides: tex-old-arrows = %{tl_version} License: LPPL 1.3 Summary: Computer Modern old-style arrows with smaller arrowheads Version: svn38619 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61674,7 +61675,7 @@ the old-style ones. %package old-arrows-doc Summary: Documentation for old-arrows Version: svn38619 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-old-arrows-doc BuildArch: noarch AutoReqProv: No @@ -61687,7 +61688,7 @@ Provides: tex-fourier = %{tl_version} License: LPPL Summary: Using Utopia fonts in LaTeX documents Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61906,7 +61907,7 @@ a registered trademark of Adobe Systems Incorporated %package fourier-doc Summary: Documentation for fourier Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fourier-doc BuildArch: noarch AutoReqProv: No @@ -61919,7 +61920,7 @@ Provides: tex-fouriernc = %{tl_version} License: LPPL Summary: Use New Century Schoolbook text with Fourier maths fonts Version: svn29646.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -61950,7 +61951,7 @@ to have the Fourier-GUTenberg fonts installed. %package fouriernc-doc Summary: Documentation for fouriernc Version: svn29646.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fouriernc-doc BuildArch: noarch AutoReqProv: No @@ -61963,7 +61964,7 @@ Provides: tex-frcursive = %{tl_version} License: LPPL 1.2 Summary: French cursive hand fonts Version: svn24559.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62031,7 +62032,7 @@ and a package) and font maps are provided. %package frcursive-doc Summary: Documentation for frcursive Version: svn24559.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frcursive-doc BuildArch: noarch AutoReqProv: No @@ -62044,7 +62045,7 @@ Provides: tex-genealogy = %{tl_version} License: LPPL Summary: A compilation genealogy font Version: svn25112.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62061,7 +62062,7 @@ Metafont source. %package genealogy-doc Summary: Documentation for genealogy Version: svn25112.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-genealogy-doc BuildArch: noarch AutoReqProv: No @@ -62074,7 +62075,7 @@ Provides: tex-gentium-tug = %{tl_version} License: MIT and OFL Summary: Gentium fonts (in two formats) and support files Version: svn37378.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62234,7 +62235,7 @@ documentation, and the SIL documentation and other files. %package gentium-tug-doc Summary: Documentation for gentium-tug Version: svn37378.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gentium-tug-doc BuildArch: noarch AutoReqProv: No @@ -62247,7 +62248,7 @@ Provides: tex-gfsartemisia = %{tl_version} License: LPPL Summary: A modern Greek font design Version: svn19469.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62380,7 +62381,7 @@ LaTeX support is provided, using the OT1, T1 and LGR encodings. %package gfsartemisia-doc Summary: Documentation for gfsartemisia Version: svn19469.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsartemisia-doc BuildArch: noarch AutoReqProv: No @@ -62393,7 +62394,7 @@ Provides: tex-gfsbodoni = %{tl_version} License: OFL Summary: A Greek and Latin font based on Bodoni Version: svn28484.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62519,7 +62520,7 @@ formats. %package gfsbodoni-doc Summary: Documentation for gfsbodoni Version: svn28484.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsbodoni-doc BuildArch: noarch AutoReqProv: No @@ -62532,7 +62533,7 @@ Provides: tex-gfscomplutum = %{tl_version} License: OFL Summary: A Greek font with a long history Version: svn19469.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62563,7 +62564,7 @@ set of majuscules. %package gfscomplutum-doc Summary: Documentation for gfscomplutum Version: svn19469.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfscomplutum-doc BuildArch: noarch AutoReqProv: No @@ -62576,7 +62577,7 @@ Provides: tex-gfsdidot = %{tl_version} License: LPPL Summary: A Greek font based on Didot's work Version: svn31978.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62717,7 +62718,7 @@ T1 and LGR encodings. %package gfsdidot-doc Summary: Documentation for gfsdidot Version: svn31978.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsdidot-doc BuildArch: noarch AutoReqProv: No @@ -62730,7 +62731,7 @@ Provides: tex-gfsneohellenic = %{tl_version} License: LPPL Summary: A Greek font in the Neo-Hellenic style Version: svn31979.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62859,7 +62860,7 @@ fonts is provided, offering OT1, T1 and LGR encodings. %package gfsneohellenic-doc Summary: Documentation for gfsneohellenic Version: svn31979.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsneohellenic-doc BuildArch: noarch AutoReqProv: No @@ -62872,7 +62873,7 @@ Provides: tex-gfssolomos = %{tl_version} License: OFL Summary: A Greek-alphabet font Version: svn18651.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62897,7 +62898,7 @@ support, for use with the LGR encoding only, is provided. %package gfssolomos-doc Summary: Documentation for gfssolomos Version: svn18651.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfssolomos-doc BuildArch: noarch AutoReqProv: No @@ -62910,7 +62911,7 @@ Provides: tex-gillcm = %{tl_version} License: BSD Summary: Alternative unslanted italic Computer Modern fonts Version: svn19878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -62959,7 +62960,7 @@ package was written for the author's talk at TUG 2010. %package gillcm-doc Summary: Documentation for gillcm Version: svn19878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gillcm-doc BuildArch: noarch AutoReqProv: No @@ -62972,7 +62973,7 @@ Provides: tex-gillius = %{tl_version} License: GPLv2+ Summary: Gillius fonts with LaTeX support Version: svn32068.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63312,7 +63313,7 @@ Gill Sans. %package gillius-doc Summary: Documentation for gillius Version: svn32068.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gillius-doc BuildArch: noarch AutoReqProv: No @@ -63325,7 +63326,7 @@ Provides: tex-gnu-freefont = %{tl_version} License: GPLv3+ Summary: A Unicode font, with rather wide coverage Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63364,7 +63365,7 @@ proportional (one with uniform and one with modulated stroke). %package gnu-freefont-doc Summary: Documentation for gnu-freefont Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gnu-freefont-doc BuildArch: noarch AutoReqProv: No @@ -63377,7 +63378,7 @@ Provides: tex-gothic = %{tl_version} License: Public Domain Summary: A collection of old German-style fonts Version: svn38263.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63403,7 +63404,7 @@ Metafont. %package gothic-doc Summary: Documentation for gothic Version: svn38263.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gothic-doc BuildArch: noarch AutoReqProv: No @@ -63416,7 +63417,7 @@ Provides: tex-greenpoint = %{tl_version} License: GPL+ Summary: The Green Point logo Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63432,7 +63433,7 @@ on nearly every bottle. It should not be confused with the %package greenpoint-doc Summary: Documentation for greenpoint Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-greenpoint-doc BuildArch: noarch AutoReqProv: No @@ -63445,7 +63446,7 @@ Provides: tex-grotesq = %{tl_version} License: GPL+ Summary: URW Grotesq font pack for LaTeX Version: svn35859.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63481,7 +63482,7 @@ for use with (La)TeX. %package grotesq-doc Summary: Documentation for grotesq Version: svn35859.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grotesq-doc BuildArch: noarch AutoReqProv: No @@ -63494,7 +63495,7 @@ Provides: tex-hacm = %{tl_version} License: LPPL 1.3 Summary: Font support for the Arka language Version: svn27671.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63555,7 +63556,7 @@ fonts, in Adobe Type 1 format. %package hacm-doc Summary: Documentation for hacm Version: svn27671.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hacm-doc BuildArch: noarch AutoReqProv: No @@ -63568,7 +63569,7 @@ Provides: tex-hands = %{tl_version} License: Public Domain Summary: Pointing hand font Version: svn13293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63585,7 +63586,7 @@ Provides: tex-heuristica = %{tl_version} License: OFL Summary: Fonts extending Utopia, with LaTeX support files Version: svn35964.1.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63836,7 +63837,7 @@ font packages. %package heuristica-doc Summary: Documentation for heuristica Version: svn35964.1.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-heuristica-doc BuildArch: noarch AutoReqProv: No @@ -63849,7 +63850,7 @@ Provides: tex-hfbright = %{tl_version} License: LPPL Summary: The hfbright fonts Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -63894,7 +63895,7 @@ parts of the Computer Modern Bright fonts. %package hfbright-doc Summary: Documentation for hfbright Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hfbright-doc BuildArch: noarch AutoReqProv: No @@ -63907,7 +63908,7 @@ Provides: tex-hfoldsty = %{tl_version} License: GPL+ Summary: Old style numerals with EC fonts Version: svn29349.1.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -64571,7 +64572,7 @@ pdfcprot package. %package hfoldsty-doc Summary: Documentation for hfoldsty Version: svn29349.1.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hfoldsty-doc BuildArch: noarch AutoReqProv: No @@ -64584,7 +64585,7 @@ Provides: tex-ifsym = %{tl_version} License: LPPL Summary: A collection of symbols Version: svn24868.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -64622,7 +64623,7 @@ document. %package ifsym-doc Summary: Documentation for ifsym Version: svn24868.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifsym-doc BuildArch: noarch AutoReqProv: No @@ -64635,7 +64636,7 @@ Provides: tex-inconsolata = %{tl_version} License: OFL Summary: A monospaced font, with support files for use with TeX Version: svn39839 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -64767,7 +64768,7 @@ LaTeX font definition and other relevant files. %package inconsolata-doc Summary: Documentation for inconsolata Version: svn39839 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-inconsolata-doc BuildArch: noarch AutoReqProv: No @@ -64780,7 +64781,7 @@ Provides: tex-initials = %{tl_version} License: LPPL Summary: Adobe Type 1 decorative initial fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -64887,7 +64888,7 @@ a .fd file for use with LaTeX. %package initials-doc Summary: Documentation for initials Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-initials-doc BuildArch: noarch AutoReqProv: No @@ -64900,7 +64901,7 @@ Provides: tex-ipaex-type1 = %{tl_version} License: IPA Summary: IPAex fonts converted to Type-1 format Unicode subfonts Version: svn39722 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -65759,7 +65760,7 @@ the CJK package. Font conversion was done with ttf2pt1. %package ipaex-type1-doc Summary: Documentation for ipaex-type1 Version: svn39722 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ipaex-type1-doc BuildArch: noarch AutoReqProv: No @@ -65772,7 +65773,7 @@ Provides: tex-iwona = %{tl_version} License: GFSL Summary: A two-element sans-serif font Version: svn19611.0.995b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66379,7 +66380,7 @@ fonts for LaTeX. %package iwona-doc Summary: Documentation for iwona Version: svn19611.0.995b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iwona-doc BuildArch: noarch AutoReqProv: No @@ -66392,7 +66393,7 @@ Provides: tex-jablantile = %{tl_version} License: Public Domain Summary: Metafont version of tiles in the style of Slavik Jablan Version: svn16364.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66407,7 +66408,7 @@ Exhibit. %package jablantile-doc Summary: Documentation for jablantile Version: svn16364.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jablantile-doc BuildArch: noarch AutoReqProv: No @@ -66420,7 +66421,7 @@ Provides: tex-jamtimes = %{tl_version} License: BSD Summary: Expanded Times Roman fonts Version: svn20408.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66541,7 +66542,7 @@ Belleek fonts. %package jamtimes-doc Summary: Documentation for jamtimes Version: svn20408.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jamtimes-doc BuildArch: noarch AutoReqProv: No @@ -66554,7 +66555,7 @@ Provides: tex-junicode = %{tl_version} License: GPL+ Summary: A TrueType font for mediaevalists Version: svn28286.0.7.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66574,7 +66575,7 @@ It works well with Xe(La)TeX. %package junicode-doc Summary: Documentation for junicode Version: svn28286.0.7.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-junicode-doc BuildArch: noarch AutoReqProv: No @@ -66587,7 +66588,7 @@ Provides: tex-kixfont = %{tl_version} License: Copyright only Summary: A font for KIX codes Version: svn18488.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66605,7 +66606,7 @@ letters. %package kixfont-doc Summary: Documentation for kixfont Version: svn18488.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kixfont-doc BuildArch: noarch AutoReqProv: No @@ -66618,7 +66619,7 @@ Provides: tex-knuthotherfonts = %{tl_version} License: LPPL Summary: knuthotherfonts package Version: svn13293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -66632,7 +66633,7 @@ Provides: tex-kpfonts = %{tl_version} License: GPL+ Summary: A complete set of fonts for text and mathematics Version: svn29803.3.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -68522,7 +68523,7 @@ their parent. %package kpfonts-doc Summary: Documentation for kpfonts Version: svn29803.3.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kpfonts-doc BuildArch: noarch AutoReqProv: No @@ -68535,7 +68536,7 @@ Provides: tex-kurier = %{tl_version} License: GFSL Summary: A two-element sans-serif typeface Version: svn19612.0.995b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -69140,7 +69141,7 @@ supporting macros and files defining fonts for LaTeX. %package kurier-doc Summary: Documentation for kurier Version: svn19612.0.995b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kurier-doc BuildArch: noarch AutoReqProv: No @@ -69153,7 +69154,7 @@ Provides: tex-lato = %{tl_version} License: LPPL 1.3 Summary: Lato font family and LaTeX support Version: svn24986.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -69345,7 +69346,7 @@ support with Dvips. %package lato-doc Summary: Documentation for lato Version: svn24986.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lato-doc BuildArch: noarch AutoReqProv: No @@ -69358,7 +69359,7 @@ Provides: tex-lfb = %{tl_version} License: LPPL Summary: A Greek font with normal and bold variants Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -69394,7 +69395,7 @@ schemes. %package lfb-doc Summary: Documentation for lfb Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lfb-doc BuildArch: noarch AutoReqProv: No @@ -69407,7 +69408,7 @@ Provides: tex-libertine = %{tl_version} License: LPPL Summary: Use of Linux Libertine and Biolinum fonts with LaTeX Version: svn36815.5.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -70846,7 +70847,7 @@ both the libertineotf and the libertine-legacy packages. %package libertine-doc Summary: Documentation for libertine Version: svn36815.5.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-libertine-doc BuildArch: noarch AutoReqProv: No @@ -70859,7 +70860,7 @@ Provides: tex-librebaskerville = %{tl_version} License: LPPL Summary: LaTeX support for the Libre Baskerville family of fonts Version: svn31741.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -70978,7 +70979,7 @@ generated. %package librebaskerville-doc Summary: Documentation for librebaskerville Version: svn31741.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-librebaskerville-doc BuildArch: noarch AutoReqProv: No @@ -70991,7 +70992,7 @@ Provides: tex-librecaslon = %{tl_version} License: OFL Summary: Libre Caslon fonts, with LaTeX support Version: svn31929.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71160,7 +71161,7 @@ bold variant has been created and treated as italic. %package librecaslon-doc Summary: Documentation for librecaslon Version: svn31929.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-librecaslon-doc BuildArch: noarch AutoReqProv: No @@ -71173,7 +71174,7 @@ Provides: tex-libris = %{tl_version} License: GPL+ Summary: Libris ADF fonts, with LaTeX support Version: svn19409.1.007 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71244,7 +71245,7 @@ support macros are distributed under LPPL licensing. %package libris-doc Summary: Documentation for libris Version: svn19409.1.007 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-libris-doc BuildArch: noarch AutoReqProv: No @@ -71257,7 +71258,7 @@ Provides: tex-lineara = %{tl_version} License: LPPL Summary: Linear A script fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Provides: texlive-linearA = %{tl_version}.1 @@ -71286,7 +71287,7 @@ will be deciphered. %package lineara-doc Summary: Documentation for linearA Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lineara-doc BuildArch: noarch AutoReqProv: No @@ -71299,7 +71300,7 @@ Provides: tex-lobster2 = %{tl_version} License: OFL Summary: Lobster Two fonts, with support for all LaTeX engines Version: svn32617.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71409,7 +71410,7 @@ access and use is supported in LaTeX. %package lobster2-doc Summary: Documentation for lobster2 Version: svn32617.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lobster2-doc BuildArch: noarch AutoReqProv: No @@ -71422,7 +71423,7 @@ Provides: tex-lxfonts = %{tl_version} License: LPPL Summary: Set of slide fonts based on CM Version: svn32354.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71498,7 +71499,7 @@ fonts, all redone with the same stylistic parameters. %package lxfonts-doc Summary: Documentation for lxfonts Version: svn32354.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lxfonts-doc BuildArch: noarch AutoReqProv: No @@ -71511,7 +71512,7 @@ Provides: tex-ly1 = %{tl_version} License: LPPL Summary: Support for LY1 LaTeX encoding Version: svn21086.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71600,7 +71601,7 @@ fonts in LaTeX using LY1 encoding. %package ly1-doc Summary: Documentation for ly1 Version: svn21086.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ly1-doc BuildArch: noarch AutoReqProv: No @@ -71613,7 +71614,7 @@ Provides: tex-mathabx = %{tl_version} License: LPPL Summary: Three series of mathematical symbols Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71658,7 +71659,7 @@ is also available. %package mathabx-doc Summary: Documentation for mathabx Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathabx-doc BuildArch: noarch AutoReqProv: No @@ -71671,7 +71672,7 @@ Provides: tex-mathabx-type1 = %{tl_version} License: LPPL Summary: Outline version of the mathabx fonts Version: svn21129.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -71712,7 +71713,7 @@ This is an Adobe Type 1 outline version of the mathabx fonts. %package mathabx-type1-doc Summary: Documentation for mathabx-type1 Version: svn21129.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathabx-type1-doc BuildArch: noarch AutoReqProv: No @@ -71726,7 +71727,7 @@ Provides: tex-mathdesign = %{tl_version} License: GPL+ Summary: Mathematical fonts to fit with particular text fonts Version: svn31639.2.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -72981,7 +72982,7 @@ of them created by the Greek Font Society). %package mathdesign-doc Summary: Documentation for mathdesign Version: svn31639.2.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathdesign-doc BuildArch: noarch AutoReqProv: No @@ -72994,7 +72995,7 @@ Provides: tex-mdputu = %{tl_version} License: BSD Summary: Upright digits in Adobe Utopia Italic Version: svn20298.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -73021,7 +73022,7 @@ extension to Mathdesign's Utopia bundle. %package mdputu-doc Summary: Documentation for mdputu Version: svn20298.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mdputu-doc BuildArch: noarch AutoReqProv: No @@ -73034,7 +73035,7 @@ Provides: tex-mdsymbol = %{tl_version} License: OFL Summary: Symbol fonts to match Adobe Myriad Pro Version: svn28399.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -73116,7 +73117,7 @@ might also fit well with other contemporary typefaces. %package mdsymbol-doc Summary: Documentation for mdsymbol Version: svn28399.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mdsymbol-doc BuildArch: noarch AutoReqProv: No @@ -73129,7 +73130,7 @@ Provides: tex-merriweather = %{tl_version} License: OFL Summary: Merriweather and MerriweatherSans fonts, with LaTeX support Version: svn34315.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -73335,7 +73336,7 @@ for each. %package merriweather-doc Summary: Documentation for merriweather Version: svn34315.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-merriweather-doc BuildArch: noarch AutoReqProv: No @@ -73348,7 +73349,7 @@ Provides: tex-mintspirit = %{tl_version} License: OFL Summary: LaTeX support for MintSpirit font families Version: svn32069.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -73921,7 +73922,7 @@ variant provides more conventional shapes for some glyphs. %package mintspirit-doc Summary: Documentation for mintspirit Version: svn32069.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mintspirit-doc BuildArch: noarch AutoReqProv: No @@ -73934,7 +73935,7 @@ Provides: tex-mnsymbol = %{tl_version} License: Public Domain Summary: Mathematical symbol font for Adobe MinionPro Version: svn18651.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -74099,7 +74100,7 @@ will probably do what is needed. %package mnsymbol-doc Summary: Documentation for mnsymbol Version: svn18651.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mnsymbol-doc BuildArch: noarch AutoReqProv: No @@ -74112,7 +74113,7 @@ Provides: tex-newpx = %{tl_version} License: LPPL Summary: Alternative uses of the PX fonts, with improved metrics Version: svn39698 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -74431,7 +74432,7 @@ and their map files enabled. %package newpx-doc Summary: Documentation for newpx Version: svn39698 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newpx-doc BuildArch: noarch AutoReqProv: No @@ -74444,7 +74445,7 @@ Provides: tex-newtx = %{tl_version} License: LPPL 1.3 Summary: Alternative uses of the TX fonts, with improved metrics Version: svn40165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75044,7 +75045,7 @@ maths combination. %package newtx-doc Summary: Documentation for newtx Version: svn40165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newtx-doc BuildArch: noarch AutoReqProv: No @@ -75057,7 +75058,7 @@ Provides: tex-newtxsf = %{tl_version} License: OFL Summary: Sans-math fonts for use with newtx Version: svn39353 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75097,7 +75098,7 @@ installed and its map file enabled). %package newtxsf-doc Summary: Documentation for newtxsf Version: svn39353 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newtxsf-doc BuildArch: noarch AutoReqProv: No @@ -75110,7 +75111,7 @@ Provides: tex-newtxtt = %{tl_version} License: GPLv3+ Summary: Enhancement of typewriter fonts from newtx Version: svn37761.1.052 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75274,7 +75275,7 @@ different styles for zero. %package newtxtt-doc Summary: Documentation for newtxtt Version: svn37761.1.052 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newtxtt-doc BuildArch: noarch AutoReqProv: No @@ -75287,7 +75288,7 @@ Provides: tex-nkarta = %{tl_version} License: Public Domain Summary: A "new" version of the karta cartographic fonts Version: svn16437.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75302,7 +75303,7 @@ as Encapsulated PostScript, using MetaPost, is also provided. %package nkarta-doc Summary: Documentation for nkarta Version: svn16437.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nkarta-doc BuildArch: noarch AutoReqProv: No @@ -75315,7 +75316,7 @@ Provides: tex-obnov = %{tl_version} License: LPPL Summary: Obyknovennaya Novaya fonts Version: svn33355.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75356,7 +75357,7 @@ needs Cyrillic font support. %package obnov-doc Summary: Documentation for obnov Version: svn33355.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-obnov-doc BuildArch: noarch AutoReqProv: No @@ -75369,7 +75370,7 @@ Provides: tex-ocherokee = %{tl_version} License: LPPL Summary: LaTeX Support for the Cherokee language Version: svn25689.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75394,7 +75395,7 @@ with the Omega version of LaTeX (known as Lambda). %package ocherokee-doc Summary: Documentation for ocherokee Version: svn25689.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocherokee-doc BuildArch: noarch AutoReqProv: No @@ -75407,7 +75408,7 @@ Provides: tex-ocr-b = %{tl_version} License: Copyright only Summary: Fonts for OCR-B Version: svn20852.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75425,7 +75426,7 @@ Metafont source for OCR-B at several sizes. %package ocr-b-doc Summary: Documentation for ocr-b Version: svn20852.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocr-b-doc BuildArch: noarch AutoReqProv: No @@ -75438,7 +75439,7 @@ Provides: tex-ocr-b-outline = %{tl_version} License: Copyright only Summary: OCR-B fonts in Type 1 and OpenType Version: svn20969.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75468,7 +75469,7 @@ ocr-b package should also be installed. %package ocr-b-outline-doc Summary: Documentation for ocr-b-outline Version: svn20969.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocr-b-outline-doc BuildArch: noarch AutoReqProv: No @@ -75481,7 +75482,7 @@ Provides: tex-ogham = %{tl_version} License: Public Domain Summary: Fonts for typesetting Ogham script Version: svn24876.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75499,7 +75500,7 @@ Peter Flynn and Dan Luecking.) %package ogham-doc Summary: Documentation for ogham Version: svn24876.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ogham-doc BuildArch: noarch AutoReqProv: No @@ -75512,7 +75513,7 @@ Provides: tex-oinuit = %{tl_version} License: LPPL Summary: LaTeX Support for the Inuktitut Language Version: svn28668.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75541,7 +75542,7 @@ are supported and with the necessary fonts are also provided. %package oinuit-doc Summary: Documentation for oinuit Version: svn28668.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oinuit-doc BuildArch: noarch AutoReqProv: No @@ -75554,7 +75555,7 @@ Provides: tex-oldlatin = %{tl_version} License: LPPL Summary: Compute Modern-like font with long s Version: svn17932.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75611,7 +75612,7 @@ generate "long s" which was used in old text. %package oldlatin-doc Summary: Documentation for oldlatin Version: svn17932.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oldlatin-doc BuildArch: noarch AutoReqProv: No @@ -75624,7 +75625,7 @@ Provides: tex-oldstandard = %{tl_version} License: OFL Summary: Old Standard: A Unicode Font for Classical and Medieval Studies Version: svn29349.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -75651,7 +75652,7 @@ as XeTeX and LuaTeX. %package oldstandard-doc Summary: Documentation for oldstandard Version: svn29349.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oldstandard-doc BuildArch: noarch AutoReqProv: No @@ -75664,7 +75665,7 @@ Provides: tex-opensans = %{tl_version} License: LPPL 1.3 Summary: The Open Sans font family, and LaTeX support Version: svn24706.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -76476,7 +76477,7 @@ support with dvips %package opensans-doc Summary: Documentation for opensans Version: svn24706.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-opensans-doc BuildArch: noarch AutoReqProv: No @@ -76489,7 +76490,7 @@ Provides: tex-orkhun = %{tl_version} License: LPPL Summary: A font for orkhun script Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -76507,7 +76508,7 @@ Metafont source. %package orkhun-doc Summary: Documentation for orkhun Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-orkhun-doc BuildArch: noarch AutoReqProv: No @@ -76520,7 +76521,7 @@ Provides: tex-overlock = %{tl_version} License: OFL Summary: Overlook sans fonts with LaTeX support Version: svn34409.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -76649,7 +76650,7 @@ in the Regular weight. %package overlock-doc Summary: Documentation for overlock Version: svn34409.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-overlock-doc BuildArch: noarch AutoReqProv: No @@ -76662,7 +76663,7 @@ Provides: tex-pacioli = %{tl_version} License: LPPL Summary: Fonts designed by Fra Luca de Pacioli in 1497 Version: svn24947.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -76683,7 +76684,7 @@ lowercase or digits. The Metafont source is distributed in a %package pacioli-doc Summary: Documentation for pacioli Version: svn24947.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pacioli-doc BuildArch: noarch AutoReqProv: No @@ -76696,7 +76697,7 @@ Provides: tex-paratype = %{tl_version} License: LPPL Summary: LaTeX support for free fonts by ParaType Version: svn32859.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -77433,7 +77434,7 @@ and ptserif. %package paratype-doc Summary: Documentation for paratype Version: svn32859.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-paratype-doc BuildArch: noarch AutoReqProv: No @@ -77446,7 +77447,7 @@ Provides: tex-phaistos = %{tl_version} License: LPPL Summary: Disk of Phaistos font Version: svn18651.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -77473,7 +77474,7 @@ Greek), but arguments for other languages have been presented. %package phaistos-doc Summary: Documentation for phaistos Version: svn18651.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-phaistos-doc BuildArch: noarch AutoReqProv: No @@ -77486,7 +77487,7 @@ Provides: tex-phonetic = %{tl_version} License: LPPL Summary: Metafont Phonetic fonts, based on Computer Modern Version: svn21871.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -77513,7 +77514,7 @@ LaTeX 2.09 and for current LaTeX. %package phonetic-doc Summary: Documentation for phonetic Version: svn21871.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-phonetic-doc BuildArch: noarch AutoReqProv: No @@ -77526,7 +77527,7 @@ Provides: tex-pigpen = %{tl_version} License: LPPL Summary: A font for the pigpen (or masonic) cipher Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -77549,7 +77550,7 @@ file), and macros for its use. %package pigpen-doc Summary: Documentation for pigpen Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pigpen-doc BuildArch: noarch AutoReqProv: No @@ -77562,7 +77563,7 @@ Provides: tex-playfair = %{tl_version} License: OFL Summary: Playfair Display fonts with LaTeX support Version: svn34236.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -77905,7 +77906,7 @@ when typesetting proper nouns and initialisms. %package playfair-doc Summary: Documentation for playfair Version: svn34236.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-playfair-doc BuildArch: noarch AutoReqProv: No @@ -77918,7 +77919,7 @@ Provides: tex-poltawski = %{tl_version} License: GFSL Summary: Antykwa Poltawskiego Family of Fonts Version: svn20075.1.101 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78675,7 +78676,7 @@ released in 2000 is rendered obsolete by this package. %package poltawski-doc Summary: Documentation for poltawski Version: svn20075.1.101 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-poltawski-doc BuildArch: noarch AutoReqProv: No @@ -78688,7 +78689,7 @@ Provides: tex-prodint = %{tl_version} License: OFL Summary: A font that provides the product integral symbol Version: svn21893.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78711,7 +78712,7 @@ the symbol and providing this font. %package prodint-doc Summary: Documentation for prodint Version: svn21893.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-prodint-doc BuildArch: noarch AutoReqProv: No @@ -78724,7 +78725,7 @@ Provides: tex-punk = %{tl_version} License: Knuth Summary: Donald Knuth's punk font Version: svn27388.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78749,7 +78750,7 @@ found in punk-latex %package punk-doc Summary: Documentation for punk Version: svn27388.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-punk-doc BuildArch: noarch AutoReqProv: No @@ -78762,7 +78763,7 @@ Provides: tex-punk-latex = %{tl_version} License: GPL+ Summary: LaTeX support for punk fonts Version: svn27389.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78778,7 +78779,7 @@ present package is to be preferred. %package punk-latex-doc Summary: Documentation for punk-latex Version: svn27389.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-punk-latex-doc BuildArch: noarch AutoReqProv: No @@ -78791,7 +78792,7 @@ Provides: tex-punknova = %{tl_version} License: Punknova Summary: OpenType version of Knuth's Punk font Version: svn24649.1.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78812,7 +78813,7 @@ a variant for each invocation. %package punknova-doc Summary: Documentation for punknova Version: svn24649.1.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-punknova-doc BuildArch: noarch AutoReqProv: No @@ -78825,7 +78826,7 @@ Provides: tex-pxtxalfa = %{tl_version} License: LPPL Summary: Virtual maths alphabets based on pxfonts and txfonts Version: svn23682.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -78870,7 +78871,7 @@ mathalfa package offers support for this collection. %package pxtxalfa-doc Summary: Documentation for pxtxalfa Version: svn23682.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxtxalfa-doc BuildArch: noarch AutoReqProv: No @@ -78883,7 +78884,7 @@ Provides: tex-quattrocento = %{tl_version} License: LPPL Summary: LaTeX support for Quattrocento and Quattrocento Sans fonts Version: svn31763.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -79144,7 +79145,7 @@ sans-serif companion for Quattrocento. %package quattrocento-doc Summary: Documentation for quattrocento Version: svn31763.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-quattrocento-doc BuildArch: noarch AutoReqProv: No @@ -79157,7 +79158,7 @@ Provides: tex-raleway = %{tl_version} License: OFL Summary: Use Raleway with TeX(-alike) systems Version: svn37394.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -79927,7 +79928,7 @@ used. The entire font family is included. %package raleway-doc Summary: Documentation for raleway Version: svn37394.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-raleway-doc BuildArch: noarch AutoReqProv: No @@ -79940,7 +79941,7 @@ Provides: tex-recycle = %{tl_version} License: GPL+ Summary: A font providing the "recyclable" logo Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -79960,7 +79961,7 @@ package to use the logo at various sizes. %package recycle-doc Summary: Documentation for recycle Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-recycle-doc BuildArch: noarch AutoReqProv: No @@ -79973,7 +79974,7 @@ Provides: tex-roboto = %{tl_version} License: ASL 2.0 Summary: Support for the Roboto family of fonts Version: svn38386 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -81520,7 +81521,7 @@ of fonts, designed by Christian Robertson for Google. %package roboto-doc Summary: Documentation for roboto Version: svn38386 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-roboto-doc BuildArch: noarch AutoReqProv: No @@ -81533,7 +81534,7 @@ Provides: tex-romande = %{tl_version} License: LPPL Summary: Romande ADF fonts and LaTeX support Version: svn19537.1.008_v7_sc -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -81639,7 +81640,7 @@ nfssext-cfr and the xkeyval packages. %package romande-doc Summary: Documentation for romande Version: svn19537.1.008_v7_sc -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-romande-doc BuildArch: noarch AutoReqProv: No @@ -81652,7 +81653,7 @@ Provides: tex-rsfso = %{tl_version} License: LPPL Summary: A mathematical calligraphic font based on rsfs Version: svn37965.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -81683,7 +81684,7 @@ similar to that from the Adobe Mathematical Pi script font. %package rsfso-doc Summary: Documentation for rsfso Version: svn37965.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rsfso-doc BuildArch: noarch AutoReqProv: No @@ -81696,7 +81697,7 @@ Provides: tex-sansmathaccent = %{tl_version} License: LPPL 1.3 Summary: Correct placement of accents in sans-serif maths Version: svn30187.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -81732,7 +81733,7 @@ fixes the positioning of such accents when the default font %package sansmathaccent-doc Summary: Documentation for sansmathaccent Version: svn30187.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sansmathaccent-doc BuildArch: noarch AutoReqProv: No @@ -81745,7 +81746,7 @@ Provides: tex-sansmathfonts = %{tl_version} License: LPPL 1.3 Summary: Correct placement of accents in sans-serif maths Version: svn30173.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82112,7 +82113,7 @@ Modern. %package sansmathfonts-doc Summary: Documentation for sansmathfonts Version: svn30173.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sansmathfonts-doc BuildArch: noarch AutoReqProv: No @@ -82125,7 +82126,7 @@ Provides: tex-sauter = %{tl_version} License: GPL+ Summary: Wide range of design sizes for CM fonts Version: svn13293.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82143,7 +82144,7 @@ Provides: tex-sauterfonts = %{tl_version} License: GPL+ Summary: Use Sauter's fonts in LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82190,7 +82191,7 @@ access the bbm fonts. %package sauterfonts-doc Summary: Documentation for sauterfonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sauterfonts-doc BuildArch: noarch AutoReqProv: No @@ -82203,7 +82204,7 @@ Provides: tex-schulschriften = %{tl_version} License: LPPL Summary: German "school scripts" from Suetterlin to the present day Version: svn35730.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82284,7 +82285,7 @@ zu schreiben. %package schulschriften-doc Summary: Documentation for schulschriften Version: svn35730.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-schulschriften-doc BuildArch: noarch AutoReqProv: No @@ -82297,7 +82298,7 @@ Provides: tex-semaphor = %{tl_version} License: GPL+ Summary: Semaphore alphabet font Version: svn18651.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82378,7 +82379,7 @@ in both OpenType and Adobe Type 1 formats. %package semaphor-doc Summary: Documentation for semaphor Version: svn18651.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-semaphor-doc BuildArch: noarch AutoReqProv: No @@ -82391,7 +82392,7 @@ Provides: tex-skull = %{tl_version} License: GPL+ Summary: A font to draw a skull Version: svn25608.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -82408,7 +82409,7 @@ Provides: tex-sourcecodepro = %{tl_version} License: OFL Summary: Use SourceCodePro with TeX(-alike) systems Version: svn40597 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -83024,7 +83025,7 @@ XeLaTeX/LuaLaTeX (OTF). %package sourcecodepro-doc Summary: Documentation for sourcecodepro Version: svn40597 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sourcecodepro-doc BuildArch: noarch AutoReqProv: No @@ -83037,7 +83038,7 @@ Provides: tex-sourcesanspro = %{tl_version} License: OFL Summary: Use SourceSansPro with TeX(-alike) systems Version: svn37379.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -84200,7 +84201,7 @@ XeLaTeX/LuaLaTeX (OTF). %package sourcesanspro-doc Summary: Documentation for sourcesanspro Version: svn37379.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sourcesanspro-doc BuildArch: noarch AutoReqProv: No @@ -84213,7 +84214,7 @@ Provides: tex-sourceserifpro = %{tl_version} License: OFL Summary: Use SourceSerifPro with TeX(-alike) systems Version: svn40598 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -84962,7 +84963,7 @@ sourceserifpro/issues) or emailed to tex@slxh.nl. %package sourceserifpro-doc Summary: Documentation for sourceserifpro Version: svn40598 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sourceserifpro-doc BuildArch: noarch AutoReqProv: No @@ -84975,7 +84976,7 @@ Provides: tex-starfont = %{tl_version} License: Public Domain Summary: The StarFont Sans astrological font Version: svn19982.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -84999,7 +85000,7 @@ Adobe Type 1 format. %package starfont-doc Summary: Documentation for starfont Version: svn19982.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-starfont-doc BuildArch: noarch AutoReqProv: No @@ -85012,7 +85013,7 @@ Provides: tex-staves = %{tl_version} License: LPPL Summary: Typeset Icelandic staves and runic letters Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85033,7 +85034,7 @@ support. %package staves-doc Summary: Documentation for staves Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-staves-doc BuildArch: noarch AutoReqProv: No @@ -85046,7 +85047,7 @@ Provides: tex-stix = %{tl_version} License: OFL Summary: OpenType Unicode maths fonts Version: svn36914.1.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85180,7 +85181,7 @@ available in the esstix bundle. %package stix-doc Summary: Documentation for stix Version: svn36914.1.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stix-doc BuildArch: noarch AutoReqProv: No @@ -85193,7 +85194,7 @@ Provides: tex-superiors = %{tl_version} License: LPPL Summary: Attach superior figures to a font family Version: svn36422.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85218,7 +85219,7 @@ Libertine. %package superiors-doc Summary: Documentation for superiors Version: svn36422.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-superiors-doc BuildArch: noarch AutoReqProv: No @@ -85231,7 +85232,7 @@ Provides: tex-tapir = %{tl_version} License: GPL+ Summary: A simple geometrical font Version: svn20484.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85249,7 +85250,7 @@ Polish languages. %package tapir-doc Summary: Documentation for tapir Version: svn20484.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tapir-doc BuildArch: noarch AutoReqProv: No @@ -85262,7 +85263,7 @@ Provides: tex-tengwarscript = %{tl_version} License: LPPL Summary: LaTeX support for using Tengwar fonts Version: svn34594.1.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85353,7 +85354,7 @@ metric and map files are provided for all the supported fonts. %package tengwarscript-doc Summary: Documentation for tengwarscript Version: svn34594.1.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tengwarscript-doc BuildArch: noarch AutoReqProv: No @@ -85366,7 +85367,7 @@ Provides: tex-tfrupee = %{tl_version} License: GPLv3+ Summary: A font offering the new (Indian) Rupee symbol Version: svn20770.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85387,7 +85388,7 @@ written for its use. %package tfrupee-doc Summary: Documentation for tfrupee Version: svn20770.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tfrupee-doc BuildArch: noarch AutoReqProv: No @@ -85400,7 +85401,7 @@ Provides: tex-tpslifonts = %{tl_version} License: GPL+ Summary: A LaTeX package for configuring presentation fonts Version: svn27464.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85435,7 +85436,7 @@ package is part of the TeXPower bundle. %package tpslifonts-doc Summary: Documentation for tpslifonts Version: svn27464.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tpslifonts-doc BuildArch: noarch AutoReqProv: No @@ -85448,7 +85449,7 @@ Provides: tex-trajan = %{tl_version} License: LPPL Summary: Fonts from the Trajan column in Rome Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85474,7 +85475,7 @@ punctuation and analphabetics; no lowercase or digits. %package trajan-doc Summary: Documentation for trajan Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-trajan-doc BuildArch: noarch AutoReqProv: No @@ -85487,7 +85488,7 @@ Provides: tex-txfontsb = %{tl_version} License: GPL+ Summary: Extensions to txfonts, using GNU Freefont Version: svn21578.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85562,7 +85563,7 @@ extensions are made with modifications of the GNU Freefont. %package txfontsb-doc Summary: Documentation for txfontsb Version: svn21578.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-txfontsb-doc BuildArch: noarch AutoReqProv: No @@ -85575,7 +85576,7 @@ Provides: tex-typicons = %{tl_version} License: LPPL 1.3 Summary: Font containing a set of web-related icons Version: svn37623.2.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85599,7 +85600,7 @@ showcased in the manual. %package typicons-doc Summary: Documentation for typicons Version: svn37623.2.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-typicons-doc BuildArch: noarch AutoReqProv: No @@ -85612,7 +85613,7 @@ Provides: tex-umtypewriter = %{tl_version} License: OFL Summary: Fonts to typeset with the xgreek package Version: svn18651.001.002 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85635,7 +85636,7 @@ Provides: tex-universa = %{tl_version} License: GPL+ Summary: Herbert Bayer's 'universal' font Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85696,7 +85697,7 @@ LaTeX support, are all supplied in a LaTeX documented source %package universa-doc Summary: Documentation for universa Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-universa-doc BuildArch: noarch AutoReqProv: No @@ -85709,7 +85710,7 @@ Provides: tex-universalis = %{tl_version} License: GPLv2+ Summary: Universalis font, with support Version: svn33860.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85889,7 +85890,7 @@ fonts such as Adrian Frutiger's Univers and Frutiger. %package universalis-doc Summary: Documentation for universalis Version: svn33860.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-universalis-doc BuildArch: noarch AutoReqProv: No @@ -85902,7 +85903,7 @@ Provides: tex-urwchancal = %{tl_version} License: LPPL Summary: Use URW's clone of Zapf Chancery as a maths alphabet Version: svn21701.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85924,7 +85925,7 @@ package supersedes the pzccal package. %package urwchancal-doc Summary: Documentation for urwchancal Version: svn21701.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-urwchancal-doc BuildArch: noarch AutoReqProv: No @@ -85937,7 +85938,7 @@ Provides: tex-venturisadf = %{tl_version} License: Utopia Summary: Venturis ADF fonts collection Version: svn19444.1.005 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -86603,7 +86604,7 @@ package). %package venturisadf-doc Summary: Documentation for venturisadf Version: svn19444.1.005 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-venturisadf-doc BuildArch: noarch AutoReqProv: No @@ -86616,7 +86617,7 @@ Provides: tex-wsuipa = %{tl_version} License: Utopia Summary: International Phonetic Alphabet fonts Version: svn25469.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -86651,7 +86652,7 @@ macros) are now largely superseded by the tipa fonts. %package wsuipa-doc Summary: Documentation for wsuipa Version: svn25469.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wsuipa-doc BuildArch: noarch AutoReqProv: No @@ -86664,7 +86665,7 @@ Provides: tex-xcharter = %{tl_version} License: MIT Summary: Extension of Bitstream Charter fonts Version: svn41393 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87025,7 +87026,7 @@ formats, with supporting files as necessary. %package xcharter-doc Summary: Documentation for xcharter Version: svn41393 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcharter-doc BuildArch: noarch AutoReqProv: No @@ -87038,7 +87039,7 @@ Provides: tex-xits = %{tl_version} License: OFL Summary: A Scientific Times-like font with support for mathematical typesetting Version: svn32763.1.108 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87060,7 +87061,7 @@ unicode-math packages. %package xits-doc Summary: Documentation for xits Version: svn32763.1.108 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xits-doc BuildArch: noarch AutoReqProv: No @@ -87073,7 +87074,7 @@ Provides: tex-yfonts = %{tl_version} License: LPPL Summary: Support for old German fonts Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87088,7 +87089,7 @@ initials. %package yfonts-doc Summary: Documentation for yfonts Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yfonts-doc BuildArch: noarch AutoReqProv: No @@ -87102,7 +87103,7 @@ Provides: tex-yfonts-t1 = %{tl_version} License: LPPL Summary: Old German-style fonts, in Adobe type 1 format Version: svn36013 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87123,7 +87124,7 @@ German fonts. %package yfonts-t1-doc Summary: Documentation for yfonts-t1 Version: svn36013 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yfonts-t1-doc BuildArch: noarch AutoReqProv: No @@ -87136,7 +87137,7 @@ Provides: tex-zlmtt = %{tl_version} License: LPPL 1.3 Summary: Use Latin Modern Typewriter fonts Version: svn34485.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87171,7 +87172,7 @@ requires the mweights package. %package zlmtt-doc Summary: Documentation for zlmtt Version: svn34485.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zlmtt-doc BuildArch: noarch AutoReqProv: No @@ -87182,7 +87183,7 @@ Documentation for zlmtt %package collection-fontsrecommended Summary: Recommended fonts Version: svn35830.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -87234,7 +87235,7 @@ Provides: tex-courier = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn35058.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87360,7 +87361,7 @@ Provides: tex-ec = %{tl_version} License: ec Summary: Computer modern fonts in T1 and TS1 encodings Version: svn25033.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87952,7 +87953,7 @@ particulars. %package ec-doc Summary: Documentation for ec Version: svn25033.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ec-doc BuildArch: noarch AutoReqProv: No @@ -87965,7 +87966,7 @@ Provides: tex-euro = %{tl_version} License: LPPL Summary: Provide Euro values for national currency amounts Version: svn22191.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -87985,7 +87986,7 @@ added easily. The package uses the fp package to do its sums. %package euro-doc Summary: Documentation for euro Version: svn22191.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-euro-doc BuildArch: noarch AutoReqProv: No @@ -87998,7 +87999,7 @@ Provides: tex-eurosym = %{tl_version} License: Eurosym Summary: Metafont and macros for Euro sign Version: svn17265.1.4_subrfix -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88036,7 +88037,7 @@ macro, pre-compiled tfm files, and documentation. %package eurosym-doc Summary: Documentation for eurosym Version: svn17265.1.4_subrfix -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eurosym-doc BuildArch: noarch AutoReqProv: No @@ -88049,7 +88050,7 @@ Provides: tex-fpl = %{tl_version} License: GPL+ Summary: SC and OsF fonts for URW Palladio L Version: svn15878.1.002 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88077,7 +88078,7 @@ distribution. %package fpl-doc Summary: Documentation for fpl Version: svn15878.1.002 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fpl-doc BuildArch: noarch AutoReqProv: No @@ -88090,7 +88091,7 @@ Provides: tex-helvetic = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88353,7 +88354,7 @@ Provides: tex-marvosym = %{tl_version} License: OFL Summary: Martin Vogel's Symbols (marvosym) font Version: svn29349.2.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88380,7 +88381,7 @@ derived Type 1 font, together with support files for TeX %package marvosym-doc Summary: Documentation for marvosym Version: svn29349.2.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-marvosym-doc BuildArch: noarch AutoReqProv: No @@ -88393,7 +88394,7 @@ Provides: tex-mathpazo = %{tl_version} License: GPL+ Summary: Fonts to typeset mathematics to match Palatino Version: svn15878.1.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88449,7 +88450,7 @@ part of any LaTeX distribution). %package mathpazo-doc Summary: Documentation for mathpazo Version: svn15878.1.003 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathpazo-doc BuildArch: noarch AutoReqProv: No @@ -88462,7 +88463,7 @@ Provides: tex-ncntrsbk = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88614,7 +88615,7 @@ Provides: tex-palatino = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -88846,7 +88847,7 @@ Provides: tex-pxfonts = %{tl_version} License: GPL+ Summary: Palatino-like fonts in support of mathematics Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -89012,7 +89013,7 @@ metrics (VF and TFM files) and macros for use with LaTeX. %package pxfonts-doc Summary: Documentation for pxfonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxfonts-doc BuildArch: noarch AutoReqProv: No @@ -89025,7 +89026,7 @@ Provides: tex-rsfs = %{tl_version} License: rsfs Summary: Ralph Smith's Formal Script font Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -89053,7 +89054,7 @@ available via one of the packages calrsfs and mathrsfs. %package rsfs-doc Summary: Documentation for rsfs Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rsfs-doc BuildArch: noarch AutoReqProv: No @@ -89066,7 +89067,7 @@ Provides: tex-symbol = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -89097,7 +89098,7 @@ Provides: tex-tex-gyre = %{tl_version} License: GFSL Summary: TeX Fonts extending freely available URW fonts Version: svn18651.2.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -89887,7 +89888,7 @@ The Thanh. %package tex-gyre-doc Summary: Documentation for tex-gyre Version: svn18651.2.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-gyre-doc BuildArch: noarch AutoReqProv: No @@ -89900,7 +89901,7 @@ Provides: tex-tex-gyre-math = %{tl_version} License: LPPL Summary: Maths fonts to match tex-gyre text fonts Version: svn41264 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -89923,7 +89924,7 @@ provided. %package tex-gyre-math-doc Summary: Documentation for tex-gyre-math Version: svn41264 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-gyre-math-doc BuildArch: noarch AutoReqProv: No @@ -89936,7 +89937,7 @@ Provides: tex-times = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn35058.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90111,7 +90112,7 @@ Provides: tex-tipa = %{tl_version} License: LPPL Summary: Fonts and macros for IPA phonetics characters Version: svn29349.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90293,7 +90294,7 @@ versions are provided for both the T3 and the TS3 fonts. %package tipa-doc Summary: Documentation for tipa Version: svn29349.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tipa-doc BuildArch: noarch AutoReqProv: No @@ -90306,7 +90307,7 @@ Provides: tex-txfonts = %{tl_version} License: GPL+ Summary: Times-like fonts in support of mathematics Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90594,7 +90595,7 @@ with LaTeX. %package txfonts-doc Summary: Documentation for txfonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-txfonts-doc BuildArch: noarch AutoReqProv: No @@ -90607,7 +90608,7 @@ Provides: tex-utopia = %{tl_version} License: Utopia Summary: Adobe Utopia fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90677,7 +90678,7 @@ the Mathdesign font packages. %package utopia-doc Summary: Documentation for utopia Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-utopia-doc BuildArch: noarch AutoReqProv: No @@ -90690,7 +90691,7 @@ Provides: tex-wasy = %{tl_version} License: Public Domain Summary: The wasy fonts (Waldi symbol fonts) Version: svn35831.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90713,7 +90714,7 @@ provided by the wasysym package. %package wasy-doc Summary: Documentation for wasy Version: svn35831.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wasy-doc BuildArch: noarch AutoReqProv: No @@ -90726,7 +90727,7 @@ Provides: tex-wasy2-ps = %{tl_version} License: Public Domain Summary: Type 1 versions of wasy2 fonts Version: svn35830.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90749,7 +90750,7 @@ Converted (Adobe Type 1) outlines of (some of) the wasy2 fonts. %package wasy2-ps-doc Summary: Documentation for wasy2-ps Version: svn35830.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wasy2-ps-doc BuildArch: noarch AutoReqProv: No @@ -90763,7 +90764,7 @@ Provides: tex-wasysym = %{tl_version} License: LPPL Summary: LaTeX support file to use the WASY2 fonts Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90782,7 +90783,7 @@ these symbols. %package wasysym-doc Summary: Documentation for wasysym Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wasysym-doc BuildArch: noarch AutoReqProv: No @@ -90795,7 +90796,7 @@ Provides: tex-zapfchan = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90844,7 +90845,7 @@ Provides: tex-zapfding = %{tl_version} License: GPL+ Summary: URW "Base 35" font pack for LaTeX Version: svn31835.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90872,7 +90873,7 @@ Garde); and URW Palladio L (substituting for Adobe's Palatino). %package collection-fontutils Summary: Graphics and font utilities Version: svn37105.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -90902,7 +90903,7 @@ Provides: tex-dosepsbin = %{tl_version} License: GPLv2 or Artistic Summary: Deal with DOS binary EPS files Version: svn29752.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90924,7 +90925,7 @@ EPS file for use with (La)TeX. %package dosepsbin-doc Summary: Documentation for dosepsbin Version: svn29752.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dosepsbin-doc BuildArch: noarch AutoReqProv: No @@ -90937,7 +90938,7 @@ Summary: Binaries for dosepsbin Version: svn24759.0 Requires: texlive-base Requires: texlive-dosepsbin -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description dosepsbin-bin @@ -90948,7 +90949,7 @@ Provides: tex-epstopdf = %{tl_version} License: BSD Summary: Convert EPS to 'encapsulated' PDF using Ghostscript Version: svn42905 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -90972,7 +90973,7 @@ graphic files. %package epstopdf-doc Summary: Documentation for epstopdf Version: svn42905 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epstopdf-doc BuildArch: noarch AutoReqProv: No @@ -90985,7 +90986,7 @@ Summary: Binaries for epstopdf Version: svn18336.0 Requires: texlive-base Requires: texlive-epstopdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description epstopdf-bin @@ -90996,7 +90997,7 @@ Provides: tex-fontware = %{tl_version} License: LPPL Summary: fontware package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91011,7 +91012,7 @@ Summary: Binaries for fontware Version: svn40473 Requires: texlive-base Requires: texlive-fontware -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description fontware-bin @@ -91022,7 +91023,7 @@ Provides: tex-lcdftypetools = %{tl_version} License: GPL+ Summary: A bundle of outline font manipulation tools Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91057,7 +91058,7 @@ Requires: texlive-base Requires: texlive-lcdftypetools Provides: lcdf-typetools = %{tl_version} Obsoletes: lcdf-typetools < %{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description lcdftypetools-bin @@ -91068,7 +91069,7 @@ Provides: tex-ps2pk = %{tl_version} License: MIT Summary: Generate a PK font from an Adobe Type 1 font Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91088,7 +91089,7 @@ Summary: Binaries for ps2pk Version: svn40473 Requires: texlive-base Requires: texlive-ps2pk -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} Provides: texlive-ps2pkm-bin%{_isa} = %{epoch}:%{version}-%{release} Provides: texlive-ps2pkm-bin = %{epoch}:%{version}-%{release} @@ -91102,7 +91103,7 @@ Provides: tex-pstools = %{tl_version} License: GPL+ Summary: Produce Encapsulated PostScript from PostScript Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91136,7 +91137,7 @@ Requires: texlive-base Requires: texlive-pstools Provides: ps2eps = %{tl_version} Obsoletes: ps2eps < %{tl_version} -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description pstools-bin @@ -91147,7 +91148,7 @@ Provides: tex-dvipsconfig = %{tl_version} License: GPL+ Summary: Collection of dvips PostScript headers Version: svn13293.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91168,7 +91169,7 @@ Provides: tex-fontinst = %{tl_version} License: LPPL Summary: Help with installing fonts for TeX and LaTeX Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91206,7 +91207,7 @@ such as the pltotf and vptovf programs. %package fontinst-doc Summary: Documentation for fontinst Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontinst-doc BuildArch: noarch AutoReqProv: No @@ -91219,7 +91220,7 @@ Summary: Binaries for fontinst Version: svn29741.0 Requires: texlive-base Requires: texlive-fontinst -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description fontinst-bin @@ -91230,7 +91231,7 @@ Provides: tex-fontools = %{tl_version} License: GPLv2+ Summary: Tools to simplify using fonts (especially TT/OTF ones) Version: svn38924 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91253,7 +91254,7 @@ from an OpenType font. %package fontools-doc Summary: Documentation for fontools Version: svn38924 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontools-doc BuildArch: noarch AutoReqProv: No @@ -91266,7 +91267,7 @@ Summary: Binaries for fontools Version: svn25997.0 Requires: texlive-base Requires: texlive-fontools -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description fontools-bin @@ -91277,7 +91278,7 @@ Provides: tex-mf2pt1 = %{tl_version} License: LPPL Summary: Produce PostScript Type 1 fonts from Metafont source Version: svn33802.2.5a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91306,7 +91307,7 @@ fi %package mf2pt1-doc Summary: Documentation for mf2pt1 Version: svn33802.2.5a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mf2pt1-doc BuildArch: noarch AutoReqProv: No @@ -91319,7 +91320,7 @@ Summary: Binaries for mf2pt1 Version: svn23406.0 Requires: texlive-base Requires: texlive-mf2pt1 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mf2pt1-bin @@ -91330,7 +91331,7 @@ Provides: tex-ttfutils = %{tl_version} License: LPPL Summary: ttfutils package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91345,7 +91346,7 @@ ttfutils package %package ttfutils-doc Summary: Documentation for ttfutils Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ttfutils-doc BuildArch: noarch AutoReqProv: No @@ -91358,7 +91359,7 @@ Summary: Binaries for ttfutils Version: svn40473 Requires: texlive-base Requires: texlive-ttfutils -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description ttfutils-bin @@ -91367,7 +91368,7 @@ Binaries for ttfutils %package collection-formatsextra Summary: Additional formats Version: svn33658.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -91390,7 +91391,7 @@ Provides: tex-edmac = %{tl_version} License: GPLv2+ Summary: Typeset critical editions Version: svn15878.3.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91407,7 +91408,7 @@ critical editions. %package edmac-doc Summary: Documentation for edmac Version: svn15878.3.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-edmac-doc BuildArch: noarch AutoReqProv: No @@ -91420,7 +91421,7 @@ Provides: tex-eplain = %{tl_version} License: GPLv2+ Summary: Extended plain TeX macros Version: svn41154 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91464,7 +91465,7 @@ fi %package eplain-doc Summary: Documentation for eplain Version: svn41154 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eplain-doc BuildArch: noarch AutoReqProv: No @@ -91478,7 +91479,7 @@ Summary: Binaries for eplain Version: svn3006.0 Requires: texlive-base Requires: texlive-eplain -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description eplain-bin @@ -91489,7 +91490,7 @@ Provides: tex-lollipop = %{tl_version} License: GPLv3+ Summary: TeX made easy Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91546,7 +91547,7 @@ fi %package lollipop-doc Summary: Documentation for lollipop Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lollipop-doc BuildArch: noarch AutoReqProv: No @@ -91559,7 +91560,7 @@ Summary: Binaries for lollipop Version: svn41133 Requires: texlive-base Requires: texlive-lollipop -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description lollipop-bin @@ -91570,7 +91571,7 @@ Provides: tex-mltex = %{tl_version} License: Knuth Summary: The MLTeX system Version: svn39057 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91605,7 +91606,7 @@ fi %package mltex-doc Summary: Documentation for mltex Version: svn39057 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mltex-doc BuildArch: noarch AutoReqProv: No @@ -91619,7 +91620,7 @@ Summary: Binaries for mltex Version: svn3006.0 Requires: texlive-base Requires: texlive-mltex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mltex-bin @@ -91630,7 +91631,7 @@ Provides: tex-psizzl = %{tl_version} License: LPPL Summary: A TeX format for physics papers Version: svn15878.0.35 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91647,7 +91648,7 @@ limitations look rather quaint to modern eyes. %package psizzl-doc Summary: Documentation for psizzl Version: svn15878.0.35 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psizzl-doc BuildArch: noarch AutoReqProv: No @@ -91660,7 +91661,7 @@ Provides: tex-startex = %{tl_version} License: Public Domain Summary: An XML-inspired format for student use Version: svn35718.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91676,7 +91677,7 @@ LaTeX. %package startex-doc Summary: Documentation for startex Version: svn35718.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-startex-doc BuildArch: noarch AutoReqProv: No @@ -91689,7 +91690,7 @@ Provides: tex-texsis = %{tl_version} License: LPPL Summary: Plain TeX macros for Physicists Version: svn39057 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91752,7 +91753,7 @@ fi %package texsis-doc Summary: Documentation for texsis Version: svn39057 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texsis-doc BuildArch: noarch AutoReqProv: No @@ -91765,7 +91766,7 @@ Summary: Binaries for texsis Version: svn3006.0 Requires: texlive-base Requires: texlive-texsis -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description texsis-bin @@ -91774,7 +91775,7 @@ Binaries for texsis %package collection-games Summary: Games typesetting Version: svn36348.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -91817,7 +91818,7 @@ Provides: tex-crossword = %{tl_version} License: Crossword Summary: Typeset crossword puzzles Version: svn32657.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91846,7 +91847,7 @@ considers this style both 'natural' and robust. %package crossword-doc Summary: Documentation for crossword Version: svn32657.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crossword-doc BuildArch: noarch AutoReqProv: No @@ -91859,7 +91860,7 @@ Provides: tex-crosswrd = %{tl_version} License: LPPL Summary: Macros for typesetting crossword puzzles Version: svn16896.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91876,7 +91877,7 @@ properly. Brian Hamilton Kelly's original was written for LaTeX %package crosswrd-doc Summary: Documentation for crosswrd Version: svn16896.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crosswrd-doc BuildArch: noarch AutoReqProv: No @@ -91889,7 +91890,7 @@ Provides: tex-egameps = %{tl_version} License: LPPL Summary: LaTeX package for typesetting extensive games Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91907,7 +91908,7 @@ package home page.) %package egameps-doc Summary: Documentation for egameps Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-egameps-doc BuildArch: noarch AutoReqProv: No @@ -91920,7 +91921,7 @@ Provides: tex-gamebook = %{tl_version} License: LPPL 1.3 Summary: Typeset gamebooks and other interactive novels Version: svn24714.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91943,7 +91944,7 @@ package, and acts as a tutorial. %package gamebook-doc Summary: Documentation for gamebook Version: svn24714.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gamebook-doc BuildArch: noarch AutoReqProv: No @@ -91956,7 +91957,7 @@ Provides: tex-go = %{tl_version} License: Public Domain Summary: Fonts and macros for typesetting go games Version: svn28628.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -91986,7 +91987,7 @@ standard 19x19 board; the fonts are written in Metafont. %package go-doc Summary: Documentation for go Version: svn28628.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-go-doc BuildArch: noarch AutoReqProv: No @@ -91999,7 +92000,7 @@ Provides: tex-hanoi = %{tl_version} License: Public Domain Summary: Tower of Hanoi in TeX Version: svn25019.20120101 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92017,7 +92018,7 @@ Provides: tex-havannah = %{tl_version} License: LPPL 1.2 Summary: Diagrams of board positions in the games of Havannah and Hex Version: svn36348.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92032,7 +92033,7 @@ positions in the games of Havannah and Hex. %package havannah-doc Summary: Documentation for havannah Version: svn36348.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-havannah-doc BuildArch: noarch AutoReqProv: No @@ -92045,7 +92046,7 @@ Provides: tex-hexgame = %{tl_version} License: LPPL Summary: Provide an environment to draw a hexgame-board Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92065,7 +92066,7 @@ draw such a game in a trivial way. %package hexgame-doc Summary: Documentation for hexgame Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hexgame-doc BuildArch: noarch AutoReqProv: No @@ -92078,7 +92079,7 @@ Provides: tex-horoscop = %{tl_version} License: Public Domain Summary: Generate astrological charts in LaTeX Version: svn30530.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92101,7 +92102,7 @@ positions. %package horoscop-doc Summary: Documentation for horoscop Version: svn30530.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-horoscop-doc BuildArch: noarch AutoReqProv: No @@ -92114,7 +92115,7 @@ Provides: tex-labyrinth = %{tl_version} License: LPPL Summary: Draw labyrinths and solution paths Version: svn33454.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92132,7 +92133,7 @@ automatic or manual solution path. %package labyrinth-doc Summary: Documentation for labyrinth Version: svn33454.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-labyrinth-doc BuildArch: noarch AutoReqProv: No @@ -92145,7 +92146,7 @@ Provides: tex-logicpuzzle = %{tl_version} License: LPPL 1.3 Summary: Typeset (grid-based) logic puzzles Version: svn34491.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92188,7 +92189,7 @@ Tunnel. %package logicpuzzle-doc Summary: Documentation for logicpuzzle Version: svn34491.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logicpuzzle-doc BuildArch: noarch AutoReqProv: No @@ -92201,7 +92202,7 @@ Provides: tex-othello = %{tl_version} License: GPL+ Summary: Modification of a Go package to create othello boards Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92226,7 +92227,7 @@ source) are provided. %package othello-doc Summary: Documentation for othello Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-othello-doc BuildArch: noarch AutoReqProv: No @@ -92239,7 +92240,7 @@ Provides: tex-othelloboard = %{tl_version} License: LPPL 1.3 Summary: Typeset Othello (Reversi) diagrams of any size, with annotations Version: svn23714.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92262,7 +92263,7 @@ standard to WZebra (and other programs) is also supported. %package othelloboard-doc Summary: Documentation for othelloboard Version: svn23714.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-othelloboard-doc BuildArch: noarch AutoReqProv: No @@ -92275,7 +92276,7 @@ Provides: tex-pas-crosswords = %{tl_version} License: LPPL Summary: Creating crossword grids, using TikZ Version: svn32313.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92295,7 +92296,7 @@ package uses TikZ for its graphical output. %package pas-crosswords-doc Summary: Documentation for pas-crosswords Version: svn32313.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pas-crosswords-doc BuildArch: noarch AutoReqProv: No @@ -92308,7 +92309,7 @@ Provides: tex-psgo = %{tl_version} License: LPPL Summary: Typeset go diagrams with PSTricks Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92325,7 +92326,7 @@ psgo package %package psgo-doc Summary: Documentation for psgo Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psgo-doc BuildArch: noarch AutoReqProv: No @@ -92336,7 +92337,7 @@ Documentation for psgo %package reverxii-doc Summary: Documentation for reverxii Version: svn24976.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-reverxii-doc BuildArch: noarch AutoReqProv: No @@ -92349,7 +92350,7 @@ Provides: tex-rubik = %{tl_version} License: LPPL 1.3 Summary: Document Rubik cube configurations and rotation sequences Version: svn38457 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92370,7 +92371,7 @@ moves, with the help of a Perl package executed via \write18 %package rubik-doc Summary: Documentation for rubik Version: svn38457 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rubik-doc BuildArch: noarch AutoReqProv: No @@ -92383,7 +92384,7 @@ Summary: Binaries for rubik Version: svn32919.0 Requires: texlive-base Requires: texlive-rubik -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description rubik-bin @@ -92394,7 +92395,7 @@ Provides: tex-schwalbe-chess = %{tl_version} License: LPPL 1.2 Summary: Typeset the German chess magazine "Die Schwalbe" Version: svn39318 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92418,7 +92419,7 @@ turn has a dependency on the bartel-chess-fonts %package schwalbe-chess-doc Summary: Documentation for schwalbe-chess Version: svn39318 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-schwalbe-chess-doc BuildArch: noarch AutoReqProv: No @@ -92431,7 +92432,7 @@ Provides: tex-sgame = %{tl_version} License: LPPL Summary: LaTeX style for typesetting strategic games Version: svn30959.2.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92451,7 +92452,7 @@ environment will not work in the argument of another command. %package sgame-doc Summary: Documentation for sgame Version: svn30959.2.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sgame-doc BuildArch: noarch AutoReqProv: No @@ -92464,7 +92465,7 @@ Provides: tex-skak = %{tl_version} License: LPPL Summary: Fonts and macros for typesetting chess games Version: svn32758.1.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92503,7 +92504,7 @@ provided in chessfss. %package skak-doc Summary: Documentation for skak Version: svn32758.1.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skak-doc BuildArch: noarch AutoReqProv: No @@ -92516,7 +92517,7 @@ Provides: tex-sudoku = %{tl_version} License: LPPL Summary: Create sudoku grids Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92537,7 +92538,7 @@ to print them from there if you have this package installed. %package sudoku-doc Summary: Documentation for sudoku Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sudoku-doc BuildArch: noarch AutoReqProv: No @@ -92550,7 +92551,7 @@ Provides: tex-sudokubundle = %{tl_version} License: LPPL Summary: A set of sudoku-related packages Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92573,7 +92574,7 @@ prepared puzzle files. %package sudokubundle-doc Summary: Documentation for sudokubundle Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sudokubundle-doc BuildArch: noarch AutoReqProv: No @@ -92586,7 +92587,7 @@ Provides: tex-xq = %{tl_version} License: LPPL Summary: Support for writing about xiangqi Version: svn35211.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92603,7 +92604,7 @@ special positions. %package xq-doc Summary: Documentation for xq Version: svn35211.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xq-doc BuildArch: noarch AutoReqProv: No @@ -92616,7 +92617,7 @@ Provides: tex-xskak = %{tl_version} License: LPPL Summary: An extension to the skak package for chess typesetting Version: svn35945.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92638,7 +92639,7 @@ and switch between indefinite levels of styles. %package xskak-doc Summary: Documentation for xskak Version: svn35945.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xskak-doc BuildArch: noarch AutoReqProv: No @@ -92649,7 +92650,7 @@ Documentation for xskak %package collection-genericextra Summary: Generic additional packages Version: svn39964 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -92709,7 +92710,7 @@ Provides: tex-c-pascal = %{tl_version} License: Public Domain Summary: Typeset Python, C and Pascal programs Version: svn18337.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92727,7 +92728,7 @@ and Pascal. Program source files may also be input. %package c-pascal-doc Summary: Documentation for c-pascal Version: svn18337.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-c-pascal-doc BuildArch: noarch AutoReqProv: No @@ -92740,7 +92741,7 @@ Provides: tex-colorsep = %{tl_version} License: Public Domain Summary: Color separation Version: svn13293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92754,7 +92755,7 @@ Provides: tex-dinat = %{tl_version} License: Public Domain Summary: Bibliography style for German texts Version: svn15878.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92768,7 +92769,7 @@ parts 2 and 3. %package dinat-doc Summary: Documentation for dinat Version: svn15878.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dinat-doc BuildArch: noarch AutoReqProv: No @@ -92781,7 +92782,7 @@ Provides: tex-dirtree = %{tl_version} License: LPPL Summary: Display trees in the style of windows explorer Version: svn28524.0.32 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92798,7 +92799,7 @@ The macros work equally well with Plain TeX and with LaTeX. %package dirtree-doc Summary: Documentation for dirtree Version: svn28524.0.32 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dirtree-doc BuildArch: noarch AutoReqProv: No @@ -92811,7 +92812,7 @@ Provides: tex-docbytex = %{tl_version} License: Copyright only Summary: Creating documentation from source code Version: svn34294.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92825,7 +92826,7 @@ programming languages. %package docbytex-doc Summary: Documentation for docbytex Version: svn34294.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-docbytex-doc BuildArch: noarch AutoReqProv: No @@ -92838,7 +92839,7 @@ Provides: tex-dowith = %{tl_version} License: LPPL 1.3 Summary: Apply a command to a list of items Version: svn38860 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92860,7 +92861,7 @@ enhances the functionality of dowith. %package dowith-doc Summary: Documentation for dowith Version: svn38860 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dowith-doc BuildArch: noarch AutoReqProv: No @@ -92873,7 +92874,7 @@ Provides: tex-eijkhout = %{tl_version} License: Public Domain Summary: Victor Eijkhout's packages Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92893,7 +92894,7 @@ Provides: tex-encxvlna = %{tl_version} License: LPPL Summary: Insert nonbreakable spaces, using encTeX Version: svn34087.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92912,7 +92913,7 @@ other packages. %package encxvlna-doc Summary: Documentation for encxvlna Version: svn34087.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-encxvlna-doc BuildArch: noarch AutoReqProv: No @@ -92925,7 +92926,7 @@ Provides: tex-epigram = %{tl_version} License: Public Domain Summary: Display short quotations Version: svn20513.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92942,7 +92943,7 @@ Provides: tex-fenixpar = %{tl_version} License: LPPL Summary: One-shot changes to token registers such as \everypar Version: svn24730.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92966,7 +92967,7 @@ LaTeX. %package fenixpar-doc Summary: Documentation for fenixpar Version: svn24730.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fenixpar-doc BuildArch: noarch AutoReqProv: No @@ -92979,7 +92980,7 @@ Provides: tex-fltpoint = %{tl_version} License: LPPL Summary: Simple floating point arithmetic Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -92996,7 +92997,7 @@ Used, for example, by rccol. %package fltpoint-doc Summary: Documentation for fltpoint Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fltpoint-doc BuildArch: noarch AutoReqProv: No @@ -93009,7 +93010,7 @@ Provides: tex-fntproof = %{tl_version} License: Public Domain Summary: A programmable font test pattern generator Version: svn20638.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93028,7 +93029,7 @@ this last purpose are also made available. %package fntproof-doc Summary: Documentation for fntproof Version: svn20638.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fntproof-doc BuildArch: noarch AutoReqProv: No @@ -93041,7 +93042,7 @@ Provides: tex-gates = %{tl_version} License: LPPL Summary: Support for writing modular and customisable code Version: svn29803.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93069,7 +93070,7 @@ Lua interpreter, not just LuaTeX. %package gates-doc Summary: Documentation for gates Version: svn29803.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gates-doc BuildArch: noarch AutoReqProv: No @@ -93082,7 +93083,7 @@ Provides: tex-ifetex = %{tl_version} License: LPPL 1.3 Summary: Provides \ifetex switch Version: svn24853.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93102,7 +93103,7 @@ features are available. %package ifetex-doc Summary: Documentation for ifetex Version: svn24853.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifetex-doc BuildArch: noarch AutoReqProv: No @@ -93115,7 +93116,7 @@ Provides: tex-iftex = %{tl_version} License: LPPL 1.3 Summary: Am I running under pdfTeX, XeTeX or LuaTeX? Version: svn29654.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93133,7 +93134,7 @@ or LuaTeX (respectively) is not the engine in use. %package iftex-doc Summary: Documentation for iftex Version: svn29654.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iftex-doc BuildArch: noarch AutoReqProv: No @@ -93146,7 +93147,7 @@ Provides: tex-insbox = %{tl_version} License: Public Domain Summary: Insert pictures/boxes into paragraphs Version: svn34299.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93161,7 +93162,7 @@ package, and should be loaded using \input . %package insbox-doc Summary: Documentation for insbox Version: svn34299.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-insbox-doc BuildArch: noarch AutoReqProv: No @@ -93174,7 +93175,7 @@ Provides: tex-lambda-lists = %{tl_version} License: LPPL Summary: Lists in TeX's mouth Version: svn31402.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93190,7 +93191,7 @@ manipulations take place in what Knuth is pleased to call %package lambda-lists-doc Summary: Documentation for lambda-lists Version: svn31402.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lambda-lists-doc BuildArch: noarch AutoReqProv: No @@ -93203,7 +93204,7 @@ Provides: tex-langcode = %{tl_version} License: LPPL 1.3 Summary: Simple language-dependent settings based on language codes Version: svn27764.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93225,7 +93226,7 @@ packages. %package langcode-doc Summary: Documentation for langcode Version: svn27764.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-langcode-doc BuildArch: noarch AutoReqProv: No @@ -93238,7 +93239,7 @@ Provides: tex-lecturer = %{tl_version} License: LPPL Summary: On-screen presentations for (almost) all formats Version: svn23916.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93278,7 +93279,7 @@ being, and requires texapi and yax, both v.1.02. %package lecturer-doc Summary: Documentation for lecturer Version: svn23916.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lecturer-doc BuildArch: noarch AutoReqProv: No @@ -93291,7 +93292,7 @@ Provides: tex-librarian = %{tl_version} License: LPPL Summary: Tools to create bibliographies in TeX Version: svn19880.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93316,7 +93317,7 @@ documentation. %package librarian-doc Summary: Documentation for librarian Version: svn19880.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-librarian-doc BuildArch: noarch AutoReqProv: No @@ -93329,7 +93330,7 @@ Provides: tex-mathdots = %{tl_version} License: LPPL Summary: Commands to produce dots in math that respect font size Version: svn34301.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93347,7 +93348,7 @@ commands. The commands may also be used in plain TeX. %package mathdots-doc Summary: Documentation for mathdots Version: svn34301.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathdots-doc BuildArch: noarch AutoReqProv: No @@ -93360,7 +93361,7 @@ Provides: tex-metatex = %{tl_version} License: GPL+ Summary: Incorporate Metafont pictures in TeX source Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93379,7 +93380,7 @@ runs of TeX and one of Metafont are needed. %package metatex-doc Summary: Documentation for metatex Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metatex-doc BuildArch: noarch AutoReqProv: No @@ -93392,7 +93393,7 @@ Provides: tex-midnight = %{tl_version} License: midnight Summary: A set of useful macro tools Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93416,7 +93417,7 @@ around boxes. %package midnight-doc Summary: Documentation for midnight Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-midnight-doc BuildArch: noarch AutoReqProv: No @@ -93429,7 +93430,7 @@ Provides: tex-navigator = %{tl_version} License: LPPL Summary: PDF features across formats and engines Version: svn41413 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93451,7 +93452,7 @@ texapi and yax, both version at least 1.03. %package navigator-doc Summary: Documentation for navigator Version: svn41413 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-navigator-doc BuildArch: noarch AutoReqProv: No @@ -93464,7 +93465,7 @@ Provides: tex-ofs = %{tl_version} License: Knuth Summary: Macros for managing large font collections Version: svn16991.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93518,7 +93519,7 @@ fonts. %package ofs-doc Summary: Documentation for ofs Version: svn16991.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ofs-doc BuildArch: noarch AutoReqProv: No @@ -93531,7 +93532,7 @@ Provides: tex-pdf-trans = %{tl_version} License: Public Domain Summary: A set of macros for various transformations of TeX boxes Version: svn32809.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93546,7 +93547,7 @@ initially inspired by trans.tex, remade to work with pdfTeX. %package pdf-trans-doc Summary: Documentation for pdf-trans Version: svn32809.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdf-trans-doc BuildArch: noarch AutoReqProv: No @@ -93559,7 +93560,7 @@ Provides: tex-plainpkg = %{tl_version} License: LPPL 1.3 Summary: A minimal method for making generic packages Version: svn27765.0.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93579,7 +93580,7 @@ on the package. %package plainpkg-doc Summary: Documentation for plainpkg Version: svn27765.0.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plainpkg-doc BuildArch: noarch AutoReqProv: No @@ -93592,7 +93593,7 @@ Provides: tex-schemata = %{tl_version} License: LPPL 1.3 Summary: Print topical diagrams Version: svn39510 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93608,7 +93609,7 @@ from late medieval and early modern periods. %package schemata-doc Summary: Documentation for schemata Version: svn39510 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-schemata-doc BuildArch: noarch AutoReqProv: No @@ -93621,7 +93622,7 @@ Provides: tex-shade = %{tl_version} License: LPPL Summary: Shade pieces of text Version: svn22212.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93637,7 +93638,7 @@ printer parameters. %package shade-doc Summary: Documentation for shade Version: svn22212.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shade-doc BuildArch: noarch AutoReqProv: No @@ -93650,7 +93651,7 @@ Provides: tex-systeme = %{tl_version} License: LPPL 1.3 Summary: Format systems of equations Version: svn32473.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93671,7 +93672,7 @@ termes et les signes sont alignes verticalement. %package systeme-doc Summary: Documentation for systeme Version: svn32473.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-systeme-doc BuildArch: noarch AutoReqProv: No @@ -93684,7 +93685,7 @@ Provides: tex-tabto-generic = %{tl_version} License: Public Domain Summary: "Tab" to a measured position in the line Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93701,7 +93702,7 @@ Provides: tex-termmenu = %{tl_version} License: LPPL 1.3 Summary: The package provides support for terminal-based menus using expl3 Version: svn37700.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93719,7 +93720,7 @@ required. %package termmenu-doc Summary: Documentation for termmenu Version: svn37700.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-termmenu-doc BuildArch: noarch AutoReqProv: No @@ -93732,7 +93733,7 @@ Provides: tex-tracklang = %{tl_version} License: LPPL 1.3 Summary: Language and dialect tracker Version: svn36603.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93751,7 +93752,7 @@ user. Generic TeX code is in tracklang.tex for non-LaTeX users. %package tracklang-doc Summary: Documentation for tracklang Version: svn36603.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tracklang-doc BuildArch: noarch AutoReqProv: No @@ -93764,7 +93765,7 @@ Provides: tex-texapi = %{tl_version} License: LPPL Summary: Macros to write format-independent packages Version: svn24237.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93784,7 +93785,7 @@ pitex package is also needed). %package texapi-doc Summary: Documentation for texapi Version: svn24237.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texapi-doc BuildArch: noarch AutoReqProv: No @@ -93797,7 +93798,7 @@ Provides: tex-upca = %{tl_version} License: LPPL Summary: Print UPC-A barcodes Version: svn22511.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93811,7 +93812,7 @@ barcodes. %package upca-doc Summary: Documentation for upca Version: svn22511.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-upca-doc BuildArch: noarch AutoReqProv: No @@ -93824,7 +93825,7 @@ Provides: tex-xlop = %{tl_version} License: LPPL Summary: Calculates and displays arithmetic operations Version: svn29236.0.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93845,7 +93846,7 @@ level operations, etc.) %package xlop-doc Summary: Documentation for xlop Version: svn29236.0.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xlop-doc BuildArch: noarch AutoReqProv: No @@ -93858,7 +93859,7 @@ Provides: tex-yax = %{tl_version} License: LPPL Summary: Yet Another Key System Version: svn21183.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93881,7 +93882,7 @@ thus requires e-TeX. %package yax-doc Summary: Documentation for yax Version: svn21183.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yax-doc BuildArch: noarch AutoReqProv: No @@ -93892,7 +93893,7 @@ Documentation for yax %package collection-genericrecommended Summary: Generic recommended packages Version: svn35655.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -93914,7 +93915,7 @@ Provides: tex-epsf = %{tl_version} License: Public Domain Summary: Simple macros for EPS inclusion Version: svn21461.2.7.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93934,7 +93935,7 @@ version.) %package epsf-doc Summary: Documentation for epsf Version: svn21461.2.7.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epsf-doc BuildArch: noarch AutoReqProv: No @@ -93947,7 +93948,7 @@ Provides: tex-fontname = %{tl_version} License: GPL+ Summary: Scheme for naming fonts in TeX Version: svn38345.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -93993,7 +93994,7 @@ fi %package fontname-doc Summary: Documentation for fontname Version: svn38345.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontname-doc BuildArch: noarch AutoReqProv: No @@ -94006,7 +94007,7 @@ Provides: tex-genmisc = %{tl_version} License: LPPL Summary: genmisc package Version: svn27208.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94060,7 +94061,7 @@ Provides: tex-kastrup = %{tl_version} License: Copyright only Summary: Convert numbers into binary, octal and hexadecimal Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94074,7 +94075,7 @@ width numbers to bases 2, 4, 8 and 16. %package kastrup-doc Summary: Documentation for kastrup Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kastrup-doc BuildArch: noarch AutoReqProv: No @@ -94087,7 +94088,7 @@ Provides: tex-multido = %{tl_version} License: LPPL Summary: A loop facility for Generic TeX Version: svn18302.1.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94105,7 +94106,7 @@ is with the more common integer loops. %package multido-doc Summary: Documentation for multido Version: svn18302.1.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multido-doc BuildArch: noarch AutoReqProv: No @@ -94118,7 +94119,7 @@ Provides: tex-path = %{tl_version} License: Bibtex Summary: Typeset paths, making them breakable Version: svn22045.3.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94135,7 +94136,7 @@ default. %package path-doc Summary: Documentation for path Version: svn22045.3.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-path-doc BuildArch: noarch AutoReqProv: No @@ -94148,7 +94149,7 @@ Provides: tex-tex-ps = %{tl_version} License: Public Domain Summary: TeX to PostScript generic macros and add-ons Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94166,7 +94167,7 @@ etc. %package tex-ps-doc Summary: Documentation for tex-ps Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-ps-doc BuildArch: noarch AutoReqProv: No @@ -94179,7 +94180,7 @@ Provides: tex-ulem = %{tl_version} License: Copyright only Summary: Package for underlining Version: svn26785.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94198,7 +94199,7 @@ works with both Plain TeX and LaTeX. %package ulem-doc Summary: Documentation for ulem Version: svn26785.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ulem-doc BuildArch: noarch AutoReqProv: No @@ -94209,7 +94210,7 @@ Documentation for ulem %package collection-htmlxml Summary: HTML/SGML/XML support Version: svn35743.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -94230,7 +94231,7 @@ Provides: tex-jadetex = %{tl_version} License: MIT Summary: Macros supporting Jade DSSSL output Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Provides: jadetex = %{tl_version} @@ -94268,7 +94269,7 @@ fi %package jadetex-doc Summary: Documentation for jadetex Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jadetex-doc BuildArch: noarch AutoReqProv: No @@ -94283,7 +94284,7 @@ Provides: tex-passivetex = %{tl_version} License: MIT Summary: Support package for XML/SGML typesetting Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94327,7 +94328,7 @@ Summary: Binaries for jadetex Version: svn3006.0 Requires: texlive-base Requires: texlive-jadetex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description jadetex-bin @@ -94338,7 +94339,7 @@ Provides: tex-tex4ht = %{tl_version} License: LPPL Summary: Convert (La)TeX to HTML/XML Version: svn41440 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94366,7 +94367,7 @@ package: see the 'Readme' file. %package tex4ht-doc Summary: Documentation for tex4ht Version: svn41440 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex4ht-doc BuildArch: noarch AutoReqProv: No @@ -94379,7 +94380,7 @@ Summary: Binaries for tex4ht Version: svn41440 Requires: texlive-base Requires: texlive-tex4ht -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description tex4ht-bin @@ -94390,7 +94391,7 @@ Provides: tex-xmltex = %{tl_version} License: LPPL Summary: Support for parsing XML documents Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94431,7 +94432,7 @@ fi %package xmltex-doc Summary: Documentation for xmltex Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xmltex-doc BuildArch: noarch AutoReqProv: No @@ -94446,7 +94447,7 @@ Provides: tex-xmltexconfig = %{tl_version} License: LPPL Summary: xmltexconfig package Version: svn35743.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94462,7 +94463,7 @@ Requires: texlive-base Requires: texlive-xmltex Provides: xmltex = %{tl_version}0101 Obsoletes: xmltex < %{tl_version}0101 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description xmltex-bin @@ -94471,7 +94472,7 @@ Binaries for xmltex %package collection-humanities Summary: Humanities packages Version: svn39438 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -94534,7 +94535,7 @@ Provides: tex-covington = %{tl_version} License: Public Domain Summary: Linguistic support Version: svn34064.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94550,7 +94551,7 @@ example numbering. %package covington-doc Summary: Documentation for covington Version: svn34064.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-covington-doc BuildArch: noarch AutoReqProv: No @@ -94563,7 +94564,7 @@ Provides: tex-diadia = %{tl_version} License: LPPL Summary: Package to keep a diabetes diary Version: svn37656.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94602,7 +94603,7 @@ English, German. Feel free to provide other translation files! %package diadia-doc Summary: Documentation for diadia Version: svn37656.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-diadia-doc BuildArch: noarch AutoReqProv: No @@ -94615,7 +94616,7 @@ Summary: Binaries for diadia Version: svn37645.0 Requires: texlive-base Requires: texlive-diadia -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description diadia-bin @@ -94626,7 +94627,7 @@ Provides: tex-dramatist = %{tl_version} License: GPL+ Summary: Typeset dramas, both in verse and in prose Version: svn35866.1.2e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94645,7 +94646,7 @@ personae' list. %package dramatist-doc Summary: Documentation for dramatist Version: svn35866.1.2e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dramatist-doc BuildArch: noarch AutoReqProv: No @@ -94658,7 +94659,7 @@ Provides: tex-dvgloss = %{tl_version} License: LPPL Summary: Facilities for setting interlinear glossed text Version: svn29103.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94675,7 +94676,7 @@ included for adding your own. %package dvgloss-doc Summary: Documentation for dvgloss Version: svn29103.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dvgloss-doc BuildArch: noarch AutoReqProv: No @@ -94688,7 +94689,7 @@ Provides: tex-ecltree = %{tl_version} License: LPPL Summary: Trees using epic and eepic macros Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94703,7 +94704,7 @@ a 'bundle' environment, with a set of leaves described by %package ecltree-doc Summary: Documentation for ecltree Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ecltree-doc BuildArch: noarch AutoReqProv: No @@ -94716,7 +94717,7 @@ Provides: tex-edfnotes = %{tl_version} License: LPPL 1.3 Summary: Critical annotations to footnotes with ednotes Version: svn21540.0.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94732,7 +94733,7 @@ on the pages and in the order that one would expect. %package edfnotes-doc Summary: Documentation for edfnotes Version: svn21540.0.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-edfnotes-doc BuildArch: noarch AutoReqProv: No @@ -94745,7 +94746,7 @@ Provides: tex-ednotes = %{tl_version} License: LPPL Summary: Typeset scholarly editions Version: svn35829.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94768,7 +94769,7 @@ including support for line numbers and layers of footnotes. %package ednotes-doc Summary: Documentation for ednotes Version: svn35829.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ednotes-doc BuildArch: noarch AutoReqProv: No @@ -94782,7 +94783,7 @@ Provides: tex-ncctools = %{tl_version} License: LPPL Summary: A collection of general packages for LaTeX Version: svn15878.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94839,7 +94840,7 @@ layouts; and un-numbered top-level section. %package ncctools-doc Summary: Documentation for ncctools Version: svn15878.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ncctools-doc BuildArch: noarch AutoReqProv: No @@ -94852,7 +94853,7 @@ Provides: tex-eledform = %{tl_version} License: LPPL 1.3 Summary: Define textual variants Version: svn38114.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94867,7 +94868,7 @@ critical editions typeset using eledmac. %package eledform-doc Summary: Documentation for eledform Version: svn38114.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eledform-doc BuildArch: noarch AutoReqProv: No @@ -94880,7 +94881,7 @@ Provides: tex-eledmac = %{tl_version} License: LPPL 1.3 Summary: Typeset scholarly editions Version: svn38639 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94910,7 +94911,7 @@ reledmac. %package eledmac-doc Summary: Documentation for eledmac Version: svn38639 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eledmac-doc BuildArch: noarch AutoReqProv: No @@ -94923,7 +94924,7 @@ Provides: tex-expex = %{tl_version} License: LPPL Summary: Format linguistic examples and glosses, with reference capabilities Version: svn33163.5.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94945,7 +94946,7 @@ the .sty wrapper or with PlainTex. %package expex-doc Summary: Documentation for expex Version: svn33163.5.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-expex-doc BuildArch: noarch AutoReqProv: No @@ -94958,7 +94959,7 @@ Provides: tex-gb4e = %{tl_version} License: LPPL 1.2 Summary: Linguistic tools Version: svn19216.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94974,7 +94975,7 @@ the midnight and covington packages. %package gb4e-doc Summary: Documentation for gb4e Version: svn19216.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gb4e-doc BuildArch: noarch AutoReqProv: No @@ -94987,7 +94988,7 @@ Provides: tex-gmverse = %{tl_version} License: LPPL Summary: A package for typesetting (short) poems Version: svn29803.v0.73 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95003,7 +95004,7 @@ of length. %package gmverse-doc Summary: Documentation for gmverse Version: svn29803.v0.73 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmverse-doc BuildArch: noarch AutoReqProv: No @@ -95016,7 +95017,7 @@ Provides: tex-jura = %{tl_version} License: GPL+ Summary: A document class for German legal texts Version: svn15878.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95033,7 +95034,7 @@ Introduction; III. International Law). %package jura-doc Summary: Documentation for jura Version: svn15878.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jura-doc BuildArch: noarch AutoReqProv: No @@ -95046,7 +95047,7 @@ Provides: tex-juraabbrev = %{tl_version} License: GPL+ Summary: Abbreviations for typesetting (German) juridical documents Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95063,7 +95064,7 @@ in the document %package juraabbrev-doc Summary: Documentation for juraabbrev Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-juraabbrev-doc BuildArch: noarch AutoReqProv: No @@ -95076,7 +95077,7 @@ Provides: tex-juramisc = %{tl_version} License: LPPL Summary: Typesetting German juridical documents Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95108,7 +95109,7 @@ jurabook class is also provided, which may not yet be complete. %package juramisc-doc Summary: Documentation for juramisc Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-juramisc-doc BuildArch: noarch AutoReqProv: No @@ -95121,7 +95122,7 @@ Provides: tex-jurarsp = %{tl_version} License: GPL+ Summary: Citations of judgements and official documents in (German) juridical documents Version: svn15878.0.52 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95142,7 +95143,7 @@ provided. %package jurarsp-doc Summary: Documentation for jurarsp Version: svn15878.0.52 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jurarsp-doc BuildArch: noarch AutoReqProv: No @@ -95155,7 +95156,7 @@ Provides: tex-ledmac = %{tl_version} License: LPPL 1.3 Summary: Typeset scholarly editions Version: svn38640 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95176,7 +95177,7 @@ package is now superseded by eledmac. %package ledmac-doc Summary: Documentation for ledmac Version: svn38640 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ledmac-doc BuildArch: noarch AutoReqProv: No @@ -95189,7 +95190,7 @@ Provides: tex-leipzig = %{tl_version} License: LPPL 1.3 Summary: Typeset and index linguistic gloss abbreviations Version: svn34902.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95207,7 +95208,7 @@ package for easy indexing and glossary printing. %package leipzig-doc Summary: Documentation for leipzig Version: svn34902.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-leipzig-doc BuildArch: noarch AutoReqProv: No @@ -95220,7 +95221,7 @@ Provides: tex-lexikon = %{tl_version} License: LPPL Summary: Macros for a two language dictionary Version: svn17364.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95234,7 +95235,7 @@ lexikon package %package lexikon-doc Summary: Documentation for lexikon Version: svn17364.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lexikon-doc BuildArch: noarch AutoReqProv: No @@ -95247,7 +95248,7 @@ Provides: tex-lexref = %{tl_version} License: LPPL 1.3 Summary: Convenient and uniform references to legal provisions Version: svn36026.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95273,7 +95274,7 @@ development, and should be treated as an 'alpha'-release. %package lexref-doc Summary: Documentation for lexref Version: svn36026.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lexref-doc BuildArch: noarch AutoReqProv: No @@ -95286,7 +95287,7 @@ Provides: tex-linguex = %{tl_version} License: LPPL Summary: Format linguists' examples Version: svn30815.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95311,7 +95312,7 @@ shortcomings. %package linguex-doc Summary: Documentation for linguex Version: svn30815.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-linguex-doc BuildArch: noarch AutoReqProv: No @@ -95324,7 +95325,7 @@ Provides: tex-liturg = %{tl_version} License: LPPL Summary: Support for typesetting Catholic liturgical texts Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95343,7 +95344,7 @@ package assumes availability of Latin typesetting packages. %package liturg-doc Summary: Documentation for liturg Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-liturg-doc BuildArch: noarch AutoReqProv: No @@ -95356,7 +95357,7 @@ Provides: tex-metrix = %{tl_version} License: LPPL 1.3 Summary: Typeset metric marks for Latin text Version: svn40099 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95378,7 +95379,7 @@ experimental LaTeX 3 environment). %package metrix-doc Summary: Documentation for metrix Version: svn40099 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metrix-doc BuildArch: noarch AutoReqProv: No @@ -95391,7 +95392,7 @@ Provides: tex-parallel = %{tl_version} License: LPPL Summary: Typeset parallel texts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95409,7 +95410,7 @@ any two texts. %package parallel-doc Summary: Documentation for parallel Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-parallel-doc BuildArch: noarch AutoReqProv: No @@ -95422,7 +95423,7 @@ Provides: tex-parrun = %{tl_version} License: LPPL Summary: Typesets (two) streams of text running parallel Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95438,7 +95439,7 @@ parallel on the same page, one above the other. %package parrun-doc Summary: Documentation for parrun Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-parrun-doc BuildArch: noarch AutoReqProv: No @@ -95451,7 +95452,7 @@ Provides: tex-phonrule = %{tl_version} License: LPPL Summary: Typeset linear phonological rules Version: svn38934 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95467,7 +95468,7 @@ like those in 'Sound Pattern of English' (Chomsky and Halle %package phonrule-doc Summary: Documentation for phonrule Version: svn38934 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-phonrule-doc BuildArch: noarch AutoReqProv: No @@ -95480,7 +95481,7 @@ Provides: tex-plari = %{tl_version} License: GPL+ Summary: Typesetting stageplay scripts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95496,7 +95497,7 @@ indented. %package plari-doc Summary: Documentation for plari Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plari-doc BuildArch: noarch AutoReqProv: No @@ -95509,7 +95510,7 @@ Provides: tex-play = %{tl_version} License: LPPL Summary: Typeset drama using LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95524,7 +95525,7 @@ including options for line numbering. %package play-doc Summary: Documentation for play Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-play-doc BuildArch: noarch AutoReqProv: No @@ -95537,7 +95538,7 @@ Provides: tex-poemscol = %{tl_version} License: LPPL 1.3 Summary: Typesetting Critical Editions of Poetry Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95557,7 +95558,7 @@ automatic generation of a table of contents. %package poemscol-doc Summary: Documentation for poemscol Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-poemscol-doc BuildArch: noarch AutoReqProv: No @@ -95570,7 +95571,7 @@ Provides: tex-poetrytex = %{tl_version} License: LPPL 1.3 Summary: Typeset anthologies of poetry Version: svn39921 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95587,7 +95588,7 @@ concern itself with actually typesettinig the verse itself. %package poetrytex-doc Summary: Documentation for poetrytex Version: svn39921 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-poetrytex-doc BuildArch: noarch AutoReqProv: No @@ -95600,7 +95601,7 @@ Provides: tex-qobitree = %{tl_version} License: LPPL Summary: LaTeX macros for typesetting trees Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95615,7 +95616,7 @@ then issue the \tree command to typeset the whole. %package qobitree-doc Summary: Documentation for qobitree Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qobitree-doc BuildArch: noarch AutoReqProv: No @@ -95628,7 +95629,7 @@ Provides: tex-qtree = %{tl_version} License: LPPL Summary: Draw tree structures Version: svn15878.3.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95648,7 +95649,7 @@ front end. %package qtree-doc Summary: Documentation for qtree Version: svn15878.3.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qtree-doc BuildArch: noarch AutoReqProv: No @@ -95661,7 +95662,7 @@ Provides: tex-reledmac = %{tl_version} License: LPPL 1.3 Summary: Typeset scholarly editions Version: svn41380 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95690,7 +95691,7 @@ distributed with the related reledpar package. %package reledmac-doc Summary: Documentation for reledmac Version: svn41380 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-reledmac-doc BuildArch: noarch AutoReqProv: No @@ -95703,7 +95704,7 @@ Provides: tex-rrgtrees = %{tl_version} License: LPPL Summary: Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX Version: svn27322.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95723,7 +95724,7 @@ the pst-node and pst-tree LaTeX packages. %package rrgtrees-doc Summary: Documentation for rrgtrees Version: svn27322.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rrgtrees-doc BuildArch: noarch AutoReqProv: No @@ -95736,7 +95737,7 @@ Provides: tex-rtklage = %{tl_version} License: LPPL Summary: A package for German lawyers Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95763,7 +95764,7 @@ contains rtklage, a class to make lawsuits. %package rtklage-doc Summary: Documentation for rtklage Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rtklage-doc BuildArch: noarch AutoReqProv: No @@ -95776,7 +95777,7 @@ Provides: tex-screenplay = %{tl_version} License: GPL+ Summary: A class file to typeset screenplays Version: svn27223.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95794,7 +95795,7 @@ Motion Picture Arts and Sciences. %package screenplay-doc Summary: Documentation for screenplay Version: svn27223.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-screenplay-doc BuildArch: noarch AutoReqProv: No @@ -95807,7 +95808,7 @@ Provides: tex-screenplay-pkg = %{tl_version} License: LPPL 1.3 Summary: Package version of the screenplay document class Version: svn37893.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95827,7 +95828,7 @@ package documentation. %package screenplay-pkg-doc Summary: Documentation for screenplay-pkg Version: svn37893.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-screenplay-pkg-doc BuildArch: noarch AutoReqProv: No @@ -95840,7 +95841,7 @@ Provides: tex-sides = %{tl_version} License: GPL+ Summary: A LaTeX class for typesetting stage plays Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95856,7 +95857,7 @@ it--most noticibly there are no longer orphans. %package sides-doc Summary: Documentation for sides Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sides-doc BuildArch: noarch AutoReqProv: No @@ -95869,7 +95870,7 @@ Provides: tex-stage = %{tl_version} License: LPPL 1.3 Summary: A LaTeX class for stage plays Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95886,7 +95887,7 @@ a standard manuscript format for production and submission. %package stage-doc Summary: Documentation for stage Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stage-doc BuildArch: noarch AutoReqProv: No @@ -95899,7 +95900,7 @@ Provides: tex-textglos = %{tl_version} License: LPPL 1.3 Summary: Typeset and index linguistic gloss abbreviations Version: svn30788.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95917,7 +95918,7 @@ orthographic examples, and more. %package textglos-doc Summary: Documentation for textglos Version: svn30788.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textglos-doc BuildArch: noarch AutoReqProv: No @@ -95930,7 +95931,7 @@ Provides: tex-thalie = %{tl_version} License: LPPL 1.3 Summary: Typeset drama plays Version: svn39241 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95952,7 +95953,7 @@ the dramatis personae automatically. %package thalie-doc Summary: Documentation for thalie Version: svn39241 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thalie-doc BuildArch: noarch AutoReqProv: No @@ -95965,7 +95966,7 @@ Provides: tex-tree-dvips = %{tl_version} License: LPPL Summary: Trees and other linguists' macros Version: svn21751.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -95985,7 +95986,7 @@ connected tree macros, and gloss macros. %package tree-dvips-doc Summary: Documentation for tree-dvips Version: svn21751.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tree-dvips-doc BuildArch: noarch AutoReqProv: No @@ -95998,7 +95999,7 @@ Provides: tex-verse = %{tl_version} License: LPPL Summary: Aids for typesetting simple verse Version: svn34017.2.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96013,7 +96014,7 @@ indentation to the Mouse's tale from Alice in Wonderland. %package verse-doc Summary: Documentation for verse Version: svn34017.2.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verse-doc BuildArch: noarch AutoReqProv: No @@ -96026,7 +96027,7 @@ Provides: tex-xyling = %{tl_version} License: LPPL Summary: Draw syntactic trees, etc., for linguistics literature, using xy-pic Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96048,7 +96049,7 @@ effects. The macros are based on the xy-pic package. %package xyling-doc Summary: Documentation for xyling Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xyling-doc BuildArch: noarch AutoReqProv: No @@ -96059,7 +96060,7 @@ Documentation for xyling %package collection-langafrican Summary: African scripts Version: svn30372.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -96076,7 +96077,7 @@ Provides: tex-ethiop = %{tl_version} License: GPL+ Summary: LaTeX macros and fonts for typesetting Amharic Version: svn15878.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96141,7 +96142,7 @@ based on EthTeX's. The macros use the Babel framework. %package ethiop-doc Summary: Documentation for ethiop Version: svn15878.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ethiop-doc BuildArch: noarch AutoReqProv: No @@ -96154,7 +96155,7 @@ Provides: tex-ethiop-t1 = %{tl_version} License: GPL+ Summary: Type 1 versions of Amharic fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96214,7 +96215,7 @@ of the ethiop package. %package ethiop-t1-doc Summary: Documentation for ethiop-t1 Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ethiop-t1-doc BuildArch: noarch AutoReqProv: No @@ -96227,7 +96228,7 @@ Provides: tex-fc = %{tl_version} License: GPLv2+ Summary: Fonts for African languages Version: svn32796.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96456,7 +96457,7 @@ appears in the ec and lh font bundles.) %package fc-doc Summary: Documentation for fc Version: svn32796.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fc-doc BuildArch: noarch AutoReqProv: No @@ -96469,7 +96470,7 @@ Provides: tex-hyphen-ethiopic = %{tl_version} License: LPPL Summary: Hyphenation patterns for Ethiopic scripts Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96516,7 +96517,7 @@ fi %package collection-langarabic Summary: Arabic Version: svn40201 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -96545,7 +96546,7 @@ Provides: tex-dad = %{tl_version} License: LPPL Summary: Simple typesetting system for mixed Arabic/Latin documents Version: svn35362.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96574,7 +96575,7 @@ situation. %package dad-doc Summary: Documentation for dad Version: svn35362.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dad-doc BuildArch: noarch AutoReqProv: No @@ -96587,7 +96588,7 @@ Provides: tex-ghab = %{tl_version} License: LPPL Summary: Typeset ghab boxes in LaTeX Version: svn29803.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96603,7 +96604,7 @@ may be set using an optional argument. %package ghab-doc Summary: Documentation for ghab Version: svn29803.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ghab-doc BuildArch: noarch AutoReqProv: No @@ -96616,7 +96617,7 @@ Provides: tex-hyphen-arabic = %{tl_version} License: LPPL Summary: (No) Arabic hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96649,7 +96650,7 @@ Provides: tex-hyphen-farsi = %{tl_version} License: LPPL Summary: (No) Persian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96688,7 +96689,7 @@ Provides: tex-imsproc = %{tl_version} License: LPPL 1.3 Summary: Typeset IMS conference proceedings Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96706,7 +96707,7 @@ package. %package imsproc-doc Summary: Documentation for imsproc Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-imsproc-doc BuildArch: noarch AutoReqProv: No @@ -96717,7 +96718,7 @@ Documentation for imsproc %package lshort-persian-doc Summary: Documentation for lshort-persian Version: svn31296.5.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-persian-doc BuildArch: noarch AutoReqProv: No @@ -96730,7 +96731,7 @@ Provides: tex-persian-bib = %{tl_version} License: LPPL 1.3 Summary: Persian translations of classic BibTeX styles Version: svn37297.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96749,7 +96750,7 @@ fields LANGUAGE, TRANSLATOR and AUTHORFA are defined. %package persian-bib-doc Summary: Documentation for persian-bib Version: svn37297.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-persian-bib-doc BuildArch: noarch AutoReqProv: No @@ -96762,7 +96763,7 @@ Provides: tex-simurgh = %{tl_version} License: GPLv2+ Summary: Typeset Parsi in LuaLaTeX Version: svn31719.0.01b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96864,7 +96865,7 @@ Great. %package simurgh-doc Summary: Documentation for simurgh Version: svn31719.0.01b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-simurgh-doc BuildArch: noarch AutoReqProv: No @@ -96877,7 +96878,7 @@ Provides: tex-tram = %{tl_version} License: LPPL Summary: Typeset tram boxes in LaTeX Version: svn29803.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96893,7 +96894,7 @@ argument to the environment. %package tram-doc Summary: Documentation for tram Version: svn29803.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tram-doc BuildArch: noarch AutoReqProv: No @@ -96904,7 +96905,7 @@ Documentation for tram %package collection-langchinese Summary: Chinese Version: svn40728 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-langcjk @@ -96930,7 +96931,7 @@ Support for Chinese; additional packages in collection-langcjk. %package collection-langcjk Summary: Chinese/Japanese/Korean (base) Version: svn37224.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -96962,7 +96963,7 @@ Provides: tex-dnp = %{tl_version} License: LPPL Summary: dnp package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -96976,7 +96977,7 @@ Provides: tex-xcjk2uni = %{tl_version} License: LPPL 1.3 Summary: Convert CJK characters to Unicode, in pdfTeX Version: svn41121 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97003,7 +97004,7 @@ cut-and-paste operations on a PDF file generated by pdfTeX.. %package xcjk2uni-doc Summary: Documentation for xcjk2uni Version: svn41121 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcjk2uni-doc BuildArch: noarch AutoReqProv: No @@ -97016,7 +97017,7 @@ Provides: tex-zxjafont = %{tl_version} License: MIT Summary: Set up Japanese font families for XeLaTeX Version: svn37281.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97032,7 +97033,7 @@ zxjafont package %package zxjafont-doc Summary: Documentation for zxjafont Version: svn37281.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zxjafont-doc BuildArch: noarch AutoReqProv: No @@ -97045,7 +97046,7 @@ Provides: tex-ctex = %{tl_version} License: LPPL 1.3 Summary: LaTeX classes and packages for Chinese typesetting Version: svn41156 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97118,7 +97119,7 @@ ctex package %package ctex-doc Summary: Documentation for ctex Version: svn41156 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctex-doc BuildArch: noarch AutoReqProv: No @@ -97130,7 +97131,7 @@ Documentation for ctex %package ctex-faq-doc Summary: Documentation for ctex-faq Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctex-faq-doc BuildArch: noarch AutoReqProv: No @@ -97143,7 +97144,7 @@ Provides: tex-fandol = %{tl_version} License: GPL+ Summary: Four basic fonts for Chinese typesetting Version: svn37889.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97165,7 +97166,7 @@ are in OpenType format. %package fandol-doc Summary: Documentation for fandol Version: svn37889.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fandol-doc BuildArch: noarch AutoReqProv: No @@ -97178,7 +97179,7 @@ Provides: tex-hyphen-chinese = %{tl_version} License: LPPL Summary: Chinese pinyin hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97210,7 +97211,7 @@ fi %package impatient-cn-doc Summary: Documentation for impatient-cn Version: svn35576.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-impatient-cn-doc BuildArch: noarch AutoReqProv: No @@ -97221,7 +97222,7 @@ Documentation for impatient-cn %package latex-notes-zh-cn-doc Summary: Documentation for latex-notes-zh-cn Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-notes-zh-cn-doc BuildArch: noarch AutoReqProv: No @@ -97232,7 +97233,7 @@ Documentation for latex-notes-zh-cn %package lshort-chinese-doc Summary: Documentation for lshort-chinese Version: svn41405 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-chinese-doc BuildArch: noarch AutoReqProv: No @@ -97243,7 +97244,7 @@ Documentation for lshort-chinese %package texlive-zh-cn-doc Summary: Documentation for texlive-zh-cn Version: svn41031 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-zh-cn-doc BuildArch: noarch AutoReqProv: No @@ -97256,7 +97257,7 @@ Provides: tex-xpinyin = %{tl_version} License: LPPL 1.3 Summary: Automatically add pinyin to Chinese characters Version: svn41122 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -97278,7 +97279,7 @@ characters. %package xpinyin-doc Summary: Documentation for xpinyin Version: svn41122 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpinyin-doc BuildArch: noarch AutoReqProv: No @@ -97291,7 +97292,7 @@ Provides: tex-zhmetrics = %{tl_version} License: LPPL Summary: TFM subfont files for using Chinese fonts in 8-bit TeX Version: svn22207.r206 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102244,7 +102245,7 @@ encodings (GBK and UTF-8) are supported. %package zhmetrics-doc Summary: Documentation for zhmetrics Version: svn22207.r206 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zhmetrics-doc BuildArch: noarch AutoReqProv: No @@ -102257,7 +102258,7 @@ Provides: tex-zhnumber = %{tl_version} License: LPPL 1.3 Summary: Typeset Chinese representations of numbers Version: svn41123 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102279,7 +102280,7 @@ expandable in the 'proper' way. %package zhnumber-doc Summary: Documentation for zhnumber Version: svn41123 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zhnumber-doc BuildArch: noarch AutoReqProv: No @@ -102292,7 +102293,7 @@ Provides: tex-zhspacing = %{tl_version} License: LPPL Summary: Spacing for mixed CJK-English documents in XeTeX Version: svn41145 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102317,7 +102318,7 @@ format under XeTeX. %package zhspacing-doc Summary: Documentation for zhspacing Version: svn41145 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zhspacing-doc BuildArch: noarch AutoReqProv: No @@ -102328,7 +102329,7 @@ Documentation for zhspacing %package collection-langcyrillic Summary: Cyrillic Version: svn41167 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -102385,7 +102386,7 @@ Provides: tex-cyrillic = %{tl_version} License: LPPL 1.3 Summary: Support for Cyrillic fonts in LaTeX Version: svn40218 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102511,7 +102512,7 @@ in a Cyrillic alphabet. This directory is part of the LaTeX %package cyrillic-doc Summary: Documentation for cyrillic Version: svn40218 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cyrillic-doc BuildArch: noarch AutoReqProv: No @@ -102524,7 +102525,7 @@ Provides: tex-cyrillic-bin = %{tl_version} License: LPPL Summary: Cyrillic bibtex and makeindex Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102539,7 +102540,7 @@ Summary: Binaries for cyrillic-bin Version: svn29741.0 Requires: texlive-base Requires: texlive-cyrillic-bin -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description cyrillic-bin-bin @@ -102550,7 +102551,7 @@ Provides: tex-cyrplain = %{tl_version} License: LPPL Summary: cyrplain package Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102571,7 +102572,7 @@ Provides: tex-disser = %{tl_version} License: LPPL 1.3 Summary: Class and templates for typesetting dissertations in Russian Version: svn39909 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102596,7 +102597,7 @@ standard GOST R 7.0.11-2011, are provided. %package disser-doc Summary: Documentation for disser Version: svn39909 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-disser-doc BuildArch: noarch AutoReqProv: No @@ -102609,7 +102610,7 @@ Provides: tex-eskd = %{tl_version} License: LPPL Summary: Modern Russian typesetting Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102633,7 +102634,7 @@ available on CTAN are required for use of the class. %package eskd-doc Summary: Documentation for eskd Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eskd-doc BuildArch: noarch AutoReqProv: No @@ -102646,7 +102647,7 @@ Provides: tex-eskdx = %{tl_version} License: LPPL 1.3 Summary: Modern Russian typesetting Version: svn29235.0.98 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102707,7 +102708,7 @@ probably post USSR) standards for designers. %package eskdx-doc Summary: Documentation for eskdx Version: svn29235.0.98 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eskdx-doc BuildArch: noarch AutoReqProv: No @@ -102720,7 +102721,7 @@ Provides: tex-gost = %{tl_version} License: LPPL Summary: BibTeX styles to format according to GOST Version: svn39823 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102737,7 +102738,7 @@ retained for backwards compatibility. %package gost-doc Summary: Documentation for gost Version: svn39823 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gost-doc BuildArch: noarch AutoReqProv: No @@ -102750,7 +102751,7 @@ Provides: tex-hyphen-bulgarian = %{tl_version} License: LPPL Summary: Bulgarian hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102783,7 +102784,7 @@ Provides: tex-hyphen-mongolian = %{tl_version} License: LPPL Summary: Mongolian hyphenation patterns in Cyrillic script Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102824,7 +102825,7 @@ Provides: tex-hyphen-russian = %{tl_version} License: LPPL Summary: Russian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102864,7 +102865,7 @@ Provides: tex-ruhyphen = %{tl_version} License: LPPL Summary: Russian hyphenation Version: svn21081.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102904,7 +102905,7 @@ Provides: tex-hyphen-serbian = %{tl_version} License: GPL+ Summary: Serbian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102948,7 +102949,7 @@ Provides: tex-hyphen-ukrainian = %{tl_version} License: LPPL Summary: Ukrainian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -102988,7 +102989,7 @@ Provides: tex-ukrhyph = %{tl_version} License: LPPL Summary: Hyphenation Patterns for Ukrainian Version: svn21081.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103018,7 +103019,7 @@ with free fonts). %package ukrhyph-doc Summary: Documentation for ukrhyph Version: svn21081.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ukrhyph-doc BuildArch: noarch AutoReqProv: No @@ -103031,7 +103032,7 @@ Provides: tex-lcyw = %{tl_version} License: LPPL 1.3 Summary: Make Classic Cyrillic CM fonts accessible in LaTeX Version: svn15878.v1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103051,7 +103052,7 @@ use with LaTeX. %package lcyw-doc Summary: Documentation for lcyw Version: svn15878.v1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lcyw-doc BuildArch: noarch AutoReqProv: No @@ -103064,7 +103065,7 @@ Provides: tex-lh = %{tl_version} License: LPPL Summary: Cyrillic fonts that support LaTeX standard encodings Version: svn15878.3.5g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103104,7 +103105,7 @@ fonts, CM bright shaped fonts and Concrete shaped fonts. %package lh-doc Summary: Documentation for lh Version: svn15878.3.5g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lh-doc BuildArch: noarch AutoReqProv: No @@ -103118,7 +103119,7 @@ Provides: tex-lhcyr = %{tl_version} License: Lhcyr Summary: A non-standard Cyrillic input scheme Version: svn31795.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103174,7 +103175,7 @@ T2 series of font encodings. %package lshort-bulgarian-doc Summary: Documentation for lshort-bulgarian Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-bulgarian-doc BuildArch: noarch AutoReqProv: No @@ -103185,7 +103186,7 @@ Documentation for lshort-bulgarian %package lshort-mongol-doc Summary: Documentation for lshort-mongol Version: svn15878.4.26 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-mongol-doc BuildArch: noarch AutoReqProv: No @@ -103196,7 +103197,7 @@ Documentation for lshort-mongol %package lshort-russian-doc Summary: Documentation for lshort-russian Version: svn18906.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-russian-doc BuildArch: noarch AutoReqProv: No @@ -103207,7 +103208,7 @@ Documentation for lshort-russian %package lshort-ukr-doc Summary: Documentation for lshort-ukr Version: svn15878.4.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-ukr-doc BuildArch: noarch AutoReqProv: No @@ -103220,7 +103221,7 @@ Provides: tex-mongolian-babel = %{tl_version} License: LPPL Summary: A language definition file for Mongolian in Babel Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103237,7 +103238,7 @@ babel.) %package mongolian-babel-doc Summary: Documentation for mongolian-babel Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mongolian-babel-doc BuildArch: noarch AutoReqProv: No @@ -103250,7 +103251,7 @@ Provides: tex-montex = %{tl_version} License: GPL+ Summary: Mongolian LaTeX Version: svn29349.IVu.04.092 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103467,7 +103468,7 @@ supported in DVI. %package montex-doc Summary: Documentation for montex Version: svn29349.IVu.04.092 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-montex-doc BuildArch: noarch AutoReqProv: No @@ -103479,7 +103480,7 @@ Documentation for montex %package mpman-ru-doc Summary: Documentation for mpman-ru Version: svn15878.1.004 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mpman-ru-doc BuildArch: noarch AutoReqProv: No @@ -103490,7 +103491,7 @@ Documentation for mpman-ru %package pst-eucl-translation-bg-doc Summary: Documentation for pst-eucl-translation-bg Version: svn19296.1.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-eucl-translation-bg-doc BuildArch: noarch AutoReqProv: No @@ -103503,7 +103504,7 @@ Provides: tex-serbian-apostrophe = %{tl_version} License: LPPL 1.3 Summary: Commands for Serbian words with apostrophes Version: svn23799.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103520,7 +103521,7 @@ appropriate apostrophes. %package serbian-apostrophe-doc Summary: Documentation for serbian-apostrophe Version: svn23799.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-serbian-apostrophe-doc BuildArch: noarch AutoReqProv: No @@ -103533,7 +103534,7 @@ Provides: tex-serbian-date-lat = %{tl_version} License: GPLv2+ Summary: Updated date typesetting for Serbian Version: svn23446.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103548,7 +103549,7 @@ package defines a \date command that solves the problem. %package serbian-date-lat-doc Summary: Documentation for serbian-date-lat Version: svn23446.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-serbian-date-lat-doc BuildArch: noarch AutoReqProv: No @@ -103561,7 +103562,7 @@ Provides: tex-serbian-def-cyr = %{tl_version} License: LPPL 1.3 Summary: Serbian cyrillic localization Version: svn23734.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103578,7 +103579,7 @@ code pages. %package serbian-def-cyr-doc Summary: Documentation for serbian-def-cyr Version: svn23734.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-serbian-def-cyr-doc BuildArch: noarch AutoReqProv: No @@ -103591,7 +103592,7 @@ Provides: tex-serbian-lig = %{tl_version} License: LPPL 1.3 Summary: Control ligatures in Serbian Version: svn39096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103606,7 +103607,7 @@ Serbian text written using Roman script. %package serbian-lig-doc Summary: Documentation for serbian-lig Version: svn39096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-serbian-lig-doc BuildArch: noarch AutoReqProv: No @@ -103619,7 +103620,7 @@ Provides: tex-t2 = %{tl_version} License: LPPL Summary: Support for using T2 encoding Version: svn39024 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -103669,7 +103670,7 @@ fi %package t2-doc Summary: Documentation for t2 Version: svn39024 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-t2-doc BuildArch: noarch AutoReqProv: No @@ -103680,7 +103681,7 @@ Documentation for t2 %package texlive-ru-doc Summary: Documentation for texlive-ru Version: svn41231 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-ru-doc BuildArch: noarch AutoReqProv: No @@ -103691,7 +103692,7 @@ Documentation for texlive-ru %package texlive-sr-doc Summary: Documentation for texlive-sr Version: svn41210 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-sr-doc BuildArch: noarch AutoReqProv: No @@ -103702,7 +103703,7 @@ Documentation for texlive-sr %package collection-langczechslovak Summary: Czech/Slovak Version: svn32550.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -103730,7 +103731,7 @@ Provides: tex-cs = %{tl_version} License: GPL+ Summary: Czech/Slovak-tuned Computer Modern fonts Version: svn40785 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104005,7 +104006,7 @@ Provides: tex-csbulletin = %{tl_version} License: LPPL Summary: LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj) Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104032,7 +104033,7 @@ source file of the manual. %package csbulletin-doc Summary: Documentation for csbulletin Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-csbulletin-doc BuildArch: noarch AutoReqProv: No @@ -104045,7 +104046,7 @@ Provides: tex-cslatex = %{tl_version} License: GPL+ Summary: LaTeX support for Czech/Slovak typesetting Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104113,7 +104114,7 @@ Summary: Binaries for cslatex Version: svn3006.0 Requires: texlive-base Requires: texlive-cslatex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description cslatex-bin @@ -104124,7 +104125,7 @@ Provides: tex-csplain = %{tl_version} License: GPLv2+ Summary: Plain TeX multilanguage support Version: svn41300 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104225,7 +104226,7 @@ Summary: Binaries for csplain Version: svn33902.0 Requires: texlive-base Requires: texlive-csplain -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description csplain-bin @@ -104234,7 +104235,7 @@ Binaries for csplain %package cstex-doc Summary: Documentation for cstex Version: svn41301 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cstex-doc BuildArch: noarch AutoReqProv: No @@ -104247,7 +104248,7 @@ Provides: tex-hyphen-czech = %{tl_version} License: LPPL Summary: Czech hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104282,7 +104283,7 @@ Provides: tex-hyphen-slovak = %{tl_version} License: LPPL Summary: Slovak hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104317,7 +104318,7 @@ Provides: tex-vlna = %{tl_version} License: LPPL Summary: vlna package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104330,7 +104331,7 @@ vlna package %package vlna-doc Summary: Documentation for vlna Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vlna-doc BuildArch: noarch AutoReqProv: No @@ -104343,7 +104344,7 @@ Summary: Binaries for vlna Version: svn40473 Requires: texlive-base Requires: texlive-vlna -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description vlna-bin @@ -104352,7 +104353,7 @@ Binaries for vlna %package lshort-czech-doc Summary: Documentation for lshort-czech Version: svn29803.4.27 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-czech-doc BuildArch: noarch AutoReqProv: No @@ -104363,7 +104364,7 @@ Documentation for lshort-czech %package lshort-slovak-doc Summary: Documentation for lshort-slovak Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-slovak-doc BuildArch: noarch AutoReqProv: No @@ -104374,7 +104375,7 @@ Documentation for lshort-slovak %package texlive-cz-doc Summary: Documentation for texlive-cz Version: svn41206 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-cz-doc BuildArch: noarch AutoReqProv: No @@ -104385,7 +104386,7 @@ Documentation for texlive-cz %package collection-langenglish Summary: US and UK English Version: svn37500.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -104456,7 +104457,7 @@ Provides: tex-hyphen-english = %{tl_version} License: LPPL Summary: English hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104510,7 +104511,7 @@ fi %package FAQ-en-doc Summary: Documentation for FAQ-en Version: svn34303.3.28 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-FAQ-en-doc BuildArch: noarch AutoReqProv: No @@ -104521,7 +104522,7 @@ Documentation for FAQ-en %package MemoirChapStyles-doc Summary: Documentation for MemoirChapStyles Version: svn25918.1.7e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-MemoirChapStyles-doc BuildArch: noarch AutoReqProv: No @@ -104532,7 +104533,7 @@ Documentation for MemoirChapStyles %package Type1fonts-doc Summary: Documentation for Type1fonts Version: svn19603.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-Type1fonts-doc BuildArch: noarch AutoReqProv: No @@ -104543,7 +104544,7 @@ Documentation for Type1fonts %package components-of-TeX-doc Summary: Documentation for components-of-TeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-components-of-TeX-doc BuildArch: noarch AutoReqProv: No @@ -104554,7 +104555,7 @@ Documentation for components-of-TeX %package comprehensive-doc Summary: Documentation for comprehensive Version: svn38992 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-comprehensive-doc BuildArch: noarch AutoReqProv: No @@ -104565,7 +104566,7 @@ Documentation for comprehensive %package dickimaw-doc Summary: Documentation for dickimaw Version: svn32925.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dickimaw-doc BuildArch: noarch AutoReqProv: No @@ -104576,7 +104577,7 @@ Documentation for dickimaw %package dtxtut-doc Summary: Documentation for dtxtut Version: svn38375.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dtxtut-doc BuildArch: noarch AutoReqProv: No @@ -104587,7 +104588,7 @@ Documentation for dtxtut %package first-latex-doc-doc Summary: Documentation for first-latex-doc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-first-latex-doc-doc BuildArch: noarch AutoReqProv: No @@ -104598,7 +104599,7 @@ Documentation for first-latex-doc %package gentle-doc Summary: Documentation for gentle Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gentle-doc BuildArch: noarch AutoReqProv: No @@ -104609,7 +104610,7 @@ Documentation for gentle %package guide-to-latex-doc Summary: Documentation for guide-to-latex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-guide-to-latex-doc BuildArch: noarch AutoReqProv: No @@ -104620,7 +104621,7 @@ Documentation for guide-to-latex %package happy4th-doc Summary: Documentation for happy4th Version: svn25020.20120102 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-happy4th-doc BuildArch: noarch AutoReqProv: No @@ -104631,7 +104632,7 @@ Documentation for happy4th %package impatient-doc Summary: Documentation for impatient Version: svn35573.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-impatient-doc BuildArch: noarch AutoReqProv: No @@ -104642,7 +104643,7 @@ Documentation for impatient %package intro-scientific-doc Summary: Documentation for intro-scientific Version: svn15878.5th_edition -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-intro-scientific-doc BuildArch: noarch AutoReqProv: No @@ -104653,7 +104654,7 @@ Documentation for intro-scientific %package knuth-doc Summary: Documentation for knuth Version: svn32899.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-knuth-doc BuildArch: noarch AutoReqProv: No @@ -104664,7 +104665,7 @@ Documentation for knuth %package l2tabu-english-doc Summary: Documentation for l2tabu-english Version: svn15878.1.8.5.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2tabu-english-doc BuildArch: noarch AutoReqProv: No @@ -104675,7 +104676,7 @@ Documentation for l2tabu-english %package latex-brochure-doc Summary: Documentation for latex-brochure Version: svn40612 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-brochure-doc BuildArch: noarch AutoReqProv: No @@ -104686,7 +104687,7 @@ Documentation for latex-brochure %package latex-course-doc Summary: Documentation for latex-course Version: svn25505.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-course-doc BuildArch: noarch AutoReqProv: No @@ -104697,7 +104698,7 @@ Documentation for latex-course %package latex-doc-ptr-doc Summary: Documentation for latex-doc-ptr Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-doc-ptr-doc BuildArch: noarch AutoReqProv: No @@ -104708,7 +104709,7 @@ Documentation for latex-doc-ptr %package latex-graphics-companion-doc Summary: Documentation for latex-graphics-companion Version: svn29235.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-graphics-companion-doc BuildArch: noarch AutoReqProv: No @@ -104719,7 +104720,7 @@ Documentation for latex-graphics-companion %package latex-veryshortguide-doc Summary: Documentation for latex-veryshortguide Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-veryshortguide-doc BuildArch: noarch AutoReqProv: No @@ -104730,7 +104731,7 @@ Documentation for latex-veryshortguide %package latex-web-companion-doc Summary: Documentation for latex-web-companion Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-web-companion-doc BuildArch: noarch AutoReqProv: No @@ -104743,7 +104744,7 @@ Provides: tex-latex2e-help-texinfo = %{tl_version} License: Latex2e Summary: Unofficial reference manual covering LaTeX2e Version: svn38709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104770,7 +104771,7 @@ fi %package latex2e-help-texinfo-doc Summary: Documentation for latex2e-help-texinfo Version: svn38709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex2e-help-texinfo-doc BuildArch: noarch AutoReqProv: No @@ -104781,7 +104782,7 @@ Documentation for latex2e-help-texinfo %package latex4wp-doc Summary: Documentation for latex4wp Version: svn35999.1.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex4wp-doc BuildArch: noarch AutoReqProv: No @@ -104792,7 +104793,7 @@ Documentation for latex4wp %package latexcheat-doc Summary: Documentation for latexcheat Version: svn15878.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexcheat-doc BuildArch: noarch AutoReqProv: No @@ -104803,7 +104804,7 @@ Documentation for latexcheat %package latexcourse-rug-doc Summary: Documentation for latexcourse-rug Version: svn39026 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexcourse-rug-doc BuildArch: noarch AutoReqProv: No @@ -104816,7 +104817,7 @@ Provides: tex-latexfileinfo-pkgs = %{tl_version} License: LPPL 1.3 Summary: A comparison of packages showing LaTeX file information Version: svn26760.0.22 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -104833,7 +104834,7 @@ mentioned briefly. %package latexfileinfo-pkgs-doc Summary: Documentation for latexfileinfo-pkgs Version: svn26760.0.22 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexfileinfo-pkgs-doc BuildArch: noarch AutoReqProv: No @@ -104844,7 +104845,7 @@ Documentation for latexfileinfo-pkgs %package lshort-english-doc Summary: Documentation for lshort-english Version: svn37892.5.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-english-doc BuildArch: noarch AutoReqProv: No @@ -104855,7 +104856,7 @@ Documentation for lshort-english %package macros2e-doc Summary: Documentation for macros2e Version: svn23236.v0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-macros2e-doc BuildArch: noarch AutoReqProv: No @@ -104866,7 +104867,7 @@ Documentation for macros2e %package math-e-doc Summary: Documentation for math-e Version: svn20062.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-math-e-doc BuildArch: noarch AutoReqProv: No @@ -104877,7 +104878,7 @@ Documentation for math-e %package maths-symbols-doc Summary: Documentation for maths-symbols Version: svn37763.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-maths-symbols-doc BuildArch: noarch AutoReqProv: No @@ -104888,7 +104889,7 @@ Documentation for maths-symbols %package memdesign-doc Summary: Documentation for memdesign Version: svn34157.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-memdesign-doc BuildArch: noarch AutoReqProv: No @@ -104899,7 +104900,7 @@ Documentation for memdesign %package metafont-beginners-doc Summary: Documentation for metafont-beginners Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metafont-beginners-doc BuildArch: noarch AutoReqProv: No @@ -104910,7 +104911,7 @@ Documentation for metafont-beginners %package metapost-examples-doc Summary: Documentation for metapost-examples Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metapost-examples-doc BuildArch: noarch AutoReqProv: No @@ -104921,7 +104922,7 @@ Documentation for metapost-examples %package mil3-doc Summary: Documentation for mil3 Version: svn21677.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mil3-doc BuildArch: noarch AutoReqProv: No @@ -104932,7 +104933,7 @@ Documentation for mil3 %package patgen2-tutorial-doc Summary: Documentation for patgen2-tutorial Version: svn16490.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-patgen2-tutorial-doc BuildArch: noarch AutoReqProv: No @@ -104943,7 +104944,7 @@ Documentation for patgen2-tutorial %package pictexsum-doc Summary: Documentation for pictexsum Version: svn24965.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pictexsum-doc BuildArch: noarch AutoReqProv: No @@ -104954,7 +104955,7 @@ Documentation for pictexsum %package plain-doc-doc Summary: Documentation for plain-doc Version: svn28424.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plain-doc-doc BuildArch: noarch AutoReqProv: No @@ -104965,7 +104966,7 @@ Documentation for plain-doc %package presentations-en-doc Summary: Documentation for presentations-en Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-presentations-en-doc BuildArch: noarch AutoReqProv: No @@ -104976,7 +104977,7 @@ Documentation for presentations-en %package pstricks-examples-en-doc Summary: Documentation for pstricks-examples-en Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstricks-examples-en-doc BuildArch: noarch AutoReqProv: No @@ -104987,7 +104988,7 @@ Documentation for pstricks-examples-en %package simplified-latex-doc Summary: Documentation for simplified-latex Version: svn20620.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-simplified-latex-doc BuildArch: noarch AutoReqProv: No @@ -104998,7 +104999,7 @@ Documentation for simplified-latex %package svg-inkscape-doc Summary: Documentation for svg-inkscape Version: svn32199.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svg-inkscape-doc BuildArch: noarch AutoReqProv: No @@ -105009,7 +105010,7 @@ Documentation for svg-inkscape %package tabulars-e-doc Summary: Documentation for tabulars-e Version: svn21191.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabulars-e-doc BuildArch: noarch AutoReqProv: No @@ -105020,7 +105021,7 @@ Documentation for tabulars-e %package tamethebeast-doc Summary: Documentation for tamethebeast Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tamethebeast-doc BuildArch: noarch AutoReqProv: No @@ -105031,7 +105032,7 @@ Documentation for tamethebeast %package tds-doc Summary: Documentation for tds Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tds-doc BuildArch: noarch AutoReqProv: No @@ -105042,7 +105043,7 @@ Documentation for tds %package tex-font-errors-cheatsheet-doc Summary: Documentation for tex-font-errors-cheatsheet Version: svn18314.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-font-errors-cheatsheet-doc BuildArch: noarch AutoReqProv: No @@ -105053,7 +105054,7 @@ Documentation for tex-font-errors-cheatsheet %package tex-overview-doc Summary: Documentation for tex-overview Version: svn41403 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-overview-doc BuildArch: noarch AutoReqProv: No @@ -105064,7 +105065,7 @@ Documentation for tex-overview %package tex-refs-doc Summary: Documentation for tex-refs Version: svn31946.0.4.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-refs-doc BuildArch: noarch AutoReqProv: No @@ -105075,7 +105076,7 @@ Documentation for tex-refs %package texbytopic-doc Summary: Documentation for texbytopic Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texbytopic-doc BuildArch: noarch AutoReqProv: No @@ -105086,7 +105087,7 @@ Documentation for texbytopic %package titlepages-doc Summary: Documentation for titlepages Version: svn19457.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titlepages-doc BuildArch: noarch AutoReqProv: No @@ -105097,7 +105098,7 @@ Documentation for titlepages %package tlc2-doc Summary: Documentation for tlc2 Version: svn26096.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tlc2-doc BuildArch: noarch AutoReqProv: No @@ -105108,7 +105109,7 @@ Documentation for tlc2 %package visualfaq-doc Summary: Documentation for visualfaq Version: svn38647 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-visualfaq-doc BuildArch: noarch AutoReqProv: No @@ -105119,7 +105120,7 @@ Documentation for visualfaq %package voss-mathmode-doc Summary: Documentation for voss-mathmode Version: svn36093.2.47 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-voss-mathmode-doc BuildArch: noarch AutoReqProv: No @@ -105130,7 +105131,7 @@ Documentation for voss-mathmode %package webguide-doc Summary: Documentation for webguide Version: svn25813.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-webguide-doc BuildArch: noarch AutoReqProv: No @@ -105141,7 +105142,7 @@ Documentation for webguide %package xetexref-doc Summary: Documentation for xetexref Version: svn30636.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetexref-doc BuildArch: noarch AutoReqProv: No @@ -105152,7 +105153,7 @@ Documentation for xetexref %package collection-langeuropean Summary: Other European languages Version: svn39721 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -105231,7 +105232,7 @@ Provides: tex-finbib = %{tl_version} License: Bibtex Summary: A Finnish version of plain.bst Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105245,7 +105246,7 @@ Provides: tex-hrlatex = %{tl_version} License: LPPL Summary: LaTeX support for Croatian documents Version: svn18020.0.23 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105283,7 +105284,7 @@ Zagreb) and sample thesis documents are included. %package hrlatex-doc Summary: Documentation for hrlatex Version: svn18020.0.23 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hrlatex-doc BuildArch: noarch AutoReqProv: No @@ -105296,7 +105297,7 @@ Provides: tex-hyphen-armenian = %{tl_version} License: LPPL Summary: Armenian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105329,7 +105330,7 @@ Provides: tex-hyphen-croatian = %{tl_version} License: LPPL 1.3 Summary: Croatian hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105363,7 +105364,7 @@ Provides: tex-hyphen-danish = %{tl_version} License: LPPL Summary: Danish hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105397,7 +105398,7 @@ Provides: tex-hyphen-dutch = %{tl_version} License: LPPL Summary: Dutch hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105434,7 +105435,7 @@ Provides: tex-hyphen-estonian = %{tl_version} License: LPPL Summary: Estonian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105468,7 +105469,7 @@ Provides: tex-hyphen-finnish = %{tl_version} License: Public Domain Summary: Finnish hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105502,7 +105503,7 @@ Provides: tex-hyphen-friulan = %{tl_version} License: LPPL Summary: Friulan hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105539,7 +105540,7 @@ Provides: tex-hyphen-hungarian = %{tl_version} License: GPL+ Summary: Hungarian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105572,7 +105573,7 @@ fi %package hyphen-hungarian-doc Summary: Documentation for hyphen-hungarian Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyphen-hungarian-doc BuildArch: noarch AutoReqProv: No @@ -105586,7 +105587,7 @@ Provides: tex-hyphen-icelandic = %{tl_version} License: LPPL Summary: Icelandic hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105621,7 +105622,7 @@ Provides: tex-hyphen-irish = %{tl_version} License: LPPL Summary: Irish hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105657,7 +105658,7 @@ Provides: tex-hyphen-kurmanji = %{tl_version} License: LPPL Summary: Kurmanji hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105693,7 +105694,7 @@ Provides: tex-hyphen-latin = %{tl_version} License: LPPL Summary: Latin and classical Latin hyphenation patterns Version: svn41189 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105741,7 +105742,7 @@ Provides: tex-hyphen-latvian = %{tl_version} License: LPPL Summary: Latvian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105775,7 +105776,7 @@ Provides: tex-hyphen-lithuanian = %{tl_version} License: LPPL Summary: Lithuanian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105810,7 +105811,7 @@ Provides: tex-hyphen-norwegian = %{tl_version} License: LPPL Summary: Norwegian Bokmal and Nynorsk hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105863,7 +105864,7 @@ Provides: tex-hyphen-piedmontese = %{tl_version} License: LPPL Summary: Piedmontese hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105899,7 +105900,7 @@ Provides: tex-hyphen-romanian = %{tl_version} License: LPPL Summary: Romanian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105936,7 +105937,7 @@ Provides: tex-hyphen-romansh = %{tl_version} License: LPPL Summary: Romansh hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105972,7 +105973,7 @@ Provides: tex-hyphen-slovenian = %{tl_version} License: LPPL Summary: Slovenian hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106013,7 +106014,7 @@ Provides: tex-hyphen-swedish = %{tl_version} License: LPPL Summary: Swedish hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106047,7 +106048,7 @@ Provides: tex-hyphen-turkish = %{tl_version} License: Copyright only Summary: Turkish hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106087,7 +106088,7 @@ Provides: tex-hyphen-uppersorbian = %{tl_version} License: LPPL Summary: Upper Sorbian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106122,7 +106123,7 @@ Provides: tex-hyphen-welsh = %{tl_version} License: LPPL Summary: Welsh hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106156,7 +106157,7 @@ Provides: tex-lithuanian = %{tl_version} License: LPPL Summary: Lithuanian language support Version: svn22722.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106227,7 +106228,7 @@ tools for intputenc and fontinst. %package lithuanian-doc Summary: Documentation for lithuanian Version: svn22722.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lithuanian-doc BuildArch: noarch AutoReqProv: No @@ -106238,7 +106239,7 @@ Documentation for lithuanian %package lshort-dutch-doc Summary: Documentation for lshort-dutch Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-dutch-doc BuildArch: noarch AutoReqProv: No @@ -106249,7 +106250,7 @@ Documentation for lshort-dutch %package lshort-finnish-doc Summary: Documentation for lshort-finnish Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-finnish-doc BuildArch: noarch AutoReqProv: No @@ -106260,7 +106261,7 @@ Documentation for lshort-finnish %package lshort-slovenian-doc Summary: Documentation for lshort-slovenian Version: svn15878.4.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-slovenian-doc BuildArch: noarch AutoReqProv: No @@ -106271,7 +106272,7 @@ Documentation for lshort-slovenian %package lshort-turkish-doc Summary: Documentation for lshort-turkish Version: svn15878.4.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-turkish-doc BuildArch: noarch AutoReqProv: No @@ -106284,7 +106285,7 @@ Provides: tex-nevelok = %{tl_version} License: LPPL 1.3 Summary: LaTeX package for automatic definite articles for Hungarian Version: svn39029 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106298,7 +106299,7 @@ LaTeX package for automatic definite articles for Hungarian %package nevelok-doc Summary: Documentation for nevelok Version: svn39029 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nevelok-doc BuildArch: noarch AutoReqProv: No @@ -106311,7 +106312,7 @@ Provides: tex-swebib = %{tl_version} License: LPPL 1.2 Summary: Swedish bibliography styles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106327,7 +106328,7 @@ implement Swedish collation. %package swebib-doc Summary: Documentation for swebib Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-swebib-doc BuildArch: noarch AutoReqProv: No @@ -106340,7 +106341,7 @@ Provides: tex-turkmen = %{tl_version} License: LPPL Summary: Babel support for Turkmen Version: svn17748.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106354,7 +106355,7 @@ integration with babel is not available. %package turkmen-doc Summary: Documentation for turkmen Version: svn17748.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-turkmen-doc BuildArch: noarch AutoReqProv: No @@ -106365,7 +106366,7 @@ Documentation for turkmen %package collection-langfrench Summary: French Version: svn40375 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -106409,7 +106410,7 @@ Provides: tex-droit-fr = %{tl_version} License: LPPL 1.3 Summary: Document class and bibliographic style for French law Version: svn39802 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106438,7 +106439,7 @@ use of biber and biblatex. %package droit-fr-doc Summary: Documentation for droit-fr Version: svn39802 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-droit-fr-doc BuildArch: noarch AutoReqProv: No @@ -106451,7 +106452,7 @@ Provides: tex-e-french = %{tl_version} License: LPPL 1.3 Summary: Comprehensive LaTeX support for French-language typesetting Version: svn38742 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106499,7 +106500,7 @@ the light-weight frenchle packages. %package e-french-doc Summary: Documentation for e-french Version: svn38742 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-e-french-doc BuildArch: noarch AutoReqProv: No @@ -106510,7 +106511,7 @@ Documentation for e-french %package epslatex-fr-doc Summary: Documentation for epslatex-fr Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epslatex-fr-doc BuildArch: noarch AutoReqProv: No @@ -106523,7 +106524,7 @@ Provides: tex-facture = %{tl_version} License: CC-BY-SA Summary: Generate an invoice Version: svn36075.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106553,7 +106554,7 @@ addresses for delivery and for billing are permitted. %package facture-doc Summary: Documentation for facture Version: svn36075.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-facture-doc BuildArch: noarch AutoReqProv: No @@ -106566,7 +106567,7 @@ Provides: tex-frletter = %{tl_version} License: Public Domain Summary: Typeset letters in the French style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106582,7 +106583,7 @@ modification of the standard LaTeX letter class. %package frletter-doc Summary: Documentation for frletter Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frletter-doc BuildArch: noarch AutoReqProv: No @@ -106595,7 +106596,7 @@ Provides: tex-hyphen-basque = %{tl_version} License: Bahyph Summary: Basque hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106629,7 +106630,7 @@ Provides: tex-hyphen-french = %{tl_version} License: LPPL Summary: French hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106673,7 +106674,7 @@ fi %package impatient-fr-doc Summary: Documentation for impatient-fr Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-impatient-fr-doc BuildArch: noarch AutoReqProv: No @@ -106686,7 +106687,7 @@ Provides: tex-impnattypo = %{tl_version} License: LPPL 1.3 Summary: Support typography of l'Imprimerie Nationale Francaise Version: svn36448.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106705,7 +106706,7 @@ by the French Imprimerie Nationale. %package impnattypo-doc Summary: Documentation for impnattypo Version: svn36448.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-impnattypo-doc BuildArch: noarch AutoReqProv: No @@ -106716,7 +106717,7 @@ Documentation for impnattypo %package l2tabu-french-doc Summary: Documentation for l2tabu-french Version: svn31315.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2tabu-french-doc BuildArch: noarch AutoReqProv: No @@ -106727,7 +106728,7 @@ Documentation for l2tabu-french %package lshort-french-doc Summary: Documentation for lshort-french Version: svn23332.5.01fr_0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-french-doc BuildArch: noarch AutoReqProv: No @@ -106740,7 +106741,7 @@ Provides: tex-mafr = %{tl_version} License: GPL+ Summary: Mathematics in accord with French usage Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106762,7 +106763,7 @@ The documentation is in French. %package mafr-doc Summary: Documentation for mafr Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mafr-doc BuildArch: noarch AutoReqProv: No @@ -106775,7 +106776,7 @@ Provides: tex-tabvar = %{tl_version} License: LPPL 1.3 Summary: Typesetting tables showing variations of functions Version: svn28908.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106801,7 +106802,7 @@ showing variations of functions as they are used in France. %package tabvar-doc Summary: Documentation for tabvar Version: svn28908.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabvar-doc BuildArch: noarch AutoReqProv: No @@ -106814,7 +106815,7 @@ Provides: tex-tdsfrmath = %{tl_version} License: LPPL Summary: Macros for French teachers of mathematics Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106839,7 +106840,7 @@ mathematics teachers. %package tdsfrmath-doc Summary: Documentation for tdsfrmath Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tdsfrmath-doc BuildArch: noarch AutoReqProv: No @@ -106850,7 +106851,7 @@ Documentation for tdsfrmath %package texlive-fr-doc Summary: Documentation for texlive-fr Version: svn41183 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-fr-doc BuildArch: noarch AutoReqProv: No @@ -106861,7 +106862,7 @@ Documentation for texlive-fr %package translation-array-fr-doc Summary: Documentation for translation-array-fr Version: svn24344.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-array-fr-doc BuildArch: noarch AutoReqProv: No @@ -106872,7 +106873,7 @@ Documentation for translation-array-fr %package translation-dcolumn-fr-doc Summary: Documentation for translation-dcolumn-fr Version: svn24345.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-dcolumn-fr-doc BuildArch: noarch AutoReqProv: No @@ -106883,7 +106884,7 @@ Documentation for translation-dcolumn-fr %package translation-natbib-fr-doc Summary: Documentation for translation-natbib-fr Version: svn25105.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-natbib-fr-doc BuildArch: noarch AutoReqProv: No @@ -106894,7 +106895,7 @@ Documentation for translation-natbib-fr %package translation-tabbing-fr-doc Summary: Documentation for translation-tabbing-fr Version: svn24228.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-tabbing-fr-doc BuildArch: noarch AutoReqProv: No @@ -106907,7 +106908,7 @@ Provides: tex-variations = %{tl_version} License: GPL+ Summary: Typeset tables of variations of functions Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -106923,7 +106924,7 @@ may be used by both LaTeX and plain TeX users. %package variations-doc Summary: Documentation for variations Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-variations-doc BuildArch: noarch AutoReqProv: No @@ -106934,7 +106935,7 @@ Documentation for variations %package collection-langgerman Summary: German Version: svn40098 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -106992,7 +106993,7 @@ Support for German. %package csquotes-de-doc Summary: Documentation for csquotes-de Version: svn23371.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-csquotes-de-doc BuildArch: noarch AutoReqProv: No @@ -107005,7 +107006,7 @@ Provides: tex-dehyph-exptl = %{tl_version} License: LPPL Summary: Experimental hyphenation patterns for the German language Version: svn34459.0.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107066,7 +107067,7 @@ fi %package dehyph-exptl-doc Summary: Documentation for dehyph-exptl Version: svn34459.0.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dehyph-exptl-doc BuildArch: noarch AutoReqProv: No @@ -107080,7 +107081,7 @@ Provides: tex-dhua = %{tl_version} License: LPPL 1.3 Summary: German abbreviations using thin space Version: svn24035.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107105,7 +107106,7 @@ eingestreut. %package dhua-doc Summary: Documentation for dhua Version: svn24035.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dhua-doc BuildArch: noarch AutoReqProv: No @@ -107116,7 +107117,7 @@ Documentation for dhua %package einfuehrung-doc Summary: Documentation for einfuehrung Version: svn29349.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-einfuehrung-doc BuildArch: noarch AutoReqProv: No @@ -107127,7 +107128,7 @@ Documentation for einfuehrung %package etdipa-doc Summary: Documentation for etdipa Version: svn36354.2.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etdipa-doc BuildArch: noarch AutoReqProv: No @@ -107138,7 +107139,7 @@ Documentation for etdipa %package etoolbox-de-doc Summary: Documentation for etoolbox-de Version: svn21906.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etoolbox-de-doc BuildArch: noarch AutoReqProv: No @@ -107149,7 +107150,7 @@ Documentation for etoolbox-de %package fifinddo-info-doc Summary: Documentation for fifinddo-info Version: svn29349.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fifinddo-info-doc BuildArch: noarch AutoReqProv: No @@ -107160,7 +107161,7 @@ Documentation for fifinddo-info %package geometry-de-doc Summary: Documentation for geometry-de Version: svn21882.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-geometry-de-doc BuildArch: noarch AutoReqProv: No @@ -107173,7 +107174,7 @@ Provides: tex-german = %{tl_version} License: LPPL Summary: Support for German typography Version: svn30567.2.5e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107188,7 +107189,7 @@ Rechtschreibung). %package german-doc Summary: Documentation for german Version: svn30567.2.5e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-german-doc BuildArch: noarch AutoReqProv: No @@ -107201,7 +107202,7 @@ Provides: tex-germbib = %{tl_version} License: Bibtex Summary: German variants of standard BibTeX styles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107220,7 +107221,7 @@ germbib. %package germbib-doc Summary: Documentation for germbib Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-germbib-doc BuildArch: noarch AutoReqProv: No @@ -107233,7 +107234,7 @@ Provides: tex-germkorr = %{tl_version} License: GPL+ Summary: Change kerning for german quotation marks Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107249,7 +107250,7 @@ like "`\.T"'. %package germkorr-doc Summary: Documentation for germkorr Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-germkorr-doc BuildArch: noarch AutoReqProv: No @@ -107262,7 +107263,7 @@ Provides: tex-hausarbeit-jura = %{tl_version} License: LPPL 1.3 Summary: Class for writing "juristiche Hausarbeiten" at German Universities Version: svn40774 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107290,7 +107291,7 @@ beginners to get a correct and nicely formatted paper. %package hausarbeit-jura-doc Summary: Documentation for hausarbeit-jura Version: svn40774 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hausarbeit-jura-doc BuildArch: noarch AutoReqProv: No @@ -107303,7 +107304,7 @@ Provides: tex-hyphen-german = %{tl_version} License: LPPL Summary: German hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107359,7 +107360,7 @@ fi %package koma-script-examples-doc Summary: Documentation for koma-script-examples Version: svn34243.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-koma-script-examples-doc BuildArch: noarch AutoReqProv: No @@ -107370,7 +107371,7 @@ Documentation for koma-script-examples %package l2picfaq-doc Summary: Documentation for l2picfaq Version: svn19601.1.50 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2picfaq-doc BuildArch: noarch AutoReqProv: No @@ -107381,7 +107382,7 @@ Documentation for l2picfaq %package l2tabu-doc Summary: Documentation for l2tabu Version: svn39597 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2tabu-doc BuildArch: noarch AutoReqProv: No @@ -107392,7 +107393,7 @@ Documentation for l2tabu %package latex-bib-ex-doc Summary: Documentation for latex-bib-ex Version: svn25831.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-bib-ex-doc BuildArch: noarch AutoReqProv: No @@ -107403,7 +107404,7 @@ Documentation for latex-bib-ex %package latex-referenz-doc Summary: Documentation for latex-referenz Version: svn36671.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-referenz-doc BuildArch: noarch AutoReqProv: No @@ -107414,7 +107415,7 @@ Documentation for latex-referenz %package latex-tabellen-doc Summary: Documentation for latex-tabellen Version: svn16979.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-tabellen-doc BuildArch: noarch AutoReqProv: No @@ -107425,7 +107426,7 @@ Documentation for latex-tabellen %package latexcheat-de-doc Summary: Documentation for latexcheat-de Version: svn35702.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexcheat-de-doc BuildArch: noarch AutoReqProv: No @@ -107436,7 +107437,7 @@ Documentation for latexcheat-de %package lshort-german-doc Summary: Documentation for lshort-german Version: svn37499.3.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-german-doc BuildArch: noarch AutoReqProv: No @@ -107447,7 +107448,7 @@ Documentation for lshort-german %package lualatex-doc-de-doc Summary: Documentation for lualatex-doc-de Version: svn30474.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lualatex-doc-de-doc BuildArch: noarch AutoReqProv: No @@ -107458,7 +107459,7 @@ Documentation for lualatex-doc-de %package microtype-de-doc Summary: Documentation for microtype-de Version: svn24549.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-microtype-de-doc BuildArch: noarch AutoReqProv: No @@ -107469,7 +107470,7 @@ Documentation for microtype-de %package presentations-doc Summary: Documentation for presentations Version: svn17172.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-presentations-doc BuildArch: noarch AutoReqProv: No @@ -107480,7 +107481,7 @@ Documentation for presentations %package pstricks-examples-doc Summary: Documentation for pstricks-examples Version: svn21511.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstricks-examples-doc BuildArch: noarch AutoReqProv: No @@ -107493,7 +107494,7 @@ Provides: tex-r_und_s = %{tl_version} License: BSD Summary: Chemical hazard codes Version: svn15878.1.3i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107518,7 +107519,7 @@ English, French and Dutch. %package r_und_s-doc Summary: Documentation for r_und_s Version: svn15878.1.3i -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-r_und_s-doc BuildArch: noarch AutoReqProv: No @@ -107529,7 +107530,7 @@ Documentation for r_und_s %package templates-fenn-doc Summary: Documentation for templates-fenn Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-templates-fenn-doc BuildArch: noarch AutoReqProv: No @@ -107540,7 +107541,7 @@ Documentation for templates-fenn %package templates-sommer-doc Summary: Documentation for templates-sommer Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-templates-sommer-doc BuildArch: noarch AutoReqProv: No @@ -107551,7 +107552,7 @@ Documentation for templates-sommer %package texlive-de-doc Summary: Documentation for texlive-de Version: svn41364 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-de-doc BuildArch: noarch AutoReqProv: No @@ -107562,7 +107563,7 @@ Documentation for texlive-de %package tipa-de-doc Summary: Documentation for tipa-de Version: svn22005.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tipa-de-doc BuildArch: noarch AutoReqProv: No @@ -107573,7 +107574,7 @@ Documentation for tipa-de %package translation-arsclassica-de-doc Summary: Documentation for translation-arsclassica-de Version: svn23803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-arsclassica-de-doc BuildArch: noarch AutoReqProv: No @@ -107584,7 +107585,7 @@ Documentation for translation-arsclassica-de %package translation-biblatex-de-doc Summary: Documentation for translation-biblatex-de Version: svn24386.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-biblatex-de-doc BuildArch: noarch AutoReqProv: No @@ -107595,7 +107596,7 @@ Documentation for translation-biblatex-de %package translation-chemsym-de-doc Summary: Documentation for translation-chemsym-de Version: svn23804.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-chemsym-de-doc BuildArch: noarch AutoReqProv: No @@ -107606,7 +107607,7 @@ Documentation for translation-chemsym-de %package translation-ecv-de-doc Summary: Documentation for translation-ecv-de Version: svn24754.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-ecv-de-doc BuildArch: noarch AutoReqProv: No @@ -107617,7 +107618,7 @@ Documentation for translation-ecv-de %package translation-enumitem-de-doc Summary: Documentation for translation-enumitem-de Version: svn24196.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-enumitem-de-doc BuildArch: noarch AutoReqProv: No @@ -107628,7 +107629,7 @@ Documentation for translation-enumitem-de %package translation-europecv-de-doc Summary: Documentation for translation-europecv-de Version: svn23840.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-europecv-de-doc BuildArch: noarch AutoReqProv: No @@ -107639,7 +107640,7 @@ Documentation for translation-europecv-de %package translation-filecontents-de-doc Summary: Documentation for translation-filecontents-de Version: svn24010.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-filecontents-de-doc BuildArch: noarch AutoReqProv: No @@ -107650,7 +107651,7 @@ Documentation for translation-filecontents-de %package translation-moreverb-de-doc Summary: Documentation for translation-moreverb-de Version: svn23957.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translation-moreverb-de-doc BuildArch: noarch AutoReqProv: No @@ -107663,7 +107664,7 @@ Provides: tex-udesoftec = %{tl_version} License: LPPL 1.3 Summary: Thesis class for the University of Duisburg-Essen Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107692,7 +107693,7 @@ assumed. %package udesoftec-doc Summary: Documentation for udesoftec Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-udesoftec-doc BuildArch: noarch AutoReqProv: No @@ -107705,7 +107706,7 @@ Provides: tex-umlaute = %{tl_version} License: LPPL Summary: German input encodings in LaTeX Version: svn15878.v2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107728,7 +107729,7 @@ remains the sole source of that support. %package umlaute-doc Summary: Documentation for umlaute Version: svn15878.v2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-umlaute-doc BuildArch: noarch AutoReqProv: No @@ -107739,7 +107740,7 @@ Documentation for umlaute %package voss-mathcol-doc Summary: Documentation for voss-mathcol Version: svn32954.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-voss-mathcol-doc BuildArch: noarch AutoReqProv: No @@ -107750,7 +107751,7 @@ Documentation for voss-mathcol %package collection-langgreek Summary: Greek Version: svn39121 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -107787,7 +107788,7 @@ Provides: tex-gfsbaskerville = %{tl_version} License: LPPL Summary: A Greek font, from one such by Baskerville Version: svn19440.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107813,7 +107814,7 @@ encoding. %package gfsbaskerville-doc Summary: Documentation for gfsbaskerville Version: svn19440.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsbaskerville-doc BuildArch: noarch AutoReqProv: No @@ -107826,7 +107827,7 @@ Provides: tex-gfsporson = %{tl_version} License: LPPL Summary: A Greek font, originally from Porson Version: svn18651.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107853,7 +107854,7 @@ encoding. %package gfsporson-doc Summary: Documentation for gfsporson Version: svn18651.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfsporson-doc BuildArch: noarch AutoReqProv: No @@ -107866,7 +107867,7 @@ Provides: tex-greek-fontenc = %{tl_version} License: LPPL 1.3 Summary: LICR macros and encoding definition files for Greek Version: svn39606 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107887,7 +107888,7 @@ fontenc. %package greek-fontenc-doc Summary: Documentation for greek-fontenc Version: svn39606 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-greek-fontenc-doc BuildArch: noarch AutoReqProv: No @@ -107900,7 +107901,7 @@ Provides: tex-greek-inputenc = %{tl_version} License: LPPL 1.3 Summary: Greek encoding support for inputenc Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107915,7 +107916,7 @@ The bundle provides UTF-8, Macintosh Greek encoding and ISO %package greek-inputenc-doc Summary: Documentation for greek-inputenc Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-greek-inputenc-doc BuildArch: noarch AutoReqProv: No @@ -107928,7 +107929,7 @@ Provides: tex-greekdates = %{tl_version} License: LPPL Summary: Provides ancient Greek day and month names, dates, etc Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107947,7 +107948,7 @@ such as \today. %package greekdates-doc Summary: Documentation for greekdates Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-greekdates-doc BuildArch: noarch AutoReqProv: No @@ -107960,7 +107961,7 @@ Provides: tex-greektex = %{tl_version} License: Public Domain Summary: Fonts for typesetting Greek/English documents Version: svn28327.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -107975,7 +107976,7 @@ are also provided. %package greektex-doc Summary: Documentation for greektex Version: svn28327.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-greektex-doc BuildArch: noarch AutoReqProv: No @@ -107988,7 +107989,7 @@ Provides: tex-hyphen-greek = %{tl_version} License: LPPL Summary: Modern Greek hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108037,7 +108038,7 @@ fi %package hyphen-greek-doc Summary: Documentation for hyphen-greek Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyphen-greek-doc BuildArch: noarch AutoReqProv: No @@ -108051,7 +108052,7 @@ Provides: tex-hyphen-ancientgreek = %{tl_version} License: LPPL Summary: Ancient Greek hyphenation patterns Version: svn41189 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108097,7 +108098,7 @@ Provides: tex-ibycus-babel = %{tl_version} License: LPPL Summary: Use the Ibycus 4 Greek font with Babel Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108119,7 +108120,7 @@ constraint should not be onerous). %package ibycus-babel-doc Summary: Documentation for ibycus-babel Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ibycus-babel-doc BuildArch: noarch AutoReqProv: No @@ -108132,7 +108133,7 @@ Provides: tex-ibygrk = %{tl_version} License: GPL+ Summary: Fonts and macros to typeset ancient Greek Version: svn15878.4.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108177,7 +108178,7 @@ with Babel, see the ibycus-babel package. %package ibygrk-doc Summary: Documentation for ibygrk Version: svn15878.4.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ibygrk-doc BuildArch: noarch AutoReqProv: No @@ -108190,7 +108191,7 @@ Provides: tex-kerkis = %{tl_version} License: LPPL Summary: Kerkis (Greek) font family Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108456,7 +108457,7 @@ Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002. %package kerkis-doc Summary: Documentation for kerkis Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kerkis-doc BuildArch: noarch AutoReqProv: No @@ -108469,7 +108470,7 @@ Provides: tex-levy = %{tl_version} License: GPLv2+ Summary: Fonts for typesetting classical greek Version: svn21750.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108492,7 +108493,7 @@ documentation). %package levy-doc Summary: Documentation for levy Version: svn21750.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-levy-doc BuildArch: noarch AutoReqProv: No @@ -108505,7 +108506,7 @@ Provides: tex-lgreek = %{tl_version} License: GPLv2+ Summary: LaTeX macros for using Silvio Levy's Greek fonts Version: svn21818.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108522,7 +108523,7 @@ LaTeX. %package lgreek-doc Summary: Documentation for lgreek Version: svn21818.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lgreek-doc BuildArch: noarch AutoReqProv: No @@ -108535,7 +108536,7 @@ Provides: tex-mkgrkindex = %{tl_version} License: LPPL Summary: Makeindex working with Greek Version: svn26313.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108552,7 +108553,7 @@ according to the rules of the Greek alphabet. %package mkgrkindex-doc Summary: Documentation for mkgrkindex Version: svn26313.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mkgrkindex-doc BuildArch: noarch AutoReqProv: No @@ -108565,7 +108566,7 @@ Summary: Binaries for mkgrkindex Version: svn14428.0 Requires: texlive-base Requires: texlive-mkgrkindex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mkgrkindex-bin @@ -108576,7 +108577,7 @@ Provides: tex-teubner = %{tl_version} License: LPPL 1.3 Summary: Philological typesetting of classical Greek Version: svn40197 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108603,7 +108604,7 @@ quality. %package teubner-doc Summary: Documentation for teubner Version: svn40197 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-teubner-doc BuildArch: noarch AutoReqProv: No @@ -108616,7 +108617,7 @@ Provides: tex-xgreek = %{tl_version} License: LPPL 1.3 Summary: XeLaTeX package for typesetting Greek language documents (beta release) Version: svn40850 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108640,7 +108641,7 @@ if the format file has not been built with the babel mechanism. %package xgreek-doc Summary: Documentation for xgreek Version: svn40850 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xgreek-doc BuildArch: noarch AutoReqProv: No @@ -108653,7 +108654,7 @@ Provides: tex-yannisgr = %{tl_version} License: GPLv2+ Summary: Greek fonts by Yannis Haralambous Version: svn22613.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108678,7 +108679,7 @@ table) are provided. %package yannisgr-doc Summary: Documentation for yannisgr Version: svn22613.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yannisgr-doc BuildArch: noarch AutoReqProv: No @@ -108689,7 +108690,7 @@ Documentation for yannisgr %package collection-langindic Summary: Indic scripts Version: svn35737.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -108715,7 +108716,7 @@ Provides: tex-devnag = %{tl_version} License: GPL+ Summary: Typeset Devanagari Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108736,7 +108737,7 @@ Summary: Binaries for devnag Version: svn40987 Requires: texlive-base Requires: texlive-devnag -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description devnag-bin @@ -108747,7 +108748,7 @@ Provides: tex-ebong = %{tl_version} License: Public Domain Summary: Utility for writing Bengali in Rapid Roman Format Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108763,7 +108764,7 @@ program. All LaTeX markups are preserved in the target file. %package ebong-doc Summary: Documentation for ebong Version: svn26313.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebong-doc BuildArch: noarch AutoReqProv: No @@ -108776,7 +108777,7 @@ Summary: Binaries for ebong Version: svn21000.0 Requires: texlive-base Requires: texlive-ebong -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ebong-bin @@ -108787,7 +108788,7 @@ Provides: tex-hyphen-indic = %{tl_version} License: LPPL Summary: Indic hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108889,7 +108890,7 @@ Provides: tex-hyphen-sanskrit = %{tl_version} License: LPPL Summary: Sanskrit hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108925,7 +108926,7 @@ Provides: tex-sanskrit = %{tl_version} License: LPPL Summary: Sanskrit support Version: svn35738.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108951,7 +108952,7 @@ available. %package sanskrit-doc Summary: Documentation for sanskrit Version: svn35738.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sanskrit-doc BuildArch: noarch AutoReqProv: No @@ -108964,7 +108965,7 @@ Provides: tex-sanskrit-t1 = %{tl_version} License: LPPL Summary: Type 1 version of 'skt' fonts for Sanskrit Version: svn35737.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -108988,7 +108989,7 @@ Wikner's skt font series for the Sanskrit language. %package sanskrit-t1-doc Summary: Documentation for sanskrit-t1 Version: svn35737.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sanskrit-t1-doc BuildArch: noarch AutoReqProv: No @@ -109001,7 +109002,7 @@ Provides: tex-velthuis = %{tl_version} License: GPL+ Summary: Typeset Devanagari Version: svn40868 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109163,7 +109164,7 @@ type Unicode text. %package velthuis-doc Summary: Documentation for velthuis Version: svn40868 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-velthuis-doc BuildArch: noarch AutoReqProv: No @@ -109177,7 +109178,7 @@ Provides: tex-xetex-devanagari = %{tl_version} License: LPPL Summary: XeTeX input map for Unicode Devanagari Version: svn34296.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109196,7 +109197,7 @@ convention) to Unicode (range 0900-097F). %package xetex-devanagari-doc Summary: Documentation for xetex-devanagari Version: svn34296.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetex-devanagari-doc BuildArch: noarch AutoReqProv: No @@ -109209,7 +109210,7 @@ Provides: tex-wnri = %{tl_version} License: GPL+ Summary: Ridgeway's fonts Version: svn22459.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109235,7 +109236,7 @@ Native American languages. %package wnri-doc Summary: Documentation for wnri Version: svn22459.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wnri-doc BuildArch: noarch AutoReqProv: No @@ -109248,7 +109249,7 @@ Provides: tex-wnri-latex = %{tl_version} License: GPLv2+ Summary: LaTeX support for wnri fonts Version: svn22338.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109265,7 +109266,7 @@ LaTeX support for the wnri fonts. %package wnri-latex-doc Summary: Documentation for wnri-latex Version: svn22338.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wnri-latex-doc BuildArch: noarch AutoReqProv: No @@ -109276,7 +109277,7 @@ Documentation for wnri-latex %package collection-langitalian Summary: Italian Version: svn30372.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -109303,7 +109304,7 @@ Support for Italian. %package fancyhdr-it-doc Summary: Documentation for fancyhdr-it Version: svn21912.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancyhdr-it-doc BuildArch: noarch AutoReqProv: No @@ -109316,7 +109317,7 @@ Provides: tex-fixltxhyph = %{tl_version} License: LPPL 1.3 Summary: Allow hyphenation of partially-emphasised substrings Version: svn25832.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109335,7 +109336,7 @@ French, Italian and Romansh. %package fixltxhyph-doc Summary: Documentation for fixltxhyph Version: svn25832.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fixltxhyph-doc BuildArch: noarch AutoReqProv: No @@ -109348,7 +109349,7 @@ Provides: tex-frontespizio = %{tl_version} License: LPPL Summary: Create a frontispiece for Italian theses Version: svn24054.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109374,7 +109375,7 @@ Italy. %package frontespizio-doc Summary: Documentation for frontespizio Version: svn24054.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frontespizio-doc BuildArch: noarch AutoReqProv: No @@ -109387,7 +109388,7 @@ Provides: tex-hyphen-italian = %{tl_version} License: LGPLv2+ Summary: Italian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109424,7 +109425,7 @@ Provides: tex-itnumpar = %{tl_version} License: LPPL Summary: Spell numbers in words (Italian) Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109441,7 +109442,7 @@ in ordinal form. %package itnumpar-doc Summary: Documentation for itnumpar Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-itnumpar-doc BuildArch: noarch AutoReqProv: No @@ -109452,7 +109453,7 @@ Documentation for itnumpar %package l2tabu-italian-doc Summary: Documentation for l2tabu-italian Version: svn25218.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2tabu-italian-doc BuildArch: noarch AutoReqProv: No @@ -109463,7 +109464,7 @@ Documentation for l2tabu-italian %package latex4wp-it-doc Summary: Documentation for latex4wp-it Version: svn36000.1.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex4wp-it-doc BuildArch: noarch AutoReqProv: No @@ -109476,7 +109477,7 @@ Provides: tex-layaureo = %{tl_version} License: LPPL Summary: A package to improve the A4 page layout Version: svn19087.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109496,7 +109497,7 @@ option called big which it forces typearea to become maximum. %package layaureo-doc Summary: Documentation for layaureo Version: svn19087.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-layaureo-doc BuildArch: noarch AutoReqProv: No @@ -109507,7 +109508,7 @@ Documentation for layaureo %package lshort-italian-doc Summary: Documentation for lshort-italian Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-italian-doc BuildArch: noarch AutoReqProv: No @@ -109518,7 +109519,7 @@ Documentation for lshort-italian %package psfrag-italian-doc Summary: Documentation for psfrag-italian Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psfrag-italian-doc BuildArch: noarch AutoReqProv: No @@ -109529,7 +109530,7 @@ Documentation for psfrag-italian %package texlive-it-doc Summary: Documentation for texlive-it Version: svn41248 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-it-doc BuildArch: noarch AutoReqProv: No @@ -109540,7 +109541,7 @@ Documentation for texlive-it %package collection-langjapanese Summary: Japanese Version: svn41002 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-langcjk @@ -109585,7 +109586,7 @@ Provides: tex-convbkmk = %{tl_version} License: MIT Summary: Correct platex/uplatex bookmarks in PDF created with hyperref Version: svn35923.0.10a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109601,7 +109602,7 @@ hyperref. %package convbkmk-doc Summary: Documentation for convbkmk Version: svn35923.0.10a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-convbkmk-doc BuildArch: noarch AutoReqProv: No @@ -109614,7 +109615,7 @@ Summary: Binaries for convbkmk Version: svn30408.0 Requires: texlive-base Requires: texlive-convbkmk -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description convbkmk-bin @@ -109625,7 +109626,7 @@ Provides: tex-ipaex = %{tl_version} License: IPA Summary: IPA and IPAex fonts from Information-technology Promotion Agency, Japan Version: svn35583.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109644,7 +109645,7 @@ characters, proportional width glyphs for Western characters. %package ipaex-doc Summary: Documentation for ipaex Version: svn35583.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ipaex-doc BuildArch: noarch AutoReqProv: No @@ -109657,7 +109658,7 @@ Provides: tex-japanese = %{tl_version} License: LPPL Summary: A substitute for a babel package for Japanese Version: svn30855.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -109675,7 +109676,7 @@ a Japanese-enabled TeX system, such as pTeX or jTeX. %package japanese-doc Summary: Documentation for japanese Version: svn30855.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-japanese-doc BuildArch: noarch AutoReqProv: No @@ -109688,7 +109689,7 @@ Provides: tex-japanese-otf = %{tl_version} License: BSD Summary: Advanced font selection for platex and its friends Version: svn36953.v1.7b6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -111805,7 +111806,7 @@ engine. %package japanese-otf-doc Summary: Documentation for japanese-otf Version: svn36953.v1.7b6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-japanese-otf-doc BuildArch: noarch AutoReqProv: No @@ -111818,7 +111819,7 @@ Provides: tex-japanese-otf-uptex = %{tl_version} License: BSD Summary: Support for Japanese OTF files in upLaTeX Version: svn36763.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -112772,7 +112773,7 @@ later). %package japanese-otf-uptex-doc Summary: Documentation for japanese-otf-uptex Version: svn36763.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-japanese-otf-uptex-doc BuildArch: noarch AutoReqProv: No @@ -112786,7 +112787,7 @@ Provides: tex-jfontmaps = %{tl_version} License: Public Domain and GPLv3+ Summary: Font maps and configuration tools for Japanese fonts Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -112878,7 +112879,7 @@ as part of their operating system distribution. %package jfontmaps-doc Summary: Documentation for jfontmaps Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jfontmaps-doc BuildArch: noarch AutoReqProv: No @@ -112891,7 +112892,7 @@ Summary: Binaries for jfontmaps Version: svn29848.0 Requires: texlive-base Requires: texlive-jfontmaps -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description jfontmaps-bin @@ -112902,7 +112903,7 @@ Provides: tex-jsclasses = %{tl_version} License: BSD Summary: Classes tailored for use with Japanese Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -112926,7 +112927,7 @@ ptex. %package jsclasses-doc Summary: Documentation for jsclasses Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jsclasses-doc BuildArch: noarch AutoReqProv: No @@ -112937,7 +112938,7 @@ Documentation for jsclasses %package lshort-japanese-doc Summary: Documentation for lshort-japanese Version: svn36207.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-japanese-doc BuildArch: noarch AutoReqProv: No @@ -112950,7 +112951,7 @@ Provides: tex-luatexja = %{tl_version} License: BSD Summary: Typeset Japanese with Lua(La)TeX Version: svn41164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113035,7 +113036,7 @@ used with the package. %package luatexja-doc Summary: Documentation for luatexja Version: svn41164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatexja-doc BuildArch: noarch AutoReqProv: No @@ -113048,7 +113049,7 @@ Provides: tex-ptex = %{tl_version} License: BSD Summary: A TeX system for publishing in Japanese Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113096,7 +113097,7 @@ fi %package ptex-doc Summary: Documentation for ptex Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptex-doc BuildArch: noarch AutoReqProv: No @@ -113114,7 +113115,7 @@ Summary: Binaries for ptex Version: svn40987 Requires: texlive-base Requires: texlive-ptex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description ptex-bin @@ -113141,7 +113142,7 @@ e-pTeX. %package ptex-base-doc Summary: Documentation for ptex-base Version: svn41420 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptex-base-doc BuildArch: noarch AutoReqProv: No @@ -113348,7 +113349,7 @@ the ptex-texmf distribution by ASCII MEDIA WORKS. %package ptex-fonts-doc Summary: Documentation for ptex-fonts Version: svn41207 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptex-fonts-doc BuildArch: noarch AutoReqProv: No @@ -113361,7 +113362,7 @@ Provides: tex-ptex2pdf = %{tl_version} License: GPLv2+ Summary: Convert Japanese TeX documents to PDF Version: svn41270 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113378,7 +113379,7 @@ uplatex) followed by dvipdfmx. %package ptex2pdf-doc Summary: Documentation for ptex2pdf Version: svn41270 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptex2pdf-doc BuildArch: noarch AutoReqProv: No @@ -113391,7 +113392,7 @@ Summary: Binaries for ptex2pdf Version: svn29335.0 Requires: texlive-base Requires: texlive-ptex2pdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ptex2pdf-bin @@ -113402,7 +113403,7 @@ Provides: tex-pxbase = %{tl_version} License: MIT Summary: Tools for use with (u)pLaTeX Version: svn28516.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113423,7 +113424,7 @@ pxbase package %package pxbase-doc Summary: Documentation for pxbase Version: svn28516.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxbase-doc BuildArch: noarch AutoReqProv: No @@ -113436,7 +113437,7 @@ Provides: tex-pxchfon = %{tl_version} License: MIT Summary: Japanese font setup for pLaTeX and upLaTeX Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113477,7 +113478,7 @@ fonts used in the japanese-otf package. %package pxchfon-doc Summary: Documentation for pxchfon Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxchfon-doc BuildArch: noarch AutoReqProv: No @@ -113490,7 +113491,7 @@ Provides: tex-pxcjkcat = %{tl_version} License: MIT Summary: LaTeX interface for the CJK category codes of upTeX Version: svn27780.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113507,7 +113508,7 @@ principally written in English or other Western languages. %package pxcjkcat-doc Summary: Documentation for pxcjkcat Version: svn27780.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxcjkcat-doc BuildArch: noarch AutoReqProv: No @@ -113520,7 +113521,7 @@ Provides: tex-pxjahyper = %{tl_version} License: MIT Summary: Hyperref support for pLaTeX Version: svn40612 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113534,7 +113535,7 @@ pxjahyper package %package pxjahyper-doc Summary: Documentation for pxjahyper Version: svn40612 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxjahyper-doc BuildArch: noarch AutoReqProv: No @@ -113547,7 +113548,7 @@ Provides: tex-pxrubrica = %{tl_version} License: LPPL Summary: pxrubrica package Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113561,7 +113562,7 @@ pxrubrica package %package pxrubrica-doc Summary: Documentation for pxrubrica Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxrubrica-doc BuildArch: noarch AutoReqProv: No @@ -113574,7 +113575,7 @@ Provides: tex-uptex-base = %{tl_version} License: BSD Summary: Plain TeX format and documents for upTeX Version: svn41252 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113590,7 +113591,7 @@ The bundle contains plain TeX format and documents for upTeX. %package uptex-base-doc Summary: Documentation for uptex-base Version: svn41252 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uptex-base-doc BuildArch: noarch AutoReqProv: No @@ -113603,7 +113604,7 @@ Provides: tex-uptex-fonts = %{tl_version} License: BSD Summary: Fonts for use with upTeX Version: svn41116 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113695,7 +113696,7 @@ Takuji Tanaka. %package uptex-fonts-doc Summary: Documentation for uptex-fonts Version: svn41116 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uptex-fonts-doc BuildArch: noarch AutoReqProv: No @@ -113706,7 +113707,7 @@ Documentation for uptex-fonts %package uptex-doc Summary: Documentation for uptex Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uptex-doc BuildArch: noarch AutoReqProv: No @@ -113725,7 +113726,7 @@ Summary: Binaries for uptex Version: svn40987 Requires: texlive-base # Requires: texlive-uptex -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description uptex-bin @@ -113736,7 +113737,7 @@ Provides: tex-zxjafbfont = %{tl_version} License: MIT Summary: Fallback CJK font support for xeCJK Version: svn28539.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113750,7 +113751,7 @@ zxjafbfont package %package zxjafbfont-doc Summary: Documentation for zxjafbfont Version: svn28539.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zxjafbfont-doc BuildArch: noarch AutoReqProv: No @@ -113763,7 +113764,7 @@ Provides: tex-zxjatype = %{tl_version} License: MIT Summary: Standard conforming typesetting of Japanese, for XeLaTeX Version: svn28541.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113780,7 +113781,7 @@ zxjatype package %package zxjatype-doc Summary: Documentation for zxjatype Version: svn28541.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zxjatype-doc BuildArch: noarch AutoReqProv: No @@ -113791,7 +113792,7 @@ Documentation for zxjatype %package collection-langkorean Summary: Korean Version: svn33790.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-langcjk @@ -113812,7 +113813,7 @@ Provides: tex-kotex-oblivoir = %{tl_version} License: LPPL 1.3 Summary: A LaTeX document class for typesetting Korean documents Version: svn38679 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113887,7 +113888,7 @@ belongs to the ko.TeX bundle. %package kotex-oblivoir-doc Summary: Documentation for kotex-oblivoir Version: svn38679 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kotex-oblivoir-doc BuildArch: noarch AutoReqProv: No @@ -113902,7 +113903,7 @@ Provides: tex-memoir = %{tl_version} License: LPPL 1.3 Summary: Typeset fiction, non-fiction and mathematical books Version: svn41203 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -113949,7 +113950,7 @@ running under memoir. %package memoir-doc Summary: Documentation for memoir Version: svn41203 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-memoir-doc BuildArch: noarch AutoReqProv: No @@ -113962,7 +113963,7 @@ Provides: tex-kotex-utf = %{tl_version} License: LPPL 1.3 Summary: Typeset Hangul, coded in UTF-8 Version: svn38558 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -114016,7 +114017,7 @@ ko.TeX bundle. %package kotex-utf-doc Summary: Documentation for kotex-utf Version: svn38558 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kotex-utf-doc BuildArch: noarch AutoReqProv: No @@ -114030,7 +114031,7 @@ Provides: tex-kotex-plain = %{tl_version} License: LPPL 1.3 Summary: Macros for typesetting Korean under Plain TeX Version: svn38630 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -114049,7 +114050,7 @@ ko.TeX bundle. %package kotex-plain-doc Summary: Documentation for kotex-plain Version: svn38630 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kotex-plain-doc BuildArch: noarch AutoReqProv: No @@ -114062,7 +114063,7 @@ Provides: tex-kotex-utils = %{tl_version} License: LPPL Summary: Utility scripts and support files for typesetting Korean Version: svn38727 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -114078,7 +114079,7 @@ the ko.TeX bundle. %package kotex-utils-doc Summary: Documentation for kotex-utils Version: svn38727 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kotex-utils-doc BuildArch: noarch AutoReqProv: No @@ -114092,7 +114093,7 @@ Summary: Binaries for kotex-utils Version: svn32101.0 Requires: texlive-base Requires: texlive-kotex-utils -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description kotex-utils-bin @@ -114101,7 +114102,7 @@ Binaries for kotex-utils %package lshort-korean-doc Summary: Documentation for lshort-korean Version: svn15878.4.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-korean-doc BuildArch: noarch AutoReqProv: No @@ -114114,7 +114115,7 @@ Provides: tex-nanumtype1 = %{tl_version} License: OFL Summary: Type1 subfonts of Nanum Korean fonts Version: svn29558.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115437,7 +115438,7 @@ available from Naver) %package nanumtype1-doc Summary: Documentation for nanumtype1 Version: svn29558.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nanumtype1-doc BuildArch: noarch AutoReqProv: No @@ -115448,7 +115449,7 @@ Documentation for nanumtype1 %package collection-langother Summary: Other languages Version: svn31014.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -115489,7 +115490,7 @@ Provides: tex-ctib = %{tl_version} License: GPL+ Summary: Tibetan for TeX and LATeX2e Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115510,7 +115511,7 @@ preprocessor is needed. %package ctib-doc Summary: Documentation for ctib Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctib-doc BuildArch: noarch AutoReqProv: No @@ -115523,7 +115524,7 @@ Provides: tex-hyphen-afrikaans = %{tl_version} License: LPPL Summary: Afrikaans hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115560,7 +115561,7 @@ Provides: tex-hyphen-coptic = %{tl_version} License: LPPL Summary: Coptic hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115597,7 +115598,7 @@ Provides: tex-hyphen-esperanto = %{tl_version} License: LPPL Summary: Esperanto hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115635,7 +115636,7 @@ Provides: tex-hyphen-georgian = %{tl_version} License: LPPL Summary: Georgian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115670,7 +115671,7 @@ Provides: tex-hyphen-indonesian = %{tl_version} License: LPPL Summary: Indonesian hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115706,7 +115707,7 @@ Provides: tex-hyphen-interlingua = %{tl_version} License: LPPL Summary: Interlingua hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115740,7 +115741,7 @@ Provides: tex-hyphen-thai = %{tl_version} License: LPPL Summary: Thai hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115774,7 +115775,7 @@ Provides: tex-hyphen-turkmen = %{tl_version} License: LPPL Summary: Turkmen hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -115806,7 +115807,7 @@ fi %package lshort-thai-doc Summary: Documentation for lshort-thai Version: svn15878.1.32 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-thai-doc BuildArch: noarch AutoReqProv: No @@ -115817,7 +115818,7 @@ Documentation for lshort-thai %package lshort-vietnamese-doc Summary: Documentation for lshort-vietnamese Version: svn15878.4.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-vietnamese-doc BuildArch: noarch AutoReqProv: No @@ -115828,7 +115829,7 @@ Documentation for lshort-vietnamese %package ntheorem-vn-doc Summary: Documentation for ntheorem-vn Version: svn15878.1.203 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ntheorem-vn-doc BuildArch: noarch AutoReqProv: No @@ -115841,7 +115842,7 @@ Provides: tex-vntex = %{tl_version} License: Utopia Summary: Support for Vietnamese Version: svn30579.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116219,7 +116220,7 @@ are available to provide a Vietnamese version. %package vntex-doc Summary: Documentation for vntex Version: svn30579.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vntex-doc BuildArch: noarch AutoReqProv: No @@ -116230,7 +116231,7 @@ Documentation for vntex %package collection-langpolish Summary: Polish Version: svn30372.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -116260,7 +116261,7 @@ Provides: tex-gustlib = %{tl_version} License: LPPL Summary: gustlib package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116288,7 +116289,7 @@ gustlib package %package gustlib-doc Summary: Documentation for gustlib Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gustlib-doc BuildArch: noarch AutoReqProv: No @@ -116299,7 +116300,7 @@ Documentation for gustlib %package gustprog-doc Summary: Documentation for gustprog Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gustprog-doc BuildArch: noarch AutoReqProv: No @@ -116312,7 +116313,7 @@ Provides: tex-hyphen-polish = %{tl_version} License: Knuth Summary: Polish hyphenation patterns Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116346,7 +116347,7 @@ fi %package lshort-polish-doc Summary: Documentation for lshort-polish Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-polish-doc BuildArch: noarch AutoReqProv: No @@ -116359,7 +116360,7 @@ Provides: tex-mex = %{tl_version} License: Public Domain Summary: Polish formats for TeX Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116403,7 +116404,7 @@ fi %package mex-doc Summary: Documentation for mex Version: svn40855 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mex-doc BuildArch: noarch AutoReqProv: No @@ -116418,7 +116419,7 @@ Provides: tex-pl = %{tl_version} License: Public Domain Summary: Polish extension of Computer Modern fonts Version: svn36012.1.09 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116605,7 +116606,7 @@ available that way). %package pl-doc Summary: Documentation for pl Version: svn36012.1.09 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pl-doc BuildArch: noarch AutoReqProv: No @@ -116618,7 +116619,7 @@ Summary: Binaries for mex Version: svn3006.0 Requires: texlive-base Requires: texlive-mex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mex-bin @@ -116629,7 +116630,7 @@ Provides: tex-mwcls = %{tl_version} License: LPPL Summary: Polish-oriented document classes Version: svn15878.0.74 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116660,7 +116661,7 @@ pages. %package mwcls-doc Summary: Documentation for mwcls Version: svn15878.0.74 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mwcls-doc BuildArch: noarch AutoReqProv: No @@ -116673,7 +116674,7 @@ Provides: tex-polski = %{tl_version} License: LPPL 1.2 Summary: Typeset Polish documents with LaTeX and Polish fonts Version: svn19881.1.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116707,7 +116708,7 @@ resolve a name clash.) %package polski-doc Summary: Documentation for polski Version: svn19881.1.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-polski-doc BuildArch: noarch AutoReqProv: No @@ -116721,7 +116722,7 @@ Provides: tex-przechlewski-book = %{tl_version} License: LPPL Summary: Examples from Przechlewski's LaTeX book Version: svn23552.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116740,7 +116741,7 @@ LaTeX". %package przechlewski-book-doc Summary: Documentation for przechlewski-book Version: svn23552.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-przechlewski-book-doc BuildArch: noarch AutoReqProv: No @@ -116753,7 +116754,7 @@ Provides: tex-qpxqtx = %{tl_version} License: LPPL Summary: qpxqtx package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116791,7 +116792,7 @@ qpxqtx package %package qpxqtx-doc Summary: Documentation for qpxqtx Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qpxqtx-doc BuildArch: noarch AutoReqProv: No @@ -116804,7 +116805,7 @@ Provides: tex-tap = %{tl_version} License: Public Domain Summary: TeX macros for typesetting complex tables Version: svn31731.0.77 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116821,7 +116822,7 @@ from ASCII semigraphic tables to TAP notation is included. %package tap-doc Summary: Documentation for tap Version: svn31731.0.77 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tap-doc BuildArch: noarch AutoReqProv: No @@ -116832,7 +116833,7 @@ Documentation for tap %package tex-virtual-academy-pl-doc Summary: Documentation for tex-virtual-academy-pl Version: svn34177.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-virtual-academy-pl-doc BuildArch: noarch AutoReqProv: No @@ -116843,7 +116844,7 @@ Documentation for tex-virtual-academy-pl %package texlive-pl-doc Summary: Documentation for texlive-pl Version: svn41226 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-pl-doc BuildArch: noarch AutoReqProv: No @@ -116856,7 +116857,7 @@ Provides: tex-utf8mex = %{tl_version} License: Public Domain Summary: Tools to produce formats that read Polish language input Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116871,7 +116872,7 @@ Polish encodings. %package utf8mex-doc Summary: Documentation for utf8mex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-utf8mex-doc BuildArch: noarch AutoReqProv: No @@ -116882,7 +116883,7 @@ Documentation for utf8mex %package collection-langportuguese Summary: Portuguese Version: svn30962.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -116902,7 +116903,7 @@ Support for Portuguese. %package cursolatex-doc Summary: Documentation for cursolatex Version: svn24139.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cursolatex-doc BuildArch: noarch AutoReqProv: No @@ -116915,7 +116916,7 @@ Provides: tex-feupphdteses = %{tl_version} License: LPPL Summary: Typeset Engineering PhD theses at the University of Porto Version: svn30962.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -116971,7 +116972,7 @@ University of Porto. %package feupphdteses-doc Summary: Documentation for feupphdteses Version: svn30962.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-feupphdteses-doc BuildArch: noarch AutoReqProv: No @@ -116984,7 +116985,7 @@ Provides: tex-hyphen-portuguese = %{tl_version} License: LPPL Summary: Portuguese hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117035,7 +117036,7 @@ fi %package latexcheat-ptbr-doc Summary: Documentation for latexcheat-ptbr Version: svn15878.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexcheat-ptbr-doc BuildArch: noarch AutoReqProv: No @@ -117046,7 +117047,7 @@ Documentation for latexcheat-ptbr %package lshort-portuguese-doc Summary: Documentation for lshort-portuguese Version: svn22569.5.01.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-portuguese-doc BuildArch: noarch AutoReqProv: No @@ -117059,7 +117060,7 @@ Provides: tex-ordinalpt = %{tl_version} License: LPPL Summary: Counters as ordinal numbers in Portuguese Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117077,7 +117078,7 @@ inflections. %package ordinalpt-doc Summary: Documentation for ordinalpt Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ordinalpt-doc BuildArch: noarch AutoReqProv: No @@ -117088,7 +117089,7 @@ Documentation for ordinalpt %package xypic-tut-pt-doc Summary: Documentation for xypic-tut-pt Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xypic-tut-pt-doc BuildArch: noarch AutoReqProv: No @@ -117099,7 +117100,7 @@ Documentation for xypic-tut-pt %package collection-langspanish Summary: Spanish Version: svn40587 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -117124,7 +117125,7 @@ Support for Spanish. %package es-tex-faq-doc Summary: Documentation for es-tex-faq Version: svn15878.1.97 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-es-tex-faq-doc BuildArch: noarch AutoReqProv: No @@ -117137,7 +117138,7 @@ Provides: tex-hyphen-catalan = %{tl_version} License: LPPL Summary: Catalan hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117171,7 +117172,7 @@ Provides: tex-hyphen-galician = %{tl_version} License: LPPL Summary: Galician hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117205,7 +117206,7 @@ Provides: tex-hyphen-spanish = %{tl_version} License: LPPL Summary: Spanish hyphenation patterns Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117243,7 +117244,7 @@ fi %package l2tabu-spanish-doc Summary: Documentation for l2tabu-spanish Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l2tabu-spanish-doc BuildArch: noarch AutoReqProv: No @@ -117256,7 +117257,7 @@ Provides: tex-latex2e-help-texinfo-spanish = %{tl_version} License: LPPL Summary: latex2e-help-texinfo-spanish package Version: svn37356.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117278,7 +117279,7 @@ fi %package latex2e-help-texinfo-spanish-doc Summary: Documentation for latex2e-help-texinfo-spanish Version: svn37356.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex2e-help-texinfo-spanish-doc BuildArch: noarch AutoReqProv: No @@ -117289,7 +117290,7 @@ Documentation for latex2e-help-texinfo-spanish %package latexcheat-esmx-doc Summary: Documentation for latexcheat-esmx Version: svn36866.2.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexcheat-esmx-doc BuildArch: noarch AutoReqProv: No @@ -117300,7 +117301,7 @@ Documentation for latexcheat-esmx %package lshort-spanish-doc Summary: Documentation for lshort-spanish Version: svn35050.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lshort-spanish-doc BuildArch: noarch AutoReqProv: No @@ -117313,7 +117314,7 @@ Provides: tex-spanish-mx = %{tl_version} License: LPPL Summary: Typeset Spanish as in Mexico Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -117334,7 +117335,7 @@ recent (version >=4.2b) releases of the Spanish option.) %package spanish-mx-doc Summary: Documentation for spanish-mx Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spanish-mx-doc BuildArch: noarch AutoReqProv: No @@ -117345,7 +117346,7 @@ Documentation for spanish-mx %package collection-latexextra Summary: LaTeX additional packages Version: svn41415 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latexrecommended @@ -118445,7 +118446,7 @@ A very large collection of add-on packages for LaTeX. %package collection-latexrecommended Summary: LaTeX recommended packages Version: svn35765.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -118513,7 +118514,7 @@ Provides: tex-crop = %{tl_version} License: LPPL Summary: Support for cropmarks Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118538,7 +118539,7 @@ vtex are provided. %package crop-doc Summary: Documentation for crop Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crop-doc BuildArch: noarch AutoReqProv: No @@ -118551,7 +118552,7 @@ Provides: tex-ctable = %{tl_version} License: LPPL Summary: Flexible typesetting of table and figure floats using key/value directives Version: svn38672 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118578,7 +118579,7 @@ extensions. %package ctable-doc Summary: Documentation for ctable Version: svn38672 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ctable-doc BuildArch: noarch AutoReqProv: No @@ -118591,7 +118592,7 @@ Provides: tex-eso-pic = %{tl_version} License: LPPL 1.2 Summary: Add picture commands (or backgrounds) to every page Version: svn37925.2.0g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118612,7 +118613,7 @@ places. %package eso-pic-doc Summary: Documentation for eso-pic Version: svn37925.2.0g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eso-pic-doc BuildArch: noarch AutoReqProv: No @@ -118625,7 +118626,7 @@ Provides: tex-euenc = %{tl_version} License: LPPL 1.3 Summary: Unicode font encoding definitions for XeTeX Version: svn19795.0.1h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118660,7 +118661,7 @@ use with the Latin Modern OpenType fonts. %package euenc-doc Summary: Documentation for euenc Version: svn19795.0.1h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-euenc-doc BuildArch: noarch AutoReqProv: No @@ -118673,7 +118674,7 @@ Provides: tex-euler = %{tl_version} License: LPPL Summary: Use AMS Euler fonts for math Version: svn17261.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118692,7 +118693,7 @@ Concrete book are supported by the beton package. %package euler-doc Summary: Documentation for euler Version: svn17261.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-euler-doc BuildArch: noarch AutoReqProv: No @@ -118705,7 +118706,7 @@ Provides: tex-extsizes = %{tl_version} License: LPPL Summary: Extend the standard classes' size options Version: svn17263.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118732,7 +118733,7 @@ extproc which provide for documents with a base font size from %package extsizes-doc Summary: Documentation for extsizes Version: svn17263.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-extsizes-doc BuildArch: noarch AutoReqProv: No @@ -118745,7 +118746,7 @@ Provides: tex-fancybox = %{tl_version} License: LPPL 1.2 Summary: Variants of \fbox and other games with boxes Version: svn18304.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118761,7 +118762,7 @@ flushleft, and flushright, lists, and pages. %package fancybox-doc Summary: Documentation for fancybox Version: svn18304.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancybox-doc BuildArch: noarch AutoReqProv: No @@ -118774,7 +118775,7 @@ Provides: tex-fancyref = %{tl_version} License: GPL+ Summary: A LaTeX package for fancy cross-referencing Version: svn15878.0.9c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118792,7 +118793,7 @@ label for a \section would be expected to be of the form %package fancyref-doc Summary: Documentation for fancyref Version: svn15878.0.9c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancyref-doc BuildArch: noarch AutoReqProv: No @@ -118805,7 +118806,7 @@ Provides: tex-fancyvrb = %{tl_version} License: LPPL Summary: Sophisticated verbatim text Version: svn18492.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118830,7 +118831,7 @@ environments (showing both result and verbatim source). %package fancyvrb-doc Summary: Documentation for fancyvrb Version: svn18492.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancyvrb-doc BuildArch: noarch AutoReqProv: No @@ -118843,7 +118844,7 @@ Provides: tex-float = %{tl_version} License: LPPL Summary: Improved interface for floating objects Version: svn15878.1.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118862,7 +118863,7 @@ package. You can select this as automatic default with %package float-doc Summary: Documentation for float Version: svn15878.1.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-float-doc BuildArch: noarch AutoReqProv: No @@ -118875,7 +118876,7 @@ Provides: tex-fontspec = %{tl_version} License: LPPL 1.3 Summary: Advanced font selection in XeLaTeX and LuaLaTeX Version: svn41262 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118906,7 +118907,7 @@ bundles from the LaTeX 3 development team. %package fontspec-doc Summary: Documentation for fontspec Version: svn41262 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontspec-doc BuildArch: noarch AutoReqProv: No @@ -118924,7 +118925,7 @@ Provides: tex-l3kernel = %{tl_version} License: LPPL 1.3 Summary: LaTeX3 programming conventions Version: svn41246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -118995,7 +118996,7 @@ Subversion (SVN) repository %package l3kernel-doc Summary: Documentation for l3kernel Version: svn41246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l3kernel-doc BuildArch: noarch AutoReqProv: No @@ -119008,7 +119009,7 @@ Provides: tex-l3packages = %{tl_version} License: LPPL 1.3 Summary: High-level LaTeX3 concepts Version: svn41246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119040,7 +119041,7 @@ later. %package l3packages-doc Summary: Documentation for l3packages Version: svn41246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l3packages-doc BuildArch: noarch AutoReqProv: No @@ -119053,7 +119054,7 @@ Provides: tex-fp = %{tl_version} License: LPPL Summary: Fixed point arithmetic Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119081,7 +119082,7 @@ point real numbers of high precision. %package fp-doc Summary: Documentation for fp Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fp-doc BuildArch: noarch AutoReqProv: No @@ -119094,7 +119095,7 @@ Provides: tex-index = %{tl_version} License: LPPL Summary: Extended index for LaTeX including multiple indexes Version: svn24099.4.1beta -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119115,7 +119116,7 @@ well as creating an index entry for it. %package index-doc Summary: Documentation for index Version: svn24099.4.1beta -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-index-doc BuildArch: noarch AutoReqProv: No @@ -119128,7 +119129,7 @@ Provides: tex-jknapltx = %{tl_version} License: GPL+ Summary: Miscellaneous packages by Joerg Knappen Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119166,7 +119167,7 @@ as appropriate; simple Young tableaux. %package jknapltx-doc Summary: Documentation for jknapltx Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jknapltx-doc BuildArch: noarch AutoReqProv: No @@ -119179,7 +119180,7 @@ Provides: tex-koma-script = %{tl_version} License: LPPL 1.3 Summary: A bundle of versatile classes and packages Version: svn41508 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119353,7 +119354,7 @@ Provides: tex-l3experimental = %{tl_version} License: LPPL 1.3 Summary: Experimental LaTeX3 concepts Version: svn41163 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119419,7 +119420,7 @@ on a snapshot of the SVN repository on 2015-09-11. %package l3experimental-doc Summary: Documentation for l3experimental Version: svn41163 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l3experimental-doc BuildArch: noarch AutoReqProv: No @@ -119432,7 +119433,7 @@ Provides: tex-lineno = %{tl_version} License: LPPL Summary: Line numbers on paragraphs Version: svn21442.4.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119455,7 +119456,7 @@ using the fnlineno package. %package lineno-doc Summary: Documentation for lineno Version: svn21442.4.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lineno-doc BuildArch: noarch AutoReqProv: No @@ -119468,7 +119469,7 @@ Provides: tex-listings = %{tl_version} License: LPPL 1.3 Summary: Typeset source code listings using LaTeX Version: svn37534.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119508,7 +119509,7 @@ command). %package listings-doc Summary: Documentation for listings Version: svn37534.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listings-doc BuildArch: noarch AutoReqProv: No @@ -119521,7 +119522,7 @@ Provides: tex-mathtools = %{tl_version} License: LPPL 1.3 Summary: Mathematical tools to use with amsmath Version: svn38833 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119556,7 +119557,7 @@ styles; and more... Mathtools requires mhsetup. %package mathtools-doc Summary: Documentation for mathtools Version: svn38833 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathtools-doc BuildArch: noarch AutoReqProv: No @@ -119569,7 +119570,7 @@ Provides: tex-mdwtools = %{tl_version} License: GPL+ Summary: Miscellaneous tools by Mark Wooding Version: svn15878.1.05.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119599,7 +119600,7 @@ syntax diagrams. %package mdwtools-doc Summary: Documentation for mdwtools Version: svn15878.1.05.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mdwtools-doc BuildArch: noarch AutoReqProv: No @@ -119612,7 +119613,7 @@ Provides: tex-metalogo = %{tl_version} License: LPPL Summary: Extended TeX logo macros Version: svn18611.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119630,7 +119631,7 @@ Written especially for XeLaTeX users. %package metalogo-doc Summary: Documentation for metalogo Version: svn18611.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metalogo-doc BuildArch: noarch AutoReqProv: No @@ -119643,7 +119644,7 @@ Provides: tex-microtype = %{tl_version} License: LPPL Summary: Subliminal refinements towards typographical perfection Version: svn41127 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119700,7 +119701,7 @@ other extensions. %package microtype-doc Summary: Documentation for microtype Version: svn41127 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-microtype-doc BuildArch: noarch AutoReqProv: No @@ -119713,7 +119714,7 @@ Provides: tex-ms = %{tl_version} License: LPPL Summary: Various LaTeX packages by Martin Schroder Version: svn29849.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119741,7 +119742,7 @@ ragged2e, typeset ragged text and allow hyphenation. %package ms-doc Summary: Documentation for ms Version: svn29849.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ms-doc BuildArch: noarch AutoReqProv: No @@ -119754,7 +119755,7 @@ Provides: tex-ntgclass = %{tl_version} License: LPPL 1.3 Summary: "European" versions of standard classes Version: svn15878.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119784,7 +119785,7 @@ were designed by members of the Dutch TeX Users Group NTG. %package ntgclass-doc Summary: Documentation for ntgclass Version: svn15878.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ntgclass-doc BuildArch: noarch AutoReqProv: No @@ -119797,7 +119798,7 @@ Provides: tex-parskip = %{tl_version} License: LPPL Summary: Layout with zero \parindent, non-zero \parskip Version: svn19963.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119812,7 +119813,7 @@ designed class) helps alleviate this untidiness %package parskip-doc Summary: Documentation for parskip Version: svn19963.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-parskip-doc BuildArch: noarch AutoReqProv: No @@ -119825,7 +119826,7 @@ Provides: tex-pdfpages = %{tl_version} License: LPPL 1.3 Summary: Include PDF documents in LaTeX Version: svn40638 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119859,7 +119860,7 @@ in addition to PDF files. %package pdfpages-doc Summary: Documentation for pdfpages Version: svn40638 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfpages-doc BuildArch: noarch AutoReqProv: No @@ -119873,7 +119874,7 @@ Provides: tex-powerdot = %{tl_version} License: LPPL 1.3 Summary: A presentation class Version: svn38984 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119927,7 +119928,7 @@ develop new styles. A LyX layout file is provided. %package powerdot-doc Summary: Documentation for powerdot Version: svn38984 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-powerdot-doc BuildArch: noarch AutoReqProv: No @@ -119940,7 +119941,7 @@ Provides: tex-psfrag = %{tl_version} License: psfrag Summary: Replace strings in encapsulated PostScript figures Version: svn15878.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119960,7 +119961,7 @@ construction, properly aligned, scaled, and/or rotated. %package psfrag-doc Summary: Documentation for psfrag Version: svn15878.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psfrag-doc BuildArch: noarch AutoReqProv: No @@ -119973,7 +119974,7 @@ Provides: tex-rcs = %{tl_version} License: GPL+ Summary: Use RCS (revision control system) tags in LaTeX documents Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -119997,7 +119998,7 @@ TeX, and test cases. %package rcs-doc Summary: Documentation for rcs Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rcs-doc BuildArch: noarch AutoReqProv: No @@ -120010,7 +120011,7 @@ Provides: tex-rotating = %{tl_version} License: LPPL Summary: Rotation tools, including rotated full-page floats Version: svn16832.2.16b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120034,7 +120035,7 @@ the rotating and float packages. %package rotating-doc Summary: Documentation for rotating Version: svn16832.2.16b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rotating-doc BuildArch: noarch AutoReqProv: No @@ -120047,7 +120048,7 @@ Provides: tex-sansmath = %{tl_version} License: Public Domain Summary: Maths in a sans font Version: svn17997.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120061,7 +120062,7 @@ The package defines a new math version sans, and a command %package sansmath-doc Summary: Documentation for sansmath Version: svn17997.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sansmath-doc BuildArch: noarch AutoReqProv: No @@ -120074,7 +120075,7 @@ Provides: tex-section = %{tl_version} License: LPPL Summary: Modifying section commands in LaTeX Version: svn20180.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120088,7 +120089,7 @@ manageable the business of configuring LaTeX output. %package section-doc Summary: Documentation for section Version: svn20180.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-section-doc BuildArch: noarch AutoReqProv: No @@ -120101,7 +120102,7 @@ Provides: tex-seminar = %{tl_version} License: LPPL 1.2 Summary: Make overhead slides Version: svn34011.1.62 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120143,7 +120144,7 @@ once part of the bundle, but now has a separate existence. %package seminar-doc Summary: Documentation for seminar Version: svn34011.1.62 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-seminar-doc BuildArch: noarch AutoReqProv: No @@ -120156,7 +120157,7 @@ Provides: tex-sepnum = %{tl_version} License: LPPL Summary: Print numbers in a "friendly" format Version: svn20186.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120175,7 +120176,7 @@ macros. %package sepnum-doc Summary: Documentation for sepnum Version: svn20186.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sepnum-doc BuildArch: noarch AutoReqProv: No @@ -120188,7 +120189,7 @@ Provides: tex-setspace = %{tl_version} License: Copyright only Summary: Set space between lines Version: svn24881.6.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120206,7 +120207,7 @@ spacings also available. %package setspace-doc Summary: Documentation for setspace Version: svn24881.6.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-setspace-doc BuildArch: noarch AutoReqProv: No @@ -120219,7 +120220,7 @@ Provides: tex-subfig = %{tl_version} License: LPPL Summary: Figures broken into subfigures Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120252,7 +120253,7 @@ subcaption package. %package subfig-doc Summary: Documentation for subfig Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subfig-doc BuildArch: noarch AutoReqProv: No @@ -120265,7 +120266,7 @@ Provides: tex-textcase = %{tl_version} License: LPPL Summary: Case conversion ignoring mathematics, etc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120287,7 +120288,7 @@ environment, one might say: %package textcase-doc Summary: Documentation for textcase Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textcase-doc BuildArch: noarch AutoReqProv: No @@ -120300,7 +120301,7 @@ Provides: tex-thumbpdf = %{tl_version} License: LPPL Summary: Thumbnails for pdfTeX and dvips/ps2pdf Version: svn34621.3.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120321,7 +120322,7 @@ LaTeX. %package thumbpdf-doc Summary: Documentation for thumbpdf Version: svn34621.3.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thumbpdf-doc BuildArch: noarch AutoReqProv: No @@ -120334,7 +120335,7 @@ Summary: Binaries for thumbpdf Version: svn6898.0 Requires: texlive-base Requires: texlive-thumbpdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description thumbpdf-bin @@ -120345,7 +120346,7 @@ Provides: tex-typehtml = %{tl_version} License: LPPL Summary: Typeset HTML directly from LaTeX Version: svn17134.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120360,7 +120361,7 @@ of the draft HTML3. %package typehtml-doc Summary: Documentation for typehtml Version: svn17134.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-typehtml-doc BuildArch: noarch AutoReqProv: No @@ -120373,7 +120374,7 @@ Provides: tex-underscore = %{tl_version} License: LPPL Summary: Control the behaviour of "_" in text Version: svn18261.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120392,7 +120393,7 @@ in maths mode is not affected). %package underscore-doc Summary: Documentation for underscore Version: svn18261.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-underscore-doc BuildArch: noarch AutoReqProv: No @@ -120403,7 +120404,7 @@ Documentation for underscore %package collection-pictures Summary: Graphics, pictures, diagrams Version: svn40656 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -120556,7 +120557,7 @@ Provides: tex-combinedgraphics = %{tl_version} License: GPL+ Summary: Include graphic (EPS or PDF)/LaTeX combinations Version: svn27198.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120583,7 +120584,7 @@ graphicx package). %package combinedgraphics-doc Summary: Documentation for combinedgraphics Version: svn27198.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-combinedgraphics-doc BuildArch: noarch AutoReqProv: No @@ -120596,7 +120597,7 @@ Provides: tex-curve = %{tl_version} License: LPPL Summary: A class for making curriculum vitae Version: svn20745.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120624,7 +120625,7 @@ support for use with AUC-TeX. %package curve-doc Summary: Documentation for curve Version: svn20745.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-curve-doc BuildArch: noarch AutoReqProv: No @@ -120637,7 +120638,7 @@ Provides: tex-curve2e = %{tl_version} License: LPPL 1.3 Summary: Extensions for package pict2e Version: svn37839.1.60 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120658,7 +120659,7 @@ direction at these nodes. %package curve2e-doc Summary: Documentation for curve2e Version: svn37839.1.60 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-curve2e-doc BuildArch: noarch AutoReqProv: No @@ -120671,7 +120672,7 @@ Provides: tex-curves = %{tl_version} License: LPPL Summary: Curves for LaTeX picture environment Version: svn15878.1.53 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120692,7 +120693,7 @@ selected by package options. %package curves-doc Summary: Documentation for curves Version: svn15878.1.53 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-curves-doc BuildArch: noarch AutoReqProv: No @@ -120705,7 +120706,7 @@ Provides: tex-dcpic = %{tl_version} License: LPPL 1.3 Summary: Commutative diagrams in a LaTeX and TeX documents Version: svn30206.5.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120724,7 +120725,7 @@ positioned in a Cartesian coordinate system. %package dcpic-doc Summary: Documentation for dcpic Version: svn30206.5.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dcpic-doc BuildArch: noarch AutoReqProv: No @@ -120737,7 +120738,7 @@ Provides: tex-diagmac2 = %{tl_version} License: LPPL Summary: Diagram macros, using pict2e Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120753,7 +120754,7 @@ removed. %package diagmac2-doc Summary: Documentation for diagmac2 Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-diagmac2-doc BuildArch: noarch AutoReqProv: No @@ -120764,7 +120765,7 @@ Documentation for diagmac2 %package doc-pictex-doc Summary: Documentation for doc-pictex Version: svn24927.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doc-pictex-doc BuildArch: noarch AutoReqProv: No @@ -120777,7 +120778,7 @@ Provides: tex-dottex = %{tl_version} License: GPL+ Summary: Use dot code in LaTeX Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120799,7 +120800,7 @@ intermediate process before a second LaTeX run. %package dottex-doc Summary: Documentation for dottex Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dottex-doc BuildArch: noarch AutoReqProv: No @@ -120812,7 +120813,7 @@ Provides: tex-dot2texi = %{tl_version} License: GPL+ Summary: Create graphs within LaTeX using the dot2tex tool Version: svn26237.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120832,7 +120833,7 @@ package. The process is automated if shell escape is enabled. %package dot2texi-doc Summary: Documentation for dot2texi Version: svn26237.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dot2texi-doc BuildArch: noarch AutoReqProv: No @@ -120845,7 +120846,7 @@ Provides: tex-dratex = %{tl_version} License: LPPL Summary: General drawing macros Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120862,7 +120863,7 @@ drawing package written entirely in TeX. %package dratex-doc Summary: Documentation for dratex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dratex-doc BuildArch: noarch AutoReqProv: No @@ -120875,7 +120876,7 @@ Provides: tex-drs = %{tl_version} License: LPPL 1.3 Summary: Typeset Discourse Representation Structures (DRS) Version: svn19232.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120894,7 +120895,7 @@ the covington package. %package drs-doc Summary: Documentation for drs Version: svn19232.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-drs-doc BuildArch: noarch AutoReqProv: No @@ -120907,7 +120908,7 @@ Provides: tex-duotenzor = %{tl_version} License: LPPL 1.3 Summary: Drawing package for circuit and duotensor diagrams Version: svn18728.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120922,7 +120923,7 @@ calling on TikZ for support. %package duotenzor-doc Summary: Documentation for duotenzor Version: svn18728.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-duotenzor-doc BuildArch: noarch AutoReqProv: No @@ -120935,7 +120936,7 @@ Provides: tex-eepic = %{tl_version} License: Public Domain Summary: Extensions to epic and the LaTeX drawing tools Version: svn15878.1.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120956,7 +120957,7 @@ commands. %package eepic-doc Summary: Documentation for eepic Version: svn15878.1.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eepic-doc BuildArch: noarch AutoReqProv: No @@ -120969,7 +120970,7 @@ Provides: tex-epspdf = %{tl_version} License: GPL+ Summary: Converter for PostScript, EPS and PDF Version: svn40917 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -120996,7 +120997,7 @@ fi %package epspdf-doc Summary: Documentation for epspdf Version: svn40917 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epspdf-doc BuildArch: noarch AutoReqProv: No @@ -121009,7 +121010,7 @@ Summary: Binaries for epspdf Version: svn29050.0 Requires: texlive-base Requires: texlive-epspdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description epspdf-bin @@ -121020,7 +121021,7 @@ Provides: tex-epspdfconversion = %{tl_version} License: LPPL Summary: On-the-fly conversion of EPS to PDF Version: svn18703.0.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121039,7 +121040,7 @@ to the epspdf converter. %package epspdfconversion-doc Summary: Documentation for epspdfconversion Version: svn18703.0.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epspdfconversion-doc BuildArch: noarch AutoReqProv: No @@ -121052,7 +121053,7 @@ Provides: tex-esk = %{tl_version} License: GPL+ Summary: Package to encapsulate Sketch files in LaTeX sources Version: svn18115.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121075,7 +121076,7 @@ it. %package esk-doc Summary: Documentation for esk Version: svn18115.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esk-doc BuildArch: noarch AutoReqProv: No @@ -121088,7 +121089,7 @@ Provides: tex-fast-diagram = %{tl_version} License: LPPL 1.3 Summary: Easy generation of FAST diagrams Version: svn29264.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121107,7 +121108,7 @@ analysis techniques in design methods. %package fast-diagram-doc Summary: Documentation for fast-diagram Version: svn29264.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fast-diagram-doc BuildArch: noarch AutoReqProv: No @@ -121120,7 +121121,7 @@ Provides: tex-fig4latex = %{tl_version} License: GPLv3+ Summary: Management of figures for large LaTeX documents Version: svn26313.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121137,7 +121138,7 @@ method. An example document (with its output) is provided. %package fig4latex-doc Summary: Documentation for fig4latex Version: svn26313.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fig4latex-doc BuildArch: noarch AutoReqProv: No @@ -121150,7 +121151,7 @@ Summary: Binaries for fig4latex Version: svn14752.0 Requires: texlive-base Requires: texlive-fig4latex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description fig4latex-bin @@ -121161,7 +121162,7 @@ Provides: tex-fitbox = %{tl_version} License: LPPL 1.3 Summary: Fit graphics on a page Version: svn38139.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121178,7 +121179,7 @@ page, the box is moved to the next one. %package fitbox-doc Summary: Documentation for fitbox Version: svn38139.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fitbox-doc BuildArch: noarch AutoReqProv: No @@ -121191,7 +121192,7 @@ Provides: tex-flowchart = %{tl_version} License: LPPL 1.3 Summary: Shapes for drawing flowcharts, using TikZ Version: svn36572.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121209,7 +121210,7 @@ makeshape package. %package flowchart-doc Summary: Documentation for flowchart Version: svn36572.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flowchart-doc BuildArch: noarch AutoReqProv: No @@ -121222,7 +121223,7 @@ Provides: tex-forest = %{tl_version} License: LPPL 1.3 Summary: Drawing (linguistic) trees Version: svn40367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121249,7 +121250,7 @@ changes. %package forest-doc Summary: Documentation for forest Version: svn40367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-forest-doc BuildArch: noarch AutoReqProv: No @@ -121262,7 +121263,7 @@ Provides: tex-genealogytree = %{tl_version} License: LPPL 1.3 Summary: Pedigree and genealogical tree diagrams Version: svn38426 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121296,7 +121297,7 @@ be customized, e.g., to prioritize certain paths. %package genealogytree-doc Summary: Documentation for genealogytree Version: svn38426 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-genealogytree-doc BuildArch: noarch AutoReqProv: No @@ -121309,7 +121310,7 @@ Provides: tex-getmap = %{tl_version} License: LPPL Summary: Download OpenStreetMap maps for use in documents Version: svn35355.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121334,7 +121335,7 @@ provided. %package getmap-doc Summary: Documentation for getmap Version: svn35355.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-getmap-doc BuildArch: noarch AutoReqProv: No @@ -121347,7 +121348,7 @@ Summary: Binaries for getmap Version: svn34971.0 Requires: texlive-base Requires: texlive-getmap -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description getmap-bin @@ -121358,7 +121359,7 @@ Provides: tex-gincltex = %{tl_version} License: LPPL 1.3 Summary: Include TeX files as graphics (.tex support for \includegraphics) Version: svn23835.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121380,7 +121381,7 @@ pacakge for other output formats. %package gincltex-doc Summary: Documentation for gincltex Version: svn23835.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gincltex-doc BuildArch: noarch AutoReqProv: No @@ -121393,7 +121394,7 @@ Provides: tex-gnuplottex = %{tl_version} License: GPLv2+ Summary: Embed Gnuplot commands in LaTeX documents Version: svn39108 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121416,7 +121417,7 @@ run the LaTeX job. %package gnuplottex-doc Summary: Documentation for gnuplottex Version: svn39108 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gnuplottex-doc BuildArch: noarch AutoReqProv: No @@ -121429,7 +121430,7 @@ Provides: tex-gradientframe = %{tl_version} License: LPPL 1.3 Summary: Simple gradient frames around objects Version: svn21387.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121446,7 +121447,7 @@ package. %package gradientframe-doc Summary: Documentation for gradientframe Version: svn21387.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gradientframe-doc BuildArch: noarch AutoReqProv: No @@ -121459,7 +121460,7 @@ Provides: tex-grafcet = %{tl_version} License: LPPL Summary: Draw Grafcet/SFC with TikZ Version: svn22509.1.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121479,7 +121480,7 @@ partir de Pgf/TikZ. %package grafcet-doc Summary: Documentation for grafcet Version: svn22509.1.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grafcet-doc BuildArch: noarch AutoReqProv: No @@ -121492,7 +121493,7 @@ Provides: tex-graphviz = %{tl_version} License: LPPL 1.3 Summary: Write graphviz (dot+neato) inline in LaTeX documents Version: svn31517.0.94 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121508,7 +121509,7 @@ document. %package graphviz-doc Summary: Documentation for graphviz Version: svn31517.0.94 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphviz-doc BuildArch: noarch AutoReqProv: No @@ -121521,7 +121522,7 @@ Provides: tex-harveyballs = %{tl_version} License: GPLv3+ Summary: Create Harvey Balls using TikZ Version: svn32003.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121536,7 +121537,7 @@ values from "none" to "full"). %package harveyballs-doc Summary: Documentation for harveyballs Version: svn32003.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harveyballs-doc BuildArch: noarch AutoReqProv: No @@ -121549,7 +121550,7 @@ Provides: tex-here = %{tl_version} License: Public Domain Summary: Emulation of obsolete package for "here" floats Version: svn16135.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121569,7 +121570,7 @@ acceptable framework. %package here-doc Summary: Documentation for here Version: svn16135.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-here-doc BuildArch: noarch AutoReqProv: No @@ -121582,7 +121583,7 @@ Provides: tex-hf-tikz = %{tl_version} License: LPPL 1.3 Summary: A simple way to highlight formulas and formula parts Version: svn34733.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121599,7 +121600,7 @@ parts in both documents and presentations, us TikZ. %package hf-tikz-doc Summary: Documentation for hf-tikz Version: svn34733.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hf-tikz-doc BuildArch: noarch AutoReqProv: No @@ -121612,7 +121613,7 @@ Provides: tex-hobby = %{tl_version} License: LPPL 1.3 Summary: An implementation of Hobby's algorithm for PGF/TikZ Version: svn39793 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121633,7 +121634,7 @@ implementation is in LaTeX3. %package hobby-doc Summary: Documentation for hobby Version: svn39793 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hobby-doc BuildArch: noarch AutoReqProv: No @@ -121646,7 +121647,7 @@ Provides: tex-hvfloat = %{tl_version} License: LPPL Summary: Rotating caption and object of floats independently Version: svn25570.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121670,7 +121671,7 @@ here. %package hvfloat-doc Summary: Documentation for hvfloat Version: svn25570.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hvfloat-doc BuildArch: noarch AutoReqProv: No @@ -121683,7 +121684,7 @@ Provides: tex-knitting = %{tl_version} License: LPPL 1.3 Summary: Produce knitting charts, in Plain TeX or LaTeX Version: svn19595.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121737,7 +121738,7 @@ source and in Adobe Type 1 format. %package knitting-doc Summary: Documentation for knitting Version: svn19595.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-knitting-doc BuildArch: noarch AutoReqProv: No @@ -121750,7 +121751,7 @@ Provides: tex-knittingpattern = %{tl_version} License: LPPL 1.3 Summary: Create knitting patterns Version: svn17205.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121773,7 +121774,7 @@ concentrate on the pattern. %package knittingpattern-doc Summary: Documentation for knittingpattern Version: svn17205.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-knittingpattern-doc BuildArch: noarch AutoReqProv: No @@ -121786,7 +121787,7 @@ Provides: tex-lapdf = %{tl_version} License: GPL+ Summary: PDF drawing directly in TeX documents Version: svn23806.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121809,7 +121810,7 @@ otherwise only depends on the calc package. %package lapdf-doc Summary: Documentation for lapdf Version: svn23806.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lapdf-doc BuildArch: noarch AutoReqProv: No @@ -121822,7 +121823,7 @@ Provides: tex-latex-make = %{tl_version} License: GPL+ Summary: Easy compiling of complex (and simple) LaTeX documents Version: svn39678 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121858,7 +121859,7 @@ requires GNUmake (>= 3.81). %package latex-make-doc Summary: Documentation for latex-make Version: svn39678 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latex-make-doc BuildArch: noarch AutoReqProv: No @@ -121871,7 +121872,7 @@ Provides: tex-lpic = %{tl_version} License: LPPL 1.3 Summary: Put LaTeX material over included graphics Version: svn20843.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121897,7 +121898,7 @@ adjustment of positions of the annotations. %package lpic-doc Summary: Documentation for lpic Version: svn20843.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lpic-doc BuildArch: noarch AutoReqProv: No @@ -121910,7 +121911,7 @@ Provides: tex-makeshape = %{tl_version} License: LPPL 1.3 Summary: Declare new PGF shapes Version: svn28973.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121928,7 +121929,7 @@ definition of anchor points. %package makeshape-doc Summary: Documentation for makeshape Version: svn28973.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makeshape-doc BuildArch: noarch AutoReqProv: No @@ -121941,7 +121942,7 @@ Provides: tex-mathspic = %{tl_version} License: LPPL Summary: A Perl filter program for use with PiCTeX Version: svn31957.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -121970,7 +121971,7 @@ new Perl version are available. %package mathspic-doc Summary: Documentation for mathspic Version: svn31957.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathspic-doc BuildArch: noarch AutoReqProv: No @@ -121983,7 +121984,7 @@ Summary: Binaries for mathspic Version: svn23661.0 Requires: texlive-base Requires: texlive-mathspic -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mathspic-bin @@ -121994,7 +121995,7 @@ Provides: tex-miniplot = %{tl_version} License: LPPL Summary: A package for easy figure arrangement Version: svn17483.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122019,7 +122020,7 @@ boxes. %package miniplot-doc Summary: Documentation for miniplot Version: svn17483.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-miniplot-doc BuildArch: noarch AutoReqProv: No @@ -122032,7 +122033,7 @@ Provides: tex-mkpic = %{tl_version} License: GPL+ Summary: Perl interface to mfpic Version: svn33700.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122050,7 +122051,7 @@ see the file mkpicdoc.pdf, which is part of the distribution. %package mkpic-doc Summary: Documentation for mkpic Version: svn33700.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mkpic-doc BuildArch: noarch AutoReqProv: No @@ -122063,7 +122064,7 @@ Summary: Binaries for mkpic Version: svn33688.0 Requires: texlive-base Requires: texlive-mkpic -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description mkpic-bin @@ -122074,7 +122075,7 @@ Provides: tex-modiagram = %{tl_version} License: LPPL 1.3 Summary: Drawing molecular orbital diagrams Version: svn38448 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122098,7 +122099,7 @@ LaTeX 3 experimental distribution. %package modiagram-doc Summary: Documentation for modiagram Version: svn38448 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-modiagram-doc BuildArch: noarch AutoReqProv: No @@ -122111,7 +122112,7 @@ Provides: tex-neuralnetwork = %{tl_version} License: GPL+ Summary: Graph-drawing for neural networks Version: svn31500.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122131,7 +122132,7 @@ facilities designed for neural network diagrams. %package neuralnetwork-doc Summary: Documentation for neuralnetwork Version: svn31500.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-neuralnetwork-doc BuildArch: noarch AutoReqProv: No @@ -122144,7 +122145,7 @@ Provides: tex-numericplots = %{tl_version} License: GPLv3+ Summary: Plot numeric data (including Matlab export) using PSTricks Version: svn31729.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122177,7 +122178,7 @@ Matlab results to plottable data. %package numericplots-doc Summary: Documentation for numericplots Version: svn31729.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-numericplots-doc BuildArch: noarch AutoReqProv: No @@ -122190,7 +122191,7 @@ Provides: tex-pb-diagram = %{tl_version} License: GPLv2+ Summary: A commutative diagram package using LAMSTeX or Xy-pic fonts Version: svn15878.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122206,7 +122207,7 @@ pb-diagram package %package pb-diagram-doc Summary: Documentation for pb-diagram Version: svn15878.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pb-diagram-doc BuildArch: noarch AutoReqProv: No @@ -122219,7 +122220,7 @@ Provides: tex-petri-nets = %{tl_version} License: GPL+ Summary: A set TeX/LaTeX packages for drawing Petri nets Version: svn39165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122242,7 +122243,7 @@ and a third that combines the other two. %package petri-nets-doc Summary: Documentation for petri-nets Version: svn39165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-petri-nets-doc BuildArch: noarch AutoReqProv: No @@ -122255,7 +122256,7 @@ Summary: Binaries for petri-nets Version: svn39165 Requires: texlive-base Requires: texlive-petri-nets -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description petri-nets-bin @@ -122266,7 +122267,7 @@ Provides: tex-pgf-blur = %{tl_version} License: LPPL Summary: PGF/TikZ package for "blurred" shadows Version: svn31693.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122282,7 +122283,7 @@ PSTricks. %package pgf-blur-doc Summary: Documentation for pgf-blur Version: svn31693.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgf-blur-doc BuildArch: noarch AutoReqProv: No @@ -122295,7 +122296,7 @@ Provides: tex-pgf-soroban = %{tl_version} License: LPPL Summary: Create images of the soroban using TikZ/PGF Version: svn32269.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122312,7 +122313,7 @@ The package makes it possible to create pictures of the soroban %package pgf-soroban-doc Summary: Documentation for pgf-soroban Version: svn32269.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgf-soroban-doc BuildArch: noarch AutoReqProv: No @@ -122325,7 +122326,7 @@ Provides: tex-pgf-umlcd = %{tl_version} License: GPL+ Summary: Some LaTeX macros for UML Class Diagrams Version: svn33307.0.2.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122339,7 +122340,7 @@ Some LaTeX macros for UML Class Diagrams.pgf %package pgf-umlcd-doc Summary: Documentation for pgf-umlcd Version: svn33307.0.2.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgf-umlcd-doc BuildArch: noarch AutoReqProv: No @@ -122352,7 +122353,7 @@ Provides: tex-pgf-umlsd = %{tl_version} License: GPL+ Summary: Draw UML Sequence Diagrams Version: svn33045.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122367,7 +122368,7 @@ LaTeX macros to draw UML diagrams using pgf %package pgf-umlsd-doc Summary: Documentation for pgf-umlsd Version: svn33045.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgf-umlsd-doc BuildArch: noarch AutoReqProv: No @@ -122380,7 +122381,7 @@ Provides: tex-pgfgantt = %{tl_version} License: LPPL 1.3 Summary: Draw Gantt charts with TikZ Version: svn31037.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122398,7 +122399,7 @@ elements. %package pgfgantt-doc Summary: Documentation for pgfgantt Version: svn31037.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgfgantt-doc BuildArch: noarch AutoReqProv: No @@ -122411,7 +122412,7 @@ Provides: tex-pgfkeyx = %{tl_version} License: LPPL 1.3 Summary: Extended and more robust version of pgfkeys Version: svn26093.0.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122430,7 +122431,7 @@ can offer. %package pgfkeyx-doc Summary: Documentation for pgfkeyx Version: svn26093.0.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgfkeyx-doc BuildArch: noarch AutoReqProv: No @@ -122443,7 +122444,7 @@ Provides: tex-pgfmolbio = %{tl_version} License: LPPL 1.3 Summary: Draw graphs typically found in molecular biology texts Version: svn35152.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122465,7 +122466,7 @@ sequencing chromatograms and protein domain diagrams. %package pgfmolbio-doc Summary: Documentation for pgfmolbio Version: svn35152.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgfmolbio-doc BuildArch: noarch AutoReqProv: No @@ -122478,7 +122479,7 @@ Provides: tex-pgfopts = %{tl_version} License: LPPL 1.3 Summary: LaTeX package options with pgfkeys Version: svn34573.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122498,7 +122499,7 @@ package. %package pgfopts-doc Summary: Documentation for pgfopts Version: svn34573.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgfopts-doc BuildArch: noarch AutoReqProv: No @@ -122511,7 +122512,7 @@ Provides: tex-pgfplots = %{tl_version} License: GPLv3+ Summary: Create normal/logarithmic plots in two and three dimensions Version: svn40966 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122619,7 +122620,7 @@ LaTeX/TeX/ConTeXt. %package pgfplots-doc Summary: Documentation for pgfplots Version: svn40966 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pgfplots-doc BuildArch: noarch AutoReqProv: No @@ -122632,7 +122633,7 @@ Provides: tex-picinpar = %{tl_version} License: GPL+ Summary: Insert pictures into paragraphs Version: svn20374.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122649,7 +122650,7 @@ is recommended instead. %package picinpar-doc Summary: Documentation for picinpar Version: svn20374.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-picinpar-doc BuildArch: noarch AutoReqProv: No @@ -122662,7 +122663,7 @@ Provides: tex-pict2e = %{tl_version} License: LPPL Summary: New implementation of picture commands Version: svn39591 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122696,7 +122697,7 @@ comparison with the LaTeX picture environment. %package pict2e-doc Summary: Documentation for pict2e Version: svn39591 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pict2e-doc BuildArch: noarch AutoReqProv: No @@ -122709,7 +122710,7 @@ Provides: tex-pictex = %{tl_version} License: LPPL Summary: Picture drawing macros for TeX and LaTeX Version: svn21943.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122743,7 +122744,7 @@ be used. %package pictex-doc Summary: Documentation for pictex Version: svn21943.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pictex-doc BuildArch: noarch AutoReqProv: No @@ -122756,7 +122757,7 @@ Provides: tex-pictex2 = %{tl_version} License: LPPL Summary: Adds relative coordinates and improves the \plot command Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122776,7 +122777,7 @@ Provides: tex-pinlabel = %{tl_version} License: LPPL Summary: A TeX labelling package Version: svn24769.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122796,7 +122797,7 @@ object labelled. %package pinlabel-doc Summary: Documentation for pinlabel Version: svn24769.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pinlabel-doc BuildArch: noarch AutoReqProv: No @@ -122809,7 +122810,7 @@ Provides: tex-pmgraph = %{tl_version} License: GPL+ Summary: "Poor man's" graphics Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122823,7 +122824,7 @@ wider range of vectors, and a lot more box frame styles. %package pmgraph-doc Summary: Documentation for pmgraph Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pmgraph-doc BuildArch: noarch AutoReqProv: No @@ -122836,7 +122837,7 @@ Provides: tex-prerex = %{tl_version} License: GPL+ Summary: Interactive editor and macro support for prerequisite charts Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122863,7 +122864,7 @@ lightweight Qt-4 and poppler-based prerex-enabled PDF viewer. %package prerex-doc Summary: Documentation for prerex Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-prerex-doc BuildArch: noarch AutoReqProv: No @@ -122876,7 +122877,7 @@ Provides: tex-productbox = %{tl_version} License: Copyright only Summary: Typeset a three-dimensional product box Version: svn20886.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122896,7 +122897,7 @@ and TikZ. %package productbox-doc Summary: Documentation for productbox Version: svn20886.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-productbox-doc BuildArch: noarch AutoReqProv: No @@ -122909,7 +122910,7 @@ Provides: tex-pxpgfmark = %{tl_version} License: MIT Summary: e-pTeX driver for PGF inter-picture connections Version: svn30212.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122924,7 +122925,7 @@ package uses existing features of dvipdfmx to fix this problem %package pxpgfmark-doc Summary: Documentation for pxpgfmark Version: svn30212.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxpgfmark-doc BuildArch: noarch AutoReqProv: No @@ -122937,7 +122938,7 @@ Provides: tex-qcircuit = %{tl_version} License: GPLv2+ Summary: Macros to generate quantum ciruits Version: svn40319 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122953,7 +122954,7 @@ offering macros designed to help users generate circuits. %package qcircuit-doc Summary: Documentation for qcircuit Version: svn40319 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qcircuit-doc BuildArch: noarch AutoReqProv: No @@ -122966,7 +122967,7 @@ Provides: tex-qrcode = %{tl_version} License: LPPL 1.3 Summary: Generate QR codes in LaTeX Version: svn36065.1.51 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -122982,7 +122983,7 @@ without the need for PSTricks or any other graphical package. %package qrcode-doc Summary: Documentation for qrcode Version: svn36065.1.51 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qrcode-doc BuildArch: noarch AutoReqProv: No @@ -122995,7 +122996,7 @@ Provides: tex-randbild = %{tl_version} License: LPPL Summary: Marginal pictures Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123012,7 +123013,7 @@ coordinate system). %package randbild-doc Summary: Documentation for randbild Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-randbild-doc BuildArch: noarch AutoReqProv: No @@ -123025,7 +123026,7 @@ Provides: tex-randomwalk = %{tl_version} License: LPPL Summary: Random walks using TikZ Version: svn38418 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123046,7 +123047,7 @@ graphical output. %package randomwalk-doc Summary: Documentation for randomwalk Version: svn38418 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-randomwalk-doc BuildArch: noarch AutoReqProv: No @@ -123059,7 +123060,7 @@ Provides: tex-reotex = %{tl_version} License: LPPL Summary: Draw Reo Channels and Circuits Version: svn34924.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123076,7 +123077,7 @@ Circuits. The package requires PGF/TikZ support. %package reotex-doc Summary: Documentation for reotex Version: svn34924.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-reotex-doc BuildArch: noarch AutoReqProv: No @@ -123089,7 +123090,7 @@ Provides: tex-rviewport = %{tl_version} License: LPPL Summary: Relative Viewport for Graphics Inclusion Version: svn23739.v1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123115,7 +123116,7 @@ of the image. %package rviewport-doc Summary: Documentation for rviewport Version: svn23739.v1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rviewport-doc BuildArch: noarch AutoReqProv: No @@ -123128,7 +123129,7 @@ Provides: tex-sa-tikz = %{tl_version} License: LPPL 1.3 Summary: TikZ library to draw switching architectures Version: svn32815.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123144,7 +123145,7 @@ switching architectures and to customize their aspect. %package sa-tikz-doc Summary: Documentation for sa-tikz Version: svn32815.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sa-tikz-doc BuildArch: noarch AutoReqProv: No @@ -123157,7 +123158,7 @@ Provides: tex-schemabloc = %{tl_version} License: LPPL Summary: Draw block diagrams, using Tikz Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123174,7 +123175,7 @@ translation" of this package.) %package schemabloc-doc Summary: Documentation for schemabloc Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-schemabloc-doc BuildArch: noarch AutoReqProv: No @@ -123187,7 +123188,7 @@ Provides: tex-setdeck = %{tl_version} License: GPLv3+ Summary: Typeset cards for Set Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123202,7 +123203,7 @@ The package will typeset cards for use in a game of Set. %package setdeck-doc Summary: Documentation for setdeck Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-setdeck-doc BuildArch: noarch AutoReqProv: No @@ -123215,7 +123216,7 @@ Provides: tex-smartdiagram = %{tl_version} License: LPPL 1.3 Summary: Generate diagrams from lists Version: svn30046.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123237,7 +123238,7 @@ for simple documents and for presentations. %package smartdiagram-doc Summary: Documentation for smartdiagram Version: svn30046.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-smartdiagram-doc BuildArch: noarch AutoReqProv: No @@ -123250,7 +123251,7 @@ Provides: tex-spath3 = %{tl_version} License: LPPL 1.3 Summary: Manipulate "soft paths" in PGF Version: svn39794 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123271,7 +123272,7 @@ drawing calligraphic paths and for drawing knot diagrams. %package spath3-doc Summary: Documentation for spath3 Version: svn39794 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spath3-doc BuildArch: noarch AutoReqProv: No @@ -123284,7 +123285,7 @@ Provides: tex-swimgraf = %{tl_version} License: LPPL Summary: Graphical/textual representations of swimming performances Version: svn25446.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123315,7 +123316,7 @@ colour output device. %package swimgraf-doc Summary: Documentation for swimgraf Version: svn25446.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-swimgraf-doc BuildArch: noarch AutoReqProv: No @@ -123328,7 +123329,7 @@ Provides: tex-texdraw = %{tl_version} License: CC-BY Summary: Graphical macros, using embedded PostScript Version: svn31894.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123365,7 +123366,7 @@ fi %package texdraw-doc Summary: Documentation for texdraw Version: svn31894.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texdraw-doc BuildArch: noarch AutoReqProv: No @@ -123378,7 +123379,7 @@ Provides: tex-ticollege = %{tl_version} License: LPPL Summary: Graphical representation of keys on a standard scientific calculator Version: svn36306.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123402,7 +123403,7 @@ the content of screens and of menu items. %package ticollege-doc Summary: Documentation for ticollege Version: svn36306.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ticollege-doc BuildArch: noarch AutoReqProv: No @@ -123413,7 +123414,7 @@ Documentation for ticollege %package tipfr-doc Summary: Documentation for tipfr Version: svn38646 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tipfr-doc BuildArch: noarch AutoReqProv: No @@ -123426,7 +123427,7 @@ Provides: tex-tikz-3dplot = %{tl_version} License: LPPL 1.3 Summary: Coordinate transformation styles for 3d plotting in TikZ Version: svn25087.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123450,7 +123451,7 @@ expressed as parametric functions of polar angles. %package tikz-3dplot-doc Summary: Documentation for tikz-3dplot Version: svn25087.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-3dplot-doc BuildArch: noarch AutoReqProv: No @@ -123463,7 +123464,7 @@ Provides: tex-tikz-bayesnet = %{tl_version} License: LPPL 1.3 Summary: Draw Bayesian networks, graphical models and directed factor graphs Version: svn38295.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123478,7 +123479,7 @@ graphs in LaTeX. %package tikz-bayesnet-doc Summary: Documentation for tikz-bayesnet Version: svn38295.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-bayesnet-doc BuildArch: noarch AutoReqProv: No @@ -123491,7 +123492,7 @@ Provides: tex-tikz-cd = %{tl_version} License: GPLv3+ Summary: Create commutative diagrams with TikZ Version: svn35485.0.9e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123513,7 +123514,7 @@ typeface. %package tikz-cd-doc Summary: Documentation for tikz-cd Version: svn35485.0.9e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-cd-doc BuildArch: noarch AutoReqProv: No @@ -123526,7 +123527,7 @@ Provides: tex-tikz-dependency = %{tl_version} License: (GPLv2 or LPPL) and (GFDL or LPPL) Summary: A library for drawing dependency graphs Version: svn25156.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123545,7 +123546,7 @@ feel of the graphs. %package tikz-dependency-doc Summary: Documentation for tikz-dependency Version: svn25156.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-dependency-doc BuildArch: noarch AutoReqProv: No @@ -123558,7 +123559,7 @@ Provides: tex-tikz-dimline = %{tl_version} License: WTFPL Summary: Technical dimension lines using PGF/TikZ Version: svn35805.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123576,7 +123577,7 @@ contributions posted on stackexchange. %package tikz-dimline-doc Summary: Documentation for tikz-dimline Version: svn35805.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-dimline-doc BuildArch: noarch AutoReqProv: No @@ -123589,7 +123590,7 @@ Provides: tex-tikz-inet = %{tl_version} License: LPPL Summary: Draw interaction nets with TikZ Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123604,7 +123605,7 @@ The package extends TikZ with macros to draw interaction nets. %package tikz-inet-doc Summary: Documentation for tikz-inet Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-inet-doc BuildArch: noarch AutoReqProv: No @@ -123617,7 +123618,7 @@ Provides: tex-tikz-opm = %{tl_version} License: LPPL 1.3 Summary: Typeset OPM diagrams Version: svn32769.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123634,7 +123635,7 @@ and pgf/TikZ. %package tikz-opm-doc Summary: Documentation for tikz-opm Version: svn32769.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-opm-doc BuildArch: noarch AutoReqProv: No @@ -123647,7 +123648,7 @@ Provides: tex-tikz-palattice = %{tl_version} License: LPPL 1.3 Summary: Draw particle accelerator lattices with TikZ Version: svn36554.2.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123674,7 +123675,7 @@ facility. %package tikz-palattice-doc Summary: Documentation for tikz-palattice Version: svn36554.2.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-palattice-doc BuildArch: noarch AutoReqProv: No @@ -123687,7 +123688,7 @@ Provides: tex-tikz-qtree = %{tl_version} License: GPL+ Summary: Use existing qtree syntax for trees in TikZ Version: svn26108.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123715,7 +123716,7 @@ pdfTeX and XeTeX. %package tikz-qtree-doc Summary: Documentation for tikz-qtree Version: svn26108.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-qtree-doc BuildArch: noarch AutoReqProv: No @@ -123728,7 +123729,7 @@ Provides: tex-tikz-timing = %{tl_version} License: LPPL Summary: Easy generation of timing diagrams as tikz pictures Version: svn21013.0.7d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123765,7 +123766,7 @@ larger timing diagrams. %package tikz-timing-doc Summary: Documentation for tikz-timing Version: svn21013.0.7d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikz-timing-doc BuildArch: noarch AutoReqProv: No @@ -123779,7 +123780,7 @@ Provides: tex-svn-prov = %{tl_version} License: LPPL Summary: Subversion variants of \Provides... macros Version: svn18017.3.1862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123796,7 +123797,7 @@ optional argument. %package svn-prov-doc Summary: Documentation for svn-prov Version: svn18017.3.1862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svn-prov-doc BuildArch: noarch AutoReqProv: No @@ -123809,7 +123810,7 @@ Provides: tex-tikzinclude = %{tl_version} License: LPPL 1.3 Summary: Import TikZ images from colletions Version: svn28715.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123826,7 +123827,7 @@ image from a file holding multiple images. %package tikzinclude-doc Summary: Documentation for tikzinclude Version: svn28715.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzinclude-doc BuildArch: noarch AutoReqProv: No @@ -123839,7 +123840,7 @@ Provides: tex-tikzmark = %{tl_version} License: LPPL 1.3 Summary: Use TikZ's method of remembering a position on a page Version: svn40372 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123855,7 +123856,7 @@ exclusively) with TikZ. %package tikzmark-doc Summary: Documentation for tikzmark Version: svn40372 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzmark-doc BuildArch: noarch AutoReqProv: No @@ -123868,7 +123869,7 @@ Provides: tex-tikzorbital = %{tl_version} License: LPPL Summary: Atomic and molecular orbitals using TiKZ Version: svn36439.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123884,7 +123885,7 @@ orbital diagrams. %package tikzorbital-doc Summary: Documentation for tikzorbital Version: svn36439.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzorbital-doc BuildArch: noarch AutoReqProv: No @@ -123897,7 +123898,7 @@ Provides: tex-tikzpagenodes = %{tl_version} License: LPPL Summary: A single TikZ node for the whole page Version: svn27723.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123914,7 +123915,7 @@ inspired by the 'current page' node defined by PGF/TikZ itself. %package tikzpagenodes-doc Summary: Documentation for tikzpagenodes Version: svn27723.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzpagenodes-doc BuildArch: noarch AutoReqProv: No @@ -123927,7 +123928,7 @@ Provides: tex-tikzpfeile = %{tl_version} License: LPPL Summary: Draw arrows using PGF/TikZ Version: svn25777.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123946,7 +123947,7 @@ create all arrows using PGF/TikZ, so as to avoid the problem. %package tikzpfeile-doc Summary: Documentation for tikzpfeile Version: svn25777.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzpfeile-doc BuildArch: noarch AutoReqProv: No @@ -123959,7 +123960,7 @@ Provides: tex-tikzposter = %{tl_version} License: LPPL 1.2 Summary: Create scientific posters using TikZ Version: svn32732.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -123984,7 +123985,7 @@ automated. %package tikzposter-doc Summary: Documentation for tikzposter Version: svn32732.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzposter-doc BuildArch: noarch AutoReqProv: No @@ -123997,7 +123998,7 @@ Provides: tex-tikzscale = %{tl_version} License: LPPL 1.3 Summary: Resize pictures while respecting text size Version: svn30637.0.2.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124018,7 +124019,7 @@ a given width or height without changing the text size. %package tikzscale-doc Summary: Documentation for tikzscale Version: svn30637.0.2.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzscale-doc BuildArch: noarch AutoReqProv: No @@ -124031,7 +124032,7 @@ Provides: tex-tikzsymbols = %{tl_version} License: LPPL 1.3 Summary: Some symbols created using TikZ Version: svn40236 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124051,7 +124052,7 @@ trees. %package tikzsymbols-doc Summary: Documentation for tikzsymbols Version: svn40236 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tikzsymbols-doc BuildArch: noarch AutoReqProv: No @@ -124064,7 +124065,7 @@ Provides: tex-timing-diagrams = %{tl_version} License: LPPL 1.3 Summary: Draw timing diagrams Version: svn31491.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124081,7 +124082,7 @@ but the source and the examples file should be of some use. %package timing-diagrams-doc Summary: Documentation for timing-diagrams Version: svn31491.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-timing-diagrams-doc BuildArch: noarch AutoReqProv: No @@ -124094,7 +124095,7 @@ Provides: tex-tqft = %{tl_version} License: LPPL 1.3 Summary: Drawing TQFT diagrams with TikZ/PGF Version: svn33411.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124113,7 +124114,7 @@ used in TQFT and other mathematical diagrams. %package tqft-doc Summary: Documentation for tqft Version: svn33411.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tqft-doc BuildArch: noarch AutoReqProv: No @@ -124126,7 +124127,7 @@ Provides: tex-tkz-base = %{tl_version} License: LPPL Summary: Tools for drawing with a cartesian coordinate system Version: svn22961.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124155,7 +124156,7 @@ with TikZ. %package tkz-base-doc Summary: Documentation for tkz-base Version: svn22961.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-base-doc BuildArch: noarch AutoReqProv: No @@ -124168,7 +124169,7 @@ Provides: tex-tkz-berge = %{tl_version} License: LPPL Summary: Macros for drawing graphs of graph theory Version: svn22891.1.00c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124185,7 +124186,7 @@ classic graphs of graph theory, or to make other graphs. %package tkz-berge-doc Summary: Documentation for tkz-berge Version: svn22891.1.00c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-berge-doc BuildArch: noarch AutoReqProv: No @@ -124198,7 +124199,7 @@ Provides: tex-tkz-doc = %{tl_version} License: LPPL Summary: Documentation macros for the TKZ series of packages Version: svn22959.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124240,7 +124241,7 @@ of the author's packages tkz-tab and tkz-linknodes. %package tkz-doc-doc Summary: Documentation for tkz-doc Version: svn22959.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-doc-doc BuildArch: noarch AutoReqProv: No @@ -124253,7 +124254,7 @@ Provides: tex-tkz-euclide = %{tl_version} License: LPPL Summary: Tools for drawing Euclidean geometry Version: svn22830.1.16c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124281,7 +124282,7 @@ Euclidean geometry with TikZ. %package tkz-euclide-doc Summary: Documentation for tkz-euclide Version: svn22830.1.16c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-euclide-doc BuildArch: noarch AutoReqProv: No @@ -124294,7 +124295,7 @@ Provides: tex-tkz-fct = %{tl_version} License: LPPL Summary: Tools for drawing graphs of functions Version: svn22831.1.16c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124310,7 +124311,7 @@ TikZ and gnuplot. %package tkz-fct-doc Summary: Documentation for tkz-fct Version: svn22831.1.16c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-fct-doc BuildArch: noarch AutoReqProv: No @@ -124323,7 +124324,7 @@ Provides: tex-tkz-graph = %{tl_version} License: LPPL Summary: Draw graph-theory graphs Version: svn22832.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124341,7 +124342,7 @@ possible, using TikZ %package tkz-graph-doc Summary: Documentation for tkz-graph Version: svn22832.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-graph-doc BuildArch: noarch AutoReqProv: No @@ -124354,7 +124355,7 @@ Provides: tex-tkz-kiviat = %{tl_version} License: LPPL Summary: Draw Kiviat graphs Version: svn22857.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124371,7 +124372,7 @@ help of pgfplots. %package tkz-kiviat-doc Summary: Documentation for tkz-kiviat Version: svn22857.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-kiviat-doc BuildArch: noarch AutoReqProv: No @@ -124384,7 +124385,7 @@ Provides: tex-tkz-linknodes = %{tl_version} License: LPPL Summary: Link nodes in mathematical environments Version: svn22833.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124405,7 +124406,7 @@ the tkz-doc bundle %package tkz-linknodes-doc Summary: Documentation for tkz-linknodes Version: svn22833.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-linknodes-doc BuildArch: noarch AutoReqProv: No @@ -124418,7 +124419,7 @@ Provides: tex-tkz-orm = %{tl_version} License: GPL+ Summary: Create Object-Role Model (ORM) diagrams, Version: svn39408 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124433,7 +124434,7 @@ diagrams in TeX based on the pgf and TikZ picture environment. %package tkz-orm-doc Summary: Documentation for tkz-orm Version: svn39408 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-orm-doc BuildArch: noarch AutoReqProv: No @@ -124446,7 +124447,7 @@ Provides: tex-tkz-tab = %{tl_version} License: LPPL Summary: Tables of signs and variations using PGF/TikZ Version: svn22834.1.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124465,7 +124466,7 @@ documentation requires the tkz-doc bundle. %package tkz-tab-doc Summary: Documentation for tkz-tab Version: svn22834.1.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tkz-tab-doc BuildArch: noarch AutoReqProv: No @@ -124478,7 +124479,7 @@ Provides: tex-tsemlines = %{tl_version} License: Public Domain Summary: Support for the ancient \emline macro Version: svn23440.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124497,7 +124498,7 @@ Provides: tex-tufte-latex = %{tl_version} License: ASL 2.0 Summary: Document classes inspired by the work of Edward Tufte Version: svn37649.3.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124519,7 +124520,7 @@ and books created by Edward Tufte. %package tufte-latex-doc Summary: Documentation for tufte-latex Version: svn37649.3.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tufte-latex-doc BuildArch: noarch AutoReqProv: No @@ -124538,7 +124539,7 @@ Provides: tex-xifthen = %{tl_version} License: LPPL Summary: Extended conditional commands Version: svn38929 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124561,7 +124562,7 @@ tests. The package requires e-TeX features. %package xifthen-doc Summary: Documentation for xifthen Version: svn38929 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xifthen-doc BuildArch: noarch AutoReqProv: No @@ -124574,7 +124575,7 @@ Provides: tex-ifmtarg = %{tl_version} License: LPPL Summary: If-then-else command for processing potentially empty arguments Version: svn19363.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124587,7 +124588,7 @@ ifmtarg package %package ifmtarg-doc Summary: Documentation for ifmtarg Version: svn19363.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifmtarg-doc BuildArch: noarch AutoReqProv: No @@ -124600,7 +124601,7 @@ Provides: tex-paralist = %{tl_version} License: LPPL Summary: Enumerate and itemize within paragraphs Version: svn39247 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124616,7 +124617,7 @@ provides compacted versions of enumerate and itemize. %package paralist-doc Summary: Documentation for paralist Version: svn39247 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-paralist-doc BuildArch: noarch AutoReqProv: No @@ -124629,7 +124630,7 @@ Provides: tex-sauerj = %{tl_version} License: LPPL Summary: A bundle of utilities by Jonathan Sauer Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124653,7 +124654,7 @@ macros for typesetting a number as a German-language string. %package sauerj-doc Summary: Documentation for sauerj Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sauerj-doc BuildArch: noarch AutoReqProv: No @@ -124666,7 +124667,7 @@ Provides: tex-placeins = %{tl_version} License: Public Domain Summary: Control float placement Version: svn19848.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124681,7 +124682,7 @@ appear before the next \section command. %package placeins-doc Summary: Documentation for placeins Version: svn19848.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-placeins-doc BuildArch: noarch AutoReqProv: No @@ -124694,7 +124695,7 @@ Provides: tex-venndiagram = %{tl_version} License: LPPL Summary: Creating Venn diagrams with TikZ Version: svn40058 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124712,7 +124713,7 @@ requires the TikZ package. %package venndiagram-doc Summary: Documentation for venndiagram Version: svn40058 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-venndiagram-doc BuildArch: noarch AutoReqProv: No @@ -124725,7 +124726,7 @@ Provides: tex-xpicture = %{tl_version} License: LPPL 1.3 Summary: Extensions of LaTeX picture drawing Version: svn28770.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124744,7 +124745,7 @@ parametric curves. %package xpicture-doc Summary: Documentation for xpicture Version: svn28770.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpicture-doc BuildArch: noarch AutoReqProv: No @@ -124757,7 +124758,7 @@ Provides: tex-xypic = %{tl_version} License: GPL+ Summary: Flexible diagramming macros Version: svn31859.3.8.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124893,7 +124894,7 @@ stand-alone. %package xypic-doc Summary: Documentation for xypic Version: svn31859.3.8.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xypic-doc BuildArch: noarch AutoReqProv: No @@ -124906,7 +124907,7 @@ Provides: tex-ESIEEcv = %{tl_version} License: LPPL Summary: Curriculum vitae for French use Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124921,7 +124922,7 @@ French employer will expect. %package ESIEEcv-doc Summary: Documentation for ESIEEcv Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ESIEEcv-doc BuildArch: noarch AutoReqProv: No @@ -124934,7 +124935,7 @@ Provides: tex-GS1 = %{tl_version} License: LPPL 1.3 Summary: Typeset EAN barcodes using TeX rules, only Version: svn27540.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -124951,7 +124952,7 @@ the facilities of the rule-D package. %package GS1-doc Summary: Documentation for GS1 Version: svn27540.15 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-GS1-doc BuildArch: noarch AutoReqProv: No @@ -124964,7 +124965,7 @@ Provides: tex-HA-prosper = %{tl_version} License: LPPL Summary: Patches and improvements for prosper Version: svn15878.4.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125005,7 +125006,7 @@ further. %package HA-prosper-doc Summary: Documentation for HA-prosper Version: svn15878.4.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-HA-prosper-doc BuildArch: noarch AutoReqProv: No @@ -125018,7 +125019,7 @@ Provides: tex-Tabbing = %{tl_version} License: LPPL Summary: Tabbing with accented letters Version: svn17022.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125036,7 +125037,7 @@ commands. %package Tabbing-doc Summary: Documentation for Tabbing Version: svn17022.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-Tabbing-doc BuildArch: noarch AutoReqProv: No @@ -125049,7 +125050,7 @@ Provides: tex-colordoc = %{tl_version} License: LPPL Summary: Coloured syntax highlights in documentation Version: svn18270.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125071,7 +125072,7 @@ provided, including a non-color option designed for printing %package colordoc-doc Summary: Documentation for colordoc Version: svn18270.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colordoc-doc BuildArch: noarch AutoReqProv: No @@ -125084,7 +125085,7 @@ Provides: tex-colorinfo = %{tl_version} License: LPPL Summary: Retrieve colour model and values for defined colours Version: svn15878.0.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125097,7 +125098,7 @@ colorinfo package %package colorinfo-doc Summary: Documentation for colorinfo Version: svn15878.0.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colorinfo-doc BuildArch: noarch AutoReqProv: No @@ -125110,7 +125111,7 @@ Provides: tex-colorspace = %{tl_version} License: LPPL 1.3 Summary: Provides PDF color spaces Version: svn37573.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125126,7 +125127,7 @@ supports pdfTeX and luaTeX. %package colorspace-doc Summary: Documentation for colorspace Version: svn37573.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colorspace-doc BuildArch: noarch AutoReqProv: No @@ -125139,7 +125140,7 @@ Provides: tex-colortab = %{tl_version} License: LPPL Summary: Shade cells of tables and halign Version: svn22155.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125161,7 +125162,7 @@ colortab remains an adequate solution for use with Plain TeX. %package colortab-doc Summary: Documentation for colortab Version: svn22155.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colortab-doc BuildArch: noarch AutoReqProv: No @@ -125174,7 +125175,7 @@ Provides: tex-colorwav = %{tl_version} License: LGPLv2+ Summary: Colours by wavelength of visible light Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125192,7 +125193,7 @@ that this function is also available within the xcolor. %package colorwav-doc Summary: Documentation for colorwav Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colorwav-doc BuildArch: noarch AutoReqProv: No @@ -125205,7 +125206,7 @@ Provides: tex-colorweb = %{tl_version} License: LPPL 1.3 Summary: Extend the color package colour space Version: svn31490.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125220,7 +125221,7 @@ standard color package. %package colorweb-doc Summary: Documentation for colorweb Version: svn31490.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colorweb-doc BuildArch: noarch AutoReqProv: No @@ -125233,7 +125234,7 @@ Provides: tex-colourchange = %{tl_version} License: GPLv3+ Summary: colourchange Version: svn21741.1.22 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125253,7 +125254,7 @@ through the presentation you are. %package colourchange-doc Summary: Documentation for colourchange Version: svn21741.1.22 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-colourchange-doc BuildArch: noarch AutoReqProv: No @@ -125266,7 +125267,7 @@ Provides: tex-combelow = %{tl_version} License: LPPL 1.3 Summary: Typeset "comma-below" letters, as in Romanian Version: svn18462.0.99f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125281,7 +125282,7 @@ The command is robust, but interferes with hyphenation. %package combelow-doc Summary: Documentation for combelow Version: svn18462.0.99f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-combelow-doc BuildArch: noarch AutoReqProv: No @@ -125294,7 +125295,7 @@ Provides: tex-combine = %{tl_version} License: LPPL 1.3 Summary: Bundle individual documents into a single document Version: svn19361.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125318,7 +125319,7 @@ titling packages. %package combine-doc Summary: Documentation for combine Version: svn19361.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-combine-doc BuildArch: noarch AutoReqProv: No @@ -125331,7 +125332,7 @@ Provides: tex-comma = %{tl_version} License: LPPL Summary: Formats a number by inserting commas Version: svn18259.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125345,7 +125346,7 @@ inserted every three digits in a number, as in 1,234. %package comma-doc Summary: Documentation for comma Version: svn18259.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-comma-doc BuildArch: noarch AutoReqProv: No @@ -125358,7 +125359,7 @@ Provides: tex-commado = %{tl_version} License: LPPL 1.3 Summary: Expandable iteration on comma-separated and filename lists Version: svn38875 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125382,7 +125383,7 @@ packages plainpkg, and stacklet %package commado-doc Summary: Documentation for commado Version: svn38875 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-commado-doc BuildArch: noarch AutoReqProv: No @@ -125395,7 +125396,7 @@ Provides: tex-comment = %{tl_version} License: GPL+ Summary: Selectively include/excludes portions of text Version: svn32778.3.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125420,7 +125421,7 @@ line of their own. %package comment-doc Summary: Documentation for comment Version: svn32778.3.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-comment-doc BuildArch: noarch AutoReqProv: No @@ -125433,7 +125434,7 @@ Provides: tex-concepts = %{tl_version} License: LPPL Summary: Keeping track of formal 'concepts' for a particular field Version: svn29020.0.0.5_r1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125461,7 +125462,7 @@ file for the complete list. %package concepts-doc Summary: Documentation for concepts Version: svn29020.0.0.5_r1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-concepts-doc BuildArch: noarch AutoReqProv: No @@ -125474,7 +125475,7 @@ Provides: tex-concprog = %{tl_version} License: GPL+ Summary: Concert programmes Version: svn18791.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125488,7 +125489,7 @@ A class which provides the necessary macros to prepare a %package concprog-doc Summary: Documentation for concprog Version: svn18791.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-concprog-doc BuildArch: noarch AutoReqProv: No @@ -125501,7 +125502,7 @@ Provides: tex-constants = %{tl_version} License: LPPL Summary: Automatic numbering of constants Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125518,7 +125519,7 @@ constants (with different symbols) may be defined. %package constants-doc Summary: Documentation for constants Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-constants-doc BuildArch: noarch AutoReqProv: No @@ -125531,7 +125532,7 @@ Provides: tex-contour = %{tl_version} License: LPPL Summary: Print a coloured contour around text Version: svn18950.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125549,7 +125550,7 @@ need of a coloured box around the text. %package contour-doc Summary: Documentation for contour Version: svn18950.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-contour-doc BuildArch: noarch AutoReqProv: No @@ -125562,7 +125563,7 @@ Provides: tex-contracard = %{tl_version} License: LPPL 1.3 Summary: Generate calling cards for dances Version: svn31745.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125579,7 +125580,7 @@ cards for the same. %package contracard-doc Summary: Documentation for contracard Version: svn31745.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-contracard-doc BuildArch: noarch AutoReqProv: No @@ -125592,7 +125593,7 @@ Provides: tex-cooking = %{tl_version} License: GPL+ Summary: Typeset recipes Version: svn15878.0.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125606,7 +125607,7 @@ well-respected German cookery book. %package cooking-doc Summary: Documentation for cooking Version: svn15878.0.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cooking-doc BuildArch: noarch AutoReqProv: No @@ -125619,7 +125620,7 @@ Provides: tex-cool = %{tl_version} License: LGPLv2+ Summary: COntent-Oriented LaTeX Version: svn15878.1.35 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125646,7 +125647,7 @@ coollist and forloop packages. %package cool-doc Summary: Documentation for cool Version: svn15878.1.35 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cool-doc BuildArch: noarch AutoReqProv: No @@ -125659,7 +125660,7 @@ Provides: tex-coollist = %{tl_version} License: LGPLv2+ Summary: Manipulate COntent Oriented LaTeX Lists Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125682,7 +125683,7 @@ item). %package coollist-doc Summary: Documentation for coollist Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coollist-doc BuildArch: noarch AutoReqProv: No @@ -125695,7 +125696,7 @@ Provides: tex-coolstr = %{tl_version} License: LGPLv2+ Summary: String manipulation in LaTeX Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125715,7 +125716,7 @@ if the string contains numeric or integer data. %package coolstr-doc Summary: Documentation for coolstr Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coolstr-doc BuildArch: noarch AutoReqProv: No @@ -125728,7 +125729,7 @@ Provides: tex-coolthms = %{tl_version} License: LPPL Summary: Reference items in a theorem environment Version: svn29062.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125754,7 +125755,7 @@ The package also provides other theorem markup commands. %package coolthms-doc Summary: Documentation for coolthms Version: svn29062.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coolthms-doc BuildArch: noarch AutoReqProv: No @@ -125767,7 +125768,7 @@ Provides: tex-cooltooltips = %{tl_version} License: LPPL Summary: Associate a pop-up window and tooltip with PDF hyperlinks Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125785,7 +125786,7 @@ LaTeX FAQ to indicate the question that each hyperlink answers. %package cooltooltips-doc Summary: Documentation for cooltooltips Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cooltooltips-doc BuildArch: noarch AutoReqProv: No @@ -125798,7 +125799,7 @@ Provides: tex-coordsys = %{tl_version} License: LPPL Summary: Draw cartesian coordinate systems Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125817,7 +125818,7 @@ drawing capabilities. %package coordsys-doc Summary: Documentation for coordsys Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coordsys-doc BuildArch: noarch AutoReqProv: No @@ -125830,7 +125831,7 @@ Provides: tex-copyedit = %{tl_version} License: LPPL 1.3 Summary: Copyediting support for LaTeX documents Version: svn37928.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125860,7 +125861,7 @@ language through Abbreviations and pronouns. %package copyedit-doc Summary: Documentation for copyedit Version: svn37928.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-copyedit-doc BuildArch: noarch AutoReqProv: No @@ -125873,7 +125874,7 @@ Provides: tex-copyrightbox = %{tl_version} License: LPPL Summary: Provide copyright notices for images in a document Version: svn24829.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125890,7 +125891,7 @@ relating to the matter created by the image command. %package copyrightbox-doc Summary: Documentation for copyrightbox Version: svn24829.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-copyrightbox-doc BuildArch: noarch AutoReqProv: No @@ -125903,7 +125904,7 @@ Provides: tex-coseoul = %{tl_version} License: LPPL 1.3 Summary: Context sensitive outline elements Version: svn23862.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125920,7 +125921,7 @@ are valuable. %package coseoul-doc Summary: Documentation for coseoul Version: svn23862.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coseoul-doc BuildArch: noarch AutoReqProv: No @@ -125933,7 +125934,7 @@ Provides: tex-counttexruns = %{tl_version} License: LPPL 1.3 Summary: Count compilations of a document Version: svn27576.1.00a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125949,7 +125950,7 @@ use the macro \thecounttexruns. %package counttexruns-doc Summary: Documentation for counttexruns Version: svn27576.1.00a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-counttexruns-doc BuildArch: noarch AutoReqProv: No @@ -125962,7 +125963,7 @@ Provides: tex-courseoutline = %{tl_version} License: Copyright only Summary: Prepare university course outlines Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -125976,7 +125977,7 @@ tedious task that needs to be repeated often. %package courseoutline-doc Summary: Documentation for courseoutline Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-courseoutline-doc BuildArch: noarch AutoReqProv: No @@ -125989,7 +125990,7 @@ Provides: tex-coursepaper = %{tl_version} License: Copyright only Summary: Prepare university course papers Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126003,7 +126004,7 @@ course papers, in a uniform design to ease the task of marking. %package coursepaper-doc Summary: Documentation for coursepaper Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coursepaper-doc BuildArch: noarch AutoReqProv: No @@ -126016,7 +126017,7 @@ Provides: tex-coverpage = %{tl_version} License: LPPL 1.2 Summary: Automatic cover page creation for scientific papers Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126049,7 +126050,7 @@ LaTeX installation. %package coverpage-doc Summary: Documentation for coverpage Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-coverpage-doc BuildArch: noarch AutoReqProv: No @@ -126062,7 +126063,7 @@ Provides: tex-cprotect = %{tl_version} License: LPPL 1.3 Summary: Allow verbatim, etc., in macro arguments Version: svn21209.1.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126082,7 +126083,7 @@ corresponding "tables of ..." work happily. %package cprotect-doc Summary: Documentation for cprotect Version: svn21209.1.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cprotect-doc BuildArch: noarch AutoReqProv: No @@ -126095,7 +126096,7 @@ Provides: tex-crbox = %{tl_version} License: LPPL Summary: Boxes with crossed corners Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126110,7 +126111,7 @@ with crossing lines at the corners. %package crbox-doc Summary: Documentation for crbox Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crbox-doc BuildArch: noarch AutoReqProv: No @@ -126123,7 +126124,7 @@ Provides: tex-crossreference = %{tl_version} License: LPPL Summary: Crossreferences within documents Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126138,7 +126139,7 @@ references. %package crossreference-doc Summary: Documentation for crossreference Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-crossreference-doc BuildArch: noarch AutoReqProv: No @@ -126151,7 +126152,7 @@ Provides: tex-csquotes = %{tl_version} License: LPPL 1.3 Summary: Context sensitive quotation facilities Version: svn39538 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126182,7 +126183,7 @@ etoolbox package. %package csquotes-doc Summary: Documentation for csquotes Version: svn39538 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-csquotes-doc BuildArch: noarch AutoReqProv: No @@ -126195,7 +126196,7 @@ Provides: tex-csvsimple = %{tl_version} License: LPPL 1.3 Summary: Simple CSV file processing Version: svn34610.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126215,7 +126216,7 @@ sorting or data base storage. %package csvsimple-doc Summary: Documentation for csvsimple Version: svn34610.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-csvsimple-doc BuildArch: noarch AutoReqProv: No @@ -126228,7 +126229,7 @@ Provides: tex-cuisine = %{tl_version} License: LPPL Summary: Typeset recipes Version: svn34453.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126243,7 +126244,7 @@ step (somewhat similarly to the layout used in cooking). %package cuisine-doc Summary: Documentation for cuisine Version: svn34453.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cuisine-doc BuildArch: noarch AutoReqProv: No @@ -126256,7 +126257,7 @@ Provides: tex-currfile = %{tl_version} License: LPPL 1.3 Summary: Provide file name and path of input files Version: svn40725 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126282,7 +126283,7 @@ supersedes FiNK. %package currfile-doc Summary: Documentation for currfile Version: svn40725 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-currfile-doc BuildArch: noarch AutoReqProv: No @@ -126295,7 +126296,7 @@ Provides: tex-currvita = %{tl_version} License: GPL+ Summary: Typeset a curriculum vitae Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126312,7 +126313,7 @@ document (such as a letter, or a dissertation). %package currvita-doc Summary: Documentation for currvita Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-currvita-doc BuildArch: noarch AutoReqProv: No @@ -126325,7 +126326,7 @@ Provides: tex-cutwin = %{tl_version} License: LPPL 1.3 Summary: Cut a window in a paragraph, typeset material in it Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126341,7 +126342,7 @@ of shape. %package cutwin-doc Summary: Documentation for cutwin Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cutwin-doc BuildArch: noarch AutoReqProv: No @@ -126354,7 +126355,7 @@ Provides: tex-cv = %{tl_version} License: GPL+ Summary: A package for creating a curriculum vitae Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126371,7 +126372,7 @@ provides the detailed formatting. %package cv-doc Summary: Documentation for cv Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cv-doc BuildArch: noarch AutoReqProv: No @@ -126384,7 +126385,7 @@ Provides: tex-cv4tw = %{tl_version} License: MIT Summary: LaTeX CV class, with extended details Version: svn34577.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126425,7 +126426,7 @@ documentation, but a worked example offers some guidance. %package cv4tw-doc Summary: Documentation for cv4tw Version: svn34577.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cv4tw-doc BuildArch: noarch AutoReqProv: No @@ -126438,7 +126439,7 @@ Provides: tex-cweb-latex = %{tl_version} License: GPL+ Summary: A LaTeX version of CWEB Version: svn28878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126458,7 +126459,7 @@ with CWEB, edited to run with LaTeX. %package cweb-latex-doc Summary: Documentation for cweb-latex Version: svn28878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cweb-latex-doc BuildArch: noarch AutoReqProv: No @@ -126471,7 +126472,7 @@ Provides: tex-cyber = %{tl_version} License: MIT Summary: Annotate compliance with cybersecurity requirements Version: svn37658.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126494,7 +126495,7 @@ it. %package cyber-doc Summary: Documentation for cyber Version: svn37658.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cyber-doc BuildArch: noarch AutoReqProv: No @@ -126507,7 +126508,7 @@ Provides: tex-cybercic = %{tl_version} License: MIT Summary: "Controls in Contents" for the cyber package Version: svn37659.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126528,7 +126529,7 @@ section titles. So don't use cybercic unless you need to. %package cybercic-doc Summary: Documentation for cybercic Version: svn37659.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cybercic-doc BuildArch: noarch AutoReqProv: No @@ -126541,7 +126542,7 @@ Provides: tex-dashbox = %{tl_version} License: LPPL Summary: Draw dashed boxes Version: svn23425.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126558,7 +126559,7 @@ illusion of) vertical stacks of boxes. %package dashbox-doc Summary: Documentation for dashbox Version: svn23425.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dashbox-doc BuildArch: noarch AutoReqProv: No @@ -126571,7 +126572,7 @@ Provides: tex-dashrule = %{tl_version} License: LPPL Summary: Draw dashed rules Version: svn29579.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126594,7 +126595,7 @@ compatible with every LaTeX back-end processor. %package dashrule-doc Summary: Documentation for dashrule Version: svn29579.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dashrule-doc BuildArch: noarch AutoReqProv: No @@ -126607,7 +126608,7 @@ Provides: tex-dashundergaps = %{tl_version} License: LPPL Summary: Underline with dotted or dashed lines Version: svn23373.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126626,7 +126627,7 @@ a 'fill-in block' for student evaluation sheets. %package dashundergaps-doc Summary: Documentation for dashundergaps Version: svn23373.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dashundergaps-doc BuildArch: noarch AutoReqProv: No @@ -126639,7 +126640,7 @@ Provides: tex-dataref = %{tl_version} License: LPPL 1.3 Summary: Manage references to experimental data Version: svn38394 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126661,7 +126662,7 @@ develops). %package dataref-doc Summary: Documentation for dataref Version: svn38394 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dataref-doc BuildArch: noarch AutoReqProv: No @@ -126674,7 +126675,7 @@ Provides: tex-datatool = %{tl_version} License: LPPL 1.3 Summary: Tools to load and manipulate data Version: svn39421 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126738,7 +126739,7 @@ and replaces the author's csvtools bundle. %package datatool-doc Summary: Documentation for datatool Version: svn39421 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datatool-doc BuildArch: noarch AutoReqProv: No @@ -126751,7 +126752,7 @@ Provides: tex-dateiliste = %{tl_version} License: LPPL Summary: Extensions of the \listfiles concept Version: svn27974.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126770,7 +126771,7 @@ providing RCS-maintained data for printing in the file list. %package dateiliste-doc Summary: Documentation for dateiliste Version: svn27974.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dateiliste-doc BuildArch: noarch AutoReqProv: No @@ -126783,7 +126784,7 @@ Provides: tex-datenumber = %{tl_version} License: LPPL Summary: Convert a date into a number and vice versa Version: svn18951.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126805,7 +126806,7 @@ Gregorian calendar reform are considered. %package datenumber-doc Summary: Documentation for datenumber Version: svn18951.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datenumber-doc BuildArch: noarch AutoReqProv: No @@ -126818,7 +126819,7 @@ Provides: tex-datetime = %{tl_version} License: LPPL 1.3 Summary: Change format of \today with commands for current time Version: svn36650.2.60 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126890,7 +126891,7 @@ has been replaced by datetime2. %package datetime-doc Summary: Documentation for datetime Version: svn36650.2.60 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime-doc BuildArch: noarch AutoReqProv: No @@ -126903,7 +126904,7 @@ Provides: tex-datetime2 = %{tl_version} License: LPPL 1.3 Summary: Formats for dates, times and time zones Version: svn41296 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126931,7 +126932,7 @@ This package replaces datetime.sty which is now obsolete. %package datetime2-doc Summary: Documentation for datetime2 Version: svn41296 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-doc BuildArch: noarch AutoReqProv: No @@ -126944,7 +126945,7 @@ Provides: tex-datetime2-bahasai = %{tl_version} License: LPPL 1.3 Summary: Bahasai language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126960,7 +126961,7 @@ to follow if you want to take over the maintenance. %package datetime2-bahasai-doc Summary: Documentation for datetime2-bahasai Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-bahasai-doc BuildArch: noarch AutoReqProv: No @@ -126973,7 +126974,7 @@ Provides: tex-datetime2-basque = %{tl_version} License: LPPL 1.3 Summary: Basque language module for the datetime2 package Version: svn38287.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -126987,7 +126988,7 @@ This module provides the "basque" style that can be set using %package datetime2-basque-doc Summary: Documentation for datetime2-basque Version: svn38287.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-basque-doc BuildArch: noarch AutoReqProv: No @@ -127000,7 +127001,7 @@ Provides: tex-datetime2-breton = %{tl_version} License: LPPL 1.3 Summary: breton language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127020,7 +127021,7 @@ to follow if you want to take over the maintenance. %package datetime2-breton-doc Summary: Documentation for datetime2-breton Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-breton-doc BuildArch: noarch AutoReqProv: No @@ -127033,7 +127034,7 @@ Provides: tex-datetime2-bulgarian = %{tl_version} License: LPPL 1.3 Summary: Bulgarian language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127053,7 +127054,7 @@ to follow if you want to take over the maintenance. %package datetime2-bulgarian-doc Summary: Documentation for datetime2-bulgarian Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-bulgarian-doc BuildArch: noarch AutoReqProv: No @@ -127066,7 +127067,7 @@ Provides: tex-datetime2-catalan = %{tl_version} License: LPPL 1.3 Summary: catalan language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127086,7 +127087,7 @@ to follow if you want to take over the maintenance. %package datetime2-catalan-doc Summary: Documentation for datetime2-catalan Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-catalan-doc BuildArch: noarch AutoReqProv: No @@ -127099,7 +127100,7 @@ Provides: tex-datetime2-croatian = %{tl_version} License: LPPL 1.3 Summary: croatian language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127119,7 +127120,7 @@ to follow if you want to take over the maintenance. %package datetime2-croatian-doc Summary: Documentation for datetime2-croatian Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-croatian-doc BuildArch: noarch AutoReqProv: No @@ -127132,7 +127133,7 @@ Provides: tex-datetime2-czech = %{tl_version} License: LPPL 1.3 Summary: czech language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127152,7 +127153,7 @@ to follow if you want to take over the maintenance. %package datetime2-czech-doc Summary: Documentation for datetime2-czech Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-czech-doc BuildArch: noarch AutoReqProv: No @@ -127165,7 +127166,7 @@ Provides: tex-datetime2-danish = %{tl_version} License: LPPL 1.3 Summary: danish language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127185,7 +127186,7 @@ to follow if you want to take over the maintenance. %package datetime2-danish-doc Summary: Documentation for datetime2-danish Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-danish-doc BuildArch: noarch AutoReqProv: No @@ -127198,7 +127199,7 @@ Provides: tex-datetime2-dutch = %{tl_version} License: LPPL 1.3 Summary: dutch language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127214,7 +127215,7 @@ to follow if you want to take over the maintenance. %package datetime2-dutch-doc Summary: Documentation for datetime2-dutch Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-dutch-doc BuildArch: noarch AutoReqProv: No @@ -127227,7 +127228,7 @@ Provides: tex-datetime2-en-fulltext = %{tl_version} License: LPPL 1.3 Summary: English Full Text styles for the datetime2 package Version: svn36705.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127250,7 +127251,7 @@ such as \MakeUppercase, while these styles are in use. %package datetime2-en-fulltext-doc Summary: Documentation for datetime2-en-fulltext Version: svn36705.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-en-fulltext-doc BuildArch: noarch AutoReqProv: No @@ -127263,7 +127264,7 @@ Provides: tex-datetime2-english = %{tl_version} License: LPPL 1.3 Summary: English language module for the datetime2 package Version: svn39991 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127297,7 +127298,7 @@ en-IE (English - Republic of Ireland) %package datetime2-english-doc Summary: Documentation for datetime2-english Version: svn39991 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-english-doc BuildArch: noarch AutoReqProv: No @@ -127310,7 +127311,7 @@ Provides: tex-datetime2-esperanto = %{tl_version} License: LPPL 1.3 Summary: Esperanto language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127330,7 +127331,7 @@ to follow if you want to take over the maintenance. %package datetime2-esperanto-doc Summary: Documentation for datetime2-esperanto Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-esperanto-doc BuildArch: noarch AutoReqProv: No @@ -127343,7 +127344,7 @@ Provides: tex-datetime2-estonian = %{tl_version} License: LPPL 1.3 Summary: Estonian language module for the datetime2 package Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127363,7 +127364,7 @@ to follow if you want to take over the maintenance. %package datetime2-estonian-doc Summary: Documentation for datetime2-estonian Version: svn36682.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-estonian-doc BuildArch: noarch AutoReqProv: No @@ -127376,7 +127377,7 @@ Provides: tex-datetime2-finnish = %{tl_version} License: LPPL 1.3 Summary: Finnish language module for the datetime2 package Version: svn40237 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127396,7 +127397,7 @@ to follow if you want to take over the maintenance. %package datetime2-finnish-doc Summary: Documentation for datetime2-finnish Version: svn40237 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-finnish-doc BuildArch: noarch AutoReqProv: No @@ -127409,7 +127410,7 @@ Provides: tex-datetime2-french = %{tl_version} License: LPPL 1.3 Summary: French language module for the datetime2 package Version: svn36648.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127429,7 +127430,7 @@ to follow if you want to take over the maintenance. %package datetime2-french-doc Summary: Documentation for datetime2-french Version: svn36648.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-french-doc BuildArch: noarch AutoReqProv: No @@ -127442,7 +127443,7 @@ Provides: tex-datetime2-galician = %{tl_version} License: LPPL 1.3 Summary: galician language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127462,7 +127463,7 @@ to follow if you want to take over the maintenance. %package datetime2-galician-doc Summary: Documentation for datetime2-galician Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-galician-doc BuildArch: noarch AutoReqProv: No @@ -127475,7 +127476,7 @@ Provides: tex-datetime2-german = %{tl_version} License: LPPL 1.3 Summary: German language module for the datetime2 package Version: svn36649.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127495,7 +127496,7 @@ to follow if you want to take over the maintenance. %package datetime2-german-doc Summary: Documentation for datetime2-german Version: svn36649.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-german-doc BuildArch: noarch AutoReqProv: No @@ -127508,7 +127509,7 @@ Provides: tex-datetime2-greek = %{tl_version} License: LPPL 1.3 Summary: Greek language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127528,7 +127529,7 @@ to follow if you want to take over the maintenance. %package datetime2-greek-doc Summary: Documentation for datetime2-greek Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-greek-doc BuildArch: noarch AutoReqProv: No @@ -127541,7 +127542,7 @@ Provides: tex-datetime2-hebrew = %{tl_version} License: LPPL 1.3 Summary: Hebrew language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127557,7 +127558,7 @@ to follow if you want to take over the maintenance. %package datetime2-hebrew-doc Summary: Documentation for datetime2-hebrew Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-hebrew-doc BuildArch: noarch AutoReqProv: No @@ -127570,7 +127571,7 @@ Provides: tex-datetime2-icelandic = %{tl_version} License: LPPL 1.3 Summary: Icelandic language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127590,7 +127591,7 @@ to follow if you want to take over the maintenance. %package datetime2-icelandic-doc Summary: Documentation for datetime2-icelandic Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-icelandic-doc BuildArch: noarch AutoReqProv: No @@ -127603,7 +127604,7 @@ Provides: tex-datetime2-irish = %{tl_version} License: LPPL 1.3 Summary: Irish Gaelic Language Module for the datetime2 Package Version: svn36635.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127625,7 +127626,7 @@ to follow if you want to take over the maintenance. %package datetime2-irish-doc Summary: Documentation for datetime2-irish Version: svn36635.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-irish-doc BuildArch: noarch AutoReqProv: No @@ -127638,7 +127639,7 @@ Provides: tex-datetime2-italian = %{tl_version} License: LPPL 1.3 Summary: Italian language module for the datetime2 package Version: svn37146.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127656,7 +127657,7 @@ This module provides the "italian" style that can be set using %package datetime2-italian-doc Summary: Documentation for datetime2-italian Version: svn37146.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-italian-doc BuildArch: noarch AutoReqProv: No @@ -127669,7 +127670,7 @@ Provides: tex-datetime2-it-fulltext = %{tl_version} License: LPPL 1.3 Summary: Italian full text styles for the datetime2 package Version: svn38093.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127694,7 +127695,7 @@ datetime2-en-fulltext. %package datetime2-it-fulltext-doc Summary: Documentation for datetime2-it-fulltext Version: svn38093.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-it-fulltext-doc BuildArch: noarch AutoReqProv: No @@ -127707,7 +127708,7 @@ Provides: tex-datetime2-latin = %{tl_version} License: LPPL 1.3 Summary: Latin language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127723,7 +127724,7 @@ to follow if you want to take over the maintenance. %package datetime2-latin-doc Summary: Documentation for datetime2-latin Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-latin-doc BuildArch: noarch AutoReqProv: No @@ -127736,7 +127737,7 @@ Provides: tex-datetime2-lsorbian = %{tl_version} License: LPPL 1.3 Summary: Lower Sorbian language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127756,7 +127757,7 @@ to follow if you want to take over the maintenance. %package datetime2-lsorbian-doc Summary: Documentation for datetime2-lsorbian Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-lsorbian-doc BuildArch: noarch AutoReqProv: No @@ -127769,7 +127770,7 @@ Provides: tex-datetime2-magyar = %{tl_version} License: LPPL 1.3 Summary: magyar language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127789,7 +127790,7 @@ to follow if you want to take over the maintenance. %package datetime2-magyar-doc Summary: Documentation for datetime2-magyar Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-magyar-doc BuildArch: noarch AutoReqProv: No @@ -127802,7 +127803,7 @@ Provides: tex-datetime2-norsk = %{tl_version} License: LPPL 1.3 Summary: Norsk language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127822,7 +127823,7 @@ to follow if you want to take over the maintenance. %package datetime2-norsk-doc Summary: Documentation for datetime2-norsk Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-norsk-doc BuildArch: noarch AutoReqProv: No @@ -127835,7 +127836,7 @@ Provides: tex-datetime2-polish = %{tl_version} License: LPPL 1.3 Summary: polish language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127855,7 +127856,7 @@ to follow if you want to take over the maintenance. %package datetime2-polish-doc Summary: Documentation for datetime2-polish Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-polish-doc BuildArch: noarch AutoReqProv: No @@ -127868,7 +127869,7 @@ Provides: tex-datetime2-portuges = %{tl_version} License: LPPL 1.3 Summary: Portuguese language module for the datetime2 package Version: svn36670.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127888,7 +127889,7 @@ to follow if you want to take over the maintenance. %package datetime2-portuges-doc Summary: Documentation for datetime2-portuges Version: svn36670.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-portuges-doc BuildArch: noarch AutoReqProv: No @@ -127901,7 +127902,7 @@ Provides: tex-datetime2-romanian = %{tl_version} License: LPPL 1.3 Summary: Romanian language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127921,7 +127922,7 @@ to follow if you want to take over the maintenance. %package datetime2-romanian-doc Summary: Documentation for datetime2-romanian Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-romanian-doc BuildArch: noarch AutoReqProv: No @@ -127934,7 +127935,7 @@ Provides: tex-datetime2-russian = %{tl_version} License: LPPL 1.3 Summary: russian language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127954,7 +127955,7 @@ to follow if you want to take over the maintenance. %package datetime2-russian-doc Summary: Documentation for datetime2-russian Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-russian-doc BuildArch: noarch AutoReqProv: No @@ -127967,7 +127968,7 @@ Provides: tex-datetime2-samin = %{tl_version} License: LPPL 1.3 Summary: Northern Sami language module for the datetime2 package Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -127987,7 +127988,7 @@ to follow if you want to take over the maintenance. %package datetime2-samin-doc Summary: Documentation for datetime2-samin Version: svn36692.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-samin-doc BuildArch: noarch AutoReqProv: No @@ -128000,7 +128001,7 @@ Provides: tex-datetime2-scottish = %{tl_version} License: LPPL 1.3 Summary: Scottish Gaelic Language Module for the datetime2 Package Version: svn36625.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128020,7 +128021,7 @@ to follow if you want to take over the maintenance. %package datetime2-scottish-doc Summary: Documentation for datetime2-scottish Version: svn36625.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-scottish-doc BuildArch: noarch AutoReqProv: No @@ -128033,7 +128034,7 @@ Provides: tex-datetime2-serbian = %{tl_version} License: LPPL 1.3 Summary: serbian language module for the datetime2 package Version: svn36699.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128053,7 +128054,7 @@ to follow if you want to take over the maintenance. %package datetime2-serbian-doc Summary: Documentation for datetime2-serbian Version: svn36699.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-serbian-doc BuildArch: noarch AutoReqProv: No @@ -128066,7 +128067,7 @@ Provides: tex-datetime2-slovak = %{tl_version} License: LPPL 1.3 Summary: slovak language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128086,7 +128087,7 @@ to follow if you want to take over the maintenance. %package datetime2-slovak-doc Summary: Documentation for datetime2-slovak Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-slovak-doc BuildArch: noarch AutoReqProv: No @@ -128099,7 +128100,7 @@ Provides: tex-datetime2-slovene = %{tl_version} License: LPPL 1.3 Summary: slovene language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128119,7 +128120,7 @@ to follow if you want to take over the maintenance. %package datetime2-slovene-doc Summary: Documentation for datetime2-slovene Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-slovene-doc BuildArch: noarch AutoReqProv: No @@ -128132,7 +128133,7 @@ Provides: tex-datetime2-spanish = %{tl_version} License: LPPL 1.3 Summary: Spanish language module for the datetime2 package Version: svn36661.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128152,7 +128153,7 @@ to follow if you want to take over the maintenance. %package datetime2-spanish-doc Summary: Documentation for datetime2-spanish Version: svn36661.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-spanish-doc BuildArch: noarch AutoReqProv: No @@ -128165,7 +128166,7 @@ Provides: tex-datetime2-swedish = %{tl_version} License: LPPL 1.3 Summary: swedish language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128185,7 +128186,7 @@ to follow if you want to take over the maintenance. %package datetime2-swedish-doc Summary: Documentation for datetime2-swedish Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-swedish-doc BuildArch: noarch AutoReqProv: No @@ -128198,7 +128199,7 @@ Provides: tex-datetime2-turkish = %{tl_version} License: LPPL 1.3 Summary: turkish language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128218,7 +128219,7 @@ to follow if you want to take over the maintenance. %package datetime2-turkish-doc Summary: Documentation for datetime2-turkish Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-turkish-doc BuildArch: noarch AutoReqProv: No @@ -128231,7 +128232,7 @@ Provides: tex-datetime2-ukrainian = %{tl_version} License: LPPL 1.3 Summary: Ukrainian language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128251,7 +128252,7 @@ to follow if you want to take over the maintenance. %package datetime2-ukrainian-doc Summary: Documentation for datetime2-ukrainian Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-ukrainian-doc BuildArch: noarch AutoReqProv: No @@ -128264,7 +128265,7 @@ Provides: tex-datetime2-usorbian = %{tl_version} License: LPPL 1.3 Summary: Upper Sorbian language module for the datetime2 package Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128284,7 +128285,7 @@ to follow if you want to take over the maintenance. %package datetime2-usorbian-doc Summary: Documentation for datetime2-usorbian Version: svn36700.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-usorbian-doc BuildArch: noarch AutoReqProv: No @@ -128297,7 +128298,7 @@ Provides: tex-datetime2-welsh = %{tl_version} License: LPPL 1.3 Summary: Welsh language module for the datetime2 package Version: svn36636.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128317,7 +128318,7 @@ to follow if you want to take over the maintenance. %package datetime2-welsh-doc Summary: Documentation for datetime2-welsh Version: svn36636.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-datetime2-welsh-doc BuildArch: noarch AutoReqProv: No @@ -128330,7 +128331,7 @@ Provides: tex-dblfloatfix = %{tl_version} License: LPPL 1.3 Summary: Fixes for twocolumn floats Version: svn28983.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128347,7 +128348,7 @@ stfloats. %package dblfloatfix-doc Summary: Documentation for dblfloatfix Version: svn28983.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dblfloatfix-doc BuildArch: noarch AutoReqProv: No @@ -128360,7 +128361,7 @@ Provides: tex-decimal = %{tl_version} License: LPPL Summary: LaTeX package for the English raised decimal point Version: svn23374.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128375,7 +128376,7 @@ American-style period. %package decimal-doc Summary: Documentation for decimal Version: svn23374.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-decimal-doc BuildArch: noarch AutoReqProv: No @@ -128388,7 +128389,7 @@ Provides: tex-decorule = %{tl_version} License: LPPL 1.3 Summary: Decorative swelled rule using font character Version: svn23487.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128408,7 +128409,7 @@ Inn" column in TUGboat 31:1 (2010). %package decorule-doc Summary: Documentation for decorule Version: svn23487.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-decorule-doc BuildArch: noarch AutoReqProv: No @@ -128421,7 +128422,7 @@ Provides: tex-delim = %{tl_version} License: LPPL 1.2 Summary: Simplify typesetting mathematical delimiters Version: svn23974.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128435,7 +128436,7 @@ excessive use of \big... commands (and the like). %package delim-doc Summary: Documentation for delim Version: svn23974.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-delim-doc BuildArch: noarch AutoReqProv: No @@ -128448,7 +128449,7 @@ Provides: tex-delimtxt = %{tl_version} License: LPPL Summary: Read and parse text tables Version: svn16549.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128464,7 +128465,7 @@ data file from MS-Excel/MS-Word %package delimtxt-doc Summary: Documentation for delimtxt Version: svn16549.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-delimtxt-doc BuildArch: noarch AutoReqProv: No @@ -128477,7 +128478,7 @@ Provides: tex-denisbdoc = %{tl_version} License: LPPL 1.3 Summary: A personal dirty package for documenting packages Version: svn41341 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128537,7 +128538,7 @@ A personal dirty package for documenting packages. %package denisbdoc-doc Summary: Documentation for denisbdoc Version: svn41341 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-denisbdoc-doc BuildArch: noarch AutoReqProv: No @@ -128550,7 +128551,7 @@ Provides: tex-diagbox = %{tl_version} License: LPPL 1.3 Summary: Table heads with diagonal lines Version: svn39862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128571,7 +128572,7 @@ compatibility with the slashbox package, which it supersedes. %package diagbox-doc Summary: Documentation for diagbox Version: svn39862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-diagbox-doc BuildArch: noarch AutoReqProv: No @@ -128584,7 +128585,7 @@ Provides: tex-diagnose = %{tl_version} License: GPL+ Summary: A diagnostic tool for a TeX installation Version: svn19387.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128599,7 +128600,7 @@ example document that examines the installation is available. %package diagnose-doc Summary: Documentation for diagnose Version: svn19387.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-diagnose-doc BuildArch: noarch AutoReqProv: No @@ -128612,7 +128613,7 @@ Provides: tex-dialogl = %{tl_version} License: LPPL Summary: Macros for constructing interactive LaTeX scripts Version: svn28946.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128629,7 +128630,7 @@ write macros to carry on a dialogue with the user. %package dialogl-doc Summary: Documentation for dialogl Version: svn28946.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dialogl-doc BuildArch: noarch AutoReqProv: No @@ -128642,7 +128643,7 @@ Provides: tex-dichokey = %{tl_version} License: Public Domain Summary: Construct dichotomous identification keys Version: svn17192.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128659,7 +128660,7 @@ demonstrates usage. %package dichokey-doc Summary: Documentation for dichokey Version: svn17192.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dichokey-doc BuildArch: noarch AutoReqProv: No @@ -128672,7 +128673,7 @@ Provides: tex-dinbrief = %{tl_version} License: LPPL Summary: German letter DIN style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128696,7 +128697,7 @@ dinbrief is provided in the dinbrief-GUI bundle. %package dinbrief-doc Summary: Documentation for dinbrief Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dinbrief-doc BuildArch: noarch AutoReqProv: No @@ -128709,7 +128710,7 @@ Provides: tex-directory = %{tl_version} License: LPPL Summary: An address book using BibTeX Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128725,7 +128726,7 @@ like database. %package directory-doc Summary: Documentation for directory Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-directory-doc BuildArch: noarch AutoReqProv: No @@ -128738,7 +128739,7 @@ Provides: tex-dirtytalk = %{tl_version} License: Public Domain Summary: A package to typeset quotations easier Version: svn20520.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128755,7 +128756,7 @@ the macro; nested quotations are detected. %package dirtytalk-doc Summary: Documentation for dirtytalk Version: svn20520.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dirtytalk-doc BuildArch: noarch AutoReqProv: No @@ -128768,7 +128769,7 @@ Provides: tex-dlfltxb = %{tl_version} License: LPPL Summary: Macros related to "Introdktion til LaTeX" Version: svn17337.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128806,7 +128807,7 @@ author's institution (it is written in Danish). %package dlfltxb-doc Summary: Documentation for dlfltxb Version: svn17337.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dlfltxb-doc BuildArch: noarch AutoReqProv: No @@ -128819,7 +128820,7 @@ Provides: tex-dnaseq = %{tl_version} License: LPPL Summary: Format DNA base sequences Version: svn17194.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128836,7 +128837,7 @@ base sequences, the user might consider the seqsplit package. %package dnaseq-doc Summary: Documentation for dnaseq Version: svn17194.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dnaseq-doc BuildArch: noarch AutoReqProv: No @@ -128849,7 +128850,7 @@ Provides: tex-doclicense = %{tl_version} License: LPPL 1.3 Summary: Support for putting documents under a license Version: svn40723 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128888,7 +128889,7 @@ licenses. %package doclicense-doc Summary: Documentation for doclicense Version: svn40723 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doclicense-doc BuildArch: noarch AutoReqProv: No @@ -128901,7 +128902,7 @@ Provides: tex-docmfp = %{tl_version} License: LPPL Summary: Document non-LaTeX code Version: svn15878.1.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128916,7 +128917,7 @@ languages. %package docmfp-doc Summary: Documentation for docmfp Version: svn15878.1.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-docmfp-doc BuildArch: noarch AutoReqProv: No @@ -128929,7 +128930,7 @@ Provides: tex-docmute = %{tl_version} License: LPPL 1.3 Summary: Input files ignoring LaTeX preamble, etc Version: svn25741.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128944,7 +128945,7 @@ everything but the material between \begin{document} and %package docmute-doc Summary: Documentation for docmute Version: svn25741.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-docmute-doc BuildArch: noarch AutoReqProv: No @@ -128957,7 +128958,7 @@ Provides: tex-doctools = %{tl_version} License: LPPL 1.3 Summary: Tools for the documentation of LaTeX code Version: svn34474.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -128975,7 +128976,7 @@ The package provides a collection of tools for use either in an %package doctools-doc Summary: Documentation for doctools Version: svn34474.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doctools-doc BuildArch: noarch AutoReqProv: No @@ -128988,7 +128989,7 @@ Provides: tex-documentation = %{tl_version} License: LPPL 1.2 Summary: Documentation support for C, Java and assembler code Version: svn34521.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129003,7 +129004,7 @@ reports, etc. %package documentation-doc Summary: Documentation for documentation Version: svn34521.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-documentation-doc BuildArch: noarch AutoReqProv: No @@ -129016,7 +129017,7 @@ Provides: tex-doi = %{tl_version} License: LPPL Summary: Create correct hyperlinks for DOI numbers Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129036,7 +129037,7 @@ target of the DOI. %package doi-doc Summary: Documentation for doi Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-doi-doc BuildArch: noarch AutoReqProv: No @@ -129049,7 +129050,7 @@ Provides: tex-dotarrow = %{tl_version} License: LPPL Summary: Extendable dotted arrows Version: svn15878.0.01a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129064,7 +129065,7 @@ same was as \xrightarrow. %package dotarrow-doc Summary: Documentation for dotarrow Version: svn15878.0.01a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dotarrow-doc BuildArch: noarch AutoReqProv: No @@ -129077,7 +129078,7 @@ Provides: tex-dotseqn = %{tl_version} License: Dotseqn Summary: Flush left equations with dotted leaders to the numbers Version: svn17195.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129094,7 +129095,7 @@ package operates much like the fleqn class option (no leaders). %package dotseqn-doc Summary: Documentation for dotseqn Version: svn17195.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dotseqn-doc BuildArch: noarch AutoReqProv: No @@ -129107,7 +129108,7 @@ Provides: tex-download = %{tl_version} License: LPPL 1.3 Summary: Allow LaTeX to download files using an external process Version: svn30695.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129129,7 +129130,7 @@ caution. %package download-doc Summary: Documentation for download Version: svn30695.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-download-doc BuildArch: noarch AutoReqProv: No @@ -129142,7 +129143,7 @@ Provides: tex-dox = %{tl_version} License: LPPL Summary: Extend the doc package Version: svn20768.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129161,7 +129162,7 @@ limitation. %package dox-doc Summary: Documentation for dox Version: svn20768.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dox-doc BuildArch: noarch AutoReqProv: No @@ -129174,7 +129175,7 @@ Provides: tex-dpfloat = %{tl_version} License: LPPL Summary: Support for double-page floats Version: svn17196.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129191,7 +129192,7 @@ two floats will appear side-by-side in a two-sided document. %package dpfloat-doc Summary: Documentation for dpfloat Version: svn17196.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dpfloat-doc BuildArch: noarch AutoReqProv: No @@ -129204,7 +129205,7 @@ Provides: tex-dprogress = %{tl_version} License: LPPL Summary: LaTeX-relevant log information for debugging Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129222,7 +129223,7 @@ align environment. %package dprogress-doc Summary: Documentation for dprogress Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dprogress-doc BuildArch: noarch AutoReqProv: No @@ -129235,7 +129236,7 @@ Provides: tex-drac = %{tl_version} License: LPPL Summary: Declare active character substitution, robustly Version: svn15878.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129254,7 +129255,7 @@ that \renewcommand works for ordinary commands. %package drac-doc Summary: Documentation for drac Version: svn15878.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-drac-doc BuildArch: noarch AutoReqProv: No @@ -129267,7 +129268,7 @@ Provides: tex-draftcopy = %{tl_version} License: LPPL Summary: Identify draft copies Version: svn15878.2.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129285,7 +129286,7 @@ usage, consider the wallpaper or draftwatermark packages. %package draftcopy-doc Summary: Documentation for draftcopy Version: svn15878.2.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-draftcopy-doc BuildArch: noarch AutoReqProv: No @@ -129298,7 +129299,7 @@ Provides: tex-draftwatermark = %{tl_version} License: LPPL 1.3 Summary: Put a grey textual watermark on document pages Version: svn37498.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129320,7 +129321,7 @@ on everypage. %package draftwatermark-doc Summary: Documentation for draftwatermark Version: svn37498.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-draftwatermark-doc BuildArch: noarch AutoReqProv: No @@ -129333,7 +129334,7 @@ Provides: tex-dtk = %{tl_version} License: LPPL 1.3 Summary: Document class for the journal of DANTE Version: svn40958 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129406,7 +129407,7 @@ as to produce the complete journal. %package dtk-doc Summary: Documentation for dtk Version: svn40958 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dtk-doc BuildArch: noarch AutoReqProv: No @@ -129417,7 +129418,7 @@ Documentation for dtk %package dtxgallery-doc Summary: Documentation for dtxgallery Version: svn15878.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dtxgallery-doc BuildArch: noarch AutoReqProv: No @@ -129430,7 +129431,7 @@ Provides: tex-dvdcoll = %{tl_version} License: LPPL Summary: A class for typesetting DVD archives Version: svn15878.v1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129468,7 +129469,7 @@ Portuguese, Spanish. Some help is needed for other languages! %package dvdcoll-doc Summary: Documentation for dvdcoll Version: svn15878.v1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dvdcoll-doc BuildArch: noarch AutoReqProv: No @@ -129481,7 +129482,7 @@ Provides: tex-dynblocks = %{tl_version} License: LPPL 1.3 Summary: A simple way to create dynamic blocks for Beamer Version: svn35193.0.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129498,7 +129499,7 @@ dimensions of blocks inside a presentation. %package dynblocks-doc Summary: Documentation for dynblocks Version: svn35193.0.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dynblocks-doc BuildArch: noarch AutoReqProv: No @@ -129511,7 +129512,7 @@ Provides: tex-ean13isbn = %{tl_version} License: LPPL Summary: Print EAN13 for ISBN Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129528,7 +129529,7 @@ actual barcode. %package ean13isbn-doc Summary: Documentation for ean13isbn Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ean13isbn-doc BuildArch: noarch AutoReqProv: No @@ -129541,7 +129542,7 @@ Provides: tex-easy = %{tl_version} License: LPPL Summary: A collection of easy-to-use macros Version: svn19440.0.99 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129564,7 +129565,7 @@ tables; easyvector, a C-like syntax for writing vectors. %package easy-doc Summary: Documentation for easy Version: svn19440.0.99 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-easy-doc BuildArch: noarch AutoReqProv: No @@ -129577,7 +129578,7 @@ Provides: tex-easy-todo = %{tl_version} License: ASL 2.0 Summary: To-do notes in a document Version: svn32677.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129595,7 +129596,7 @@ will provide an index of things to do. %package easy-todo-doc Summary: Documentation for easy-todo Version: svn32677.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-easy-todo-doc BuildArch: noarch AutoReqProv: No @@ -129608,7 +129609,7 @@ Provides: tex-easyfig = %{tl_version} License: LPPL 1.3 Summary: Simplifying the use of common figures Version: svn26424.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129632,7 +129633,7 @@ further modifications. %package easyfig-doc Summary: Documentation for easyfig Version: svn26424.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-easyfig-doc BuildArch: noarch AutoReqProv: No @@ -129645,7 +129646,7 @@ Provides: tex-easylist = %{tl_version} License: LPPL Summary: Lists using a single active character Version: svn32661.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129662,7 +129663,7 @@ configure the appearance of the list; lists may be nested %package easylist-doc Summary: Documentation for easylist Version: svn32661.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-easylist-doc BuildArch: noarch AutoReqProv: No @@ -129675,7 +129676,7 @@ Provides: tex-easyreview = %{tl_version} License: LPPL Summary: Package to provide a way to review (or perform editorial process) in LaTeX Version: svn38352.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129695,7 +129696,7 @@ needs to be replaced and add comments to the text. %package easyreview-doc Summary: Documentation for easyreview Version: svn38352.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-easyreview-doc BuildArch: noarch AutoReqProv: No @@ -129708,7 +129709,7 @@ Provides: tex-ebezier = %{tl_version} License: LPPL Summary: Device independent picture environment enhancement Version: svn15878.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129726,7 +129727,7 @@ lenghts are part of this package. %package ebezier-doc Summary: Documentation for ebezier Version: svn15878.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebezier-doc BuildArch: noarch AutoReqProv: No @@ -129739,7 +129740,7 @@ Provides: tex-ecclesiastic = %{tl_version} License: LPPL 1.3 Summary: Typesetting Ecclesiastic Latin Version: svn38172.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129757,7 +129758,7 @@ y and the diphthongs ae and oe. %package ecclesiastic-doc Summary: Documentation for ecclesiastic Version: svn38172.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ecclesiastic-doc BuildArch: noarch AutoReqProv: No @@ -129770,7 +129771,7 @@ Provides: tex-ecv = %{tl_version} License: Copyright only Summary: A fancy Curriculum Vitae class Version: svn24928.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129804,7 +129805,7 @@ English template. %package ecv-doc Summary: Documentation for ecv Version: svn24928.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ecv-doc BuildArch: noarch AutoReqProv: No @@ -129817,7 +129818,7 @@ Provides: tex-ed = %{tl_version} License: LPPL Summary: Editorial Notes for LaTeX documents Version: svn25231.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129837,7 +129838,7 @@ mode these are suppressed. %package ed-doc Summary: Documentation for ed Version: svn25231.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ed-doc BuildArch: noarch AutoReqProv: No @@ -129850,7 +129851,7 @@ Provides: tex-edmargin = %{tl_version} License: LPPL Summary: Multiple series of endnotes for critical editions Version: svn27599.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129871,7 +129872,7 @@ textual notes, emendations, and explanatory notes. %package edmargin-doc Summary: Documentation for edmargin Version: svn27599.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-edmargin-doc BuildArch: noarch AutoReqProv: No @@ -129884,7 +129885,7 @@ Provides: tex-eemeir = %{tl_version} License: LPPL Summary: Adjust the gender of words in a document Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129906,7 +129907,7 @@ fly. %package eemeir-doc Summary: Documentation for eemeir Version: svn15878.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eemeir-doc BuildArch: noarch AutoReqProv: No @@ -129919,7 +129920,7 @@ Provides: tex-efbox = %{tl_version} License: LPPL 1.3 Summary: Extension of \fbox, with controllable frames and colours Version: svn33236.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129937,7 +129938,7 @@ box, and allows setting the box background colour. %package efbox-doc Summary: Documentation for efbox Version: svn33236.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-efbox-doc BuildArch: noarch AutoReqProv: No @@ -129950,7 +129951,7 @@ Provides: tex-egplot = %{tl_version} License: GPL+ Summary: Encapsulate Gnuplot sources in LaTeX documents Version: svn20617.1.02a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -129968,7 +129969,7 @@ with the document source itself. %package egplot-doc Summary: Documentation for egplot Version: svn20617.1.02a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-egplot-doc BuildArch: noarch AutoReqProv: No @@ -129981,7 +129982,7 @@ Provides: tex-elements = %{tl_version} License: LPPL 1.3 Summary: Provides properties of chemical elements Version: svn41161 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130002,7 +130003,7 @@ package is a spin-off of the package bohr by the same author. %package elements-doc Summary: Documentation for elements Version: svn41161 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elements-doc BuildArch: noarch AutoReqProv: No @@ -130015,7 +130016,7 @@ Provides: tex-ellipsis = %{tl_version} License: LPPL Summary: Fix uneven spacing around ellipses in LaTeX text mode Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130032,7 +130033,7 @@ ellipsis being off-center when used between two words. %package ellipsis-doc Summary: Documentation for ellipsis Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ellipsis-doc BuildArch: noarch AutoReqProv: No @@ -130045,7 +130046,7 @@ Provides: tex-elmath = %{tl_version} License: LPPL Summary: Mathematics in Greek texts Version: svn15878.v1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130061,7 +130062,7 @@ mode. %package elmath-doc Summary: Documentation for elmath Version: svn15878.v1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elmath-doc BuildArch: noarch AutoReqProv: No @@ -130074,7 +130075,7 @@ Provides: tex-elocalloc = %{tl_version} License: LPPL Summary: Local allocation macros for LaTeX 2015 Version: svn37644.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130089,7 +130090,7 @@ with implementation based on the LaTeX 2015 allocation macros. %package elocalloc-doc Summary: Documentation for elocalloc Version: svn37644.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elocalloc-doc BuildArch: noarch AutoReqProv: No @@ -130102,7 +130103,7 @@ Provides: tex-elpres = %{tl_version} License: LPPL Summary: A simple class for electronic presentations Version: svn15878.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130123,7 +130124,7 @@ and may be used with LaTeX or pdfLaTeX. %package elpres-doc Summary: Documentation for elpres Version: svn15878.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elpres-doc BuildArch: noarch AutoReqProv: No @@ -130136,7 +130137,7 @@ Provides: tex-elzcards = %{tl_version} License: LPPL 1.3 Summary: Typeset business cards, index cards and flash cards easyly Version: svn37063.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130157,7 +130158,7 @@ taken care of by elzcards. %package elzcards-doc Summary: Documentation for elzcards Version: svn37063.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elzcards-doc BuildArch: noarch AutoReqProv: No @@ -130170,7 +130171,7 @@ Provides: tex-emarks = %{tl_version} License: LPPL 1.3 Summary: Named mark registers with e-TeX Version: svn24504.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130194,7 +130195,7 @@ an e-TeX-enabled engine, and the etex package. %package emarks-doc Summary: Documentation for emarks Version: svn24504.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-emarks-doc BuildArch: noarch AutoReqProv: No @@ -130207,7 +130208,7 @@ Provides: tex-embedall = %{tl_version} License: LPPL 1.2 Summary: Embed source files into the generated PDF Version: svn31903.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130228,7 +130229,7 @@ codes and %package embedall-doc Summary: Documentation for embedall Version: svn31903.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-embedall-doc BuildArch: noarch AutoReqProv: No @@ -130241,7 +130242,7 @@ Provides: tex-embrac = %{tl_version} License: LPPL 1.3 Summary: Upright brackets in emphasised text Version: svn39334 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130261,7 +130262,7 @@ bundle. %package embrac-doc Summary: Documentation for embrac Version: svn39334 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-embrac-doc BuildArch: noarch AutoReqProv: No @@ -130274,7 +130275,7 @@ Provides: tex-emptypage = %{tl_version} License: LPPL 1.2 Summary: Make empty pages really empty Version: svn18064.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130288,7 +130289,7 @@ on empty pages. %package emptypage-doc Summary: Documentation for emptypage Version: svn18064.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-emptypage-doc BuildArch: noarch AutoReqProv: No @@ -130301,7 +130302,7 @@ Provides: tex-emulateapj = %{tl_version} License: LPPL Summary: Produce output similar to that of APJ Version: svn28469.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130321,7 +130322,7 @@ Journal. %package emulateapj-doc Summary: Documentation for emulateapj Version: svn28469.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-emulateapj-doc BuildArch: noarch AutoReqProv: No @@ -130334,7 +130335,7 @@ Provides: tex-endfloat = %{tl_version} License: GPL+ Summary: Move floats to the end, leaving markers where they belong Version: svn24962.2.5d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130355,7 +130356,7 @@ float types with endfloat. %package endfloat-doc Summary: Documentation for endfloat Version: svn24962.2.5d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-endfloat-doc BuildArch: noarch AutoReqProv: No @@ -130368,7 +130369,7 @@ Provides: tex-endheads = %{tl_version} License: LPPL Summary: Running headers of the form "Notes to pp.xx-yy" Version: svn31921.v1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130386,7 +130387,7 @@ packages. %package endheads-doc Summary: Documentation for endheads Version: svn31921.v1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-endheads-doc BuildArch: noarch AutoReqProv: No @@ -130399,7 +130400,7 @@ Provides: tex-endnotes = %{tl_version} License: LPPL 1.2 Summary: Place footnotes at the end Version: svn17197.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130414,7 +130415,7 @@ end of the section, chapter or document. %package endnotes-doc Summary: Documentation for endnotes Version: svn17197.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-endnotes-doc BuildArch: noarch AutoReqProv: No @@ -130427,7 +130428,7 @@ Provides: tex-engpron = %{tl_version} License: LPPL Summary: Helps to type the pronunciation of English words Version: svn16558.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130450,7 +130451,7 @@ typeset the pronunciation in the style of Harrap's dictionary. %package engpron-doc Summary: Documentation for engpron Version: svn16558.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-engpron-doc BuildArch: noarch AutoReqProv: No @@ -130463,7 +130464,7 @@ Provides: tex-engrec = %{tl_version} License: LPPL Summary: Enumerate with lower- or uppercase Greek letters Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130482,7 +130483,7 @@ upgreek and fourier packages. Requires amstext. %package engrec-doc Summary: Documentation for engrec Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-engrec-doc BuildArch: noarch AutoReqProv: No @@ -130495,7 +130496,7 @@ Provides: tex-enotez = %{tl_version} License: LPPL 1.3 Summary: Support for end-notes Version: svn39335 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130519,7 +130520,7 @@ package requires the expl3 bundle and packages from the LaTeX 3 %package enotez-doc Summary: Documentation for enotez Version: svn39335 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-enotez-doc BuildArch: noarch AutoReqProv: No @@ -130532,7 +130533,7 @@ Provides: tex-enumitem = %{tl_version} License: LPPL Summary: Control layout of itemize, enumerate, description Version: svn24146.3.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130551,7 +130552,7 @@ environments with counters of their own. %package enumitem-doc Summary: Documentation for enumitem Version: svn24146.3.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-enumitem-doc BuildArch: noarch AutoReqProv: No @@ -130564,7 +130565,7 @@ Provides: tex-enumitem-zref = %{tl_version} License: LPPL 1.3 Summary: Extended references to items for enumitem package Version: svn21472.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130597,7 +130598,7 @@ command). %package enumitem-zref-doc Summary: Documentation for enumitem-zref Version: svn21472.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-enumitem-zref-doc BuildArch: noarch AutoReqProv: No @@ -130610,7 +130611,7 @@ Provides: tex-envbig = %{tl_version} License: LPPL Summary: Printing addresses on envelopes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130623,7 +130624,7 @@ A simple package, that prints both 'from' and 'to' addresses. %package envbig-doc Summary: Documentation for envbig Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-envbig-doc BuildArch: noarch AutoReqProv: No @@ -130636,7 +130637,7 @@ Provides: tex-environ = %{tl_version} License: LPPL Summary: A new interface for environments in LaTeX Version: svn33821.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130656,7 +130657,7 @@ trailing spaces. %package environ-doc Summary: Documentation for environ Version: svn33821.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-environ-doc BuildArch: noarch AutoReqProv: No @@ -130669,7 +130670,7 @@ Provides: tex-envlab = %{tl_version} License: LPPL Summary: Addresses on envelopes or mailing labels Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130687,7 +130688,7 @@ command of the LaTeX letter documentclass. %package envlab-doc Summary: Documentation for envlab Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-envlab-doc BuildArch: noarch AutoReqProv: No @@ -130700,7 +130701,7 @@ Provides: tex-epigraph = %{tl_version} License: LPPL 1.3 Summary: A package for typesetting epigraphs Version: svn15878.1.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130715,7 +130716,7 @@ are catered for. Various aspects are easily configurable. %package epigraph-doc Summary: Documentation for epigraph Version: svn15878.1.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epigraph-doc BuildArch: noarch AutoReqProv: No @@ -130728,7 +130729,7 @@ Provides: tex-epiolmec = %{tl_version} License: LPPL Summary: Typesetting the Epi-Olmec Language Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130748,7 +130749,7 @@ until about 500 AD. %package epiolmec-doc Summary: Documentation for epiolmec Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epiolmec-doc BuildArch: noarch AutoReqProv: No @@ -130761,7 +130762,7 @@ Provides: tex-eqell = %{tl_version} License: GPL+ Summary: Sympathetically spaced ellipsis after punctuation Version: svn22931.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130776,7 +130777,7 @@ after !, ?, !? or ?!. %package eqell-doc Summary: Documentation for eqell Version: svn22931.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eqell-doc BuildArch: noarch AutoReqProv: No @@ -130789,7 +130790,7 @@ Provides: tex-eqlist = %{tl_version} License: LPPL Summary: Description lists with equal indentation Version: svn32257.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130805,7 +130806,7 @@ the longest item of the list. %package eqlist-doc Summary: Documentation for eqlist Version: svn32257.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eqlist-doc BuildArch: noarch AutoReqProv: No @@ -130818,7 +130819,7 @@ Provides: tex-eqname = %{tl_version} License: Copyright only Summary: Name tags for equations Version: svn20678.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130835,7 +130836,7 @@ Provides: tex-eqparbox = %{tl_version} License: LPPL 1.3 Summary: Create equal-widthed parboxes Version: svn29419.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130860,7 +130861,7 @@ also provided. %package eqparbox-doc Summary: Documentation for eqparbox Version: svn29419.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eqparbox-doc BuildArch: noarch AutoReqProv: No @@ -130873,7 +130874,7 @@ Provides: tex-errata = %{tl_version} License: LPPL Summary: Error markup for LaTeX documents Version: svn15878.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130891,7 +130892,7 @@ difference to the published version. %package errata-doc Summary: Documentation for errata Version: svn15878.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-errata-doc BuildArch: noarch AutoReqProv: No @@ -130904,7 +130905,7 @@ Provides: tex-esami = %{tl_version} License: LPPL Summary: Typeset exams with scrambled questions and answers Version: svn37828.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130925,7 +130926,7 @@ Spanish. %package esami-doc Summary: Documentation for esami Version: svn37828.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esami-doc BuildArch: noarch AutoReqProv: No @@ -130938,7 +130939,7 @@ Provides: tex-esdiff = %{tl_version} License: LPPL Summary: Simplify typesetting of derivatives Version: svn21385.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130955,7 +130956,7 @@ selected by package options %package esdiff-doc Summary: Documentation for esdiff Version: svn21385.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esdiff-doc BuildArch: noarch AutoReqProv: No @@ -130968,7 +130969,7 @@ Provides: tex-esint = %{tl_version} License: Public Domain Summary: Extended set of integrals for Computer Modern Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -130989,7 +130990,7 @@ LaTeX macro support. %package esint-doc Summary: Documentation for esint Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esint-doc BuildArch: noarch AutoReqProv: No @@ -131002,7 +131003,7 @@ Provides: tex-esint-type1 = %{tl_version} License: Public Domain Summary: Font esint10 in Type 1 format Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131025,7 +131026,7 @@ following the instructions in the normal way. %package esint-type1-doc Summary: Documentation for esint-type1 Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-esint-type1-doc BuildArch: noarch AutoReqProv: No @@ -131039,7 +131040,7 @@ Provides: tex-etaremune = %{tl_version} License: LPPL Summary: Reverse-counting enumerate environment Version: svn15878.v1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131056,7 +131057,7 @@ revnum package, which uses painfully many counters. %package etaremune-doc Summary: Documentation for etaremune Version: svn15878.v1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etaremune-doc BuildArch: noarch AutoReqProv: No @@ -131069,7 +131070,7 @@ Provides: tex-etextools = %{tl_version} License: LPPL Summary: e-TeX tools for LaTeX users and package writers Version: svn20694.3.1415926 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131097,7 +131098,7 @@ etex and the etoolbox packages. %package etextools-doc Summary: Documentation for etextools Version: svn20694.3.1415926 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etextools-doc BuildArch: noarch AutoReqProv: No @@ -131110,7 +131111,7 @@ Provides: tex-etoc = %{tl_version} License: LPPL 1.3 Summary: Completely customisable TOCs Version: svn38831 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131138,7 +131139,7 @@ may be used arbitrarily many times in the same document, while %package etoc-doc Summary: Documentation for etoc Version: svn38831 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etoc-doc BuildArch: noarch AutoReqProv: No @@ -131151,7 +131152,7 @@ Provides: tex-etoolbox = %{tl_version} License: LPPL 1.3 Summary: e-TeX tools for LaTeX Version: svn38031.2.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131175,7 +131176,7 @@ kernel. %package etoolbox-doc Summary: Documentation for etoolbox Version: svn38031.2.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-etoolbox-doc BuildArch: noarch AutoReqProv: No @@ -131188,7 +131189,7 @@ Provides: tex-eukdate = %{tl_version} License: LPPL Summary: UK format dates, with weekday Version: svn15878.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131205,7 +131206,7 @@ class, "June 26, 2008", the 'US format'. %package eukdate-doc Summary: Documentation for eukdate Version: svn15878.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eukdate-doc BuildArch: noarch AutoReqProv: No @@ -131218,7 +131219,7 @@ Provides: tex-europasscv = %{tl_version} License: LPPL 1.3 Summary: Unofficial class for the new version of the Europass curriculum vitae Version: svn41201 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131255,7 +131256,7 @@ compact and somewhat fancier layout. %package europasscv-doc Summary: Documentation for europasscv Version: svn41201 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-europasscv-doc BuildArch: noarch AutoReqProv: No @@ -131268,7 +131269,7 @@ Provides: tex-europecv = %{tl_version} License: LPPL Summary: Unofficial class for European curricula vitae Version: svn34454.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131322,7 +131323,7 @@ and koi8-r. %package europecv-doc Summary: Documentation for europecv Version: svn34454.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-europecv-doc BuildArch: noarch AutoReqProv: No @@ -131335,7 +131336,7 @@ Provides: tex-everyhook = %{tl_version} License: LPPL 1.3 Summary: Hooks for standard TeX token lists Version: svn35675.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131355,7 +131356,7 @@ without interfering with the hooks. %package everyhook-doc Summary: Documentation for everyhook Version: svn35675.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-everyhook-doc BuildArch: noarch AutoReqProv: No @@ -131368,7 +131369,7 @@ Provides: tex-everypage = %{tl_version} License: LPPL Summary: Provide hooks to be run on every page of a document Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131386,7 +131387,7 @@ layout, etc. %package everypage-doc Summary: Documentation for everypage Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-everypage-doc BuildArch: noarch AutoReqProv: No @@ -131399,7 +131400,7 @@ Provides: tex-exam = %{tl_version} License: LPPL 1.3 Summary: Package for typesetting exam scripts Version: svn37279.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131433,7 +131434,7 @@ and should not be installed on the same system. %package exam-doc Summary: Documentation for exam Version: svn37279.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exam-doc BuildArch: noarch AutoReqProv: No @@ -131446,7 +131447,7 @@ Provides: tex-exam-n = %{tl_version} License: LPPL Summary: Exam class, focused on collaborative authoring Version: svn33862.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131476,7 +131477,7 @@ catchwords, and so on. Readily configured local adaptation. %package exam-n-doc Summary: Documentation for exam-n Version: svn33862.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exam-n-doc BuildArch: noarch AutoReqProv: No @@ -131489,7 +131490,7 @@ Provides: tex-examdesign = %{tl_version} License: GPL+ Summary: LaTeX class for typesetting exams Version: svn15878.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131516,7 +131517,7 @@ answer/essay questions. %package examdesign-doc Summary: Documentation for examdesign Version: svn15878.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-examdesign-doc BuildArch: noarch AutoReqProv: No @@ -131529,7 +131530,7 @@ Provides: tex-example = %{tl_version} License: GPL+ Summary: Typeset examples for TeX courses Version: svn33398.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131546,7 +131547,7 @@ Provides: tex-examplep = %{tl_version} License: GPL+ Summary: Verbatim phrases and listings in LaTeX Version: svn16916.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131578,7 +131579,7 @@ appropriate place of the .tex document file. %package examplep-doc Summary: Documentation for examplep Version: svn16916.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-examplep-doc BuildArch: noarch AutoReqProv: No @@ -131591,7 +131592,7 @@ Provides: tex-exceltex = %{tl_version} License: GPL+ Summary: Get data from Excel files into LaTeX Version: svn26313.0.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131617,7 +131618,7 @@ files. %package exceltex-doc Summary: Documentation for exceltex Version: svn26313.0.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exceltex-doc BuildArch: noarch AutoReqProv: No @@ -131630,7 +131631,7 @@ Summary: Binaries for exceltex Version: svn25860.0 Requires: texlive-base Requires: texlive-exceltex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description exceltex-bin @@ -131641,7 +131642,7 @@ Provides: tex-excludeonly = %{tl_version} License: Public Domain Summary: Prevent files being \include-ed Version: svn17262.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131659,7 +131660,7 @@ Examples are the classes paper.cls and thesis.cls. %package excludeonly-doc Summary: Documentation for excludeonly Version: svn17262.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-excludeonly-doc BuildArch: noarch AutoReqProv: No @@ -131672,7 +131673,7 @@ Provides: tex-exercise = %{tl_version} License: GPLv2+ Summary: Typeset exercises, problems, etc. and their answers Version: svn35417.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131695,7 +131696,7 @@ English and French are implemented). %package exercise-doc Summary: Documentation for exercise Version: svn35417.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exercise-doc BuildArch: noarch AutoReqProv: No @@ -131708,7 +131709,7 @@ Provides: tex-exp-testopt = %{tl_version} License: LPPL Summary: Expandable \@testopt (and related) macros Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131725,7 +131726,7 @@ to check for optional arguments. %package exp-testopt-doc Summary: Documentation for exp-testopt Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exp-testopt-doc BuildArch: noarch AutoReqProv: No @@ -131738,7 +131739,7 @@ Provides: tex-expdlist = %{tl_version} License: LPPL Summary: Expanded description environments Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131756,7 +131757,7 @@ lists remain in sequence). %package expdlist-doc Summary: Documentation for expdlist Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-expdlist-doc BuildArch: noarch AutoReqProv: No @@ -131769,7 +131770,7 @@ Provides: tex-export = %{tl_version} License: LPPL Summary: Import and export values of LaTeX registers Version: svn27206.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131787,7 +131788,7 @@ dvipaste. %package export-doc Summary: Documentation for export Version: svn27206.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-export-doc BuildArch: noarch AutoReqProv: No @@ -131800,7 +131801,7 @@ Provides: tex-exsheets = %{tl_version} License: LPPL 1.3 Summary: Create exercise sheets and exams Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131839,7 +131840,7 @@ headings of both questions and solutions. %package exsheets-doc Summary: Documentation for exsheets Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exsheets-doc BuildArch: noarch AutoReqProv: No @@ -131852,7 +131853,7 @@ Provides: tex-exsol = %{tl_version} License: LPPL 1.3 Summary: Exercises and solutions from the same source, into a book Version: svn41377 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131880,7 +131881,7 @@ fancyvrb. %package exsol-doc Summary: Documentation for exsol Version: svn41377 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exsol-doc BuildArch: noarch AutoReqProv: No @@ -131893,7 +131894,7 @@ Provides: tex-extract = %{tl_version} License: LPPL Summary: Extract parts of a document and write to another document Version: svn15878.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131921,7 +131922,7 @@ presentation and use them in a new file. %package extract-doc Summary: Documentation for extract Version: svn15878.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-extract-doc BuildArch: noarch AutoReqProv: No @@ -131934,7 +131935,7 @@ Provides: tex-facsimile = %{tl_version} License: LPPL Summary: Document class for preparing faxes Version: svn21328.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -131958,7 +131959,7 @@ support. %package facsimile-doc Summary: Documentation for facsimile Version: svn21328.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-facsimile-doc BuildArch: noarch AutoReqProv: No @@ -131971,7 +131972,7 @@ Provides: tex-factura = %{tl_version} License: LPPL 1.3 Summary: Typeset and calculate invoices according to Venezuelan law Version: svn41202 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132009,7 +132010,7 @@ re-usable for other jurisdictions, by rather simple editing. %package factura-doc Summary: Documentation for factura Version: svn41202 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-factura-doc BuildArch: noarch AutoReqProv: No @@ -132022,7 +132023,7 @@ Provides: tex-fancylabel = %{tl_version} License: LPPL 1.2 Summary: Complex labelling with LaTeX Version: svn34684.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132039,7 +132040,7 @@ to support the needs of the author's chemschemex package %package fancylabel-doc Summary: Documentation for fancylabel Version: svn34684.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancylabel-doc BuildArch: noarch AutoReqProv: No @@ -132052,7 +132053,7 @@ Provides: tex-fancynum = %{tl_version} License: LPPL Summary: Typeset numbers Version: svn15878.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132066,7 +132067,7 @@ point numbers, such as you find in program output. %package fancynum-doc Summary: Documentation for fancynum Version: svn15878.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancynum-doc BuildArch: noarch AutoReqProv: No @@ -132079,7 +132080,7 @@ Provides: tex-fancypar = %{tl_version} License: LPPL 1.3 Summary: Decoration of individual paragraphs Version: svn18018.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132101,7 +132102,7 @@ include displayed mathematics. %package fancypar-doc Summary: Documentation for fancypar Version: svn18018.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancypar-doc BuildArch: noarch AutoReqProv: No @@ -132114,7 +132115,7 @@ Provides: tex-fancyslides = %{tl_version} License: LPPL 1.3 Summary: Custom presentation class built upon LaTeX Beamer Version: svn36263.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132134,7 +132135,7 @@ work. %package fancyslides-doc Summary: Documentation for fancyslides Version: svn36263.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancyslides-doc BuildArch: noarch AutoReqProv: No @@ -132147,7 +132148,7 @@ Provides: tex-fancytabs = %{tl_version} License: LPPL 1.3 Summary: Fancy page border tabs Version: svn27684.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132162,7 +132163,7 @@ TikZ from the pgf bundle. %package fancytabs-doc Summary: Documentation for fancytabs Version: svn27684.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancytabs-doc BuildArch: noarch AutoReqProv: No @@ -132175,7 +132176,7 @@ Provides: tex-fancytooltips = %{tl_version} License: LPPL 1.2 Summary: Include a wide range of material in PDF tooltips Version: svn27129.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132199,7 +132200,7 @@ from the AcroTeX bundle. %package fancytooltips-doc Summary: Documentation for fancytooltips Version: svn27129.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fancytooltips-doc BuildArch: noarch AutoReqProv: No @@ -132212,7 +132213,7 @@ Provides: tex-fcolumn = %{tl_version} License: LPPL 1.2 Summary: Typesetting financial tables Version: svn38489 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132230,7 +132231,7 @@ rule of the correct width) using the specifier "f". %package fcolumn-doc Summary: Documentation for fcolumn Version: svn38489 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fcolumn-doc BuildArch: noarch AutoReqProv: No @@ -132243,7 +132244,7 @@ Provides: tex-fifo-stack = %{tl_version} License: LPPL Summary: FIFO and stack implementation for package writers Version: svn33288.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132262,7 +132263,7 @@ bottom(front) of the FIFO/Stack. %package fifo-stack-doc Summary: Documentation for fifo-stack Version: svn33288.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fifo-stack-doc BuildArch: noarch AutoReqProv: No @@ -132275,7 +132276,7 @@ Provides: tex-figsize = %{tl_version} License: LPPL Summary: Auto-size graphics Version: svn18784.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132301,7 +132302,7 @@ sizes to be dynamic. %package figsize-doc Summary: Documentation for figsize Version: svn18784.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-figsize-doc BuildArch: noarch AutoReqProv: No @@ -132314,7 +132315,7 @@ Provides: tex-filecontents = %{tl_version} License: LPPL Summary: Extended filecontents and filecontents* environments Version: svn24250.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132334,7 +132335,7 @@ filecontents/filecontents* anywhere. %package filecontents-doc Summary: Documentation for filecontents Version: svn24250.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-filecontents-doc BuildArch: noarch AutoReqProv: No @@ -132347,7 +132348,7 @@ Provides: tex-filedate = %{tl_version} License: LPPL Summary: Access and compare info and modification dates Version: svn29529.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132363,7 +132364,7 @@ if the latter is available. %package filedate-doc Summary: Documentation for filedate Version: svn29529.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-filedate-doc BuildArch: noarch AutoReqProv: No @@ -132376,7 +132377,7 @@ Provides: tex-filehook = %{tl_version} License: LPPL 1.3 Summary: Hooks for input files Version: svn24280.0.5d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132402,7 +132403,7 @@ before, and one after the final \clearpage. %package filehook-doc Summary: Documentation for filehook Version: svn24280.0.5d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-filehook-doc BuildArch: noarch AutoReqProv: No @@ -132415,7 +132416,7 @@ Provides: tex-fileinfo = %{tl_version} License: LPPL 1.3 Summary: Enhanced display of LaTeX File Information Version: svn28421.0.81a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132432,7 +132433,7 @@ readprov and controls what \listfiles will report. %package fileinfo-doc Summary: Documentation for fileinfo Version: svn28421.0.81a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fileinfo-doc BuildArch: noarch AutoReqProv: No @@ -132445,7 +132446,7 @@ Provides: tex-filemod = %{tl_version} License: LPPL 1.3 Summary: Provide file modification times, and compare them Version: svn24042.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132470,7 +132471,7 @@ purely expandable macros or by faster but non-expandable ones. %package filemod-doc Summary: Documentation for filemod Version: svn24042.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-filemod-doc BuildArch: noarch AutoReqProv: No @@ -132483,7 +132484,7 @@ Provides: tex-fink = %{tl_version} License: LPPL Summary: The LaTeX2e File Name Keeper Version: svn24329.2.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132504,7 +132505,7 @@ named currfile instead. %package fink-doc Summary: Documentation for fink Version: svn24329.2.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fink-doc BuildArch: noarch AutoReqProv: No @@ -132517,7 +132518,7 @@ Provides: tex-finstrut = %{tl_version} License: LPPL 1.3 Summary: Adjust behaviour of the ends of footnotes Version: svn21719.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132534,7 +132535,7 @@ provides a solution to this problem. %package finstrut-doc Summary: Documentation for finstrut Version: svn21719.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-finstrut-doc BuildArch: noarch AutoReqProv: No @@ -132547,7 +132548,7 @@ Provides: tex-fithesis = %{tl_version} License: LPPL 1.3 Summary: Thesis class and template for Masaryk University (Brno, Czech Republic) Version: svn41303 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132619,7 +132620,7 @@ academic institutions. %package fithesis-doc Summary: Documentation for fithesis Version: svn41303 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fithesis-doc BuildArch: noarch AutoReqProv: No @@ -132632,7 +132633,7 @@ Provides: tex-fixfoot = %{tl_version} License: LPPL Summary: Multiple use of the same footnote text Version: svn17131.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132648,7 +132649,7 @@ page (LaTeX needs to be run several times to achieve this). %package fixfoot-doc Summary: Documentation for fixfoot Version: svn17131.0.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fixfoot-doc BuildArch: noarch AutoReqProv: No @@ -132661,7 +132662,7 @@ Provides: tex-fixme = %{tl_version} License: LPPL Summary: Insert "fixme" notes into draft documents Version: svn29362.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132705,7 +132706,7 @@ support for AUC-TeX. %package fixme-doc Summary: Documentation for fixme Version: svn29362.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fixme-doc BuildArch: noarch AutoReqProv: No @@ -132718,7 +132719,7 @@ Provides: tex-fixmetodonotes = %{tl_version} License: Public Domain Summary: Add notes on document development Version: svn30168.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132741,7 +132742,7 @@ appear. %package fixmetodonotes-doc Summary: Documentation for fixmetodonotes Version: svn30168.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fixmetodonotes-doc BuildArch: noarch AutoReqProv: No @@ -132754,7 +132755,7 @@ Provides: tex-fjodor = %{tl_version} License: GPL+ Summary: A selection of layout styles Version: svn20220.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132768,7 +132769,7 @@ package options. %package fjodor-doc Summary: Documentation for fjodor Version: svn20220.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fjodor-doc BuildArch: noarch AutoReqProv: No @@ -132781,7 +132782,7 @@ Provides: tex-flabels = %{tl_version} License: LPPL Summary: Labels for files and folders Version: svn17272.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132797,7 +132798,7 @@ the back of files or binders (currently only the special A4 %package flabels-doc Summary: Documentation for flabels Version: svn17272.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flabels-doc BuildArch: noarch AutoReqProv: No @@ -132810,7 +132811,7 @@ Provides: tex-flacards = %{tl_version} License: GPL+ Summary: Generate flashcards for printing Version: svn19440.0.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132826,7 +132827,7 @@ of the paper. %package flacards-doc Summary: Documentation for flacards Version: svn19440.0.1.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flacards-doc BuildArch: noarch AutoReqProv: No @@ -132839,7 +132840,7 @@ Provides: tex-flagderiv = %{tl_version} License: GPL+ Summary: Flag style derivation package Version: svn15878.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132859,7 +132860,7 @@ symbols and label namespaces. %package flagderiv-doc Summary: Documentation for flagderiv Version: svn15878.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flagderiv-doc BuildArch: noarch AutoReqProv: No @@ -132872,7 +132873,7 @@ Provides: tex-flashcards = %{tl_version} License: GPL+ Summary: A class for typesetting flashcards Version: svn19667.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132893,7 +132894,7 @@ depending on the nature of the information they contain. %package flashcards-doc Summary: Documentation for flashcards Version: svn19667.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flashcards-doc BuildArch: noarch AutoReqProv: No @@ -132906,7 +132907,7 @@ Provides: tex-flashmovie = %{tl_version} License: LPPL 1.3 Summary: Directly embed flash movies into PDF files Version: svn25768.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132928,7 +132929,7 @@ the user is required to use Acrobat 9. %package flashmovie-doc Summary: Documentation for flashmovie Version: svn25768.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flashmovie-doc BuildArch: noarch AutoReqProv: No @@ -132941,7 +132942,7 @@ Provides: tex-flipbook = %{tl_version} License: LPPL Summary: Typeset flipbook animations, in the corners of documents Version: svn25584.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132964,7 +132965,7 @@ fancyhdr to control the corners. %package flipbook-doc Summary: Documentation for flipbook Version: svn25584.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flipbook-doc BuildArch: noarch AutoReqProv: No @@ -132977,7 +132978,7 @@ Provides: tex-flippdf = %{tl_version} License: LPPL Summary: Horizontal flipping of pages with pdfLaTeX Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -132995,7 +132996,7 @@ and only works with pdfLaTeX in PDF mode. %package flippdf-doc Summary: Documentation for flippdf Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flippdf-doc BuildArch: noarch AutoReqProv: No @@ -133008,7 +133009,7 @@ Provides: tex-floatflt = %{tl_version} License: LPPL Summary: Wrap text around floats Version: svn25540.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133024,7 +133025,7 @@ on even/odd pages. %package floatflt-doc Summary: Documentation for floatflt Version: svn25540.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-floatflt-doc BuildArch: noarch AutoReqProv: No @@ -133037,7 +133038,7 @@ Provides: tex-floatrow = %{tl_version} License: LPPL Summary: Modifying the layout of floats Version: svn15878.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133067,7 +133068,7 @@ subfloats), and longtable. %package floatrow-doc Summary: Documentation for floatrow Version: svn15878.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-floatrow-doc BuildArch: noarch AutoReqProv: No @@ -133080,7 +133081,7 @@ Provides: tex-flowfram = %{tl_version} License: LPPL 1.3 Summary: Create text frames for posters, brochures or magazines Version: svn35291.1.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133105,7 +133106,7 @@ two column layout. %package flowfram-doc Summary: Documentation for flowfram Version: svn35291.1.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-flowfram-doc BuildArch: noarch AutoReqProv: No @@ -133118,7 +133119,7 @@ Provides: tex-fmp = %{tl_version} License: LPPL Summary: Include Functional MetaPost in LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133133,7 +133134,7 @@ fmp package %package fmp-doc Summary: Documentation for fmp Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fmp-doc BuildArch: noarch AutoReqProv: No @@ -133146,7 +133147,7 @@ Provides: tex-fmtcount = %{tl_version} License: LPPL 1.3 Summary: Display the value of a LaTeX counter in a variety of formats Version: svn37298.3.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133191,7 +133192,7 @@ separately. %package fmtcount-doc Summary: Documentation for fmtcount Version: svn37298.3.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fmtcount-doc BuildArch: noarch AutoReqProv: No @@ -133204,7 +133205,7 @@ Provides: tex-fn2end = %{tl_version} License: Public Domain Summary: Convert footnotes to endnotes Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133218,7 +133219,7 @@ produce endnotes; and \theendnotes which prints them out. %package fn2end-doc Summary: Documentation for fn2end Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fn2end-doc BuildArch: noarch AutoReqProv: No @@ -133231,7 +133232,7 @@ Provides: tex-fnbreak = %{tl_version} License: LPPL Summary: Warn for split footnotes Version: svn25003.1.30 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133246,7 +133247,7 @@ pages, and writes a warning to the log file. %package fnbreak-doc Summary: Documentation for fnbreak Version: svn25003.1.30 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fnbreak-doc BuildArch: noarch AutoReqProv: No @@ -133259,7 +133260,7 @@ Provides: tex-fncychap = %{tl_version} License: LPPL 1.3 Summary: Seven predefined chapter heading styles Version: svn20710.v1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133276,7 +133277,7 @@ known as FancyChapter. %package fncychap-doc Summary: Documentation for fncychap Version: svn20710.v1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fncychap-doc BuildArch: noarch AutoReqProv: No @@ -133289,7 +133290,7 @@ Provides: tex-fncylab = %{tl_version} License: LPPL Summary: Alter the format of \label references Version: svn17382.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133308,7 +133309,7 @@ start of a sentence. %package fncylab-doc Summary: Documentation for fncylab Version: svn17382.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fncylab-doc BuildArch: noarch AutoReqProv: No @@ -133321,7 +133322,7 @@ Provides: tex-fnpara = %{tl_version} License: LPPL 1.3 Summary: Footnotes in paragraphs Version: svn25607.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133339,7 +133340,7 @@ the manyfoot and bigfoot packages. %package fnpara-doc Summary: Documentation for fnpara Version: svn25607.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fnpara-doc BuildArch: noarch AutoReqProv: No @@ -133352,7 +133353,7 @@ Provides: tex-fnpct = %{tl_version} License: LPPL 1.3 Summary: Manage footnote marks' interaction with punctuation Version: svn40535 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133373,7 +133374,7 @@ provided. %package fnpct-doc Summary: Documentation for fnpct Version: svn40535 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fnpct-doc BuildArch: noarch AutoReqProv: No @@ -133386,7 +133387,7 @@ Provides: tex-fnumprint = %{tl_version} License: LPPL 1.3 Summary: Print a number in 'appropriate' format Version: svn29173.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133409,7 +133410,7 @@ generated using the package zahl2string. %package fnumprint-doc Summary: Documentation for fnumprint Version: svn29173.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fnumprint-doc BuildArch: noarch AutoReqProv: No @@ -133422,7 +133423,7 @@ Provides: tex-foilhtml = %{tl_version} License: LPPL Summary: Interface between foiltex and LaTeX2HTML Version: svn21855.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133439,7 +133440,7 @@ LaTeX2HTML. %package foilhtml-doc Summary: Documentation for foilhtml Version: svn21855.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-foilhtml-doc BuildArch: noarch AutoReqProv: No @@ -133452,7 +133453,7 @@ Provides: tex-fontaxes = %{tl_version} License: LPPL 1.3 Summary: Additional font axes for LaTeX Version: svn33276.1.0d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133469,7 +133470,7 @@ many professional fonts. %package fontaxes-doc Summary: Documentation for fontaxes Version: svn33276.1.0d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontaxes-doc BuildArch: noarch AutoReqProv: No @@ -133482,7 +133483,7 @@ Provides: tex-fonttable = %{tl_version} License: LPPL 1.3 Summary: Print font tables from a LaTeX document Version: svn21399.1.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133503,7 +133504,7 @@ a clash with that package. %package fonttable-doc Summary: Documentation for fonttable Version: svn21399.1.6b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fonttable-doc BuildArch: noarch AutoReqProv: No @@ -133516,7 +133517,7 @@ Provides: tex-footmisc = %{tl_version} License: LPPL 1.3 Summary: A range of footnote options Version: svn23330.5.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133543,7 +133544,7 @@ footnpag and by the rather more general-purpose perpage %package footmisc-doc Summary: Documentation for footmisc Version: svn23330.5.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-footmisc-doc BuildArch: noarch AutoReqProv: No @@ -133556,7 +133557,7 @@ Provides: tex-footnotebackref = %{tl_version} License: LPPL 1.3 Summary: Back-references from footnotes Version: svn27034.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133574,7 +133575,7 @@ the footnote in the main text. %package footnotebackref-doc Summary: Documentation for footnotebackref Version: svn27034.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-footnotebackref-doc BuildArch: noarch AutoReqProv: No @@ -133587,7 +133588,7 @@ Provides: tex-footnoterange = %{tl_version} License: LPPL 1.3 Summary: References to ranges of footnotes Version: svn25430.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133608,7 +133609,7 @@ footnoterange* environment are never hyperlinked.) %package footnoterange-doc Summary: Documentation for footnoterange Version: svn25430.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-footnoterange-doc BuildArch: noarch AutoReqProv: No @@ -133621,7 +133622,7 @@ Provides: tex-footnpag = %{tl_version} License: GPL+ Summary: Per-page numbering of footnotes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133635,7 +133636,7 @@ rather than being numbered sequentially through the document. %package footnpag-doc Summary: Documentation for footnpag Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-footnpag-doc BuildArch: noarch AutoReqProv: No @@ -133648,7 +133649,7 @@ Provides: tex-forarray = %{tl_version} License: LPPL Summary: Using array structures in LaTeX Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133669,7 +133670,7 @@ lists and arrays. %package forarray-doc Summary: Documentation for forarray Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-forarray-doc BuildArch: noarch AutoReqProv: No @@ -133682,7 +133683,7 @@ Provides: tex-foreign = %{tl_version} License: LPPL 1.3 Summary: Systematic treatment of 'foreign' words in documents Version: svn27819.2.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133698,7 +133699,7 @@ foreign words in documents. %package foreign-doc Summary: Documentation for foreign Version: svn27819.2.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-foreign-doc BuildArch: noarch AutoReqProv: No @@ -133711,7 +133712,7 @@ Provides: tex-forloop = %{tl_version} License: LGPLv2+ Summary: Iteration in LaTeX Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133726,7 +133727,7 @@ LaTeX macro programming. %package forloop-doc Summary: Documentation for forloop Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-forloop-doc BuildArch: noarch AutoReqProv: No @@ -133739,7 +133740,7 @@ Provides: tex-formlett = %{tl_version} License: GPL+ Summary: Letters to multiple recipients Version: svn21480.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133753,7 +133754,7 @@ package offers parametrisation of the letters actually sent. %package formlett-doc Summary: Documentation for formlett Version: svn21480.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-formlett-doc BuildArch: noarch AutoReqProv: No @@ -133766,7 +133767,7 @@ Provides: tex-formular = %{tl_version} License: LPPL Summary: Create forms containing field for manual entry Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133783,7 +133784,7 @@ commands for defining such fields in a distinctive way. %package formular-doc Summary: Documentation for formular Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-formular-doc BuildArch: noarch AutoReqProv: No @@ -133796,7 +133797,7 @@ Provides: tex-fragments = %{tl_version} License: Public Domain Summary: Fragments of LaTeX code Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133817,7 +133818,7 @@ counters; and subscript, defining a \textsubscript command. %package fragments-doc Summary: Documentation for fragments Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fragments-doc BuildArch: noarch AutoReqProv: No @@ -133830,7 +133831,7 @@ Provides: tex-frame = %{tl_version} License: LPPL Summary: Framed boxes for Plain TeX Version: svn18312.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133846,7 +133847,7 @@ box of given dimensions. %package frame-doc Summary: Documentation for frame Version: svn18312.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frame-doc BuildArch: noarch AutoReqProv: No @@ -133859,7 +133860,7 @@ Provides: tex-framed = %{tl_version} License: Copyright only Summary: Framed or shaded regions that can break across pages Version: svn26789.0.96 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133879,7 +133880,7 @@ make your own framed-style environments. %package framed-doc Summary: Documentation for framed Version: svn26789.0.96 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-framed-doc BuildArch: noarch AutoReqProv: No @@ -133892,7 +133893,7 @@ Provides: tex-frankenstein = %{tl_version} License: Public Domain Summary: A collection of LaTeX packages Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133924,7 +133925,7 @@ moredefs, newclude, slemph, titles. %package frankenstein-doc Summary: Documentation for frankenstein Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frankenstein-doc BuildArch: noarch AutoReqProv: No @@ -133937,7 +133938,7 @@ Provides: tex-frege = %{tl_version} License: GPL+ Summary: Typeset fregean Begriffsschrift Version: svn27417.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133961,7 +133962,7 @@ the linewidth in the spacing of formulas. %package frege-doc Summary: Documentation for frege Version: svn27417.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-frege-doc BuildArch: noarch AutoReqProv: No @@ -133974,7 +133975,7 @@ Provides: tex-ftcap = %{tl_version} License: GPL+ Summary: Allows \caption at the beginning of a table-environment Version: svn17275.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -133991,7 +133992,7 @@ environment. %package ftcap-doc Summary: Documentation for ftcap Version: svn17275.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ftcap-doc BuildArch: noarch AutoReqProv: No @@ -134004,7 +134005,7 @@ Provides: tex-ftnxtra = %{tl_version} License: LPPL Summary: Extend the applicability of the \footnote command Version: svn29652.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134018,7 +134019,7 @@ environment, and \chapter and other \section-like commands. %package ftnxtra-doc Summary: Documentation for ftnxtra Version: svn29652.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ftnxtra-doc BuildArch: noarch AutoReqProv: No @@ -134031,7 +134032,7 @@ Provides: tex-fullblck = %{tl_version} License: LPPL Summary: Left-blocking for letter class Version: svn25434.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134045,7 +134046,7 @@ fullblock style (everything at the left margin). %package fullblck-doc Summary: Documentation for fullblck Version: svn25434.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fullblck-doc BuildArch: noarch AutoReqProv: No @@ -134058,7 +134059,7 @@ Provides: tex-fullminipage = %{tl_version} License: GPLv3+ Summary: Minipage spanning a complete page Version: svn34545.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134076,7 +134077,7 @@ around the minipage and configure the background. %package fullminipage-doc Summary: Documentation for fullminipage Version: svn34545.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fullminipage-doc BuildArch: noarch AutoReqProv: No @@ -134089,7 +134090,7 @@ Provides: tex-fullwidth = %{tl_version} License: LPPL Summary: Adjust margins of text block Version: svn24684.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134109,7 +134110,7 @@ different margins. %package fullwidth-doc Summary: Documentation for fullwidth Version: svn24684.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fullwidth-doc BuildArch: noarch AutoReqProv: No @@ -134122,7 +134123,7 @@ Provides: tex-fundus-calligra = %{tl_version} License: LPPL Summary: Support for the calligra font in LaTeX documents Version: svn26018.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134136,7 +134137,7 @@ in LaTeX documents. The package is part of the fundus bundle. %package fundus-calligra-doc Summary: Documentation for fundus-calligra Version: svn26018.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fundus-calligra-doc BuildArch: noarch AutoReqProv: No @@ -134149,7 +134150,7 @@ Provides: tex-fundus-cyr = %{tl_version} License: LPPL 1.3 Summary: Support for Washington University Cyrillic fonts Version: svn26019.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134168,7 +134169,7 @@ Provides: tex-fundus-sueterlin = %{tl_version} License: LPPL 1.3 Summary: Sutterlin Version: svn26030.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134183,7 +134184,7 @@ as part of the fundus bundle.. %package fundus-sueterlin-doc Summary: Documentation for fundus-sueterlin Version: svn26030.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fundus-sueterlin-doc BuildArch: noarch AutoReqProv: No @@ -134196,7 +134197,7 @@ Provides: tex-fwlw = %{tl_version} License: Copyright only Summary: Get first and last words of a page Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134213,7 +134214,7 @@ extracted. %package fwlw-doc Summary: Documentation for fwlw Version: svn29803.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fwlw-doc BuildArch: noarch AutoReqProv: No @@ -134226,7 +134227,7 @@ Provides: tex-g-brief = %{tl_version} License: LPPL Summary: Letter document class Version: svn21140.4.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134250,7 +134251,7 @@ both an 'old' and a 'new' version of g-brief. %package g-brief-doc Summary: Documentation for g-brief Version: svn21140.4.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-g-brief-doc BuildArch: noarch AutoReqProv: No @@ -134263,7 +134264,7 @@ Provides: tex-gauss = %{tl_version} License: LPPL Summary: A package for Gaussian operations Version: svn32934.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134278,7 +134279,7 @@ and column operations on matrices (a.k.a. Gaussian operations). %package gauss-doc Summary: Documentation for gauss Version: svn32934.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gauss-doc BuildArch: noarch AutoReqProv: No @@ -134291,7 +134292,7 @@ Provides: tex-gcard = %{tl_version} License: LPPL Summary: Arrange text on a sheet to fold into a greeting card Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134313,7 +134314,7 @@ minipages for formatting by the user. %package gcard-doc Summary: Documentation for gcard Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gcard-doc BuildArch: noarch AutoReqProv: No @@ -134326,7 +134327,7 @@ Provides: tex-gcite = %{tl_version} License: LPPL 1.3 Summary: Citations in a reader-friendly style Version: svn15878.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134347,7 +134348,7 @@ comment is invited. %package gcite-doc Summary: Documentation for gcite Version: svn15878.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gcite-doc BuildArch: noarch AutoReqProv: No @@ -134360,7 +134361,7 @@ Provides: tex-gender = %{tl_version} License: LPPL 1.3 Summary: Gender neutrality for languages with grammatical gender Version: svn36464.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134378,7 +134379,7 @@ also possible to use just one form out of a template. %package gender-doc Summary: Documentation for gender Version: svn36464.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gender-doc BuildArch: noarch AutoReqProv: No @@ -134391,7 +134392,7 @@ Provides: tex-genmpage = %{tl_version} License: LPPL Summary: Generalization of LaTeX's minipages Version: svn15878.0.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134409,7 +134410,7 @@ top and bottom margins. %package genmpage-doc Summary: Documentation for genmpage Version: svn15878.0.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-genmpage-doc BuildArch: noarch AutoReqProv: No @@ -134422,7 +134423,7 @@ Provides: tex-getfiledate = %{tl_version} License: LPPL Summary: Find the date of last modification of a file Version: svn16189.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134444,7 +134445,7 @@ user may specify how the date is to be presented. %package getfiledate-doc Summary: Documentation for getfiledate Version: svn16189.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-getfiledate-doc BuildArch: noarch AutoReqProv: No @@ -134457,7 +134458,7 @@ Provides: tex-ginpenc = %{tl_version} License: LPPL Summary: Modification of inputenc for German Version: svn24980.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134474,7 +134475,7 @@ babel, e.g., "a instead, if the text is typeset in German. %package ginpenc-doc Summary: Documentation for ginpenc Version: svn24980.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ginpenc-doc BuildArch: noarch AutoReqProv: No @@ -134487,7 +134488,7 @@ Provides: tex-gitinfo = %{tl_version} License: LPPL 1.3 Summary: Access metadata from the git distributed version control system Version: svn34049.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134509,7 +134510,7 @@ new repositories should use gitinfo2. %package gitinfo-doc Summary: Documentation for gitinfo Version: svn34049.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gitinfo-doc BuildArch: noarch AutoReqProv: No @@ -134522,7 +134523,7 @@ Provides: tex-gitinfo2 = %{tl_version} License: LPPL 1.3 Summary: Access metadata from the git distributed version control system Version: svn38913 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134547,7 +134548,7 @@ the package. %package gitinfo2-doc Summary: Documentation for gitinfo2 Version: svn38913 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gitinfo2-doc BuildArch: noarch AutoReqProv: No @@ -134560,7 +134561,7 @@ Provides: tex-gloss = %{tl_version} License: LPPL Summary: Create glossaries using BibTeX Version: svn15878.1.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134573,7 +134574,7 @@ A glossary package using BibTeX with \cite replaced by \gloss. %package gloss-doc Summary: Documentation for gloss Version: svn15878.1.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gloss-doc BuildArch: noarch AutoReqProv: No @@ -134586,7 +134587,7 @@ Provides: tex-glossaries = %{tl_version} License: LPPL 1.3 Summary: Create glossaries and lists of acronyms Version: svn41423 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134662,7 +134663,7 @@ obsolete), and a conversion tool is provided. %package glossaries-doc Summary: Documentation for glossaries Version: svn41423 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-doc BuildArch: noarch AutoReqProv: No @@ -134675,7 +134676,7 @@ Summary: Binaries for glossaries Version: svn37813.0 Requires: texlive-base Requires: texlive-glossaries -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description glossaries-bin @@ -134686,7 +134687,7 @@ Provides: tex-glossaries-danish = %{tl_version} License: LPPL 1.3 Summary: Danish language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134699,7 +134700,7 @@ Danish language module for glossaries package. %package glossaries-danish-doc Summary: Documentation for glossaries-danish Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-danish-doc BuildArch: noarch AutoReqProv: No @@ -134712,7 +134713,7 @@ Provides: tex-glossaries-dutch = %{tl_version} License: LPPL 1.3 Summary: Dutch language module for glossaries package Version: svn35685.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134725,7 +134726,7 @@ Dutch language module for glossariesr package. %package glossaries-dutch-doc Summary: Documentation for glossaries-dutch Version: svn35685.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-dutch-doc BuildArch: noarch AutoReqProv: No @@ -134738,7 +134739,7 @@ Provides: tex-glossaries-english = %{tl_version} License: LPPL 1.3 Summary: English language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134751,7 +134752,7 @@ English language module for glossariesr package. %package glossaries-english-doc Summary: Documentation for glossaries-english Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-english-doc BuildArch: noarch AutoReqProv: No @@ -134764,7 +134765,7 @@ Provides: tex-glossaries-french = %{tl_version} License: LPPL 1.3 Summary: French language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134777,7 +134778,7 @@ French language module for glossaries package. %package glossaries-french-doc Summary: Documentation for glossaries-french Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-french-doc BuildArch: noarch AutoReqProv: No @@ -134790,7 +134791,7 @@ Provides: tex-glossaries-german = %{tl_version} License: LPPL 1.3 Summary: German language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134803,7 +134804,7 @@ German language module for glossariesr package. %package glossaries-german-doc Summary: Documentation for glossaries-german Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-german-doc BuildArch: noarch AutoReqProv: No @@ -134816,7 +134817,7 @@ Provides: tex-glossaries-irish = %{tl_version} License: LPPL 1.3 Summary: Irish language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134831,7 +134832,7 @@ Irish language module for glossariesr package. %package glossaries-irish-doc Summary: Documentation for glossaries-irish Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-irish-doc BuildArch: noarch AutoReqProv: No @@ -134844,7 +134845,7 @@ Provides: tex-glossaries-italian = %{tl_version} License: LPPL 1.3 Summary: Italian language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134857,7 +134858,7 @@ Italian language module for glossaries package. %package glossaries-italian-doc Summary: Documentation for glossaries-italian Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-italian-doc BuildArch: noarch AutoReqProv: No @@ -134870,7 +134871,7 @@ Provides: tex-glossaries-magyar = %{tl_version} License: LPPL 1.3 Summary: Magyar language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134885,7 +134886,7 @@ Magyar language module for glossariesr package. %package glossaries-magyar-doc Summary: Documentation for glossaries-magyar Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-magyar-doc BuildArch: noarch AutoReqProv: No @@ -134898,7 +134899,7 @@ Provides: tex-glossaries-polish = %{tl_version} License: LPPL 1.3 Summary: Polish language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134913,7 +134914,7 @@ Polish language module for glossariesr package. %package glossaries-polish-doc Summary: Documentation for glossaries-polish Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-polish-doc BuildArch: noarch AutoReqProv: No @@ -134926,7 +134927,7 @@ Provides: tex-glossaries-portuges = %{tl_version} License: LPPL 1.3 Summary: Portuges language module for glossaries package Version: svn36064.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134942,7 +134943,7 @@ Portuges language module for glossaries package. %package glossaries-portuges-doc Summary: Documentation for glossaries-portuges Version: svn36064.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-portuges-doc BuildArch: noarch AutoReqProv: No @@ -134955,7 +134956,7 @@ Provides: tex-glossaries-serbian = %{tl_version} License: LPPL 1.3 Summary: Serbian language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134970,7 +134971,7 @@ Serbian language module for glossaries package. %package glossaries-serbian-doc Summary: Documentation for glossaries-serbian Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-serbian-doc BuildArch: noarch AutoReqProv: No @@ -134983,7 +134984,7 @@ Provides: tex-glossaries-spanish = %{tl_version} License: LPPL 1.3 Summary: Spanish language module for glossaries package Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -134998,7 +134999,7 @@ Spanish language module for glossaries package. %package glossaries-spanish-doc Summary: Documentation for glossaries-spanish Version: svn35665.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-glossaries-spanish-doc BuildArch: noarch AutoReqProv: No @@ -135011,7 +135012,7 @@ Provides: tex-gmdoc = %{tl_version} License: LPPL Summary: Documentation of LaTeX packages Version: svn21292.0.993 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135051,7 +135052,7 @@ files are provided that may be used to typeset the LaTeX Base. %package gmdoc-doc Summary: Documentation for gmdoc Version: svn21292.0.993 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmdoc-doc BuildArch: noarch AutoReqProv: No @@ -135064,7 +135065,7 @@ Provides: tex-gmdoc-enhance = %{tl_version} License: LPPL Summary: Some enhancements to the gmdoc package Version: svn15878.v0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135081,7 +135082,7 @@ to "comment out" some code, and a macro to input other files in %package gmdoc-enhance-doc Summary: Documentation for gmdoc-enhance Version: svn15878.v0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmdoc-enhance-doc BuildArch: noarch AutoReqProv: No @@ -135094,7 +135095,7 @@ Provides: tex-gmiflink = %{tl_version} License: LPPL Summary: Simplify usage of \hypertarget and \hyperlink Version: svn15878.v0.97 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135111,7 +135112,7 @@ hypertarget or label. %package gmiflink-doc Summary: Documentation for gmiflink Version: svn15878.v0.97 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmiflink-doc BuildArch: noarch AutoReqProv: No @@ -135124,7 +135125,7 @@ Provides: tex-gmutils = %{tl_version} License: LPPL Summary: Support macros for other packages Version: svn24287.v0.996 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135163,7 +135164,7 @@ if the argument environment is defined). %package gmutils-doc Summary: Documentation for gmutils Version: svn24287.v0.996 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmutils-doc BuildArch: noarch AutoReqProv: No @@ -135176,7 +135177,7 @@ Provides: tex-gmverb = %{tl_version} License: LPPL Summary: A variant of LaTeX \verb, verbatim and shortvrb Version: svn24288.v0.98 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135197,7 +135198,7 @@ gmutils package. %package gmverb-doc Summary: Documentation for gmverb Version: svn24288.v0.98 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmverb-doc BuildArch: noarch AutoReqProv: No @@ -135210,7 +135211,7 @@ Provides: tex-graphbox = %{tl_version} License: LPPL 1.3 Summary: Extend graphicx to improve placement of graphics Version: svn35075.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135231,7 +135232,7 @@ framework. %package graphbox-doc Summary: Documentation for graphbox Version: svn35075.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphbox-doc BuildArch: noarch AutoReqProv: No @@ -135244,7 +135245,7 @@ Provides: tex-graphicx-psmin = %{tl_version} License: LPPL Summary: Reduce size of PostScript files by not repeating images Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135266,7 +135267,7 @@ file, anyway). %package graphicx-psmin-doc Summary: Documentation for graphicx-psmin Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphicx-psmin-doc BuildArch: noarch AutoReqProv: No @@ -135279,7 +135280,7 @@ Provides: tex-graphicxbox = %{tl_version} License: LPPL Summary: Insert a graphical image as a background Version: svn32630.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135297,7 +135298,7 @@ also draws a colored frame around the box. %package graphicxbox-doc Summary: Documentation for graphicxbox Version: svn32630.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphicxbox-doc BuildArch: noarch AutoReqProv: No @@ -135310,7 +135311,7 @@ Provides: tex-grfpaste = %{tl_version} License: LPPL Summary: Include fragments of a dvi file Version: svn17354.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135326,7 +135327,7 @@ include dvi files. The package requires the dvipaste program. %package grfpaste-doc Summary: Documentation for grfpaste Version: svn17354.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grfpaste-doc BuildArch: noarch AutoReqProv: No @@ -135339,7 +135340,7 @@ Provides: tex-grid = %{tl_version} License: LPPL Summary: Grid typesetting in LaTeX Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135360,7 +135361,7 @@ beginning... %package grid-doc Summary: Documentation for grid Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grid-doc BuildArch: noarch AutoReqProv: No @@ -135373,7 +135374,7 @@ Provides: tex-grid-system = %{tl_version} License: ASL 2.0 Summary: Page organisation, modelled on CSS facilities Version: svn32981.0.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135393,7 +135394,7 @@ for creating box layouts as used in brochures. %package grid-system-doc Summary: Documentation for grid-system Version: svn32981.0.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grid-system-doc BuildArch: noarch AutoReqProv: No @@ -135406,7 +135407,7 @@ Provides: tex-gridset = %{tl_version} License: LPPL Summary: Grid, a.k.a. in-register, setting Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135427,7 +135428,7 @@ solution. %package gridset-doc Summary: Documentation for gridset Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gridset-doc BuildArch: noarch AutoReqProv: No @@ -135440,7 +135441,7 @@ Provides: tex-gtl = %{tl_version} License: LPPL Summary: Manipulating generalized token lists Version: svn38503 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135458,7 +135459,7 @@ a time. The package requires an up-to-date l3kernel bundle. %package gtl-doc Summary: Documentation for gtl Version: svn38503 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gtl-doc BuildArch: noarch AutoReqProv: No @@ -135471,7 +135472,7 @@ Provides: tex-guitlogo = %{tl_version} License: LPPL Summary: Macros for typesetting the GuIT logo Version: svn27458.0.9.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135499,7 +135500,7 @@ Documentation is available in Italian, only. %package guitlogo-doc Summary: Documentation for guitlogo Version: svn27458.0.9.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-guitlogo-doc BuildArch: noarch AutoReqProv: No @@ -135512,7 +135513,7 @@ Provides: tex-handout = %{tl_version} License: LPPL 1.3 Summary: Create handout for auditors of a talk Version: svn36877.1.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135532,7 +135533,7 @@ preparation of such handouts when writing the talk. %package handout-doc Summary: Documentation for handout Version: svn36877.1.2.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-handout-doc BuildArch: noarch AutoReqProv: No @@ -135545,7 +135546,7 @@ Provides: tex-hang = %{tl_version} License: LPPL 1.3 Summary: Environments for hanging paragraphs and list items Version: svn37383.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135560,7 +135561,7 @@ paragraphs and list items. %package hang-doc Summary: Documentation for hang Version: svn37383.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hang-doc BuildArch: noarch AutoReqProv: No @@ -135573,7 +135574,7 @@ Provides: tex-hanging = %{tl_version} License: LPPL 1.3 Summary: Hanging paragraphs Version: svn15878.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135593,7 +135594,7 @@ advantage of the support offered in recent versions of pdfTeX. %package hanging-doc Summary: Documentation for hanging Version: svn15878.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hanging-doc BuildArch: noarch AutoReqProv: No @@ -135606,7 +135607,7 @@ Provides: tex-hardwrap = %{tl_version} License: LPPL 1.3 Summary: Hard wrap text to a certain character length Version: svn21396.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135627,7 +135628,7 @@ this useful when writing out arbitary text to an external file. %package hardwrap-doc Summary: Documentation for hardwrap Version: svn21396.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hardwrap-doc BuildArch: noarch AutoReqProv: No @@ -135640,7 +135641,7 @@ Provides: tex-harnon-cv = %{tl_version} License: Public Domain Summary: A CV document class with a vertical timeline for experience Version: svn26543.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135654,7 +135655,7 @@ simple means of adding an 'experience timeline'. %package harnon-cv-doc Summary: Documentation for harnon-cv Version: svn26543.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harnon-cv-doc BuildArch: noarch AutoReqProv: No @@ -135667,7 +135668,7 @@ Provides: tex-harpoon = %{tl_version} License: Public Domain Summary: Extra harpoons, using the graphics package Version: svn21327.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135684,7 +135685,7 @@ commands, so that they have the look of accent commands. %package harpoon-doc Summary: Documentation for harpoon Version: svn21327.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harpoon-doc BuildArch: noarch AutoReqProv: No @@ -135697,7 +135698,7 @@ Provides: tex-hc = %{tl_version} License: GPLv2+ Summary: Replacement for the LaTeX classes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135730,7 +135731,7 @@ hcreport, hcletter, and hcslides. %package hc-doc Summary: Documentation for hc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hc-doc BuildArch: noarch AutoReqProv: No @@ -135743,7 +135744,7 @@ Provides: tex-he-she = %{tl_version} License: LPPL 1.3 Summary: Alternating pronouns to aid gender-neutral writing Version: svn41359 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135762,7 +135763,7 @@ reflect the current gender choice. %package he-she-doc Summary: Documentation for he-she Version: svn41359 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-he-she-doc BuildArch: noarch AutoReqProv: No @@ -135775,7 +135776,7 @@ Provides: tex-hhtensor = %{tl_version} License: LPPL Summary: Print vectors, matrices, and tensors Version: svn24981.0.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135792,7 +135793,7 @@ underlined, and bold). %package hhtensor-doc Summary: Documentation for hhtensor Version: svn24981.0.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hhtensor-doc BuildArch: noarch AutoReqProv: No @@ -135805,7 +135806,7 @@ Provides: tex-histogr = %{tl_version} License: LPPL 1.3 Summary: Draw histograms with the LaTeX picture environment Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135819,7 +135820,7 @@ LaTeX picture-environment. %package histogr-doc Summary: Documentation for histogr Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-histogr-doc BuildArch: noarch AutoReqProv: No @@ -135832,7 +135833,7 @@ Provides: tex-hitec = %{tl_version} License: LPPL Summary: Class for documentation Version: svn15878.0.0_beta_ -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135846,7 +135847,7 @@ high-technology companies. %package hitec-doc Summary: Documentation for hitec Version: svn15878.0.0_beta_ -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hitec-doc BuildArch: noarch AutoReqProv: No @@ -135859,7 +135860,7 @@ Provides: tex-hletter = %{tl_version} License: LPPL 1.2 Summary: Flexible letter typesetting with flexible page headings Version: svn30002.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135886,7 +135887,7 @@ signees. The package works with the merge package. %package hletter-doc Summary: Documentation for hletter Version: svn30002.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hletter-doc BuildArch: noarch AutoReqProv: No @@ -135899,7 +135900,7 @@ Provides: tex-hpsdiss = %{tl_version} License: GPL+ Summary: A dissertation class Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135921,7 +135922,7 @@ sample of the output is shown in the PDF documentation link. %package hpsdiss-doc Summary: Documentation for hpsdiss Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hpsdiss-doc BuildArch: noarch AutoReqProv: No @@ -135934,7 +135935,7 @@ Provides: tex-hrefhide = %{tl_version} License: LPPL 1.3 Summary: Suppress hyper links when printing Version: svn22255.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135956,7 +135957,7 @@ text.) %package hrefhide-doc Summary: Documentation for hrefhide Version: svn22255.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hrefhide-doc BuildArch: noarch AutoReqProv: No @@ -135969,7 +135970,7 @@ Provides: tex-hvindex = %{tl_version} License: LPPL Summary: Support for indexing Version: svn16136.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -135986,7 +135987,7 @@ is both typeset and indexed. %package hvindex-doc Summary: Documentation for hvindex Version: svn16136.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hvindex-doc BuildArch: noarch AutoReqProv: No @@ -135999,7 +136000,7 @@ Provides: tex-hypdvips = %{tl_version} License: LPPL 1.3 Summary: Hyperref extensions for use with dvips Version: svn34364.3.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136021,7 +136022,7 @@ which in addition allows an enhanced back-referencing system. %package hypdvips-doc Summary: Documentation for hypdvips Version: svn34364.3.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hypdvips-doc BuildArch: noarch AutoReqProv: No @@ -136034,7 +136035,7 @@ Provides: tex-hyper = %{tl_version} License: LPPL Summary: Hypertext cross referencing Version: svn17357.4.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136052,7 +136053,7 @@ xdvi. The package is now largely superseded by hyperref. %package hyper-doc Summary: Documentation for hyper Version: svn17357.4.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyper-doc BuildArch: noarch AutoReqProv: No @@ -136065,7 +136066,7 @@ Provides: tex-hypernat = %{tl_version} License: GPL+ Summary: Allow hyperref and natbib to work together Version: svn17358.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136082,7 +136083,7 @@ bibliography. %package hypernat-doc Summary: Documentation for hypernat Version: svn17358.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hypernat-doc BuildArch: noarch AutoReqProv: No @@ -136093,7 +136094,7 @@ Documentation for hypernat %package hyperref-docsrc-doc Summary: Documentation for hyperref-docsrc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyperref-docsrc-doc BuildArch: noarch AutoReqProv: No @@ -136106,7 +136107,7 @@ Provides: tex-hyperxmp = %{tl_version} License: LPPL 1.3 Summary: Embed XMP metadata within a LaTeX document Version: svn40805 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136148,7 +136149,7 @@ latex+dvipdfm, and latex+dvips+ps2pdf. %package hyperxmp-doc Summary: Documentation for hyperxmp Version: svn40805 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyperxmp-doc BuildArch: noarch AutoReqProv: No @@ -136161,7 +136162,7 @@ Provides: tex-hyphenat = %{tl_version} License: LPPL 1.3 Summary: Disable/enable hypenation Version: svn15878.2.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136178,7 +136179,7 @@ text typeset in monospaced (e.g., cmtt) fonts. %package hyphenat-doc Summary: Documentation for hyphenat Version: svn15878.2.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyphenat-doc BuildArch: noarch AutoReqProv: No @@ -136191,7 +136192,7 @@ Provides: tex-idxcmds = %{tl_version} License: LPPL 1.3 Summary: Semantic commands for adding formatted index entries Version: svn38115.0.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136208,7 +136209,7 @@ entries; it arises from the author's work on large documents. %package idxcmds-doc Summary: Documentation for idxcmds Version: svn38115.0.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-idxcmds-doc BuildArch: noarch AutoReqProv: No @@ -136221,7 +136222,7 @@ Provides: tex-idxlayout = %{tl_version} License: LPPL Summary: Configurable index layout, responsive to KOMA-Script and memoir Version: svn25821.0.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136243,7 +136244,7 @@ memoir classes. %package idxlayout-doc Summary: Documentation for idxlayout Version: svn25821.0.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-idxlayout-doc BuildArch: noarch AutoReqProv: No @@ -136256,7 +136257,7 @@ Provides: tex-ifmslide = %{tl_version} License: LPPL 1.2 Summary: Presentation slides for screen and printouts Version: svn20727.0.47 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136285,7 +136286,7 @@ manual describes all functions and provides a sample. %package ifmslide-doc Summary: Documentation for ifmslide Version: svn20727.0.47 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifmslide-doc BuildArch: noarch AutoReqProv: No @@ -136298,7 +136299,7 @@ Provides: tex-ifnextok = %{tl_version} License: LPPL 1.3 Summary: Utility macro: peek ahead without ignoring spaces Version: svn23379.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136319,7 +136320,7 @@ source. %package ifnextok-doc Summary: Documentation for ifnextok Version: svn23379.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifnextok-doc BuildArch: noarch AutoReqProv: No @@ -136332,7 +136333,7 @@ Provides: tex-ifoddpage = %{tl_version} License: LPPL 1.3 Summary: Determine if the current page is odd or even Version: svn40726 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136351,7 +136352,7 @@ the odd page layout. %package ifoddpage-doc Summary: Documentation for ifoddpage Version: svn40726 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifoddpage-doc BuildArch: noarch AutoReqProv: No @@ -136364,7 +136365,7 @@ Provides: tex-ifplatform = %{tl_version} License: LPPL Summary: Conditionals to test which platform is being used Version: svn21156.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136387,7 +136388,7 @@ systems. %package ifplatform-doc Summary: Documentation for ifplatform Version: svn21156.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifplatform-doc BuildArch: noarch AutoReqProv: No @@ -136400,7 +136401,7 @@ Provides: tex-ifthenx = %{tl_version} License: LPPL Summary: Extra tests for \ifthenelse Version: svn25819.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136418,7 +136419,7 @@ as xifthen is loaded first. %package ifthenx-doc Summary: Documentation for ifthenx Version: svn25819.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ifthenx-doc BuildArch: noarch AutoReqProv: No @@ -136431,7 +136432,7 @@ Provides: tex-iitem = %{tl_version} License: LPPL Summary: Multiple level of lists in one list-like environment Version: svn29613.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136451,7 +136452,7 @@ write \begin{enumerate} \item 1 \iitem 2 \iiitem 3 \ivtem 4 %package iitem-doc Summary: Documentation for iitem Version: svn29613.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iitem-doc BuildArch: noarch AutoReqProv: No @@ -136464,7 +136465,7 @@ Provides: tex-image-gallery = %{tl_version} License: LPPL Summary: Create an overview of pictures from a digital camera or from other sources Version: svn15878.v1.0j -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136485,7 +136486,7 @@ shows the usage. %package image-gallery-doc Summary: Documentation for image-gallery Version: svn15878.v1.0j -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-image-gallery-doc BuildArch: noarch AutoReqProv: No @@ -136498,7 +136499,7 @@ Provides: tex-imakeidx = %{tl_version} License: LPPL 1.3 Summary: A package for producing multiple indexes Version: svn41241 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136524,7 +136525,7 @@ used. %package imakeidx-doc Summary: Documentation for imakeidx Version: svn41241 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-imakeidx-doc BuildArch: noarch AutoReqProv: No @@ -136537,7 +136538,7 @@ Provides: tex-import = %{tl_version} License: Public Domain Summary: Establish input relative to a directory Version: svn17361.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136554,7 +136555,7 @@ load files relative to the \import-ed directory. There are also %package import-doc Summary: Documentation for import Version: svn17361.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-import-doc BuildArch: noarch AutoReqProv: No @@ -136567,7 +136568,7 @@ Provides: tex-incgraph = %{tl_version} License: LPPL 1.3 Summary: Sophisticated graphics inclusion in a PDF document Version: svn36500.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136591,7 +136592,7 @@ has basic macros and a 'convenience' user interface that wraps %package incgraph-doc Summary: Documentation for incgraph Version: svn36500.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-incgraph-doc BuildArch: noarch AutoReqProv: No @@ -136604,7 +136605,7 @@ Provides: tex-indextools = %{tl_version} License: LPPL 1.3 Summary: A fork of imakeidx to fixe one bug with bidi Version: svn38931 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136629,7 +136630,7 @@ functionalities very useful in the field of humanities. %package indextools-doc Summary: Documentation for indextools Version: svn38931 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-indextools-doc BuildArch: noarch AutoReqProv: No @@ -136642,7 +136643,7 @@ Provides: tex-inlinedef = %{tl_version} License: LPPL Summary: Inline expansions within definitions Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136665,7 +136666,7 @@ variables, then ending the group with %package inlinedef-doc Summary: Documentation for inlinedef Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-inlinedef-doc BuildArch: noarch AutoReqProv: No @@ -136678,7 +136679,7 @@ Provides: tex-inputtrc = %{tl_version} License: LPPL 1.3 Summary: Trace which file loads which Version: svn28019.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136696,7 +136697,7 @@ somewhat resembles those of packages FiNK and inputfile. %package inputtrc-doc Summary: Documentation for inputtrc Version: svn28019.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-inputtrc-doc BuildArch: noarch AutoReqProv: No @@ -136709,7 +136710,7 @@ Provides: tex-interactiveworkbook = %{tl_version} License: LPPL Summary: LaTeX-based interactive PDF on the Web Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136732,7 +136733,7 @@ freely use mathematical notation. %package interactiveworkbook-doc Summary: Documentation for interactiveworkbook Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-interactiveworkbook-doc BuildArch: noarch AutoReqProv: No @@ -136745,7 +136746,7 @@ Provides: tex-interfaces = %{tl_version} License: LPPL 1.3 Summary: Set parameters for other packages, conveniently Version: svn21474.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136801,7 +136802,7 @@ job. %package interfaces-doc Summary: Documentation for interfaces Version: svn21474.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-interfaces-doc BuildArch: noarch AutoReqProv: No @@ -136814,7 +136815,7 @@ Provides: tex-inversepath = %{tl_version} License: LPPL 1.3 Summary: Calculate inverse file paths Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136829,7 +136830,7 @@ different directory. %package inversepath-doc Summary: Documentation for inversepath Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-inversepath-doc BuildArch: noarch AutoReqProv: No @@ -136842,7 +136843,7 @@ Provides: tex-invoice = %{tl_version} License: GPL+ Summary: Generate invoices Version: svn39397 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136863,7 +136864,7 @@ depends on the fp and calc packages for its calculations. %package invoice-doc Summary: Documentation for invoice Version: svn39397 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-invoice-doc BuildArch: noarch AutoReqProv: No @@ -136876,7 +136877,7 @@ Provides: tex-iso = %{tl_version} License: LPPL Summary: Generic ISO standards typesetting macros Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136898,7 +136899,7 @@ package, rather than use other mechanisms directly. %package iso-doc Summary: Documentation for iso Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iso-doc BuildArch: noarch AutoReqProv: No @@ -136911,7 +136912,7 @@ Provides: tex-iso10303 = %{tl_version} License: LPPL Summary: Typesetting the STEP standards Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -136972,7 +136973,7 @@ packages have been published by ISO. %package iso10303-doc Summary: Documentation for iso10303 Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iso10303-doc BuildArch: noarch AutoReqProv: No @@ -136985,7 +136986,7 @@ Provides: tex-isodate = %{tl_version} License: LPPL Summary: Tune the output format of dates according to language Version: svn16613.2.28 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137013,7 +137014,7 @@ Norwegian. %package isodate-doc Summary: Documentation for isodate Version: svn16613.2.28 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isodate-doc BuildArch: noarch AutoReqProv: No @@ -137026,7 +137027,7 @@ Provides: tex-isodoc = %{tl_version} License: LPPL 1.3 Summary: A LaTeX class for typesetting letters and invoices Version: svn39520 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137055,7 +137056,7 @@ implements the NEN1026 standard. %package isodoc-doc Summary: Documentation for isodoc Version: svn39520 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isodoc-doc BuildArch: noarch AutoReqProv: No @@ -137068,7 +137069,7 @@ Provides: tex-isonums = %{tl_version} License: LPPL Summary: Display numbers in maths mode according to ISO 31-0 Version: svn17362.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137086,7 +137087,7 @@ text source. %package isonums-doc Summary: Documentation for isonums Version: svn17362.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isonums-doc BuildArch: noarch AutoReqProv: No @@ -137099,7 +137100,7 @@ Provides: tex-isorot = %{tl_version} License: LPPL Summary: Rotation of document elements Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137117,7 +137118,7 @@ class but may be used with any normal class. %package isorot-doc Summary: Documentation for isorot Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isorot-doc BuildArch: noarch AutoReqProv: No @@ -137130,7 +137131,7 @@ Provides: tex-isotope = %{tl_version} License: LPPL Summary: A package for typesetting isotopes Version: svn23711.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137146,7 +137147,7 @@ an unsatisfactory result.) %package isotope-doc Summary: Documentation for isotope Version: svn23711.v0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isotope-doc BuildArch: noarch AutoReqProv: No @@ -137159,7 +137160,7 @@ Provides: tex-issuulinks = %{tl_version} License: LPPL 1.3 Summary: Produce external links instead of internal ones Version: svn25742.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137181,7 +137182,7 @@ hyperref, it must be loaded it AFTER hyperref. %package issuulinks-doc Summary: Documentation for issuulinks Version: svn25742.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-issuulinks-doc BuildArch: noarch AutoReqProv: No @@ -137194,7 +137195,7 @@ Provides: tex-iwhdp = %{tl_version} License: LPPL 1.3 Summary: Halle Institute for Economic Research (IWH) Discussion Papers Version: svn37552.0.50 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137209,7 +137210,7 @@ The class offers options for both English and German texts. %package iwhdp-doc Summary: Documentation for iwhdp Version: svn37552.0.50 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-iwhdp-doc BuildArch: noarch AutoReqProv: No @@ -137222,7 +137223,7 @@ Provides: tex-jlabels = %{tl_version} License: Bibtex or LPPL Summary: Make letter-sized pages of labels Version: svn24858.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137240,7 +137241,7 @@ columns. %package jlabels-doc Summary: Documentation for jlabels Version: svn24858.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jlabels-doc BuildArch: noarch AutoReqProv: No @@ -137253,7 +137254,7 @@ Provides: tex-jslectureplanner = %{tl_version} License: LPPL 1.3 Summary: Creation and management of university course material Version: svn41043 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137285,7 +137286,7 @@ biblatex. %package jslectureplanner-doc Summary: Documentation for jslectureplanner Version: svn41043 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jslectureplanner-doc BuildArch: noarch AutoReqProv: No @@ -137298,7 +137299,7 @@ Provides: tex-jumplines = %{tl_version} License: LPPL 1.3 Summary: Articles with teasers and continuation later on Version: svn37553.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137326,7 +137327,7 @@ split boxes. %package jumplines-doc Summary: Documentation for jumplines Version: svn37553.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jumplines-doc BuildArch: noarch AutoReqProv: No @@ -137339,7 +137340,7 @@ Provides: tex-jvlisting = %{tl_version} License: LPPL Summary: A replacement for LaTeX's verbatim package Version: svn24638.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137360,7 +137361,7 @@ customised and extended. %package jvlisting-doc Summary: Documentation for jvlisting Version: svn24638.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jvlisting-doc BuildArch: noarch AutoReqProv: No @@ -137373,7 +137374,7 @@ Provides: tex-kantlipsum = %{tl_version} License: LPPL 1.3 Summary: Generate sentences in Kant's style Version: svn27994.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137391,7 +137392,7 @@ modelled on lipsum, and may be used for similar purposes. %package kantlipsum-doc Summary: Documentation for kantlipsum Version: svn27994.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kantlipsum-doc BuildArch: noarch AutoReqProv: No @@ -137404,7 +137405,7 @@ Provides: tex-kerntest = %{tl_version} License: LPPL Summary: Print tables and generate control files to adjust kernings Version: svn15878.1.32 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137441,7 +137442,7 @@ virtual font for later use in LaTeX. %package kerntest-doc Summary: Documentation for kerntest Version: svn15878.1.32 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kerntest-doc BuildArch: noarch AutoReqProv: No @@ -137454,7 +137455,7 @@ Provides: tex-keycommand = %{tl_version} License: LPPL Summary: Simple creation of commands with key-value arguments Version: svn18042.3.1415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137476,7 +137477,7 @@ kvsetkeys by Heiko Oberdiek. %package keycommand-doc Summary: Documentation for keycommand Version: svn18042.3.1415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-keycommand-doc BuildArch: noarch AutoReqProv: No @@ -137489,7 +137490,7 @@ Provides: tex-keyreader = %{tl_version} License: LPPL 1.3 Summary: A robust interface to xkeyval Version: svn28195.0.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137508,7 +137509,7 @@ users, it has been reinstated. %package keyreader-doc Summary: Documentation for keyreader Version: svn28195.0.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-keyreader-doc BuildArch: noarch AutoReqProv: No @@ -137521,7 +137522,7 @@ Provides: tex-keystroke = %{tl_version} License: GPL+ Summary: Graphical representation of keys on keyboard Version: svn17992.v1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137536,7 +137537,7 @@ representation of the keys on a computer keyboard. %package keystroke-doc Summary: Documentation for keystroke Version: svn17992.v1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-keystroke-doc BuildArch: noarch AutoReqProv: No @@ -137549,7 +137550,7 @@ Provides: tex-keyval2e = %{tl_version} License: LPPL 1.3 Summary: A lightweight and robust key-value parser Version: svn23698.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137567,7 +137568,7 @@ package. %package keyval2e-doc Summary: Documentation for keyval2e Version: svn23698.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-keyval2e-doc BuildArch: noarch AutoReqProv: No @@ -137580,7 +137581,7 @@ Provides: tex-kix = %{tl_version} License: LPPL Summary: Typeset KIX codes Version: svn21606.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137595,7 +137596,7 @@ trade mark of PTT Post Holdings B. V. %package kix-doc Summary: Documentation for kix Version: svn21606.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kix-doc BuildArch: noarch AutoReqProv: No @@ -137608,7 +137609,7 @@ Provides: tex-koma-moderncvclassic = %{tl_version} License: LPPL 1.3 Summary: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex Version: svn25025.v0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137634,7 +137635,7 @@ moderncv-class is incompatible with biblatex. %package koma-moderncvclassic-doc Summary: Documentation for koma-moderncvclassic Version: svn25025.v0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-koma-moderncvclassic-doc BuildArch: noarch AutoReqProv: No @@ -137647,7 +137648,7 @@ Provides: tex-koma-script-sfs = %{tl_version} License: LPPL Summary: Koma-script letter class option for Finnish Version: svn26137.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137664,7 +137665,7 @@ the window, but ordinary 3-line address should fit). %package koma-script-sfs-doc Summary: Documentation for koma-script-sfs Version: svn26137.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-koma-script-sfs-doc BuildArch: noarch AutoReqProv: No @@ -137677,7 +137678,7 @@ Provides: tex-komacv = %{tl_version} License: LPPL 1.3 Summary: Typesetting a beuatiful CV with various style options Version: svn34906.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137714,7 +137715,7 @@ tune the output. %package komacv-doc Summary: Documentation for komacv Version: svn34906.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-komacv-doc BuildArch: noarch AutoReqProv: No @@ -137727,7 +137728,7 @@ Provides: tex-ktv-texdata = %{tl_version} License: GPL+ Summary: Extract subsets of documents Version: svn27369.05.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137746,7 +137747,7 @@ of exercises, it plainly has more general application. %package ktv-texdata-doc Summary: Documentation for ktv-texdata Version: svn27369.05.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ktv-texdata-doc BuildArch: noarch AutoReqProv: No @@ -137759,7 +137760,7 @@ Provides: tex-l3build = %{tl_version} License: LPPL 1.3 Summary: A testing and building system for (La)TeX Version: svn40146 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137779,7 +137780,7 @@ different schedule. %package l3build-doc Summary: Documentation for l3build Version: svn40146 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-l3build-doc BuildArch: noarch AutoReqProv: No @@ -137792,7 +137793,7 @@ Provides: tex-labbook = %{tl_version} License: LPPL Summary: Typeset laboratory journals Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137810,7 +137811,7 @@ be several index entries for one experiment. %package labbook-doc Summary: Documentation for labbook Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-labbook-doc BuildArch: noarch AutoReqProv: No @@ -137823,7 +137824,7 @@ Provides: tex-labels = %{tl_version} License: LPPL 1.2 Summary: Print sheets of sticky labels Version: svn15878.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137844,7 +137845,7 @@ sheet being used. %package labels-doc Summary: Documentation for labels Version: svn15878.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-labels-doc BuildArch: noarch AutoReqProv: No @@ -137857,7 +137858,7 @@ Provides: tex-lastpackage = %{tl_version} License: LPPL 1.3 Summary: Indicates the last loaded package Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137873,7 +137874,7 @@ examples are provided in the documentation. %package lastpackage-doc Summary: Documentation for lastpackage Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lastpackage-doc BuildArch: noarch AutoReqProv: No @@ -137886,7 +137887,7 @@ Provides: tex-lastpage = %{tl_version} License: LPPL 1.3 Summary: Reference last page for Page N of M type footers Version: svn36680.1.2m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137904,7 +137905,7 @@ says: Page N of M. %package lastpage-doc Summary: Documentation for lastpage Version: svn36680.1.2m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lastpage-doc BuildArch: noarch AutoReqProv: No @@ -137917,7 +137918,7 @@ Provides: tex-latexdemo = %{tl_version} License: LPPL 1.3 Summary: Demonstrate LaTeX code with its resulting output Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137944,7 +137945,7 @@ suppress printing if the code would not compile. %package latexdemo-doc Summary: Documentation for latexdemo Version: svn34481.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexdemo-doc BuildArch: noarch AutoReqProv: No @@ -137957,7 +137958,7 @@ Provides: tex-layouts = %{tl_version} License: LPPL 1.3 Summary: Display various elements of a document's layout Version: svn15878.2.6d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -137974,7 +137975,7 @@ designer to experiment with the layout parameters. %package layouts-doc Summary: Documentation for layouts Version: svn15878.2.6d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-layouts-doc BuildArch: noarch AutoReqProv: No @@ -137987,7 +137988,7 @@ Provides: tex-lazylist = %{tl_version} License: LPPL 1.2 Summary: Lists in TeX's "mouth" Version: svn17691.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138006,7 +138007,7 @@ verified. %package lazylist-doc Summary: Documentation for lazylist Version: svn17691.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lazylist-doc BuildArch: noarch AutoReqProv: No @@ -138019,7 +138020,7 @@ Provides: tex-lcd = %{tl_version} License: LPPL Summary: Alphanumerical LCD-style displays Version: svn16549.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138034,7 +138035,7 @@ input in its internal verbatim-style environment. %package lcd-doc Summary: Documentation for lcd Version: svn16549.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lcd-doc BuildArch: noarch AutoReqProv: No @@ -138047,7 +138048,7 @@ Provides: tex-lcg = %{tl_version} License: LPPL Summary: Generate random integers Version: svn31474.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138065,7 +138066,7 @@ for the name of the counter to be used. %package lcg-doc Summary: Documentation for lcg Version: svn31474.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lcg-doc BuildArch: noarch AutoReqProv: No @@ -138078,7 +138079,7 @@ Provides: tex-leading = %{tl_version} License: LPPL Summary: Define leading with a length Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138096,7 +138097,7 @@ the leading is specified by reference to the font size. %package leading-doc Summary: Documentation for leading Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-leading-doc BuildArch: noarch AutoReqProv: No @@ -138109,7 +138110,7 @@ Provides: tex-leaflet = %{tl_version} License: LPPL Summary: Create small handouts (flyers) Version: svn39683 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138132,7 +138133,7 @@ permission of the original author Jurgen Schlegelmilch. %package leaflet-doc Summary: Documentation for leaflet Version: svn39683 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-leaflet-doc BuildArch: noarch AutoReqProv: No @@ -138145,7 +138146,7 @@ Provides: tex-leftidx = %{tl_version} License: LPPL Summary: Left and right subscripts and superscripts in math mode Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138159,7 +138160,7 @@ raised for better fitting to the symbol they belong to. %package leftidx-doc Summary: Documentation for leftidx Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-leftidx-doc BuildArch: noarch AutoReqProv: No @@ -138172,7 +138173,7 @@ Provides: tex-lengthconvert = %{tl_version} License: LPPL 1.3 Summary: Express lengths in arbitrary units Version: svn30867.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138190,7 +138191,7 @@ programming environment. %package lengthconvert-doc Summary: Documentation for lengthconvert Version: svn30867.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lengthconvert-doc BuildArch: noarch AutoReqProv: No @@ -138203,7 +138204,7 @@ Provides: tex-lettre = %{tl_version} License: LPPL 1.3 Summary: Letters and faxes in French Version: svn35145.2.353 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138218,7 +138219,7 @@ the Observatoire de Geneve. %package lettre-doc Summary: Documentation for lettre Version: svn35145.2.353 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lettre-doc BuildArch: noarch AutoReqProv: No @@ -138231,7 +138232,7 @@ Provides: tex-lettrine = %{tl_version} License: LPPL 1.3 Summary: Typeset dropped capitals Version: svn38268.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138250,7 +138251,7 @@ shape (such as "A" and "V"). %package lettrine-doc Summary: Documentation for lettrine Version: svn38268.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lettrine-doc BuildArch: noarch AutoReqProv: No @@ -138263,7 +138264,7 @@ Provides: tex-lewis = %{tl_version} License: Public Domain Summary: Draw Lewis structures Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138278,7 +138279,7 @@ octet rule. %package lewis-doc Summary: Documentation for lewis Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lewis-doc BuildArch: noarch AutoReqProv: No @@ -138291,7 +138292,7 @@ Provides: tex-lhelp = %{tl_version} License: GPL+ Summary: Miscellaneous helper packages Version: svn23638.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138314,7 +138315,7 @@ and vertical spacing to be changed. %package lhelp-doc Summary: Documentation for lhelp Version: svn23638.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lhelp-doc BuildArch: noarch AutoReqProv: No @@ -138327,7 +138328,7 @@ Provides: tex-libgreek = %{tl_version} License: LPPL 1.3 Summary: Use Libertine or Biolinum Greek glyphs in mathematics Version: svn27789.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138345,7 +138346,7 @@ have been installed. %package libgreek-doc Summary: Documentation for libgreek Version: svn27789.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-libgreek-doc BuildArch: noarch AutoReqProv: No @@ -138358,7 +138359,7 @@ Provides: tex-limap = %{tl_version} License: LPPL Summary: Typeset maps and blocks according to the Information Mapping method Version: svn41390 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138385,7 +138386,7 @@ Provides: tex-linegoal = %{tl_version} License: LPPL 1.3 Summary: A "dimen" that returns the space left on the line Version: svn21523.2.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138408,7 +138409,7 @@ initial text, and make the table fill the rest of the line. %package linegoal-doc Summary: Documentation for linegoal Version: svn21523.2.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-linegoal-doc BuildArch: noarch AutoReqProv: No @@ -138421,7 +138422,7 @@ Provides: tex-lipsum = %{tl_version} License: LPPL Summary: Easy access to the Lorem Ipsum dummy text Version: svn34800.v1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138437,7 +138438,7 @@ with permission from http://lipsum.com/. %package lipsum-doc Summary: Documentation for lipsum Version: svn34800.v1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lipsum-doc BuildArch: noarch AutoReqProv: No @@ -138450,7 +138451,7 @@ Provides: tex-lisp-on-tex = %{tl_version} License: BSD Summary: Execute LISP code in a LaTeX document Version: svn38722 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138475,7 +138476,7 @@ static scoping, dynamic typing, and eager evaluation. %package lisp-on-tex-doc Summary: Documentation for lisp-on-tex Version: svn38722 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lisp-on-tex-doc BuildArch: noarch AutoReqProv: No @@ -138488,7 +138489,7 @@ Provides: tex-listing = %{tl_version} License: LPPL Summary: Produce formatted program listings Version: svn17373.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138507,7 +138508,7 @@ bigcaptions is used), so packages that change the layout of %package listing-doc Summary: Documentation for listing Version: svn17373.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listing-doc BuildArch: noarch AutoReqProv: No @@ -138520,7 +138521,7 @@ Provides: tex-listlbls = %{tl_version} License: LPPL 1.3 Summary: Creates a list of all labels used throughout a document Version: svn34893.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138540,7 +138541,7 @@ hyperlinks'. %package listlbls-doc Summary: Documentation for listlbls Version: svn34893.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listlbls-doc BuildArch: noarch AutoReqProv: No @@ -138553,7 +138554,7 @@ Provides: tex-listliketab = %{tl_version} License: LPPL Summary: Typeset lists as tables Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138571,7 +138572,7 @@ the user can add additional columns to each entry in the list. %package listliketab-doc Summary: Documentation for listliketab Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listliketab-doc BuildArch: noarch AutoReqProv: No @@ -138584,7 +138585,7 @@ Provides: tex-listofsymbols = %{tl_version} License: LPPL Summary: Create and manipulate lists of symbols Version: svn16134.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138610,7 +138611,7 @@ though, is different from the way nomencl.sty does it. %package listofsymbols-doc Summary: Documentation for listofsymbols Version: svn16134.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-listofsymbols-doc BuildArch: noarch AutoReqProv: No @@ -138623,7 +138624,7 @@ Provides: tex-lkproof = %{tl_version} License: GPL+ Summary: LK Proof figure macros Version: svn20021.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138637,7 +138638,7 @@ are used in constructing LK proof diagrams. %package lkproof-doc Summary: Documentation for lkproof Version: svn20021.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lkproof-doc BuildArch: noarch AutoReqProv: No @@ -138650,7 +138651,7 @@ Provides: tex-lmake = %{tl_version} License: LPPL 1.2 Summary: Process lists to do repetitive actions Version: svn25552.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138665,7 +138666,7 @@ sequential list-like structures, such as making a series of %package lmake-doc Summary: Documentation for lmake Version: svn25552.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lmake-doc BuildArch: noarch AutoReqProv: No @@ -138678,7 +138679,7 @@ Provides: tex-locality = %{tl_version} License: LPPL 1.3 Summary: Various macros for keeping things local Version: svn20422.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138695,7 +138696,7 @@ the package; not all of its facilities are working optimally %package locality-doc Summary: Documentation for locality Version: svn20422.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-locality-doc BuildArch: noarch AutoReqProv: No @@ -138708,7 +138709,7 @@ Provides: tex-localloc = %{tl_version} License: Bibtex Summary: Macros for localizing TeX register allocations Version: svn21934.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138723,7 +138724,7 @@ package works with Plain TeX, LaTeX and LaTeX 2.09. %package localloc-doc Summary: Documentation for localloc Version: svn21934.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-localloc-doc BuildArch: noarch AutoReqProv: No @@ -138736,7 +138737,7 @@ Provides: tex-logbox = %{tl_version} License: LPPL 1.3 Summary: e-TeX showbox facilities for exploration purposes Version: svn24499.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138752,7 +138753,7 @@ logged in the .log file. %package logbox-doc Summary: Documentation for logbox Version: svn24499.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logbox-doc BuildArch: noarch AutoReqProv: No @@ -138765,7 +138766,7 @@ Provides: tex-logical-markup-utils = %{tl_version} License: GPLv3+ Summary: Packages for language-dependent inline quotes and dashes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138782,7 +138783,7 @@ options are american, british, german and polish. %package logical-markup-utils-doc Summary: Documentation for logical-markup-utils Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logical-markup-utils-doc BuildArch: noarch AutoReqProv: No @@ -138795,7 +138796,7 @@ Provides: tex-logpap = %{tl_version} License: LPPL Summary: Generate logarithmic graph paper with LaTeX Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138813,7 +138814,7 @@ with LaTeX. %package logpap-doc Summary: Documentation for logpap Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logpap-doc BuildArch: noarch AutoReqProv: No @@ -138826,7 +138827,7 @@ Provides: tex-longfigure = %{tl_version} License: LPPL 1.3 Summary: Provides a figure-like environment that break over pages Version: svn34302.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138844,7 +138845,7 @@ as a single figure that can break across pages. %package longfigure-doc Summary: Documentation for longfigure Version: svn34302.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-longfigure-doc BuildArch: noarch AutoReqProv: No @@ -138857,7 +138858,7 @@ Provides: tex-longnamefilelist = %{tl_version} License: LPPL 1.3 Summary: Tidy \listfiles with long file names Version: svn27889.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138876,7 +138877,7 @@ explained in the documentation. %package longnamefilelist-doc Summary: Documentation for longnamefilelist Version: svn27889.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-longnamefilelist-doc BuildArch: noarch AutoReqProv: No @@ -138889,7 +138890,7 @@ Provides: tex-loops = %{tl_version} License: LPPL 1.3 Summary: General looping macros for use with LaTeX Version: svn30704.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138906,7 +138907,7 @@ with the tools of the package. %package loops-doc Summary: Documentation for loops Version: svn30704.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-loops-doc BuildArch: noarch AutoReqProv: No @@ -138919,7 +138920,7 @@ Provides: tex-lsc = %{tl_version} License: LPPL Summary: Typesetting Live Sequence Charts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138940,7 +138941,7 @@ extensions for the Play-In/Play-Out approach (cf. the manual). %package lsc-doc Summary: Documentation for lsc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lsc-doc BuildArch: noarch AutoReqProv: No @@ -138953,7 +138954,7 @@ Provides: tex-lstaddons = %{tl_version} License: LPPL 1.3 Summary: Add-on packages for listings: autogobble and line background Version: svn26196.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -138973,7 +138974,7 @@ of the first line of the code. %package lstaddons-doc Summary: Documentation for lstaddons Version: svn26196.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lstaddons-doc BuildArch: noarch AutoReqProv: No @@ -138986,7 +138987,7 @@ Provides: tex-lt3graph = %{tl_version} License: LPPL 1.3 Summary: Provide a graph datastructure for experimental LaTeX3 Version: svn40368 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139017,7 +139018,7 @@ documents that are using the experimental LaTeX 3 syntax. %package lt3graph-doc Summary: Documentation for lt3graph Version: svn40368 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lt3graph-doc BuildArch: noarch AutoReqProv: No @@ -139030,7 +139031,7 @@ Provides: tex-ltablex = %{tl_version} License: LPPL Summary: Table package extensions Version: svn34923.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139047,7 +139048,7 @@ table) with those of the longtable package (multi-page tables). %package ltablex-doc Summary: Documentation for ltablex Version: svn34923.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltablex-doc BuildArch: noarch AutoReqProv: No @@ -139060,7 +139061,7 @@ Provides: tex-ltabptch = %{tl_version} License: LPPL Summary: Bug fix for longtable Version: svn17533.1.74d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139075,7 +139076,7 @@ applies to version 4.11 of longtable. %package ltabptch-doc Summary: Documentation for ltabptch Version: svn17533.1.74d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltabptch-doc BuildArch: noarch AutoReqProv: No @@ -139088,7 +139089,7 @@ Provides: tex-ltxdockit = %{tl_version} License: LPPL Summary: Documentation support Version: svn21869.1.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139123,7 +139124,7 @@ that be necessary.) %package ltxdockit-doc Summary: Documentation for ltxdockit Version: svn21869.1.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxdockit-doc BuildArch: noarch AutoReqProv: No @@ -139136,7 +139137,7 @@ Provides: tex-ltxindex = %{tl_version} License: GPL+ Summary: A LaTeX package to typeset indices with GNU's Texindex Version: svn15878.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139155,7 +139156,7 @@ custom indexes. The package is not currently maintained. %package ltxindex-doc Summary: Documentation for ltxindex Version: svn15878.0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxindex-doc BuildArch: noarch AutoReqProv: No @@ -139168,7 +139169,7 @@ Provides: tex-ltxkeys = %{tl_version} License: LPPL Summary: A robust key parser for LaTeX Version: svn28332.0.0.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139191,7 +139192,7 @@ also provides functions for defining and managing keys. %package ltxkeys-doc Summary: Documentation for ltxkeys Version: svn28332.0.0.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxkeys-doc BuildArch: noarch AutoReqProv: No @@ -139204,7 +139205,7 @@ Provides: tex-ltxnew = %{tl_version} License: LPPL 1.3 Summary: A simple means of creating commands Version: svn21586.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139225,7 +139226,7 @@ all kind of control sequences. Please refer to the section %package ltxnew-doc Summary: Documentation for ltxnew Version: svn21586.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxnew-doc BuildArch: noarch AutoReqProv: No @@ -139238,7 +139239,7 @@ Provides: tex-ltxtools = %{tl_version} License: LPPL 1.3 Summary: A collection of LaTeX API macros Version: svn24897.0.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139263,7 +139264,7 @@ of others of his macro files. %package ltxtools-doc Summary: Documentation for ltxtools Version: svn24897.0.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ltxtools-doc BuildArch: noarch AutoReqProv: No @@ -139276,7 +139277,7 @@ Provides: tex-macroswap = %{tl_version} License: LPPL 1.2 Summary: Swap the definitions of two LaTeX macros Version: svn31498.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139290,7 +139291,7 @@ The package provides simple utility methods to swap the meaning %package macroswap-doc Summary: Documentation for macroswap Version: svn31498.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-macroswap-doc BuildArch: noarch AutoReqProv: No @@ -139303,7 +139304,7 @@ Provides: tex-magaz = %{tl_version} License: Copyright only Summary: Magazine layout Version: svn24694.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139318,7 +139319,7 @@ tools which remain in preparation. %package magaz-doc Summary: Documentation for magaz Version: svn24694.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-magaz-doc BuildArch: noarch AutoReqProv: No @@ -139331,7 +139332,7 @@ Provides: tex-mailing = %{tl_version} License: LPPL Summary: Macros for mail merging Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139348,7 +139349,7 @@ possibly using macros defined in the \addressfile. %package mailing-doc Summary: Documentation for mailing Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mailing-doc BuildArch: noarch AutoReqProv: No @@ -139361,7 +139362,7 @@ Provides: tex-mailmerge = %{tl_version} License: LPPL 1.2 Summary: Repeating text field substitution Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139380,7 +139381,7 @@ on. %package mailmerge-doc Summary: Documentation for mailmerge Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mailmerge-doc BuildArch: noarch AutoReqProv: No @@ -139393,7 +139394,7 @@ Provides: tex-makebarcode = %{tl_version} License: LPPL Summary: Print various kinds 2/5 and Code 39 bar codes Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139413,7 +139414,7 @@ storage media. %package makebarcode-doc Summary: Documentation for makebarcode Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makebarcode-doc BuildArch: noarch AutoReqProv: No @@ -139426,7 +139427,7 @@ Provides: tex-makebox = %{tl_version} License: LPPL Summary: Defines a \makebox* command Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139441,7 +139442,7 @@ instead of an explicit length measure. %package makebox-doc Summary: Documentation for makebox Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makebox-doc BuildArch: noarch AutoReqProv: No @@ -139454,7 +139455,7 @@ Provides: tex-makecell = %{tl_version} License: LPPL Summary: Tabular column heads and multilined cells Version: svn15878.0.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139477,7 +139478,7 @@ environments with defined thickness. %package makecell-doc Summary: Documentation for makecell Version: svn15878.0.1e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makecell-doc BuildArch: noarch AutoReqProv: No @@ -139490,7 +139491,7 @@ Provides: tex-makecirc = %{tl_version} License: LPPL Summary: A MetaPost library for drawing electrical circuit diagrams Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139507,7 +139508,7 @@ and MetaPost to work. %package makecirc-doc Summary: Documentation for makecirc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makecirc-doc BuildArch: noarch AutoReqProv: No @@ -139520,7 +139521,7 @@ Provides: tex-makecmds = %{tl_version} License: LPPL Summary: The new \makecommand command always (re)defines a command Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139536,7 +139537,7 @@ environments. %package makecmds-doc Summary: Documentation for makecmds Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makecmds-doc BuildArch: noarch AutoReqProv: No @@ -139549,7 +139550,7 @@ Provides: tex-makedtx = %{tl_version} License: LPPL Summary: Perl script to help generate dtx and ins files Version: svn38769 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139566,7 +139567,7 @@ the associated installation (.ins) script. %package makedtx-doc Summary: Documentation for makedtx Version: svn38769 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makedtx-doc BuildArch: noarch AutoReqProv: No @@ -139579,7 +139580,7 @@ Summary: Binaries for makedtx Version: svn38769 Requires: texlive-base Requires: texlive-makedtx -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description makedtx-bin @@ -139590,7 +139591,7 @@ Provides: tex-makeglos = %{tl_version} License: GPL+ Summary: Include a glossary into a document Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139605,7 +139606,7 @@ as xindy or makeindex, in the same way that an index is made. %package makeglos-doc Summary: Documentation for makeglos Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makeglos-doc BuildArch: noarch AutoReqProv: No @@ -139618,7 +139619,7 @@ Provides: tex-mandi = %{tl_version} License: LPPL 1.3 Summary: Macros for introductory physics and astronomy Version: svn40050 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139660,7 +139661,7 @@ physics students. %package mandi-doc Summary: Documentation for mandi Version: svn40050 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mandi-doc BuildArch: noarch AutoReqProv: No @@ -139673,7 +139674,7 @@ Provides: tex-manfnt = %{tl_version} License: LPPL Summary: LaTeX support for the TeX book symbols Version: svn35799.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139690,7 +139691,7 @@ Provides: tex-manuscript = %{tl_version} License: LPPL Summary: Emulate look of a document typed on a typewriter Version: svn36110.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139710,7 +139711,7 @@ typewriter is the summit of non-professional printing. %package manuscript-doc Summary: Documentation for manuscript Version: svn36110.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-manuscript-doc BuildArch: noarch AutoReqProv: No @@ -139723,7 +139724,7 @@ Provides: tex-marginfix = %{tl_version} License: LPPL Summary: Patch \marginpar to avoid overfull margins Version: svn31598.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139745,7 +139746,7 @@ and arranging them intelligently in the output routine. %package marginfix-doc Summary: Documentation for marginfix Version: svn31598.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-marginfix-doc BuildArch: noarch AutoReqProv: No @@ -139758,7 +139759,7 @@ Provides: tex-marginnote = %{tl_version} License: LPPL Summary: Notes in the margin, even where \marginpar fails Version: svn41382 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139774,7 +139775,7 @@ made with the framed package. %package marginnote-doc Summary: Documentation for marginnote Version: svn41382 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-marginnote-doc BuildArch: noarch AutoReqProv: No @@ -139787,7 +139788,7 @@ Provides: tex-mathalfa = %{tl_version} License: LPPL 1.3 Summary: General package for loading maths alphabets in LaTeX Version: svn40164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139804,7 +139805,7 @@ existing packages for this job. %package mathalfa-doc Summary: Documentation for mathalfa Version: svn40164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathalfa-doc BuildArch: noarch AutoReqProv: No @@ -139817,7 +139818,7 @@ Provides: tex-mathastext = %{tl_version} License: LPPL 1.3 Summary: Use the text font in maths mode Version: svn41096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139841,7 +139842,7 @@ later). %package mathastext-doc Summary: Documentation for mathastext Version: svn41096 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathastext-doc BuildArch: noarch AutoReqProv: No @@ -139854,7 +139855,7 @@ Provides: tex-mathexam = %{tl_version} License: LPPL Summary: Package for typesetting exams Version: svn15878.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139877,7 +139878,7 @@ for students to put their name. %package mathexam-doc Summary: Documentation for mathexam Version: svn15878.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathexam-doc BuildArch: noarch AutoReqProv: No @@ -139890,7 +139891,7 @@ Provides: tex-maybemath = %{tl_version} License: LPPL Summary: Make math bold or italic according to context Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139916,7 +139917,7 @@ if the expression is italicised. %package maybemath-doc Summary: Documentation for maybemath Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-maybemath-doc BuildArch: noarch AutoReqProv: No @@ -139929,7 +139930,7 @@ Provides: tex-mbenotes = %{tl_version} License: LPPL 1.2 Summary: Notes in tables or images Version: svn31813.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139947,7 +139948,7 @@ mechanisms in the package endnotes. %package mbenotes-doc Summary: Documentation for mbenotes Version: svn31813.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mbenotes-doc BuildArch: noarch AutoReqProv: No @@ -139960,7 +139961,7 @@ Provides: tex-mcaption = %{tl_version} License: LPPL Summary: Put captions in the margin Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -139978,7 +139979,7 @@ the changepage package. %package mcaption-doc Summary: Documentation for mcaption Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mcaption-doc BuildArch: noarch AutoReqProv: No @@ -139991,7 +139992,7 @@ Provides: tex-mceinleger = %{tl_version} License: GPL+ Summary: Creating covers for music cassettes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140007,7 +140008,7 @@ e.g.). The rotating package is required. %package mceinleger-doc Summary: Documentation for mceinleger Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mceinleger-doc BuildArch: noarch AutoReqProv: No @@ -140020,7 +140021,7 @@ Provides: tex-mcite = %{tl_version} License: GPL+ Summary: Multiple items in a single citation Version: svn18173.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140036,7 +140037,7 @@ documentation explains how to do that customisation. %package mcite-doc Summary: Documentation for mcite Version: svn18173.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mcite-doc BuildArch: noarch AutoReqProv: No @@ -140049,7 +140050,7 @@ Provides: tex-mciteplus = %{tl_version} License: LPPL Summary: Enhanced multiple citations Version: svn31648.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140066,7 +140067,7 @@ other applications such as reference sublisting. %package mciteplus-doc Summary: Documentation for mciteplus Version: svn31648.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mciteplus-doc BuildArch: noarch AutoReqProv: No @@ -140079,7 +140080,7 @@ Provides: tex-mdframed = %{tl_version} License: LPPL Summary: Framed environments that can split at page boundaries Version: svn31075.1.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140129,7 +140130,7 @@ PStricks or TikZ. %package mdframed-doc Summary: Documentation for mdframed Version: svn31075.1.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mdframed-doc BuildArch: noarch AutoReqProv: No @@ -140142,7 +140143,7 @@ Provides: tex-media9 = %{tl_version} License: LPPL 1.3 Summary: Multimedia inclusion package with Adobe Reader-9/X compatibility Version: svn41328 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140173,7 +140174,7 @@ obsolete movie15 package. %package media9-doc Summary: Documentation for media9 Version: svn41328 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-media9-doc BuildArch: noarch AutoReqProv: No @@ -140186,7 +140187,7 @@ Provides: tex-medstarbeamer = %{tl_version} License: LPPL 1.3 Summary: Beamer document class for MedStar Health Research Institute Version: svn38828 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140215,7 +140216,7 @@ presentation. %package medstarbeamer-doc Summary: Documentation for medstarbeamer Version: svn38828 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-medstarbeamer-doc BuildArch: noarch AutoReqProv: No @@ -140228,7 +140229,7 @@ Provides: tex-meetingmins = %{tl_version} License: LPPL 1.3 Summary: Format written minutes of meetings Version: svn31878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140252,7 +140253,7 @@ user-selected portions suppressed from printing. %package meetingmins-doc Summary: Documentation for meetingmins Version: svn31878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-meetingmins-doc BuildArch: noarch AutoReqProv: No @@ -140265,7 +140266,7 @@ Provides: tex-memexsupp = %{tl_version} License: LPPL Summary: Experimental memoir support Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140281,7 +140282,7 @@ release. %package memexsupp-doc Summary: Documentation for memexsupp Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-memexsupp-doc BuildArch: noarch AutoReqProv: No @@ -140294,7 +140295,7 @@ Provides: tex-memory = %{tl_version} License: LPPL 1.3 Summary: Containers for data in LaTeX Version: svn30452.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140308,7 +140309,7 @@ containers. %package memory-doc Summary: Documentation for memory Version: svn30452.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-memory-doc BuildArch: noarch AutoReqProv: No @@ -140321,7 +140322,7 @@ Provides: tex-menu = %{tl_version} License: LPPL Summary: Typesetting menus Version: svn15878.0.994 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140339,7 +140340,7 @@ a path through a program's menu. %package menu-doc Summary: Documentation for menu Version: svn15878.0.994 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-menu-doc BuildArch: noarch AutoReqProv: No @@ -140352,7 +140353,7 @@ Provides: tex-menukeys = %{tl_version} License: LPPL 1.2 Summary: Format menu sequences, paths and keystrokes from lists Version: svn40599 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140379,7 +140380,7 @@ providing different styles and colour themes. %package menukeys-doc Summary: Documentation for menukeys Version: svn40599 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-menukeys-doc BuildArch: noarch AutoReqProv: No @@ -140392,7 +140393,7 @@ Provides: tex-method = %{tl_version} License: LPPL Summary: Typeset method and variable declarations Version: svn17485.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140407,7 +140408,7 @@ French and English. %package method-doc Summary: Documentation for method Version: svn17485.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-method-doc BuildArch: noarch AutoReqProv: No @@ -140420,7 +140421,7 @@ Provides: tex-metre = %{tl_version} License: LPPL Summary: Support for the work of classicists Version: svn18489.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140446,7 +140447,7 @@ are based on TeX primitives. %package metre-doc Summary: Documentation for metre Version: svn18489.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metre-doc BuildArch: noarch AutoReqProv: No @@ -140459,7 +140460,7 @@ Provides: tex-mfirstuc = %{tl_version} License: LPPL 1.3 Summary: Uppercase the first letter of a word Version: svn39132 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140476,7 +140477,7 @@ the argument before uppercasing. %package mfirstuc-doc Summary: Documentation for mfirstuc Version: svn39132 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mfirstuc-doc BuildArch: noarch AutoReqProv: No @@ -140489,7 +140490,7 @@ Provides: tex-mftinc = %{tl_version} License: LPPL Summary: Pretty-print Metafont source Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140510,7 +140511,7 @@ tables. %package mftinc-doc Summary: Documentation for mftinc Version: svn15878.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mftinc-doc BuildArch: noarch AutoReqProv: No @@ -140523,7 +140524,7 @@ Provides: tex-midpage = %{tl_version} License: LPPL Summary: Environment for vertical centring Version: svn17484.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140537,7 +140538,7 @@ followed by \clearpage. %package midpage-doc Summary: Documentation for midpage Version: svn17484.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-midpage-doc BuildArch: noarch AutoReqProv: No @@ -140550,7 +140551,7 @@ Provides: tex-minibox = %{tl_version} License: LPPL Summary: A simple type of box for LaTeX Version: svn30914.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140567,7 +140568,7 @@ of the longest line they contain. %package minibox-doc Summary: Documentation for minibox Version: svn30914.0.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minibox-doc BuildArch: noarch AutoReqProv: No @@ -140580,7 +140581,7 @@ Provides: tex-minifp = %{tl_version} License: LPPL 1.3 Summary: Fixed-point real computations to 8 decimals Version: svn32559.0.96 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140601,7 +140602,7 @@ programing environment. %package minifp-doc Summary: Documentation for minifp Version: svn32559.0.96 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minifp-doc BuildArch: noarch AutoReqProv: No @@ -140614,7 +140615,7 @@ Provides: tex-minipage-marginpar = %{tl_version} License: LPPL Summary: Minipages with marginal notes Version: svn15878.v0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140634,7 +140635,7 @@ define similar environments or commands. %package minipage-marginpar-doc Summary: Documentation for minipage-marginpar Version: svn15878.v0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minipage-marginpar-doc BuildArch: noarch AutoReqProv: No @@ -140647,7 +140648,7 @@ Provides: tex-minitoc = %{tl_version} License: LPPL 1.3 Summary: Produce a table of contents for each chapter, part or section Version: svn37852.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140676,7 +140677,7 @@ fixed names). %package minitoc-doc Summary: Documentation for minitoc Version: svn37852.61 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minitoc-doc BuildArch: noarch AutoReqProv: No @@ -140689,7 +140690,7 @@ Provides: tex-minorrevision = %{tl_version} License: LPPL 1.2 Summary: Quote and refer to a manuscript for minor revisions Version: svn32165.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140712,7 +140713,7 @@ lineno, so (in effect) shares lineno's incompatibilities. %package minorrevision-doc Summary: Documentation for minorrevision Version: svn32165.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minorrevision-doc BuildArch: noarch AutoReqProv: No @@ -140725,7 +140726,7 @@ Provides: tex-minted = %{tl_version} License: LPPL 1.3 Summary: Highlighted source code for LaTeX Version: svn41329 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: python-pygments @@ -140756,7 +140757,7 @@ output using fancyvrb. %package minted-doc Summary: Documentation for minted Version: svn41329 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minted-doc BuildArch: noarch AutoReqProv: No @@ -140769,7 +140770,7 @@ Provides: tex-minutes = %{tl_version} License: LPPL Summary: Typeset the minutes of meetings Version: svn16350.1.8d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140794,7 +140795,7 @@ for minutes in German, Dutch and English is provided. %package minutes-doc Summary: Documentation for minutes Version: svn16350.1.8d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-minutes-doc BuildArch: noarch AutoReqProv: No @@ -140807,7 +140808,7 @@ Provides: tex-mla-paper = %{tl_version} License: LPPL Summary: Proper MLA formatting Version: svn20885.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140823,7 +140824,7 @@ on their part. %package mla-paper-doc Summary: Documentation for mla-paper Version: svn20885.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mla-paper-doc BuildArch: noarch AutoReqProv: No @@ -140836,7 +140837,7 @@ Provides: tex-mlist = %{tl_version} License: LPPL Summary: Logical markup for lists Version: svn15878.0.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140855,7 +140856,7 @@ arguments without hard-coding the symbols in the document. %package mlist-doc Summary: Documentation for mlist Version: svn15878.0.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mlist-doc BuildArch: noarch AutoReqProv: No @@ -140868,7 +140869,7 @@ Provides: tex-mmap = %{tl_version} License: LPPL Summary: Include CMap resources in PDF files from PDFTeX Version: svn15878.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140885,7 +140886,7 @@ mathematics fonts. %package mmap-doc Summary: Documentation for mmap Version: svn15878.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mmap-doc BuildArch: noarch AutoReqProv: No @@ -140898,7 +140899,7 @@ Provides: tex-mnotes = %{tl_version} License: LPPL 1.3 Summary: Margin annotation for collaborative writing Version: svn35521.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -140918,7 +140919,7 @@ commenting upon, collaboratively-written documents. %package mnotes-doc Summary: Documentation for mnotes Version: svn35521.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mnotes-doc BuildArch: noarch AutoReqProv: No @@ -140931,7 +140932,7 @@ Provides: tex-moderncv = %{tl_version} License: LPPL 1.3 Summary: A modern curriculum vitae class Version: svn37992.2.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141002,7 +141003,7 @@ are provided in the distribution examples subdirectory. %package moderncv-doc Summary: Documentation for moderncv Version: svn37992.2.0.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-moderncv-doc BuildArch: noarch AutoReqProv: No @@ -141015,7 +141016,7 @@ Provides: tex-moderntimeline = %{tl_version} License: LPPL 1.3 Summary: Timelines for use with moderncv Version: svn38254.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141032,7 +141033,7 @@ Curriculum Vitae documents written using the moderncv class. %package moderntimeline-doc Summary: Documentation for moderntimeline Version: svn38254.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-moderntimeline-doc BuildArch: noarch AutoReqProv: No @@ -141045,7 +141046,7 @@ Provides: tex-modref = %{tl_version} License: LPPL Summary: Customisation of cross-references in LaTeX Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141063,7 +141064,7 @@ label), in a very generic manner. %package modref-doc Summary: Documentation for modref Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-modref-doc BuildArch: noarch AutoReqProv: No @@ -141076,7 +141077,7 @@ Provides: tex-modroman = %{tl_version} License: LPPL Summary: Write numbers in lower case roman numerals Version: svn29803.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141099,7 +141100,7 @@ the same 5 is given as 'u'. %package modroman-doc Summary: Documentation for modroman Version: svn29803.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-modroman-doc BuildArch: noarch AutoReqProv: No @@ -141112,7 +141113,7 @@ Provides: tex-monofill = %{tl_version} License: LPPL 1.3 Summary: Alignment of plain text Version: svn28140.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141127,7 +141128,7 @@ Uses may include in-text tables, or even code listings. %package monofill-doc Summary: Documentation for monofill Version: svn28140.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-monofill-doc BuildArch: noarch AutoReqProv: No @@ -141140,7 +141141,7 @@ Provides: tex-moreenum = %{tl_version} License: LPPL 1.3 Summary: More enumeration options Version: svn24479.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141174,7 +141175,7 @@ available. %package moreenum-doc Summary: Documentation for moreenum Version: svn24479.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-moreenum-doc BuildArch: noarch AutoReqProv: No @@ -141187,7 +141188,7 @@ Provides: tex-morefloats = %{tl_version} License: LPPL 1.3 Summary: Increase the number of simultaneous LaTeX floats Version: svn37927.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141208,7 +141209,7 @@ message. %package morefloats-doc Summary: Documentation for morefloats Version: svn37927.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-morefloats-doc BuildArch: noarch AutoReqProv: No @@ -141221,7 +141222,7 @@ Provides: tex-morehype = %{tl_version} License: LPPL 1.3 Summary: Hypertext tools for use with LaTeX Version: svn38815 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141251,7 +141252,7 @@ expanding LaTeX macros, using the fifinddo package. %package morehype-doc Summary: Documentation for morehype Version: svn38815 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-morehype-doc BuildArch: noarch AutoReqProv: No @@ -141264,7 +141265,7 @@ Provides: tex-moresize = %{tl_version} License: LPPL Summary: Allows font sizes up to 35.83pt Version: svn17513.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141283,7 +141284,7 @@ font sizes above 17.28pt. %package moresize-doc Summary: Documentation for moresize Version: svn17513.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-moresize-doc BuildArch: noarch AutoReqProv: No @@ -141296,7 +141297,7 @@ Provides: tex-moreverb = %{tl_version} License: LPPL Summary: Extended verbatim Version: svn22126.2.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141316,7 +141317,7 @@ using the fancyvrb package in place of moreverb. %package moreverb-doc Summary: Documentation for moreverb Version: svn22126.2.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-moreverb-doc BuildArch: noarch AutoReqProv: No @@ -141329,7 +141330,7 @@ Provides: tex-morewrites = %{tl_version} License: LPPL 1.3 Summary: Always room for a new write stream Version: svn28767.0.2e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141352,7 +141353,7 @@ the l3kernel bundle. %package morewrites-doc Summary: Documentation for morewrites Version: svn28767.0.2e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-morewrites-doc BuildArch: noarch AutoReqProv: No @@ -141365,7 +141366,7 @@ Provides: tex-movie15 = %{tl_version} License: LPPL Summary: Multimedia inclusion package Version: svn26473.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141390,7 +141391,7 @@ package is now superseded by media9 %package movie15-doc Summary: Documentation for movie15 Version: svn26473.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-movie15-doc BuildArch: noarch AutoReqProv: No @@ -141403,7 +141404,7 @@ Provides: tex-mparhack = %{tl_version} License: GPL+ Summary: Work around a LaTeX bug in marginpars Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141417,7 +141418,7 @@ out at the wrong margin. %package mparhack-doc Summary: Documentation for mparhack Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mparhack-doc BuildArch: noarch AutoReqProv: No @@ -141430,7 +141431,7 @@ Provides: tex-msc = %{tl_version} License: LPPL Summary: Draw MSC diagrams Version: svn15878.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141453,7 +141454,7 @@ full MSC2000 language. %package msc-doc Summary: Documentation for msc Version: svn15878.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-msc-doc BuildArch: noarch AutoReqProv: No @@ -141466,7 +141467,7 @@ Provides: tex-msg = %{tl_version} License: LPPL Summary: A package for LaTeX localisation Version: svn15878.0.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141490,7 +141491,7 @@ is provided in English. %package msg-doc Summary: Documentation for msg Version: svn15878.0.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-msg-doc BuildArch: noarch AutoReqProv: No @@ -141503,7 +141504,7 @@ Provides: tex-mslapa = %{tl_version} License: Public Domain Summary: Michael Landy's APA citation style Version: svn17514.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141518,7 +141519,7 @@ citation and reference style. %package mslapa-doc Summary: Documentation for mslapa Version: svn17514.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mslapa-doc BuildArch: noarch AutoReqProv: No @@ -141531,7 +141532,7 @@ Provides: tex-mtgreek = %{tl_version} License: LPPL Summary: Use italic and upright greek letters with mathtime Version: svn17967.1.1+ -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141549,7 +141550,7 @@ Greek uppercase letters. %package mtgreek-doc Summary: Documentation for mtgreek Version: svn17967.1.1+ -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mtgreek-doc BuildArch: noarch AutoReqProv: No @@ -141562,7 +141563,7 @@ Provides: tex-multenum = %{tl_version} License: LPPL Summary: Multi-column enumerated lists Version: svn21775.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141579,7 +141580,7 @@ environment goes some way to making such lists look neater. %package multenum-doc Summary: Documentation for multenum Version: svn21775.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multenum-doc BuildArch: noarch AutoReqProv: No @@ -141592,7 +141593,7 @@ Provides: tex-multiaudience = %{tl_version} License: LPPL 1.3 Summary: Several versions of output from the same source Version: svn38035.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141608,7 +141609,7 @@ document for different audiences. %package multiaudience-doc Summary: Documentation for multiaudience Version: svn38035.1.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multiaudience-doc BuildArch: noarch AutoReqProv: No @@ -141621,7 +141622,7 @@ Provides: tex-multibbl = %{tl_version} License: LPPL Summary: Multiple bibliographies Version: svn15878.v1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141637,7 +141638,7 @@ and title. %package multibbl-doc Summary: Documentation for multibbl Version: svn15878.v1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multibbl-doc BuildArch: noarch AutoReqProv: No @@ -141650,7 +141651,7 @@ Provides: tex-multicap = %{tl_version} License: LPPL Summary: Format captions inside multicols Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141668,7 +141669,7 @@ not. %package multicap-doc Summary: Documentation for multicap Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multicap-doc BuildArch: noarch AutoReqProv: No @@ -141681,7 +141682,7 @@ Provides: tex-multienv = %{tl_version} License: LPPL 1.3 Summary: Multiple environments using a "key=value" syntax Version: svn26544.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141697,7 +141698,7 @@ provided. %package multienv-doc Summary: Documentation for multienv Version: svn26544.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multienv-doc BuildArch: noarch AutoReqProv: No @@ -141710,7 +141711,7 @@ Provides: tex-multiexpand = %{tl_version} License: LPPL 1.3 Summary: Variations on the primitive command \expandafter Version: svn38416 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141729,7 +141730,7 @@ experimental LaTeX 3 kernel). %package multiexpand-doc Summary: Documentation for multiexpand Version: svn38416 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multiexpand-doc BuildArch: noarch AutoReqProv: No @@ -141742,7 +141743,7 @@ Provides: tex-multirow = %{tl_version} License: LPPL Summary: Create tabular cells spanning multiple rows Version: svn17256.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141760,7 +141761,7 @@ which can be used to advantage with \multirow cells. %package multirow-doc Summary: Documentation for multirow Version: svn17256.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multirow-doc BuildArch: noarch AutoReqProv: No @@ -141773,7 +141774,7 @@ Provides: tex-mversion = %{tl_version} License: LPPL 1.2 Summary: Keeping track of document versions Version: svn29370.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141791,7 +141792,7 @@ build number describing the progress of your document. %package mversion-doc Summary: Documentation for mversion Version: svn29370.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mversion-doc BuildArch: noarch AutoReqProv: No @@ -141804,7 +141805,7 @@ Provides: tex-mwe = %{tl_version} License: LPPL 1.3 Summary: Packages and image files for MWEs Version: svn26422.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141849,7 +141850,7 @@ replacement code. %package mwe-doc Summary: Documentation for mwe Version: svn26422.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mwe-doc BuildArch: noarch AutoReqProv: No @@ -141862,7 +141863,7 @@ Provides: tex-mweights = %{tl_version} License: LPPL Summary: Support for multiple-weight font packages Version: svn31268.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141881,7 +141882,7 @@ package provides a solution to these difficulties. %package mweights-doc Summary: Documentation for mweights Version: svn31268.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mweights-doc BuildArch: noarch AutoReqProv: No @@ -141894,7 +141895,7 @@ Provides: tex-mycv = %{tl_version} License: LPPL 1.3 Summary: A list-driven CV class, allowing TikZ decorations Version: svn26807.1.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141936,7 +141937,7 @@ provided. %package mycv-doc Summary: Documentation for mycv Version: svn26807.1.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mycv-doc BuildArch: noarch AutoReqProv: No @@ -141949,7 +141950,7 @@ Provides: tex-mylatexformat = %{tl_version} License: LPPL 1.3 Summary: Build a format based on the preamble of a LaTeX file Version: svn21392.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141966,7 +141967,7 @@ limitations and problems of that package. %package mylatexformat-doc Summary: Documentation for mylatexformat Version: svn21392.3.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mylatexformat-doc BuildArch: noarch AutoReqProv: No @@ -141979,7 +141980,7 @@ Provides: tex-nag = %{tl_version} License: LPPL Summary: Detecting and warning about obsolete LaTeX commands Version: svn24741.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142000,7 +142001,7 @@ detects many of the "sins" described in l2tabu. %package nag-doc Summary: Documentation for nag Version: svn24741.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nag-doc BuildArch: noarch AutoReqProv: No @@ -142013,7 +142014,7 @@ Provides: tex-nameauth = %{tl_version} License: LPPL 1.3 Summary: Name authority mechanism for consistency in body text and index Version: svn40369 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142035,7 +142036,7 @@ minimize writing and production time and cost. %package nameauth-doc Summary: Documentation for nameauth Version: svn40369 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nameauth-doc BuildArch: noarch AutoReqProv: No @@ -142048,7 +142049,7 @@ Provides: tex-namespc = %{tl_version} License: LPPL Summary: Rudimentary C++-like namespaces in LaTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142064,7 +142065,7 @@ without defining them globally. %package namespc-doc Summary: Documentation for namespc Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-namespc-doc BuildArch: noarch AutoReqProv: No @@ -142077,7 +142078,7 @@ Provides: tex-ncclatex = %{tl_version} License: LPPL Summary: An extended general-purpose class Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142142,7 +142143,7 @@ of the ncctools bundle. %package ncclatex-doc Summary: Documentation for ncclatex Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ncclatex-doc BuildArch: noarch AutoReqProv: No @@ -142155,7 +142156,7 @@ Provides: tex-needspace = %{tl_version} License: LPPL Summary: Insert pagebreak if not enough space Version: svn29601.1.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142170,7 +142171,7 @@ command and the bottom of the page, a new page will be started. %package needspace-doc Summary: Documentation for needspace Version: svn29601.1.3d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-needspace-doc BuildArch: noarch AutoReqProv: No @@ -142183,7 +142184,7 @@ Provides: tex-nestquot = %{tl_version} License: BSD Summary: Alternate quotes between double and single with nesting Version: svn27323.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142200,7 +142201,7 @@ been entered as "Foo 'bar' bletch". %package newcommand-doc Summary: Documentation for newcommand Version: svn18704.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newcommand-doc BuildArch: noarch AutoReqProv: No @@ -142213,7 +142214,7 @@ Provides: tex-newenviron = %{tl_version} License: LPPL 1.3 Summary: Processing an environment's body Version: svn29331.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142228,7 +142229,7 @@ environment's body. %package newenviron-doc Summary: Documentation for newenviron Version: svn29331.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newenviron-doc BuildArch: noarch AutoReqProv: No @@ -142241,7 +142242,7 @@ Provides: tex-newfile = %{tl_version} License: LPPL Summary: User level management of LaTeX input and output Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142258,7 +142259,7 @@ Some facilities of the verbatim package are also mapped. %package newfile-doc Summary: Documentation for newfile Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newfile-doc BuildArch: noarch AutoReqProv: No @@ -142271,7 +142272,7 @@ Provides: tex-newlfm = %{tl_version} License: GPL+ Summary: Write letters, facsimiles, and memos Version: svn15878.9.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142305,7 +142306,7 @@ is set automatically. %package newlfm-doc Summary: Documentation for newlfm Version: svn15878.9.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newlfm-doc BuildArch: noarch AutoReqProv: No @@ -142318,7 +142319,7 @@ Provides: tex-newspaper = %{tl_version} License: LPPL Summary: Typeset newsletters to resemble newspapers Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142336,7 +142337,7 @@ newspaper-style column format. %package newspaper-doc Summary: Documentation for newspaper Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newspaper-doc BuildArch: noarch AutoReqProv: No @@ -142349,7 +142350,7 @@ Provides: tex-newunicodechar = %{tl_version} License: LPPL 1.3 Summary: Definitions of the meaning of Unicode characters Version: svn28253.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142367,7 +142368,7 @@ typed Unicode character, and is its replacement. %package newunicodechar-doc Summary: Documentation for newunicodechar Version: svn28253.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newunicodechar-doc BuildArch: noarch AutoReqProv: No @@ -142380,7 +142381,7 @@ Provides: tex-newvbtm = %{tl_version} License: LPPL Summary: Define your own verbatim-like environment Version: svn23996.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142397,7 +142398,7 @@ verbatim, such as tab emulation. %package newvbtm-doc Summary: Documentation for newvbtm Version: svn23996.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newvbtm-doc BuildArch: noarch AutoReqProv: No @@ -142410,7 +142411,7 @@ Provides: tex-newverbs = %{tl_version} License: LPPL 1.3 Summary: Define new versions of \verb, including short verb versions Version: svn26258.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142431,7 +142432,7 @@ write the verbatim text to a file. %package newverbs-doc Summary: Documentation for newverbs Version: svn26258.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newverbs-doc BuildArch: noarch AutoReqProv: No @@ -142444,7 +142445,7 @@ Provides: tex-nextpage = %{tl_version} License: LPPL Summary: Generalisations of the page advance commands Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142462,7 +142463,7 @@ Provides: tex-nfssext-cfr = %{tl_version} License: LPPL 1.3 Summary: Extensions to the LaTeX NFSS Version: svn37601.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142479,7 +142480,7 @@ venturisadf, %package nfssext-cfr-doc Summary: Documentation for nfssext-cfr Version: svn37601.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nfssext-cfr-doc BuildArch: noarch AutoReqProv: No @@ -142492,7 +142493,7 @@ Provides: tex-nicefilelist = %{tl_version} License: LPPL 1.3 Summary: Provide \listfiles alignment Version: svn28527.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142512,7 +142513,7 @@ longnamefilelist: users need to re-read the documentation. %package nicefilelist-doc Summary: Documentation for nicefilelist Version: svn28527.0.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nicefilelist-doc BuildArch: noarch AutoReqProv: No @@ -142525,7 +142526,7 @@ Provides: tex-niceframe = %{tl_version} License: LPPL Summary: Support for fancy frames Version: svn36086.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142544,7 +142545,7 @@ fonts are available separately in Type 1 format. %package niceframe-doc Summary: Documentation for niceframe Version: svn36086.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-niceframe-doc BuildArch: noarch AutoReqProv: No @@ -142557,7 +142558,7 @@ Provides: tex-nicetext = %{tl_version} License: LPPL Summary: Minimal markup for simple text (Wikipedia style) and documentation Version: svn38914 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142598,7 +142599,7 @@ package files. %package nicetext-doc Summary: Documentation for nicetext Version: svn38914 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nicetext-doc BuildArch: noarch AutoReqProv: No @@ -142611,7 +142612,7 @@ Provides: tex-nlctdoc = %{tl_version} License: LPPL Summary: Package documentation class Version: svn32705.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142637,7 +142638,7 @@ the documentation of those packages. %package nlctdoc-doc Summary: Documentation for nlctdoc Version: svn32705.1.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nlctdoc-doc BuildArch: noarch AutoReqProv: No @@ -142650,7 +142651,7 @@ Provides: tex-noconflict = %{tl_version} License: LPPL 1.3 Summary: Resolve macro name conflict between packages Version: svn30140.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142666,7 +142667,7 @@ they are needed. %package noconflict-doc Summary: Documentation for noconflict Version: svn30140.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-noconflict-doc BuildArch: noarch AutoReqProv: No @@ -142679,7 +142680,7 @@ Provides: tex-noindentafter = %{tl_version} License: LPPL 1.3 Summary: Tool to prevent paragraph indentation after environments/macros Version: svn35709.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142695,7 +142696,7 @@ specifically those following a particular macro or environment. %package noindentafter-doc Summary: Documentation for noindentafter Version: svn35709.0.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-noindentafter-doc BuildArch: noarch AutoReqProv: No @@ -142708,7 +142709,7 @@ Provides: tex-noitcrul = %{tl_version} License: LPPL Summary: Improved underlines in mathematics Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142723,7 +142724,7 @@ doesn't impose italics correction at the end. %package noitcrul-doc Summary: Documentation for noitcrul Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-noitcrul-doc BuildArch: noarch AutoReqProv: No @@ -142736,7 +142737,7 @@ Provides: tex-nolbreaks = %{tl_version} License: Public Domain Summary: No line breaks in text Version: svn26786.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142753,7 +142754,7 @@ macros or { } can still create break-points. %package nolbreaks-doc Summary: Documentation for nolbreaks Version: svn26786.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nolbreaks-doc BuildArch: noarch AutoReqProv: No @@ -142766,7 +142767,7 @@ Provides: tex-nomencl = %{tl_version} License: LPPL Summary: Produce lists of symbols as in nomenclature Version: svn15878.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142784,7 +142785,7 @@ MakeIndex program. %package nomencl-doc Summary: Documentation for nomencl Version: svn15878.3.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nomencl-doc BuildArch: noarch AutoReqProv: No @@ -142797,7 +142798,7 @@ Provides: tex-nomentbl = %{tl_version} License: LPPL Summary: Nomenclature typeset in a longtable Version: svn16549.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142817,7 +142818,7 @@ arguments: Symbol, description and physical unit. %package nomentbl-doc Summary: Documentation for nomentbl Version: svn16549.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nomentbl-doc BuildArch: noarch AutoReqProv: No @@ -142830,7 +142831,7 @@ Provides: tex-nonfloat = %{tl_version} License: Public Domain Summary: Non-floating table and figure captions Version: svn17598.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142847,7 +142848,7 @@ changed. %package nonfloat-doc Summary: Documentation for nonfloat Version: svn17598.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nonfloat-doc BuildArch: noarch AutoReqProv: No @@ -142860,7 +142861,7 @@ Provides: tex-nonumonpart = %{tl_version} License: LPPL 1.2 Summary: Prevent page numbers on part pages Version: svn22114.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142876,7 +142877,7 @@ load it, and the requirement is met. %package nonumonpart-doc Summary: Documentation for nonumonpart Version: svn22114.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nonumonpart-doc BuildArch: noarch AutoReqProv: No @@ -142889,7 +142890,7 @@ Provides: tex-nopageno = %{tl_version} License: LPPL Summary: No page numbers in LaTeX documents Version: svn18128.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142909,7 +142910,7 @@ package will do the job. %package nopageno-doc Summary: Documentation for nopageno Version: svn18128.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nopageno-doc BuildArch: noarch AutoReqProv: No @@ -142922,7 +142923,7 @@ Provides: tex-notes = %{tl_version} License: LPPL Summary: Mark sections of a document Version: svn37998.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142939,7 +142940,7 @@ as 'fig' sources, processable by xfig.) %package notes-doc Summary: Documentation for notes Version: svn37998.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-notes-doc BuildArch: noarch AutoReqProv: No @@ -142952,7 +142953,7 @@ Provides: tex-notoccite = %{tl_version} License: Public Domain Summary: Prevent trouble from citations in table of contents, etc Version: svn18129.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142970,7 +142971,7 @@ suppresses the effect. %package notoccite-doc Summary: Documentation for notoccite Version: svn18129.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-notoccite-doc BuildArch: noarch AutoReqProv: No @@ -142983,7 +142984,7 @@ Provides: tex-nowidow = %{tl_version} License: LPPL 1.3 Summary: Avoid widows Version: svn24066.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -142997,7 +142998,7 @@ This package provides a useful macro to manage widow lines. %package nowidow-doc Summary: Documentation for nowidow Version: svn24066.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nowidow-doc BuildArch: noarch AutoReqProv: No @@ -143010,7 +143011,7 @@ Provides: tex-nox = %{tl_version} License: LPPL Summary: Adaptable tables Version: svn30991.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143026,7 +143027,7 @@ environments) to be formatted into a array which may be split. %package nox-doc Summary: Documentation for nox Version: svn30991.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nox-doc BuildArch: noarch AutoReqProv: No @@ -143039,7 +143040,7 @@ Provides: tex-ntheorem = %{tl_version} License: LPPL Summary: Enhanced theorem environment Version: svn27609.1.33 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143058,7 +143059,7 @@ theorems, analagous to \listoffigures. %package ntheorem-doc Summary: Documentation for ntheorem Version: svn27609.1.33 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ntheorem-doc BuildArch: noarch AutoReqProv: No @@ -143071,7 +143072,7 @@ Provides: tex-numberedblock = %{tl_version} License: LPPL 1.3 Summary: Print a block of code, with unique index number Version: svn33109.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143088,7 +143089,7 @@ refer to each snippet elsewhere in your document. %package numberedblock-doc Summary: Documentation for numberedblock Version: svn33109.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-numberedblock-doc BuildArch: noarch AutoReqProv: No @@ -143101,7 +143102,7 @@ Provides: tex-numname = %{tl_version} License: LPPL Summary: Convert a number to its English expression Version: svn18130.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143117,7 +143118,7 @@ that class. %package numname-doc Summary: Documentation for numname Version: svn18130.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-numname-doc BuildArch: noarch AutoReqProv: No @@ -143130,7 +143131,7 @@ Provides: tex-numprint = %{tl_version} License: LPPL Summary: Print numbers with separators and exponent if necessary Version: svn27498.1.39 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143161,7 +143162,7 @@ be added before and after the formatted number. %package numprint-doc Summary: Documentation for numprint Version: svn27498.1.39 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-numprint-doc BuildArch: noarch AutoReqProv: No @@ -143174,7 +143175,7 @@ Provides: tex-ocg-p = %{tl_version} License: LPPL Summary: PDF OCG support in LaTeX Version: svn28803.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143197,7 +143198,7 @@ with PDFLatex and XeLaTeX. %package ocg-p-doc Summary: Documentation for ocg-p Version: svn28803.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocg-p-doc BuildArch: noarch AutoReqProv: No @@ -143210,7 +143211,7 @@ Provides: tex-ocgx = %{tl_version} License: LPPL Summary: Use OCGs within a PDF document without JavaScript Version: svn28492.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143232,7 +143233,7 @@ disable (to hide) OCGs. %package ocgx-doc Summary: Documentation for ocgx Version: svn28492.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocgx-doc BuildArch: noarch AutoReqProv: No @@ -143245,7 +143246,7 @@ Provides: tex-ocgx2 = %{tl_version} License: LPPL 1.3 Summary: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx Version: svn40126 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143270,7 +143271,7 @@ ensures compatibility with the media9 and animate packages. %package ocgx2-doc Summary: Documentation for ocgx2 Version: svn40126 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocgx2-doc BuildArch: noarch AutoReqProv: No @@ -143283,7 +143284,7 @@ Provides: tex-ocr-latex = %{tl_version} License: GPL+ Summary: LaTeX support for ocr fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143305,7 +143306,7 @@ documents. %package ocr-latex-doc Summary: Documentation for ocr-latex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ocr-latex-doc BuildArch: noarch AutoReqProv: No @@ -143318,7 +143319,7 @@ Provides: tex-octavo = %{tl_version} License: LPPL Summary: Typeset books following classical design and layout Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143344,7 +143345,7 @@ folded and sewn into a book. %package octavo-doc Summary: Documentation for octavo Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-octavo-doc BuildArch: noarch AutoReqProv: No @@ -143357,7 +143358,7 @@ Provides: tex-oldstyle = %{tl_version} License: LPPL Summary: Old style numbers in OT1 encoding Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143372,7 +143373,7 @@ use to produce oldstyle numbers. %package oldstyle-doc Summary: Documentation for oldstyle Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oldstyle-doc BuildArch: noarch AutoReqProv: No @@ -143385,7 +143386,7 @@ Provides: tex-onlyamsmath = %{tl_version} License: LPPL Summary: Inhibit use of non-amsmath mathematics markup when using amsmath Version: svn25006.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143402,7 +143403,7 @@ environments provided by the amsmath package. %package onlyamsmath-doc Summary: Documentation for onlyamsmath Version: svn25006.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-onlyamsmath-doc BuildArch: noarch AutoReqProv: No @@ -143415,7 +143416,7 @@ Provides: tex-opcit = %{tl_version} License: LPPL Summary: Footnote-style bibliographical references Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143437,7 +143438,7 @@ automatically. %package opcit-doc Summary: Documentation for opcit Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-opcit-doc BuildArch: noarch AutoReqProv: No @@ -143450,7 +143451,7 @@ Provides: tex-optional = %{tl_version} License: LPPL Summary: Facilitate optional printing of parts of a document Version: svn18131.2.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143470,7 +143471,7 @@ optional sections (whether they're included or not). %package optional-doc Summary: Documentation for optional Version: svn18131.2.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-optional-doc BuildArch: noarch AutoReqProv: No @@ -143483,7 +143484,7 @@ Provides: tex-outline = %{tl_version} License: LPPL Summary: List environment for making outlines Version: svn18360.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143497,7 +143498,7 @@ facilities similar to enumerate, but up to 6 levels deep. %package outline-doc Summary: Documentation for outline Version: svn18360.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-outline-doc BuildArch: noarch AutoReqProv: No @@ -143510,7 +143511,7 @@ Provides: tex-outliner = %{tl_version} License: GPL+ Summary: Change section levels easily Version: svn21095.0.94 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143527,7 +143528,7 @@ compilation. %package outliner-doc Summary: Documentation for outliner Version: svn21095.0.94 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-outliner-doc BuildArch: noarch AutoReqProv: No @@ -143540,7 +143541,7 @@ Provides: tex-outlines = %{tl_version} License: LPPL Summary: Produce "outline" lists Version: svn25192.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143559,7 +143560,7 @@ lists or presentation slides. %package outlines-doc Summary: Documentation for outlines Version: svn25192.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-outlines-doc BuildArch: noarch AutoReqProv: No @@ -143572,7 +143573,7 @@ Provides: tex-overpic = %{tl_version} License: LPPL Summary: Combine LaTeX commands over included graphics Version: svn19712.0.53 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143591,7 +143592,7 @@ at defined positions; a grid for orientation is available. %package overpic-doc Summary: Documentation for overpic Version: svn19712.0.53 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-overpic-doc BuildArch: noarch AutoReqProv: No @@ -143604,7 +143605,7 @@ Provides: tex-pagecolor = %{tl_version} License: LPPL 1.3 Summary: Interrogate page colour Version: svn38249.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143628,7 +143629,7 @@ result of using the \nopagecolor command). In that case %package pagecolor-doc Summary: Documentation for pagecolor Version: svn38249.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pagecolor-doc BuildArch: noarch AutoReqProv: No @@ -143641,7 +143642,7 @@ Provides: tex-pagecont = %{tl_version} License: LPPL Summary: Page numbering that continues between documents Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143657,7 +143658,7 @@ were a single document. %package pagecont-doc Summary: Documentation for pagecont Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pagecont-doc BuildArch: noarch AutoReqProv: No @@ -143670,7 +143671,7 @@ Provides: tex-pagenote = %{tl_version} License: LPPL 1.3 Summary: Notes at end of document Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143686,7 +143687,7 @@ the package requires the ifmtarg package. %package pagenote-doc Summary: Documentation for pagenote Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pagenote-doc BuildArch: noarch AutoReqProv: No @@ -143699,7 +143700,7 @@ Provides: tex-pagerange = %{tl_version} License: LPPL Summary: Flexible and configurable page range typesetting Version: svn16915.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143717,7 +143718,7 @@ page numbers) and standardising them. %package pagerange-doc Summary: Documentation for pagerange Version: svn16915.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pagerange-doc BuildArch: noarch AutoReqProv: No @@ -143730,7 +143731,7 @@ Provides: tex-pageslts = %{tl_version} License: LPPL 1.3 Summary: Variants of last page labels Version: svn39164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143759,7 +143760,7 @@ on the undolabl package. %package pageslts-doc Summary: Documentation for pageslts Version: svn39164 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pageslts-doc BuildArch: noarch AutoReqProv: No @@ -143772,7 +143773,7 @@ Provides: tex-paper = %{tl_version} License: GPL+ Summary: Versions of article class, tuned for scholarly publications Version: svn34521.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143792,7 +143793,7 @@ section and new commands for revisions. %package paper-doc Summary: Documentation for paper Version: svn34521.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-paper-doc BuildArch: noarch AutoReqProv: No @@ -143805,7 +143806,7 @@ Provides: tex-papercdcase = %{tl_version} License: LPPL Summary: Origami-style folding paper CD case Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143821,7 +143822,7 @@ style folding paper CD cases. %package papercdcase-doc Summary: Documentation for papercdcase Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-papercdcase-doc BuildArch: noarch AutoReqProv: No @@ -143834,7 +143835,7 @@ Provides: tex-papermas = %{tl_version} License: LPPL 1.3 Summary: Compute the mass of a printed version of a document Version: svn23667.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143852,7 +143853,7 @@ calculating postal charges. %package papermas-doc Summary: Documentation for papermas Version: svn23667.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-papermas-doc BuildArch: noarch AutoReqProv: No @@ -143865,7 +143866,7 @@ Provides: tex-papertex = %{tl_version} License: LPPL Summary: Class for newspapers, etc Version: svn19230.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143899,7 +143900,7 @@ users to create newsletters too. %package papertex-doc Summary: Documentation for papertex Version: svn19230.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-papertex-doc BuildArch: noarch AutoReqProv: No @@ -143912,7 +143913,7 @@ Provides: tex-paracol = %{tl_version} License: LPPL Summary: Multiple columns with texts "in parallel" Version: svn38621 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143928,7 +143929,7 @@ document switching and sychronizing each corresponding part in %package paracol-doc Summary: Documentation for paracol Version: svn38621 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-paracol-doc BuildArch: noarch AutoReqProv: No @@ -143941,7 +143942,7 @@ Provides: tex-paresse = %{tl_version} License: LPPL Summary: Define simple macros for greek letters Version: svn29803.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143959,7 +143960,7 @@ $\alpha$. %package paresse-doc Summary: Documentation for paresse Version: svn29803.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-paresse-doc BuildArch: noarch AutoReqProv: No @@ -143972,7 +143973,7 @@ Provides: tex-parnotes = %{tl_version} License: LPPL 1.3 Summary: Notes after every paragraph (or elsewhere) Version: svn25032.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143987,7 +143988,7 @@ paragraph, or manually, using the \parnotes command. %package parnotes-doc Summary: Documentation for parnotes Version: svn25032.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-parnotes-doc BuildArch: noarch AutoReqProv: No @@ -144000,7 +144001,7 @@ Provides: tex-parselines = %{tl_version} License: LPPL 1.3 Summary: Apply a macro to each line of an environment Version: svn21475.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144015,7 +144016,7 @@ of shading the lines of an environment is given. %package parselines-doc Summary: Documentation for parselines Version: svn21475.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-parselines-doc BuildArch: noarch AutoReqProv: No @@ -144028,7 +144029,7 @@ Provides: tex-pas-cours = %{tl_version} License: LPPL Summary: Macros useful in preparing teaching material Version: svn35842.1.09d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144047,7 +144048,7 @@ mathematics. %package pas-cours-doc Summary: Documentation for pas-cours Version: svn35842.1.09d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pas-cours-doc BuildArch: noarch AutoReqProv: No @@ -144060,7 +144061,7 @@ Provides: tex-pas-cv = %{tl_version} License: LPPL Summary: Flexible typesetting of Curricula Vitae Version: svn32263.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144099,7 +144100,7 @@ French) should be possible. %package pas-cv-doc Summary: Documentation for pas-cv Version: svn32263.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pas-cv-doc BuildArch: noarch AutoReqProv: No @@ -144112,7 +144113,7 @@ Provides: tex-pas-tableur = %{tl_version} License: LPPL Summary: Create a spreadsheet layout Version: svn39542 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144130,7 +144131,7 @@ PGF/TikZ is used for placement and population of the cells. %package pas-tableur-doc Summary: Documentation for pas-tableur Version: svn39542 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pas-tableur-doc BuildArch: noarch AutoReqProv: No @@ -144143,7 +144144,7 @@ Provides: tex-patchcmd = %{tl_version} License: Public Domain Summary: Change the definition of an existing command Version: svn41379 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144160,7 +144161,7 @@ defined with \DeclareRobustCommand. %package patchcmd-doc Summary: Documentation for patchcmd Version: svn41379 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-patchcmd-doc BuildArch: noarch AutoReqProv: No @@ -144173,7 +144174,7 @@ Provides: tex-pauldoc = %{tl_version} License: LPPL Summary: German LaTeX package documentation Version: svn16005.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144190,7 +144191,7 @@ documentation. %package pauldoc-doc Summary: Documentation for pauldoc Version: svn16005.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pauldoc-doc BuildArch: noarch AutoReqProv: No @@ -144203,7 +144204,7 @@ Provides: tex-pawpict = %{tl_version} License: GPL+ Summary: Using graphics from PAW Version: svn21629.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144218,7 +144219,7 @@ system to benefit from this package. %package pawpict-doc Summary: Documentation for pawpict Version: svn21629.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pawpict-doc BuildArch: noarch AutoReqProv: No @@ -144231,7 +144232,7 @@ Provides: tex-pax = %{tl_version} License: GPLv2+ Summary: Extract and reinsert PDF annotations with pdfTeX Version: svn26112.v0.1k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144260,7 +144261,7 @@ right place. Project status: experimental %package pax-doc Summary: Documentation for pax Version: svn26112.v0.1k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pax-doc BuildArch: noarch AutoReqProv: No @@ -144273,7 +144274,7 @@ Summary: Binaries for pax Version: svn10843.0 Requires: texlive-base Requires: texlive-pax -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pax-bin @@ -144284,7 +144285,7 @@ Provides: tex-pbox = %{tl_version} License: GPLv2+ Summary: A variable-width \parbox command Version: svn24807.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144302,7 +144303,7 @@ commands. %package pbox-doc Summary: Documentation for pbox Version: svn24807.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pbox-doc BuildArch: noarch AutoReqProv: No @@ -144315,7 +144316,7 @@ Provides: tex-pbsheet = %{tl_version} License: LPPL Summary: Problem sheet class Version: svn24830.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144344,7 +144345,7 @@ examples are in French). %package pbsheet-doc Summary: Documentation for pbsheet Version: svn24830.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pbsheet-doc BuildArch: noarch AutoReqProv: No @@ -144357,7 +144358,7 @@ Provides: tex-pdf14 = %{tl_version} License: LPPL 1.3 Summary: Restore PDF 1.4 to a TeX live 2010 format Version: svn17583.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144376,7 +144377,7 @@ compatibility with old viewers. %package pdf14-doc Summary: Documentation for pdf14 Version: svn17583.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdf14-doc BuildArch: noarch AutoReqProv: No @@ -144389,7 +144390,7 @@ Provides: tex-pdfcomment = %{tl_version} License: LPPL 1.3 Summary: A user-friendly interface to pdf annotations Version: svn40166 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144425,7 +144426,7 @@ Reader. %package pdfcomment-doc Summary: Documentation for pdfcomment Version: svn40166 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfcomment-doc BuildArch: noarch AutoReqProv: No @@ -144438,7 +144439,7 @@ Provides: tex-pdfcprot = %{tl_version} License: LPPL Summary: Activating and setting of character protruding using pdflatex Version: svn18735.1.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144456,7 +144457,7 @@ largely superseded by microtype. %package pdfcprot-doc Summary: Documentation for pdfcprot Version: svn18735.1.7a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfcprot-doc BuildArch: noarch AutoReqProv: No @@ -144469,7 +144470,7 @@ Provides: tex-pdfmarginpar = %{tl_version} License: GPL+ Summary: Generate marginpar-equivalent PDF annotations Version: svn23492.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144490,7 +144491,7 @@ is not obscured. %package pdfmarginpar-doc Summary: Documentation for pdfmarginpar Version: svn23492.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfmarginpar-doc BuildArch: noarch AutoReqProv: No @@ -144503,7 +144504,7 @@ Provides: tex-pdfpagediff = %{tl_version} License: LPPL Summary: Find difference between two PDF's Version: svn37946.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144520,7 +144521,7 @@ Find difference between two PDF's %package pdfpagediff-doc Summary: Documentation for pdfpagediff Version: svn37946.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfpagediff-doc BuildArch: noarch AutoReqProv: No @@ -144533,7 +144534,7 @@ Provides: tex-pdfscreen = %{tl_version} License: LPPL Summary: Support screen-based document design Version: svn27510.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144561,7 +144562,7 @@ effort. %package pdfscreen-doc Summary: Documentation for pdfscreen Version: svn27510.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfscreen-doc BuildArch: noarch AutoReqProv: No @@ -144574,7 +144575,7 @@ Provides: tex-pdfslide = %{tl_version} License: LPPL Summary: Presentation slides using pdftex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144605,7 +144606,7 @@ use of the facilities of the PPower4 post-processor. %package pdfslide-doc Summary: Documentation for pdfslide Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfslide-doc BuildArch: noarch AutoReqProv: No @@ -144618,7 +144619,7 @@ Provides: tex-pdfsync = %{tl_version} License: LPPL Summary: Provide links between source and PDF Version: svn20373.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144634,7 +144635,7 @@ PDF viewer. %package pdfsync-doc Summary: Documentation for pdfsync Version: svn20373.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfsync-doc BuildArch: noarch AutoReqProv: No @@ -144647,7 +144648,7 @@ Provides: tex-pdfwin = %{tl_version} License: LPPL Summary: pdfwin package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144667,7 +144668,7 @@ pdfwin package %package pdfwin-doc Summary: Documentation for pdfwin Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfwin-doc BuildArch: noarch AutoReqProv: No @@ -144680,7 +144681,7 @@ Provides: tex-pdfx = %{tl_version} License: LPPL Summary: PDF/X-1a and PDF/A-1b support for pdfTeX Version: svn41318 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144700,7 +144701,7 @@ compliant pdf documents with pdfTeX. %package pdfx-doc Summary: Documentation for pdfx Version: svn41318 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdfx-doc BuildArch: noarch AutoReqProv: No @@ -144713,7 +144714,7 @@ Provides: tex-pecha = %{tl_version} License: GPL+ Summary: Print Tibetan text in the classic pecha layout style Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144737,7 +144738,7 @@ languages, page numbering in Tibetan and more. %package pecha-doc Summary: Documentation for pecha Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pecha-doc BuildArch: noarch AutoReqProv: No @@ -144750,7 +144751,7 @@ Provides: tex-perltex = %{tl_version} License: LPPL Summary: Define LaTeX macros in terms of Perl code Version: svn38719 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144776,7 +144777,7 @@ document to places where PerlTeX is not available. %package perltex-doc Summary: Documentation for perltex Version: svn38719 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-perltex-doc BuildArch: noarch AutoReqProv: No @@ -144789,7 +144790,7 @@ Summary: Binaries for perltex Version: svn16181.0 Requires: texlive-base Requires: texlive-perltex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description perltex-bin @@ -144800,7 +144801,7 @@ Provides: tex-permute = %{tl_version} License: LPPL Summary: Support for symmetric groups Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144814,7 +144815,7 @@ and calculate with them. %package permute-doc Summary: Documentation for permute Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-permute-doc BuildArch: noarch AutoReqProv: No @@ -144827,7 +144828,7 @@ Provides: tex-petiteannonce = %{tl_version} License: LPPL Summary: A class for small advertisements Version: svn25915.1.0001 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144844,7 +144845,7 @@ you can place contact details. %package petiteannonce-doc Summary: Documentation for petiteannonce Version: svn25915.1.0001 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-petiteannonce-doc BuildArch: noarch AutoReqProv: No @@ -144857,7 +144858,7 @@ Provides: tex-philex = %{tl_version} License: LPPL Summary: Cross references for named and numbered environments Version: svn36396.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144882,7 +144883,7 @@ linguex package. %package philex-doc Summary: Documentation for philex Version: svn36396.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-philex-doc BuildArch: noarch AutoReqProv: No @@ -144895,7 +144896,7 @@ Provides: tex-photo = %{tl_version} License: LPPL Summary: A float environment for photographs Version: svn18739.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144915,7 +144916,7 @@ captions and photographer line still being available. %package photo-doc Summary: Documentation for photo Version: svn18739.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-photo-doc BuildArch: noarch AutoReqProv: No @@ -144928,7 +144929,7 @@ Provides: tex-piff = %{tl_version} License: Public Domain Summary: Macro tools by Mike Piff Version: svn21894.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144949,7 +144950,7 @@ format time. %package piff-doc Summary: Documentation for piff Version: svn21894.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-piff-doc BuildArch: noarch AutoReqProv: No @@ -144962,7 +144963,7 @@ Provides: tex-pkgloader = %{tl_version} License: LPPL 1.3 Summary: Managing the options and loading order of other packages Version: svn35711.0.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -144998,7 +144999,7 @@ package's repository. %package pkgloader-doc Summary: Documentation for pkgloader Version: svn35711.0.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pkgloader-doc BuildArch: noarch AutoReqProv: No @@ -145011,7 +145012,7 @@ Provides: tex-plantslabels = %{tl_version} License: LPPL Summary: Write labels for plants Version: svn29803.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145027,7 +145028,7 @@ and seven optional argument. The package uses the labels %package plantslabels-doc Summary: Documentation for plantslabels Version: svn29803.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plantslabels-doc BuildArch: noarch AutoReqProv: No @@ -145040,7 +145041,7 @@ Provides: tex-plates = %{tl_version} License: LPPL Summary: Arrange for "plates" sections of documents Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145059,7 +145060,7 @@ the figure environment for such colour images. %package plates-doc Summary: Documentation for plates Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plates-doc BuildArch: noarch AutoReqProv: No @@ -145072,7 +145073,7 @@ Provides: tex-plweb = %{tl_version} License: Copyright only Summary: Literate Programming for Prolog with LaTeX Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145091,7 +145092,7 @@ Prolog, Quintus-Prolog, or ECLiPSe. %package plweb-doc Summary: Documentation for plweb Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plweb-doc BuildArch: noarch AutoReqProv: No @@ -145104,7 +145105,7 @@ Provides: tex-polynom = %{tl_version} License: LPPL Summary: Macros for manipulating polynomials Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145121,7 +145122,7 @@ ring in one variable with rational coefficients. %package polynom-doc Summary: Documentation for polynom Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-polynom-doc BuildArch: noarch AutoReqProv: No @@ -145134,7 +145135,7 @@ Provides: tex-polynomial = %{tl_version} License: LPPL Summary: Typeset (univariate) polynomials Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145153,7 +145154,7 @@ limited optional behaviour. %package polynomial-doc Summary: Documentation for polynomial Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-polynomial-doc BuildArch: noarch AutoReqProv: No @@ -145166,7 +145167,7 @@ Provides: tex-polytable = %{tl_version} License: LPPL Summary: Tabular-like environments with named columns Version: svn31235.0.8.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145184,7 +145185,7 @@ layouts, for example for program code, are possible. %package polytable-doc Summary: Documentation for polytable Version: svn31235.0.8.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-polytable-doc BuildArch: noarch AutoReqProv: No @@ -145197,7 +145198,7 @@ Provides: tex-postcards = %{tl_version} License: LPPL Summary: Facilitates mass-mailing of postcards (junkmail) Version: svn21641.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145218,7 +145219,7 @@ example is provided. %package postcards-doc Summary: Documentation for postcards Version: svn21641.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-postcards-doc BuildArch: noarch AutoReqProv: No @@ -145231,7 +145232,7 @@ Provides: tex-poster-mac = %{tl_version} License: LPPL Summary: Make posters and banners with TeX Version: svn18305.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145252,7 +145253,7 @@ and PostScript printers. %package poster-mac-doc Summary: Documentation for poster-mac Version: svn18305.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-poster-mac-doc BuildArch: noarch AutoReqProv: No @@ -145265,7 +145266,7 @@ Provides: tex-ppr-prv = %{tl_version} License: LPPL Summary: Prosper preview Version: svn15878.0.13c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145290,7 +145291,7 @@ with Prosper, with two slides per page. %package ppr-prv-doc Summary: Documentation for ppr-prv Version: svn15878.0.13c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ppr-prv-doc BuildArch: noarch AutoReqProv: No @@ -145303,7 +145304,7 @@ Provides: tex-preprint = %{tl_version} License: Public Domain Summary: A bundle of packages provided "as is" Version: svn30447.2011 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145325,7 +145326,7 @@ counters to be subnumbered. %package preprint-doc Summary: Documentation for preprint Version: svn30447.2011 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-preprint-doc BuildArch: noarch AutoReqProv: No @@ -145338,7 +145339,7 @@ Provides: tex-pressrelease = %{tl_version} License: LPPL 1.3 Summary: A class for typesetting press releases Version: svn35147.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145360,7 +145361,7 @@ A configurable class for writing press releases. %package pressrelease-doc Summary: Documentation for pressrelease Version: svn35147.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pressrelease-doc BuildArch: noarch AutoReqProv: No @@ -145373,7 +145374,7 @@ Provides: tex-prettyref = %{tl_version} License: Public Domain Summary: Make label references "self-identify" Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145392,7 +145393,7 @@ with hyperref and with other packages. %package prettyref-doc Summary: Documentation for prettyref Version: svn15878.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-prettyref-doc BuildArch: noarch AutoReqProv: No @@ -145405,7 +145406,7 @@ Provides: tex-printlen = %{tl_version} License: LPPL Summary: Print lengths using specified units Version: svn19847.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145425,7 +145426,7 @@ stretch or shrink values. %package printlen-doc Summary: Documentation for printlen Version: svn19847.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-printlen-doc BuildArch: noarch AutoReqProv: No @@ -145438,7 +145439,7 @@ Provides: tex-probsoln = %{tl_version} License: LPPL Summary: Generate problem sheets and their solution sheets Version: svn29371.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145466,7 +145467,7 @@ of the same document as the problems they cover. %package probsoln-doc Summary: Documentation for probsoln Version: svn29371.3.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-probsoln-doc BuildArch: noarch AutoReqProv: No @@ -145479,7 +145480,7 @@ Provides: tex-program = %{tl_version} License: GPLv3+ Summary: Typesetting programs and algorithms Version: svn20022.3.3.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145494,7 +145495,7 @@ the pages. %package program-doc Summary: Documentation for program Version: svn20022.3.3.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-program-doc BuildArch: noarch AutoReqProv: No @@ -145507,7 +145508,7 @@ Provides: tex-progress = %{tl_version} License: LPPL Summary: Creates an overview of a document's state Version: svn19519.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145524,7 +145525,7 @@ the date appended (but is user-modifiable). %package progress-doc Summary: Documentation for progress Version: svn19519.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-progress-doc BuildArch: noarch AutoReqProv: No @@ -145537,7 +145538,7 @@ Provides: tex-progressbar = %{tl_version} License: LPPL Summary: Visualize shares of total amounts in the form of a (progress-)bar Version: svn33822.v1.0b_4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145559,7 +145560,7 @@ own. The package uses TikZ to produce its graphics. %package progressbar-doc Summary: Documentation for progressbar Version: svn33822.v1.0b_4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-progressbar-doc BuildArch: noarch AutoReqProv: No @@ -145572,7 +145573,7 @@ Provides: tex-proofread = %{tl_version} License: LPPL 1.3 Summary: Commands for inserting annotations Version: svn39043 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145596,7 +145597,7 @@ the style file by compiling proofread.dtx with pdfLaTeX. %package proofread-doc Summary: Documentation for proofread Version: svn39043 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-proofread-doc BuildArch: noarch AutoReqProv: No @@ -145609,7 +145610,7 @@ Provides: tex-properties = %{tl_version} License: LPPL Summary: Load properties from a file Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145624,7 +145625,7 @@ file, e.g. \jobname.properties. %package properties-doc Summary: Documentation for properties Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-properties-doc BuildArch: noarch AutoReqProv: No @@ -145637,7 +145638,7 @@ Provides: tex-prosper = %{tl_version} License: LPPL 1.2 Summary: LaTeX class for high quality slides Version: svn33033.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145696,7 +145697,7 @@ being contributed. %package prosper-doc Summary: Documentation for prosper Version: svn33033.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-prosper-doc BuildArch: noarch AutoReqProv: No @@ -145709,7 +145710,7 @@ Provides: tex-protex = %{tl_version} License: LPPL Summary: Literate programming package Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145725,7 +145726,7 @@ PDF, or HTML using TeX4ht). %package protex-doc Summary: Documentation for protex Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-protex-doc BuildArch: noarch AutoReqProv: No @@ -145738,7 +145739,7 @@ Provides: tex-protocol = %{tl_version} License: LPPL 1.3 Summary: A class for minutes of meetings Version: svn25562.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145754,7 +145755,7 @@ support in the work. %package protocol-doc Summary: Documentation for protocol Version: svn25562.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-protocol-doc BuildArch: noarch AutoReqProv: No @@ -145767,7 +145768,7 @@ Provides: tex-psfragx = %{tl_version} License: LPPL Summary: A psfrag eXtension Version: svn26243.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145798,7 +145799,7 @@ with psfragx annotations ready embedded. %package psfragx-doc Summary: Documentation for psfragx Version: svn26243.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psfragx-doc BuildArch: noarch AutoReqProv: No @@ -145811,7 +145812,7 @@ Provides: tex-pst-pdf = %{tl_version} License: LPPL Summary: Make PDF versions of graphics by processing between runs Version: svn31660.1.1v -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145835,7 +145836,7 @@ pstricks and requires a recent version of the preview package. %package pst-pdf-doc Summary: Documentation for pst-pdf Version: svn31660.1.1v -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-pdf-doc BuildArch: noarch AutoReqProv: No @@ -145848,7 +145849,7 @@ Summary: Binaries for pst-pdf Version: svn7838.0 Requires: texlive-base Requires: texlive-pst-pdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pst-pdf-bin @@ -145859,7 +145860,7 @@ Provides: tex-pstool = %{tl_version} License: LPPL Summary: Support for psfrag within pdfLaTeX Version: svn34015.1.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145893,7 +145894,7 @@ any similar package). %package pstool-doc Summary: Documentation for pstool Version: svn34015.1.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstool-doc BuildArch: noarch AutoReqProv: No @@ -145906,7 +145907,7 @@ Provides: tex-pxgreeks = %{tl_version} License: LPPL 1.3 Summary: Shape selection for PX fonts Greek letters Version: svn21838.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145926,7 +145927,7 @@ text font that may be used in the document. %package pxgreeks-doc Summary: Documentation for pxgreeks Version: svn21838.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pxgreeks-doc BuildArch: noarch AutoReqProv: No @@ -145939,7 +145940,7 @@ Provides: tex-python = %{tl_version} License: GPL+ Summary: Embed Python code in LaTeX Version: svn27064.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145953,7 +145954,7 @@ insert the script's output in the document. %package python-doc Summary: Documentation for python Version: svn27064.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-python-doc BuildArch: noarch AutoReqProv: No @@ -145966,7 +145967,7 @@ Provides: tex-qcm = %{tl_version} License: LPPL Summary: A LaTeX2e class for making multiple choice questionnaires Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -145995,7 +145996,7 @@ for AUC-TeX. %package qcm-doc Summary: Documentation for qcm Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qcm-doc BuildArch: noarch AutoReqProv: No @@ -146008,7 +146009,7 @@ Provides: tex-qstest = %{tl_version} License: LPPL Summary: Bundle for unit tests and pattern matching Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146033,7 +146034,7 @@ README file for details. %package qstest-doc Summary: Documentation for qstest Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qstest-doc BuildArch: noarch AutoReqProv: No @@ -146046,7 +146047,7 @@ Provides: tex-qsymbols = %{tl_version} License: GPL+ Summary: Maths symbol abbreviations Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146066,7 +146067,7 @@ the stmaryrd package. %package qsymbols-doc Summary: Documentation for qsymbols Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-qsymbols-doc BuildArch: noarch AutoReqProv: No @@ -146079,7 +146080,7 @@ Provides: tex-quotchap = %{tl_version} License: GPL+ Summary: Decorative chapter headings Version: svn28046.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146095,7 +146096,7 @@ needs the "Adobe standard font set" (as supported by psnfss). %package quotchap-doc Summary: Documentation for quotchap Version: svn28046.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-quotchap-doc BuildArch: noarch AutoReqProv: No @@ -146108,7 +146109,7 @@ Provides: tex-quoting = %{tl_version} License: LPPL 1.3 Summary: Consolidated environment for displayed text Version: svn32818.v0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146129,7 +146130,7 @@ the environment. %package quoting-doc Summary: Documentation for quoting Version: svn32818.v0.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-quoting-doc BuildArch: noarch AutoReqProv: No @@ -146142,7 +146143,7 @@ Provides: tex-quotmark = %{tl_version} License: LPPL Summary: Consistent quote marks Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146197,7 +146198,7 @@ of csquotes in its place. %package quotmark-doc Summary: Documentation for quotmark Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-quotmark-doc BuildArch: noarch AutoReqProv: No @@ -146210,7 +146211,7 @@ Provides: tex-ran_toks = %{tl_version} License: LPPL Summary: Randomise token strings Version: svn39684 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146231,7 +146232,7 @@ token sets. %package ran_toks-doc Summary: Documentation for ran_toks Version: svn39684 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ran_toks-doc BuildArch: noarch AutoReqProv: No @@ -146244,7 +146245,7 @@ Provides: tex-randtext = %{tl_version} License: LPPL Summary: Randomise the order of characters in strings Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146264,7 +146265,7 @@ easily picking up the address. %package randtext-doc Summary: Documentation for randtext Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-randtext-doc BuildArch: noarch AutoReqProv: No @@ -146277,7 +146278,7 @@ Provides: tex-rccol = %{tl_version} License: LPPL Summary: Decimal-centered optionally rounded numbers in tabular Version: svn15878.1.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146296,7 +146297,7 @@ required array package). %package rccol-doc Summary: Documentation for rccol Version: svn15878.1.2c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rccol-doc BuildArch: noarch AutoReqProv: No @@ -146309,7 +146310,7 @@ Provides: tex-rcs-multi = %{tl_version} License: LPPL Summary: Typeset RCS version control in multiple-file documents Version: svn21939.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146325,7 +146326,7 @@ based on the author's svn-multi package. %package rcs-multi-doc Summary: Documentation for rcs-multi Version: svn21939.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rcs-multi-doc BuildArch: noarch AutoReqProv: No @@ -146338,7 +146339,7 @@ Provides: tex-rcsinfo = %{tl_version} License: LPPL Summary: Support for the revision control system Version: svn15878.1.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146357,7 +146358,7 @@ rcsinfo.perl is included. %package rcsinfo-doc Summary: Documentation for rcsinfo Version: svn15878.1.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rcsinfo-doc BuildArch: noarch AutoReqProv: No @@ -146370,7 +146371,7 @@ Provides: tex-readarray = %{tl_version} License: LPPL 1.3 Summary: Read, store and recall array-formatted data Version: svn30489.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146390,7 +146391,7 @@ combined at time of compilation, rather than in advance. %package readarray-doc Summary: Documentation for readarray Version: svn30489.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-readarray-doc BuildArch: noarch AutoReqProv: No @@ -146403,7 +146404,7 @@ Provides: tex-realboxes = %{tl_version} License: LPPL 1.3 Summary: Variants of common box-commands that read their content as real box and not as macro argument Version: svn23581.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146434,7 +146435,7 @@ are used. %package realboxes-doc Summary: Documentation for realboxes Version: svn23581.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-realboxes-doc BuildArch: noarch AutoReqProv: No @@ -146447,7 +146448,7 @@ Provides: tex-recipe = %{tl_version} License: Public Domain Summary: A LaTeX class to typeset recipes Version: svn15878.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146462,7 +146463,7 @@ uses the Bookman and BrushScript-Italic fonts. %package recipe-doc Summary: Documentation for recipe Version: svn15878.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-recipe-doc BuildArch: noarch AutoReqProv: No @@ -146475,7 +146476,7 @@ Provides: tex-recipebook = %{tl_version} License: LPPL 1.3 Summary: Typeset 5.5" x 8" recipes for browsing or printing Version: svn37026.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146524,7 +146525,7 @@ cover sheets. %package recipebook-doc Summary: Documentation for recipebook Version: svn37026.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-recipebook-doc BuildArch: noarch AutoReqProv: No @@ -146537,7 +146538,7 @@ Provides: tex-recipecard = %{tl_version} License: LPPL Summary: Typeset recipes in note-card-sized boxes Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146556,7 +146557,7 @@ recipe then looks elegant and fits in the box of recipes. %package recipecard-doc Summary: Documentation for recipecard Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-recipecard-doc BuildArch: noarch AutoReqProv: No @@ -146569,7 +146570,7 @@ Provides: tex-rectopma = %{tl_version} License: LPPL Summary: Recycle top matter Version: svn19980.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146584,7 +146585,7 @@ information, in the standard classes and some others.) %package rectopma-doc Summary: Documentation for rectopma Version: svn19980.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rectopma-doc BuildArch: noarch AutoReqProv: No @@ -146597,7 +146598,7 @@ Provides: tex-refcheck = %{tl_version} License: GPL+ Summary: Check references (in figures, table, equations, etc) Version: svn29128.1.9.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146614,7 +146615,7 @@ equations and/or bibliography references. %package refcheck-doc Summary: Documentation for refcheck Version: svn29128.1.9.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-refcheck-doc BuildArch: noarch AutoReqProv: No @@ -146627,7 +146628,7 @@ Provides: tex-refenums = %{tl_version} License: LPPL 1.3 Summary: Define reference labels items with names of their own Version: svn32562.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146650,7 +146651,7 @@ also rendered as hyperlink to the definition. %package refenums-doc Summary: Documentation for refenums Version: svn32562.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-refenums-doc BuildArch: noarch AutoReqProv: No @@ -146663,7 +146664,7 @@ Provides: tex-reflectgraphics = %{tl_version} License: LPPL 1.3 Summary: Techniques for reflecting graphics Version: svn40612 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146683,7 +146684,7 @@ document. %package reflectgraphics-doc Summary: Documentation for reflectgraphics Version: svn40612 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-reflectgraphics-doc BuildArch: noarch AutoReqProv: No @@ -146696,7 +146697,7 @@ Provides: tex-refman = %{tl_version} License: LPPL Summary: Format technical reference manuals Version: svn15878.2.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146714,7 +146715,7 @@ Adobe. %package refman-doc Summary: Documentation for refman Version: svn15878.2.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-refman-doc BuildArch: noarch AutoReqProv: No @@ -146727,7 +146728,7 @@ Provides: tex-refstyle = %{tl_version} License: LPPL Summary: Advanced formatting of cross references Version: svn20318.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146752,7 +146753,7 @@ package for external document references. %package refstyle-doc Summary: Documentation for refstyle Version: svn20318.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-refstyle-doc BuildArch: noarch AutoReqProv: No @@ -146765,7 +146766,7 @@ Provides: tex-regcount = %{tl_version} License: LPPL Summary: Display the allocation status of the TeX registers Version: svn19979.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146781,7 +146782,7 @@ it is a bit verbose. An automatic call to \rgcounts is done at %package regcount-doc Summary: Documentation for regcount Version: svn19979.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-regcount-doc BuildArch: noarch AutoReqProv: No @@ -146794,7 +146795,7 @@ Provides: tex-regexpatch = %{tl_version} License: LPPL 1.3 Summary: High level patching of commands Version: svn41204 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146814,7 +146815,7 @@ experimental packages. %package regexpatch-doc Summary: Documentation for regexpatch Version: svn41204 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-regexpatch-doc BuildArch: noarch AutoReqProv: No @@ -146827,7 +146828,7 @@ Provides: tex-register = %{tl_version} License: LPPL Summary: Typeset programmable elements in digital hardware (registers) Version: svn21127.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146853,7 +146854,7 @@ structures. %package register-doc Summary: Documentation for register Version: svn21127.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-register-doc BuildArch: noarch AutoReqProv: No @@ -146866,7 +146867,7 @@ Provides: tex-regstats = %{tl_version} License: LPPL 1.3 Summary: Information about register use Version: svn25050.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146888,7 +146889,7 @@ maximum available number of such registers. %package regstats-doc Summary: Documentation for regstats Version: svn25050.1.0h -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-regstats-doc BuildArch: noarch AutoReqProv: No @@ -146901,7 +146902,7 @@ Provides: tex-relenc = %{tl_version} License: LPPL Summary: A "relaxed" font encoding Version: svn22050.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146924,7 +146925,7 @@ ligatures and accented characters. %package relenc-doc Summary: Documentation for relenc Version: svn22050.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-relenc-doc BuildArch: noarch AutoReqProv: No @@ -146937,7 +146938,7 @@ Provides: tex-relsize = %{tl_version} License: Public Domain Summary: Set the font size relative to the current font size Version: svn30707.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146952,7 +146953,7 @@ commands \larger, \smaller, \textlarger, etc. %package relsize-doc Summary: Documentation for relsize Version: svn30707.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-relsize-doc BuildArch: noarch AutoReqProv: No @@ -146965,7 +146966,7 @@ Provides: tex-repeatindex = %{tl_version} License: LPPL Summary: Repeat items in an index after a page or column break Version: svn24305.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -146982,7 +146983,7 @@ which main item a subitem belongs. %package repeatindex-doc Summary: Documentation for repeatindex Version: svn24305.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-repeatindex-doc BuildArch: noarch AutoReqProv: No @@ -146995,7 +146996,7 @@ Provides: tex-repltext = %{tl_version} License: LPPL 1.3 Summary: Control how text gets copied from a PDF file Version: svn33442.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147013,7 +147014,7 @@ typeset text that is copied and pasted. %package repltext-doc Summary: Documentation for repltext Version: svn33442.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-repltext-doc BuildArch: noarch AutoReqProv: No @@ -147026,7 +147027,7 @@ Provides: tex-rjlparshap = %{tl_version} License: LPPL 1.2 Summary: Support for use of \parshape in LaTeX Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147044,7 +147045,7 @@ that the shapepar package does. %package rjlparshap-doc Summary: Documentation for rjlparshap Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rjlparshap-doc BuildArch: noarch AutoReqProv: No @@ -147057,7 +147058,7 @@ Provides: tex-rlepsf = %{tl_version} License: LPPL Summary: Rewrite labels in EPS graphics Version: svn19082.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147077,7 +147078,7 @@ facilities of the labelfig package in place of using %package rlepsf-doc Summary: Documentation for rlepsf Version: svn19082.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rlepsf-doc BuildArch: noarch AutoReqProv: No @@ -147090,7 +147091,7 @@ Provides: tex-rmpage = %{tl_version} License: GPL+ Summary: A package to help change page layout parameters in LaTeX Version: svn20002.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147121,7 +147122,7 @@ set page layout parameters to particular measurements. %package rmpage-doc Summary: Documentation for rmpage Version: svn20002.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rmpage-doc BuildArch: noarch AutoReqProv: No @@ -147134,7 +147135,7 @@ Provides: tex-robustcommand = %{tl_version} License: LPPL Summary: Declare robust command, with \newcommand checks Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147149,7 +147150,7 @@ command before declaring it robust. %package robustcommand-doc Summary: Documentation for robustcommand Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-robustcommand-doc BuildArch: noarch AutoReqProv: No @@ -147162,7 +147163,7 @@ Provides: tex-robustindex = %{tl_version} License: LPPL Summary: Create index with pagerefs Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147180,7 +147181,7 @@ maintain correct page numbers %package robustindex-doc Summary: Documentation for robustindex Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-robustindex-doc BuildArch: noarch AutoReqProv: No @@ -147193,7 +147194,7 @@ Provides: tex-romanbar = %{tl_version} License: LPPL 1.3 Summary: Write roman number with "bars" Version: svn25005.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147210,7 +147211,7 @@ necessary). The package also provides a predicate \ifnumeric. %package romanbar-doc Summary: Documentation for romanbar Version: svn25005.1.0f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-romanbar-doc BuildArch: noarch AutoReqProv: No @@ -147223,7 +147224,7 @@ Provides: tex-romanbarpagenumber = %{tl_version} License: LPPL 1.3 Summary: Typesetting roman page numbers Version: svn36236.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147241,7 +147242,7 @@ number. %package romanbarpagenumber-doc Summary: Documentation for romanbarpagenumber Version: svn36236.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-romanbarpagenumber-doc BuildArch: noarch AutoReqProv: No @@ -147254,7 +147255,7 @@ Provides: tex-romanneg = %{tl_version} License: Public Domain Summary: Roman page numbers negative Version: svn20087.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147268,7 +147269,7 @@ to be negative when roman pagenumbering is in effect. %package romanneg-doc Summary: Documentation for romanneg Version: svn20087.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-romanneg-doc BuildArch: noarch AutoReqProv: No @@ -147281,7 +147282,7 @@ Provides: tex-romannum = %{tl_version} License: LPPL Summary: Generate roman numerals instead of arabic digits Version: svn15878.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147298,7 +147299,7 @@ find this package useful. %package romannum-doc Summary: Documentation for romannum Version: svn15878.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-romannum-doc BuildArch: noarch AutoReqProv: No @@ -147311,7 +147312,7 @@ Provides: tex-rotfloat = %{tl_version} License: LPPL Summary: Rotate floats Version: svn18292.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147333,7 +147334,7 @@ define rotated versions of the new floats, too. %package rotfloat-doc Summary: Documentation for rotfloat Version: svn18292.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rotfloat-doc BuildArch: noarch AutoReqProv: No @@ -147346,7 +147347,7 @@ Provides: tex-rotpages = %{tl_version} License: LPPL Summary: Typeset sets of pages upside-down and backwards Version: svn18740.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147367,7 +147368,7 @@ solutions rotated. %package rotpages-doc Summary: Documentation for rotpages Version: svn18740.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rotpages-doc BuildArch: noarch AutoReqProv: No @@ -147380,7 +147381,7 @@ Provides: tex-roundbox = %{tl_version} License: LPPL 1.3 Summary: Round boxes in LaTeX Version: svn29675.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147394,7 +147395,7 @@ in LaTeX, for producing boxes, framed with rounded corners. %package roundbox-doc Summary: Documentation for roundbox Version: svn29675.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-roundbox-doc BuildArch: noarch AutoReqProv: No @@ -147407,7 +147408,7 @@ Provides: tex-rterface = %{tl_version} License: LPPL 1.2 Summary: Access to R analysis from within a document Version: svn30084.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147423,7 +147424,7 @@ output. %package rterface-doc Summary: Documentation for rterface Version: svn30084.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rterface-doc BuildArch: noarch AutoReqProv: No @@ -147436,7 +147437,7 @@ Provides: tex-rtkinenc = %{tl_version} License: LPPL Summary: Input encoding with fallback procedures Version: svn20003.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147461,7 +147462,7 @@ user may look at the tclldoc class. %package rtkinenc-doc Summary: Documentation for rtkinenc Version: svn20003.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rtkinenc-doc BuildArch: noarch AutoReqProv: No @@ -147474,7 +147475,7 @@ Provides: tex-rulercompass = %{tl_version} License: LPPL 1.3 Summary: A TikZ library for straight-edge and compass diagrams Version: svn32392.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147488,7 +147489,7 @@ straight-edge and compass diagrams with TikZ. %package rulercompass-doc Summary: Documentation for rulercompass Version: svn32392.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rulercompass-doc BuildArch: noarch AutoReqProv: No @@ -147501,7 +147502,7 @@ Provides: tex-rvwrite = %{tl_version} License: LPPL Summary: Increase the number of available output streams in LaTeX Version: svn19614.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147521,7 +147522,7 @@ widely-available ProTeX package. %package rvwrite-doc Summary: Documentation for rvwrite Version: svn19614.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rvwrite-doc BuildArch: noarch AutoReqProv: No @@ -147534,7 +147535,7 @@ Provides: tex-savefnmark = %{tl_version} License: GPL+ Summary: Save name of the footnote mark for reuse Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147550,7 +147551,7 @@ another footnote at the bottom. %package savefnmark-doc Summary: Documentation for savefnmark Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-savefnmark-doc BuildArch: noarch AutoReqProv: No @@ -147563,7 +147564,7 @@ Provides: tex-savesym = %{tl_version} License: LPPL Summary: Redefine symbols where names conflict Version: svn31565.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147584,7 +147585,7 @@ Provides: tex-savetrees = %{tl_version} License: LPPL 1.3 Summary: Optimise the use of each page of a LaTeX document Version: svn40525 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147613,7 +147614,7 @@ and extreme options for the "broad brush" approach. %package savetrees-doc Summary: Documentation for savetrees Version: svn40525 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-savetrees-doc BuildArch: noarch AutoReqProv: No @@ -147626,7 +147627,7 @@ Provides: tex-scale = %{tl_version} License: GPL+ Summary: Scale document by sqrt(2) or magstep(2) Version: svn15878.1.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147642,7 +147643,7 @@ resolution. %package scale-doc Summary: Documentation for scale Version: svn15878.1.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-scale-doc BuildArch: noarch AutoReqProv: No @@ -147655,7 +147656,7 @@ Provides: tex-scalebar = %{tl_version} License: LPPL Summary: Create scalebars for maps, diagrams or photos Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147675,7 +147676,7 @@ microscope image. %package scalebar-doc Summary: Documentation for scalebar Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-scalebar-doc BuildArch: noarch AutoReqProv: No @@ -147688,7 +147689,7 @@ Provides: tex-scalerel = %{tl_version} License: LPPL 1.3 Summary: Constrained scaling and stretching of objects Version: svn36317.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147708,7 +147709,7 @@ legibility or for the sake of general appearance. %package scalerel-doc Summary: Documentation for scalerel Version: svn36317.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-scalerel-doc BuildArch: noarch AutoReqProv: No @@ -147721,7 +147722,7 @@ Provides: tex-scanpages = %{tl_version} License: LPPL 1.3 Summary: Support importing and embellishing scanned documents Version: svn40177 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147743,7 +147744,7 @@ scanned pages, only. %package scanpages-doc Summary: Documentation for scanpages Version: svn40177 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-scanpages-doc BuildArch: noarch AutoReqProv: No @@ -147756,7 +147757,7 @@ Provides: tex-sdrt = %{tl_version} License: LPPL Summary: Macros for Segmented Discourse Representation Theory Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147776,7 +147777,7 @@ mode, so they work the same in formulae and in text. %package sdrt-doc Summary: Documentation for sdrt Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sdrt-doc BuildArch: noarch AutoReqProv: No @@ -147789,7 +147790,7 @@ Provides: tex-secdot = %{tl_version} License: LPPL Summary: Section numbers with trailing dots Version: svn20208.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147804,7 +147805,7 @@ with other sectioning commands. %package secdot-doc Summary: Documentation for secdot Version: svn20208.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-secdot-doc BuildArch: noarch AutoReqProv: No @@ -147817,7 +147818,7 @@ Provides: tex-sectionbox = %{tl_version} License: LPPL Summary: Create fancy boxed ((sub)sub)sections Version: svn37749.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147838,7 +147839,7 @@ derived classes. %package sectionbox-doc Summary: Documentation for sectionbox Version: svn37749.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sectionbox-doc BuildArch: noarch AutoReqProv: No @@ -147851,7 +147852,7 @@ Provides: tex-sectsty = %{tl_version} License: LPPL Summary: Control sectional headers Version: svn15878.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147867,7 +147868,7 @@ a section title. %package sectsty-doc Summary: Documentation for sectsty Version: svn15878.2.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sectsty-doc BuildArch: noarch AutoReqProv: No @@ -147880,7 +147881,7 @@ Provides: tex-seealso = %{tl_version} License: LPPL 1.3 Summary: Improve the performance of \see macros with makeindex Version: svn33449.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147898,7 +147899,7 @@ entries. on these indirecty %package seealso-doc Summary: Documentation for seealso Version: svn33449.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-seealso-doc BuildArch: noarch AutoReqProv: No @@ -147911,7 +147912,7 @@ Provides: tex-selectp = %{tl_version} License: Public Domain Summary: Select pages to be output Version: svn20185.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147928,7 +147929,7 @@ was inspired by code published by Knuth in TUGboat 8(2) (July %package selectp-doc Summary: Documentation for selectp Version: svn20185.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-selectp-doc BuildArch: noarch AutoReqProv: No @@ -147941,7 +147942,7 @@ Provides: tex-semantic = %{tl_version} License: LPPL Summary: Help for writing programming language semantics Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147962,7 +147963,7 @@ trees. %package semantic-doc Summary: Documentation for semantic Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-semantic-doc BuildArch: noarch AutoReqProv: No @@ -147975,7 +147976,7 @@ Provides: tex-semioneside = %{tl_version} License: LPPL Summary: Put only special contents on left-hand pages in two sided layout Version: svn15878.v0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -147993,7 +147994,7 @@ request, e.g., floating objects. %package semioneside-doc Summary: Documentation for semioneside Version: svn15878.v0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-semioneside-doc BuildArch: noarch AutoReqProv: No @@ -148006,7 +148007,7 @@ Provides: tex-semproc = %{tl_version} License: LPPL 1.3 Summary: Seminar proceedings Version: svn37568.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148035,7 +148036,7 @@ respective talk. %package semproc-doc Summary: Documentation for semproc Version: svn37568.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-semproc-doc BuildArch: noarch AutoReqProv: No @@ -148048,7 +148049,7 @@ Provides: tex-sepfootnotes = %{tl_version} License: LPPL 1.3 Summary: Support footnotes and endnotes from separate files Version: svn34705.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148064,7 +148065,7 @@ the latter typesets that note. %package sepfootnotes-doc Summary: Documentation for sepfootnotes Version: svn34705.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sepfootnotes-doc BuildArch: noarch AutoReqProv: No @@ -148077,7 +148078,7 @@ Provides: tex-seqsplit = %{tl_version} License: LPPL Summary: Split long sequences of characters in a neutral way Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148097,7 +148098,7 @@ consider the dnaseq as a rather more powerful alternative. %package seqsplit-doc Summary: Documentation for seqsplit Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-seqsplit-doc BuildArch: noarch AutoReqProv: No @@ -148110,7 +148111,7 @@ Provides: tex-sf298 = %{tl_version} License: LPPL Summary: Standard form 298 Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148126,7 +148127,7 @@ a U.S. government contract. %package sf298-doc Summary: Documentation for sf298 Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sf298-doc BuildArch: noarch AutoReqProv: No @@ -148139,7 +148140,7 @@ Provides: tex-sffms = %{tl_version} License: LPPL Summary: Typesetting science fiction/fantasy manuscripts Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148162,7 +148163,7 @@ new LaTeX users. %package sffms-doc Summary: Documentation for sffms Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sffms-doc BuildArch: noarch AutoReqProv: No @@ -148175,7 +148176,7 @@ Provides: tex-sfmath = %{tl_version} License: LPPL Summary: Sans-serif mathematics Version: svn15878.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148192,7 +148193,7 @@ Provides: tex-shadethm = %{tl_version} License: LPPL Summary: Theorem environments that are shaded Version: svn20319.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148215,7 +148216,7 @@ therefore, to use mdframed. %package shadethm-doc Summary: Documentation for shadethm Version: svn20319.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shadethm-doc BuildArch: noarch AutoReqProv: No @@ -148228,7 +148229,7 @@ Provides: tex-shadow = %{tl_version} License: LPPL Summary: Shadow boxes Version: svn20312.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148242,7 +148243,7 @@ mechanisms. %package shadow-doc Summary: Documentation for shadow Version: svn20312.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shadow-doc BuildArch: noarch AutoReqProv: No @@ -148255,7 +148256,7 @@ Provides: tex-shadowtext = %{tl_version} License: LPPL Summary: shadowtext Version: svn26522.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148271,7 +148272,7 @@ and positioning of the shadow are customisable. %package shadowtext-doc Summary: Documentation for shadowtext Version: svn26522.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shadowtext-doc BuildArch: noarch AutoReqProv: No @@ -148284,7 +148285,7 @@ Provides: tex-shapepar = %{tl_version} License: Dotseqn Summary: A macro to typeset paragraphs in specific shapes Version: svn30708.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148314,7 +148315,7 @@ output to \shapepar polygon form. %package shapepar-doc Summary: Documentation for shapepar Version: svn30708.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shapepar-doc BuildArch: noarch AutoReqProv: No @@ -148327,7 +148328,7 @@ Provides: tex-shdoc = %{tl_version} License: LPPL 1.3 Summary: Float environment to document the shell commands of a terminal session Version: svn40848 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148348,7 +148349,7 @@ imitates the look of a shell prompt. %package shdoc-doc Summary: Documentation for shdoc Version: svn40848 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shdoc-doc BuildArch: noarch AutoReqProv: No @@ -148361,7 +148362,7 @@ Provides: tex-shipunov = %{tl_version} License: LPPL Summary: A collection of LaTeX packages and classes Version: svn29349.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148411,7 +148412,7 @@ context; and starfn. %package shipunov-doc Summary: Documentation for shipunov Version: svn29349.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shipunov-doc BuildArch: noarch AutoReqProv: No @@ -148424,7 +148425,7 @@ Provides: tex-shorttoc = %{tl_version} License: LPPL Summary: Table of contents with different depths Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148440,7 +148441,7 @@ general overview of the main topics in the document. %package shorttoc-doc Summary: Documentation for shorttoc Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shorttoc-doc BuildArch: noarch AutoReqProv: No @@ -148453,7 +148454,7 @@ Provides: tex-show2e = %{tl_version} License: LPPL Summary: Variants of \show for LaTeX2e Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148471,7 +148472,7 @@ variant helps with macros with exotic names. %package show2e-doc Summary: Documentation for show2e Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-show2e-doc BuildArch: noarch AutoReqProv: No @@ -148484,7 +148485,7 @@ Provides: tex-showcharinbox = %{tl_version} License: LPPL 1.3 Summary: Show characters inside a box Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148504,7 +148505,7 @@ size. %package showcharinbox-doc Summary: Documentation for showcharinbox Version: svn29803.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showcharinbox-doc BuildArch: noarch AutoReqProv: No @@ -148517,7 +148518,7 @@ Provides: tex-showdim = %{tl_version} License: LPPL Summary: Variants on printing dimensions Version: svn28918.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148533,7 +148534,7 @@ the value of a TeX dimension. For example, %package showdim-doc Summary: Documentation for showdim Version: svn28918.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showdim-doc BuildArch: noarch AutoReqProv: No @@ -148546,7 +148547,7 @@ Provides: tex-showexpl = %{tl_version} License: LPPL Summary: Typesetting LaTeX source code Version: svn32737.v0.3l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148566,7 +148567,7 @@ the related result in the same document. %package showexpl-doc Summary: Documentation for showexpl Version: svn32737.v0.3l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showexpl-doc BuildArch: noarch AutoReqProv: No @@ -148579,7 +148580,7 @@ Provides: tex-showlabels = %{tl_version} License: GPL+ Summary: Show label commands in the margin Version: svn41322 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148597,7 +148598,7 @@ for others, such as the \ref or \begin commands. %package showlabels-doc Summary: Documentation for showlabels Version: svn41322 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showlabels-doc BuildArch: noarch AutoReqProv: No @@ -148610,7 +148611,7 @@ Provides: tex-sidecap = %{tl_version} License: LPPL Summary: Typeset captions sideways Version: svn15878.1.6f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148627,7 +148628,7 @@ outercaption, innercaption, leftcaption and rightcaption. %package sidecap-doc Summary: Documentation for sidecap Version: svn15878.1.6f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sidecap-doc BuildArch: noarch AutoReqProv: No @@ -148640,7 +148641,7 @@ Provides: tex-sidenotes = %{tl_version} License: LPPL 1.3 Summary: Typeset notes containing rich content, in the margin Version: svn40658 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148681,7 +148682,7 @@ citations, captions and tables in the margin. This is common %package sidenotes-doc Summary: Documentation for sidenotes Version: svn40658 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sidenotes-doc BuildArch: noarch AutoReqProv: No @@ -148694,7 +148695,7 @@ Provides: tex-silence = %{tl_version} License: LPPL Summary: Selective filtering of error messages and warnings Version: svn27028.1.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148713,7 +148714,7 @@ reference. %package silence-doc Summary: Documentation for silence Version: svn27028.1.5b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-silence-doc BuildArch: noarch AutoReqProv: No @@ -148726,7 +148727,7 @@ Provides: tex-simplecd = %{tl_version} License: LPPL 1.2 Summary: Simple CD, DVD covers for printing Version: svn29260.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148747,7 +148748,7 @@ environment cell, a rather wide range of things may be placed. %package simplecd-doc Summary: Documentation for simplecd Version: svn29260.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-simplecd-doc BuildArch: noarch AutoReqProv: No @@ -148760,7 +148761,7 @@ Provides: tex-simplecv = %{tl_version} License: LPPL Summary: A simple class for writing curricula vitae Version: svn35537.1.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148775,7 +148776,7 @@ avoid the existing cv package). %package simplecv-doc Summary: Documentation for simplecv Version: svn35537.1.6a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-simplecv-doc BuildArch: noarch AutoReqProv: No @@ -148788,7 +148789,7 @@ Provides: tex-simplewick = %{tl_version} License: GPL+ Summary: Simple Wick contractions Version: svn15878.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148802,7 +148803,7 @@ contractions above and below expressions. %package simplewick-doc Summary: Documentation for simplewick Version: svn15878.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-simplewick-doc BuildArch: noarch AutoReqProv: No @@ -148815,7 +148816,7 @@ Provides: tex-sitem = %{tl_version} License: LPPL 1.3 Summary: Save the optional argument of \item Version: svn22136.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148829,7 +148830,7 @@ argument in a box. %package sitem-doc Summary: Documentation for sitem Version: svn22136.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sitem-doc BuildArch: noarch AutoReqProv: No @@ -148842,7 +148843,7 @@ Provides: tex-skb = %{tl_version} License: LPPL 1.3 Summary: Tools for a repository of long-living documents Version: svn22781.0.52 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148899,7 +148900,7 @@ from someone who just wants to write articles and books. %package skb-doc Summary: Documentation for skb Version: svn22781.0.52 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skb-doc BuildArch: noarch AutoReqProv: No @@ -148912,7 +148913,7 @@ Provides: tex-skdoc = %{tl_version} License: LPPL 1.3 Summary: Documentation and extraction for packages and document classes Version: svn32278.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148958,7 +148959,7 @@ documentation and code in a single run of a single file. %package skdoc-doc Summary: Documentation for skdoc Version: svn32278.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skdoc-doc BuildArch: noarch AutoReqProv: No @@ -148971,7 +148972,7 @@ Provides: tex-skeycommand = %{tl_version} License: LPPL 1.3 Summary: Create commands using parameters and keyval in parallel Version: svn24652.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -148988,7 +148989,7 @@ the user of skeycommand. %package skeycommand-doc Summary: Documentation for skeycommand Version: svn24652.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skeycommand-doc BuildArch: noarch AutoReqProv: No @@ -149001,7 +149002,7 @@ Provides: tex-skeyval = %{tl_version} License: LPPL 1.3 Summary: Key-value parsing combining features of xkeyval and pgfkeys Version: svn30560.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149035,7 +149036,7 @@ features of pgfkeys are introduced in a new context. %package skeyval-doc Summary: Documentation for skeyval Version: svn30560.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skeyval-doc BuildArch: noarch AutoReqProv: No @@ -149048,7 +149049,7 @@ Provides: tex-skrapport = %{tl_version} License: LPPL 1.3 Summary: 'Simple' class for reports, etc Version: svn37911.0.12e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149103,7 +149104,7 @@ journal style. %package skrapport-doc Summary: Documentation for skrapport Version: svn37911.0.12e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skrapport-doc BuildArch: noarch AutoReqProv: No @@ -149116,7 +149117,7 @@ Provides: tex-slantsc = %{tl_version} License: LPPL Summary: Access different-shaped small-caps fonts Version: svn25007.2.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149133,7 +149134,7 @@ is needed to define font shapes such as 'scsl' or 'scit'.) %package slantsc-doc Summary: Documentation for slantsc Version: svn25007.2.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-slantsc-doc BuildArch: noarch AutoReqProv: No @@ -149146,7 +149147,7 @@ Provides: tex-smalltableof = %{tl_version} License: LPPL Summary: Create listoffigures etc. in a single chapter Version: svn20333.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149161,7 +149162,7 @@ sections for each list of figures, tables, etc. %package smalltableof-doc Summary: Documentation for smalltableof Version: svn20333.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-smalltableof-doc BuildArch: noarch AutoReqProv: No @@ -149174,7 +149175,7 @@ Provides: tex-smartref = %{tl_version} License: LPPL Summary: Extend LaTeX's \ref capability Version: svn20311.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149196,7 +149197,7 @@ programming environment for using the extended labels. %package smartref-doc Summary: Documentation for smartref Version: svn20311.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-smartref-doc BuildArch: noarch AutoReqProv: No @@ -149209,7 +149210,7 @@ Provides: tex-snapshot = %{tl_version} License: LPPL Summary: List the external dependencies of a LaTeX document Version: svn15878.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149234,7 +149235,7 @@ unexpected side effects of routine upgrades to the TeX system. %package snapshot-doc Summary: Documentation for snapshot Version: svn15878.1.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-snapshot-doc BuildArch: noarch AutoReqProv: No @@ -149247,7 +149248,7 @@ Provides: tex-snotez = %{tl_version} License: LPPL 1.3 Summary: Typeset notes, in the margin Version: svn30355.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149269,7 +149270,7 @@ perpage. %package snotez-doc Summary: Documentation for snotez Version: svn30355.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-snotez-doc BuildArch: noarch AutoReqProv: No @@ -149282,7 +149283,7 @@ Provides: tex-soul = %{tl_version} License: LPPL Summary: Hyphenation for letterspacing, underlining, and more Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149302,7 +149303,7 @@ soulutf8 %package soul-doc Summary: Documentation for soul Version: svn15878.2.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-soul-doc BuildArch: noarch AutoReqProv: No @@ -149315,7 +149316,7 @@ Provides: tex-sparklines = %{tl_version} License: LPPL Summary: Drawing sparklines: intense, simple, wordlike graphics Version: svn35400.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149337,7 +149338,7 @@ uses pgf, and does not work with pictex. %package sparklines-doc Summary: Documentation for sparklines Version: svn35400.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sparklines-doc BuildArch: noarch AutoReqProv: No @@ -149350,7 +149351,7 @@ Provides: tex-sphack = %{tl_version} License: Bibtex Summary: Patch LaTeX kernel spacing macros Version: svn20842.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149364,7 +149365,7 @@ also invisible in vertical mode. %package sphack-doc Summary: Documentation for sphack Version: svn20842.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sphack-doc BuildArch: noarch AutoReqProv: No @@ -149377,7 +149378,7 @@ Provides: tex-splitindex = %{tl_version} License: LPPL Summary: Unlimited number of indexes Version: svn39766 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149400,7 +149401,7 @@ for each of the files. %package splitindex-doc Summary: Documentation for splitindex Version: svn39766 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-splitindex-doc BuildArch: noarch AutoReqProv: No @@ -149413,7 +149414,7 @@ Summary: Binaries for splitindex Version: svn29688.0 Requires: texlive-base Requires: texlive-splitindex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description splitindex-bin @@ -149424,7 +149425,7 @@ Provides: tex-spot = %{tl_version} License: LPPL 1.3 Summary: Spotlight highlighting for Beamer Version: svn22408.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149442,7 +149443,7 @@ classes as well. %package spot-doc Summary: Documentation for spot Version: svn22408.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spot-doc BuildArch: noarch AutoReqProv: No @@ -149455,7 +149456,7 @@ Provides: tex-spotcolor = %{tl_version} License: LPPL Summary: Spot colours for pdfLaTeX Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149474,7 +149475,7 @@ new ones can easily be defined. %package spotcolor-doc Summary: Documentation for spotcolor Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spotcolor-doc BuildArch: noarch AutoReqProv: No @@ -149487,7 +149488,7 @@ Provides: tex-spreadtab = %{tl_version} License: LPPL 1.3 Summary: Spreadsheet features for LaTeX tabular environments Version: svn35531.0.4c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149505,7 +149506,7 @@ values in other cells. %package spreadtab-doc Summary: Documentation for spreadtab Version: svn35531.0.4c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spreadtab-doc BuildArch: noarch AutoReqProv: No @@ -149518,7 +149519,7 @@ Provides: tex-spverbatim = %{tl_version} License: LPPL Summary: Allow line breaks within \verb and verbatim output Version: svn15878.v1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149537,7 +149538,7 @@ characters. %package spverbatim-doc Summary: Documentation for spverbatim Version: svn15878.v1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spverbatim-doc BuildArch: noarch AutoReqProv: No @@ -149550,7 +149551,7 @@ Provides: tex-srbook-mem = %{tl_version} License: LPPL Summary: srbook-mem package Version: svn23454.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149563,7 +149564,7 @@ srbook-mem package %package srbook-mem-doc Summary: Documentation for srbook-mem Version: svn23454.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-srbook-mem-doc BuildArch: noarch AutoReqProv: No @@ -149576,7 +149577,7 @@ Provides: tex-srcltx = %{tl_version} License: Public Domain Summary: Jump between DVI and TeX files Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149595,7 +149596,7 @@ Aleksander Simonic, the author of the WinEdt shell. %package srcltx-doc Summary: Documentation for srcltx Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-srcltx-doc BuildArch: noarch AutoReqProv: No @@ -149608,7 +149609,7 @@ Provides: tex-sseq = %{tl_version} License: LPPL Summary: Typesetting spectral sequence charts Version: svn31585.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149632,7 +149633,7 @@ conditionals are available. %package sseq-doc Summary: Documentation for sseq Version: svn31585.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sseq-doc BuildArch: noarch AutoReqProv: No @@ -149645,7 +149646,7 @@ Provides: tex-sslides = %{tl_version} License: LPPL 1.3 Summary: Slides with headers and footers Version: svn32293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149660,7 +149661,7 @@ slide. %package sslides-doc Summary: Documentation for sslides Version: svn32293.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sslides-doc BuildArch: noarch AutoReqProv: No @@ -149673,7 +149674,7 @@ Provides: tex-stack = %{tl_version} License: LPPL Summary: Tools to define and use stacks Version: svn15878.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149693,7 +149694,7 @@ Provides: tex-stackengine = %{tl_version} License: LPPL 1.3 Summary: Highly customised stacking of objects, insets, baseline changes, etc Version: svn32593.3.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149710,7 +149711,7 @@ stackengine core. %package stackengine-doc Summary: Documentation for stackengine Version: svn32593.3.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stackengine-doc BuildArch: noarch AutoReqProv: No @@ -149723,7 +149724,7 @@ Provides: tex-standalone = %{tl_version} License: LPPL 1.3 Summary: Compile TeX pictures stand-alone or as part of a document Version: svn37875.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149762,7 +149763,7 @@ environment. %package standalone-doc Summary: Documentation for standalone Version: svn37875.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-standalone-doc BuildArch: noarch AutoReqProv: No @@ -149775,7 +149776,7 @@ Provides: tex-statistik = %{tl_version} License: GPL+ Summary: Store statistics of a document Version: svn20334.0.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149791,7 +149792,7 @@ selectable. %package statistik-doc Summary: Documentation for statistik Version: svn20334.0.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-statistik-doc BuildArch: noarch AutoReqProv: No @@ -149804,7 +149805,7 @@ Provides: tex-stdclsdv = %{tl_version} License: LPPL Summary: Provide sectioning information for package writers Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149820,7 +149821,7 @@ flag rather than printing a warning. %package stdclsdv-doc Summary: Documentation for stdclsdv Version: svn15878.1.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stdclsdv-doc BuildArch: noarch AutoReqProv: No @@ -149833,7 +149834,7 @@ Provides: tex-stdpage = %{tl_version} License: LPPL 1.2 Summary: Standard pages with n lines of at most m characters each Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149858,7 +149859,7 @@ each. %package stdpage-doc Summary: Documentation for stdpage Version: svn15878.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stdpage-doc BuildArch: noarch AutoReqProv: No @@ -149871,7 +149872,7 @@ Provides: tex-stex = %{tl_version} License: LPPL Summary: An Infrastructure for Semantic Preloading of LaTeX Documents Version: svn40320 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149934,7 +149935,7 @@ document format for mathematical knowledge management (MKM). %package stex-doc Summary: Documentation for stex Version: svn40320 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stex-doc BuildArch: noarch AutoReqProv: No @@ -149947,7 +149948,7 @@ Provides: tex-storebox = %{tl_version} License: LPPL 1.3 Summary: Storing information for reuse Version: svn24895.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149968,7 +149969,7 @@ the same as save boxes. %package storebox-doc Summary: Documentation for storebox Version: svn24895.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-storebox-doc BuildArch: noarch AutoReqProv: No @@ -149981,7 +149982,7 @@ Provides: tex-storecmd = %{tl_version} License: LPPL 1.3 Summary: Store the name of a defined command in a container Version: svn24431.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -149999,7 +150000,7 @@ text editors that do not support TeX syntax. %package storecmd-doc Summary: Documentation for storecmd Version: svn24431.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-storecmd-doc BuildArch: noarch AutoReqProv: No @@ -150012,7 +150013,7 @@ Provides: tex-stringstrings = %{tl_version} License: LPPL 1.3 Summary: String manipulation for cosmetic and programming application Version: svn36203.1.23 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150034,7 +150035,7 @@ fashion) to achieve rather complex manipulations. %package stringstrings-doc Summary: Documentation for stringstrings Version: svn36203.1.23 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stringstrings-doc BuildArch: noarch AutoReqProv: No @@ -150047,7 +150048,7 @@ Provides: tex-sttools = %{tl_version} License: LPPL 1.3 Summary: Various macros Version: svn39677 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150073,7 +150074,7 @@ numerical lists and arrays. %package sttools-doc Summary: Documentation for sttools Version: svn39677 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sttools-doc BuildArch: noarch AutoReqProv: No @@ -150086,7 +150087,7 @@ Provides: tex-stubs = %{tl_version} License: GPL+ Summary: Create tear-off stubs at the bottom of a page Version: svn19440.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150103,7 +150104,7 @@ used (for example) for contact information. %package stubs-doc Summary: Documentation for stubs Version: svn19440.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stubs-doc BuildArch: noarch AutoReqProv: No @@ -150116,7 +150117,7 @@ Provides: tex-subdepth = %{tl_version} License: LPPL Summary: Unify maths subscript height Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150133,7 +150134,7 @@ odd in some situations. %package subdepth-doc Summary: Documentation for subdepth Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subdepth-doc BuildArch: noarch AutoReqProv: No @@ -150146,7 +150147,7 @@ Provides: tex-subeqn = %{tl_version} License: LPPL Summary: Package for subequation numbering Version: svn15878.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150167,7 +150168,7 @@ class options leqno and fleqn. %package subeqn-doc Summary: Documentation for subeqn Version: svn15878.2.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subeqn-doc BuildArch: noarch AutoReqProv: No @@ -150180,7 +150181,7 @@ Provides: tex-subeqnarray = %{tl_version} License: LPPL Summary: Equation array with sub numbering Version: svn15878.2.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150199,7 +150200,7 @@ which produce better results than eqnarray-related macros. %package subeqnarray-doc Summary: Documentation for subeqnarray Version: svn15878.2.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subeqnarray-doc BuildArch: noarch AutoReqProv: No @@ -150212,7 +150213,7 @@ Provides: tex-subfigmat = %{tl_version} License: LPPL Summary: Automates layout when using the subfigure package Version: svn20308.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150229,7 +150230,7 @@ to-bottom. %package subfigmat-doc Summary: Documentation for subfigmat Version: svn20308.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subfigmat-doc BuildArch: noarch AutoReqProv: No @@ -150242,7 +150243,7 @@ Provides: tex-subfigure = %{tl_version} License: LPPL Summary: Deprecated: Figures divided into subfigures Version: svn15878.2.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150265,7 +150266,7 @@ more recent subcaption package more satisfactory. %package subfigure-doc Summary: Documentation for subfigure Version: svn15878.2.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subfigure-doc BuildArch: noarch AutoReqProv: No @@ -150278,7 +150279,7 @@ Provides: tex-subfiles = %{tl_version} License: LPPL 1.3 Summary: Individual typesetting of subfiles of a "main" document Version: svn26645.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150296,7 +150297,7 @@ them, without making any changes to either. %package subfiles-doc Summary: Documentation for subfiles Version: svn26645.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subfiles-doc BuildArch: noarch AutoReqProv: No @@ -150309,7 +150310,7 @@ Provides: tex-subfloat = %{tl_version} License: LPPL Summary: Sub-numbering for figures and tables Version: svn29349.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150327,7 +150328,7 @@ captions and numbering. %package subfloat-doc Summary: Documentation for subfloat Version: svn29349.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subfloat-doc BuildArch: noarch AutoReqProv: No @@ -150340,7 +150341,7 @@ Provides: tex-substitutefont = %{tl_version} License: LPPL 1.3 Summary: Easy font substitution Version: svn32066.0.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150357,7 +150358,7 @@ for another one, using its \substitutefont command. %package substitutefont-doc Summary: Documentation for substitutefont Version: svn32066.0.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-substitutefont-doc BuildArch: noarch AutoReqProv: No @@ -150370,7 +150371,7 @@ Provides: tex-substr = %{tl_version} License: LPPL Summary: Deal with substrings in strings Version: svn16117.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150387,7 +150388,7 @@ substring. %package substr-doc Summary: Documentation for substr Version: svn16117.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-substr-doc BuildArch: noarch AutoReqProv: No @@ -150400,7 +150401,7 @@ Provides: tex-supertabular = %{tl_version} License: LPPL 1.3 Summary: A multi-page tables package Version: svn15878.4.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150416,7 +150417,7 @@ usefulness in a few situations where longtable has problems. %package supertabular-doc Summary: Documentation for supertabular Version: svn15878.4.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-supertabular-doc BuildArch: noarch AutoReqProv: No @@ -150429,7 +150430,7 @@ Provides: tex-svg = %{tl_version} License: LPPL 1.3 Summary: Include and extract SVG pictures using Inkscape Version: svn40412 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150457,7 +150458,7 @@ high energy particle physics analysis package ROOT. %package svg-doc Summary: Documentation for svg Version: svn40412 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svg-doc BuildArch: noarch AutoReqProv: No @@ -150470,7 +150471,7 @@ Provides: tex-svgcolor = %{tl_version} License: LPPL Summary: Define SVG named colours Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150484,7 +150485,7 @@ colour names for use with both the color and PSTricks packages. %package svgcolor-doc Summary: Documentation for svgcolor Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svgcolor-doc BuildArch: noarch AutoReqProv: No @@ -150497,7 +150498,7 @@ Provides: tex-svn = %{tl_version} License: LPPL 1.3 Summary: Typeset Subversion keywords Version: svn15878.43 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150514,7 +150515,7 @@ project's home site. %package svn-doc Summary: Documentation for svn Version: svn15878.43 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svn-doc BuildArch: noarch AutoReqProv: No @@ -150527,7 +150528,7 @@ Provides: tex-svn-multi = %{tl_version} License: LPPL Summary: Subversion keywords in multi-file LaTeX documents Version: svn26313.2.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150553,7 +150554,7 @@ necessary for the required output. %package svn-multi-doc Summary: Documentation for svn-multi Version: svn26313.2.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svn-multi-doc BuildArch: noarch AutoReqProv: No @@ -150566,7 +150567,7 @@ Summary: Binaries for svn-multi Version: svn13663.0 Requires: texlive-base Requires: texlive-svn-multi -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description svn-multi-bin @@ -150577,7 +150578,7 @@ Provides: tex-svninfo = %{tl_version} License: LPPL Summary: Typeset Subversion keywords Version: svn17554.0.7.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150599,7 +150600,7 @@ http://subversion.tigris.org/ %package svninfo-doc Summary: Documentation for svninfo Version: svn17554.0.7.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-svninfo-doc BuildArch: noarch AutoReqProv: No @@ -150612,7 +150613,7 @@ Provides: tex-syntax = %{tl_version} License: GPL+ Summary: Creation of syntax diagrams Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150626,7 +150627,7 @@ to represent the diagram structure. %package syntax-doc Summary: Documentation for syntax Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-syntax-doc BuildArch: noarch AutoReqProv: No @@ -150639,7 +150640,7 @@ Provides: tex-syntrace = %{tl_version} License: LPPL Summary: Labels for tracing in a syntax tree Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150658,7 +150659,7 @@ trace. %package syntrace-doc Summary: Documentation for syntrace Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-syntrace-doc BuildArch: noarch AutoReqProv: No @@ -150671,7 +150672,7 @@ Provides: tex-synttree = %{tl_version} License: LPPL Summary: Typeset syntactic trees Version: svn16252.1.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150686,7 +150687,7 @@ structure of the tree. %package synttree-doc Summary: Documentation for synttree Version: svn16252.1.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-synttree-doc BuildArch: noarch AutoReqProv: No @@ -150699,7 +150700,7 @@ Provides: tex-tabfigures = %{tl_version} License: LPPL 1.3 Summary: Maintain vertical alignment of figures Version: svn25202.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150720,7 +150721,7 @@ the table of contents). %package tabfigures-doc Summary: Documentation for tabfigures Version: svn25202.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabfigures-doc BuildArch: noarch AutoReqProv: No @@ -150733,7 +150734,7 @@ Provides: tex-tableaux = %{tl_version} License: LPPL Summary: Construct tables of signs and variations Version: svn41423 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150762,7 +150763,7 @@ percentage of the width; various other controls are available. %package tableaux-doc Summary: Documentation for tableaux Version: svn41423 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tableaux-doc BuildArch: noarch AutoReqProv: No @@ -150775,7 +150776,7 @@ Provides: tex-tablefootnote = %{tl_version} License: LPPL 1.3 Summary: Permit footnotes in tables Version: svn32804.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150795,7 +150796,7 @@ adjusting the counter as necessary, is too much work). %package tablefootnote-doc Summary: Documentation for tablefootnote Version: svn32804.1.1c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tablefootnote-doc BuildArch: noarch AutoReqProv: No @@ -150808,7 +150809,7 @@ Provides: tex-tableof = %{tl_version} License: LPPL 1.3 Summary: Tagging tables of contents Version: svn36489.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150829,7 +150830,7 @@ used to provide several tables. %package tableof-doc Summary: Documentation for tableof Version: svn36489.1.4a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tableof-doc BuildArch: noarch AutoReqProv: No @@ -150842,7 +150843,7 @@ Provides: tex-tablestyles = %{tl_version} License: LPPL Summary: tablestyles package Version: svn34495.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150859,7 +150860,7 @@ tablestyles package %package tablestyles-doc Summary: Documentation for tablestyles Version: svn34495.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tablestyles-doc BuildArch: noarch AutoReqProv: No @@ -150872,7 +150873,7 @@ Provides: tex-tablists = %{tl_version} License: LPPL Summary: Tabulated lists of short items Version: svn15878.0.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150889,7 +150890,7 @@ similar to the enumerate or paralist packages. %package tablists-doc Summary: Documentation for tablists Version: svn15878.0.0e -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tablists-doc BuildArch: noarch AutoReqProv: No @@ -150902,7 +150903,7 @@ Provides: tex-tabls = %{tl_version} License: Dotseqn Summary: Better vertical spacing in tables and arrays Version: svn17255.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150919,7 +150920,7 @@ is boxed twice. %package tabls-doc Summary: Documentation for tabls Version: svn17255.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabls-doc BuildArch: noarch AutoReqProv: No @@ -150932,7 +150933,7 @@ Provides: tex-tabstackengine = %{tl_version} License: LPPL Summary: "Tabbing" front-end to stackengine Version: svn33006.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150953,7 +150954,7 @@ requiring use of any stacking constructions). %package tabstackengine-doc Summary: Documentation for tabstackengine Version: svn33006.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabstackengine-doc BuildArch: noarch AutoReqProv: No @@ -150966,7 +150967,7 @@ Provides: tex-tabto-ltx = %{tl_version} License: LPPL Summary: "Tab" to a measured position in the line Version: svn30710.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -150986,7 +150987,7 @@ the next defined 'tab stop'. %package tabto-ltx-doc Summary: Documentation for tabto-ltx Version: svn30710.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabto-ltx-doc BuildArch: noarch AutoReqProv: No @@ -150999,7 +151000,7 @@ Provides: tex-tabu = %{tl_version} License: LPPL 1.3 Summary: Flexible LaTeX tabulars Version: svn21534.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151035,7 +151036,7 @@ enlarges the environment's "natural" width. %package tabu-doc Summary: Documentation for tabu Version: svn21534.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabu-doc BuildArch: noarch AutoReqProv: No @@ -151048,7 +151049,7 @@ Provides: tex-tabularborder = %{tl_version} License: LPPL 1.2 Summary: Remove excess space at left and right of tabular Version: svn17885.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151065,7 +151066,7 @@ the text. No @{} is needed. %package tabularborder-doc Summary: Documentation for tabularborder Version: svn17885.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabularborder-doc BuildArch: noarch AutoReqProv: No @@ -151078,7 +151079,7 @@ Provides: tex-tabularcalc = %{tl_version} License: LPPL Summary: Calculate formulas in a tabular environment Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151099,7 +151100,7 @@ either horizontally or vertically and is fully customizable. %package tabularcalc-doc Summary: Documentation for tabularcalc Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabularcalc-doc BuildArch: noarch AutoReqProv: No @@ -151112,7 +151113,7 @@ Provides: tex-tabularew = %{tl_version} License: LPPL Summary: A variation on the tabular environment Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151128,7 +151129,7 @@ significantly wider than the body of the column. %package tabularew-doc Summary: Documentation for tabularew Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabularew-doc BuildArch: noarch AutoReqProv: No @@ -151141,7 +151142,7 @@ Provides: tex-tabulary = %{tl_version} License: LPPL Summary: Tabular with variable width columns balanced Version: svn34368.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151161,7 +151162,7 @@ the natural width of the widest cell in the column. %package tabulary-doc Summary: Documentation for tabulary Version: svn34368.0.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabulary-doc BuildArch: noarch AutoReqProv: No @@ -151174,7 +151175,7 @@ Provides: tex-tagging = %{tl_version} License: LPPL 1.3 Summary: Document configuration with tags Version: svn23761.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151191,7 +151192,7 @@ and specifying which marked pieces to include or exclude. %package tagging-doc Summary: Documentation for tagging Version: svn23761.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tagging-doc BuildArch: noarch AutoReqProv: No @@ -151204,7 +151205,7 @@ Provides: tex-tagpair = %{tl_version} License: LPPL 1.3 Summary: Word-by-word glosses, translations, and bibliographic attributions Version: svn37398.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151223,7 +151224,7 @@ in gloss.tex. %package tagpair-doc Summary: Documentation for tagpair Version: svn37398.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tagpair-doc BuildArch: noarch AutoReqProv: No @@ -151236,7 +151237,7 @@ Provides: tex-talk = %{tl_version} License: LPPL Summary: A LaTeX class for presentations Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151272,7 +151273,7 @@ artistically more gifted than the author are more than welcome! %package talk-doc Summary: Documentation for talk Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-talk-doc BuildArch: noarch AutoReqProv: No @@ -151285,7 +151286,7 @@ Provides: tex-tamefloats = %{tl_version} License: LPPL 1.3 Summary: Experimentally use \holdinginserts with LaTeX floats Version: svn27345.v0.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151305,7 +151306,7 @@ further information. %package tamefloats-doc Summary: Documentation for tamefloats Version: svn27345.v0.42 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tamefloats-doc BuildArch: noarch AutoReqProv: No @@ -151318,7 +151319,7 @@ Provides: tex-tasks = %{tl_version} License: LPPL 1.3 Summary: Horizontally columned lists Version: svn40888 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151343,7 +151344,7 @@ what the tasks package helps to achieve. %package tasks-doc Summary: Documentation for tasks Version: svn40888 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tasks-doc BuildArch: noarch AutoReqProv: No @@ -151356,7 +151357,7 @@ Provides: tex-tcldoc = %{tl_version} License: LPPL Summary: Doc/docstrip for tcl Version: svn22018.2.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151380,7 +151381,7 @@ parallels the ltxdoc class. %package tcldoc-doc Summary: Documentation for tcldoc Version: svn22018.2.40 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tcldoc-doc BuildArch: noarch AutoReqProv: No @@ -151393,7 +151394,7 @@ Provides: tex-tcolorbox = %{tl_version} License: LPPL 1.3 Summary: Coloured boxes, for LaTeX examples and theorems, etc Version: svn41383 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151432,7 +151433,7 @@ parts. %package tcolorbox-doc Summary: Documentation for tcolorbox Version: svn41383 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tcolorbox-doc BuildArch: noarch AutoReqProv: No @@ -151445,7 +151446,7 @@ Provides: tex-tdclock = %{tl_version} License: GPLv2+ Summary: A ticking digital clock package for PDF output Version: svn33043.v2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151462,7 +151463,7 @@ documents, for example in presentations. %package tdclock-doc Summary: Documentation for tdclock Version: svn33043.v2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tdclock-doc BuildArch: noarch AutoReqProv: No @@ -151475,7 +151476,7 @@ Provides: tex-technics = %{tl_version} License: LPPL Summary: A package to format technical documents Version: svn29349.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151491,7 +151492,7 @@ class; users are expected to start from a template document.) %package technics-doc Summary: Documentation for technics Version: svn29349.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-technics-doc BuildArch: noarch AutoReqProv: No @@ -151504,7 +151505,7 @@ Provides: tex-ted = %{tl_version} License: LPPL Summary: A (primitive) token list editor Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151527,7 +151528,7 @@ pairs or tokens with a confusing meaning) occur in the list. %package ted-doc Summary: Documentation for ted Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ted-doc BuildArch: noarch AutoReqProv: No @@ -151540,7 +151541,7 @@ Provides: tex-templatetools = %{tl_version} License: LPPL 1.3 Summary: Commands useful in LaTeX templates Version: svn34495.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151562,7 +151563,7 @@ preamble and in the document. %package templatetools-doc Summary: Documentation for templatetools Version: svn34495.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-templatetools-doc BuildArch: noarch AutoReqProv: No @@ -151575,7 +151576,7 @@ Provides: tex-termcal = %{tl_version} License: LPPL Summary: Print a class calendar Version: svn22514.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151597,7 +151598,7 @@ flows around nonclass days. %package termcal-doc Summary: Documentation for termcal Version: svn22514.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-termcal-doc BuildArch: noarch AutoReqProv: No @@ -151610,7 +151611,7 @@ Provides: tex-termlist = %{tl_version} License: LPPL Summary: Label any kind of term with a continuous counter Version: svn18923.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151625,7 +151626,7 @@ appear inside an equation or eqnarray environment. %package termlist-doc Summary: Documentation for termlist Version: svn18923.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-termlist-doc BuildArch: noarch AutoReqProv: No @@ -151638,7 +151639,7 @@ Provides: tex-testhyphens = %{tl_version} License: LPPL 1.3 Summary: Testing hyphenation patterns Version: svn38928 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151657,7 +151658,7 @@ workaround. %package testhyphens-doc Summary: Documentation for testhyphens Version: svn35162.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-testhyphens-doc BuildArch: noarch AutoReqProv: No @@ -151670,7 +151671,7 @@ Provides: tex-tex-label = %{tl_version} License: LPPL 1.3 Summary: Place a classification on each page of a document Version: svn16372.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151686,7 +151687,7 @@ page, at the bottom to the right of the page number %package tex-label-doc Summary: Documentation for tex-label Version: svn16372.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-label-doc BuildArch: noarch AutoReqProv: No @@ -151699,7 +151700,7 @@ Provides: tex-texlogos = %{tl_version} License: LPPL Summary: Ready-to-use LaTeX logos Version: svn19083.1.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151724,7 +151725,7 @@ Provides: tex-texmate = %{tl_version} License: LPPL Summary: Comprehensive chess annotation in LaTeX Version: svn15878.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151749,7 +151750,7 @@ fonts, the package uses the chessfss system. %package texmate-doc Summary: Documentation for texmate Version: svn15878.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texmate-doc BuildArch: noarch AutoReqProv: No @@ -151762,7 +151763,7 @@ Provides: tex-texments = %{tl_version} License: LPPL Summary: Using the Pygments highlighter in LaTeX Version: svn15878.0.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151780,7 +151781,7 @@ types of files, and ships with multiple colour schemes. %package texments-doc Summary: Documentation for texments Version: svn15878.0.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texments-doc BuildArch: noarch AutoReqProv: No @@ -151793,7 +151794,7 @@ Provides: tex-texpower = %{tl_version} License: GPL+ Summary: Create dynamic online presentations with LaTeX Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151835,7 +151836,7 @@ another package such as pdfslide. %package texpower-doc Summary: Documentation for texpower Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texpower-doc BuildArch: noarch AutoReqProv: No @@ -151849,7 +151850,7 @@ Provides: tex-texshade = %{tl_version} License: GPLv2+ Summary: Package for setting nucleotide and peptide alignments Version: svn24716.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151875,7 +151876,7 @@ excessive development time of the user. %package texshade-doc Summary: Documentation for texshade Version: svn24716.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texshade-doc BuildArch: noarch AutoReqProv: No @@ -151888,7 +151889,7 @@ Provides: tex-textfit = %{tl_version} License: LPPL 1.3 Summary: Fit text to a desired size Version: svn20591.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151906,7 +151907,7 @@ package.) %package textfit-doc Summary: Documentation for textfit Version: svn20591.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textfit-doc BuildArch: noarch AutoReqProv: No @@ -151919,7 +151920,7 @@ Provides: tex-textgreek = %{tl_version} License: LPPL Summary: Upright greek letters in text Version: svn24282.v0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151935,7 +151936,7 @@ Use upright greek letters as text symbols, e.g. \textbeta. %package textgreek-doc Summary: Documentation for textgreek Version: svn24282.v0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textgreek-doc BuildArch: noarch AutoReqProv: No @@ -151948,7 +151949,7 @@ Provides: tex-textmerg = %{tl_version} License: Public Domain Summary: Merge text in TeX and LaTeX Version: svn20677.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151963,7 +151964,7 @@ produce mail shots. %package textmerg-doc Summary: Documentation for textmerg Version: svn20677.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textmerg-doc BuildArch: noarch AutoReqProv: No @@ -151976,7 +151977,7 @@ Provides: tex-textpos = %{tl_version} License: GPL+ Summary: Place boxes at arbitrary positions on the LaTeX page Version: svn41331 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -151993,7 +151994,7 @@ large-format conference posters. %package textpos-doc Summary: Documentation for textpos Version: svn41331 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textpos-doc BuildArch: noarch AutoReqProv: No @@ -152006,7 +152007,7 @@ Provides: tex-theoremref = %{tl_version} License: LPPL Summary: References with automatic theorem names Version: svn30640.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152024,7 +152025,7 @@ proposition or a theorem (or whatever). %package theoremref-doc Summary: Documentation for theoremref Version: svn30640.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-theoremref-doc BuildArch: noarch AutoReqProv: No @@ -152037,7 +152038,7 @@ Provides: tex-thinsp = %{tl_version} License: GPL+ Summary: A stretchable \thinspace for LaTeX Version: svn39669 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152050,7 +152051,7 @@ The package redefines \thinspace to have a stretch component. %package thinsp-doc Summary: Documentation for thinsp Version: svn39669 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thinsp-doc BuildArch: noarch AutoReqProv: No @@ -152063,7 +152064,7 @@ Provides: tex-thmtools = %{tl_version} License: LPPL 1.3 Summary: Extensions to theorem environments Version: svn33624.66 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152105,7 +152106,7 @@ entire theorems in a single macro call. %package thmtools-doc Summary: Documentation for thmtools Version: svn33624.66 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thmtools-doc BuildArch: noarch AutoReqProv: No @@ -152118,7 +152119,7 @@ Provides: tex-threadcol = %{tl_version} License: LPPL 1.3 Summary: Organize document columns into PDF "article thread" Version: svn28754.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152141,7 +152142,7 @@ through as if its contents were contiguous. %package threadcol-doc Summary: Documentation for threadcol Version: svn28754.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-threadcol-doc BuildArch: noarch AutoReqProv: No @@ -152154,7 +152155,7 @@ Provides: tex-threeparttable = %{tl_version} License: Threeparttable Summary: Tables with captions and notes all the same width Version: svn17383.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152173,7 +152174,7 @@ table* environment, if necessary. %package threeparttable-doc Summary: Documentation for threeparttable Version: svn17383.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-threeparttable-doc BuildArch: noarch AutoReqProv: No @@ -152186,7 +152187,7 @@ Provides: tex-threeparttablex = %{tl_version} License: LPPL Summary: Notes in longtables Version: svn34206.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152202,7 +152203,7 @@ package to tables created using the longtable package. %package threeparttablex-doc Summary: Documentation for threeparttablex Version: svn34206.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-threeparttablex-doc BuildArch: noarch AutoReqProv: No @@ -152215,7 +152216,7 @@ Provides: tex-thumb = %{tl_version} License: GPL+ Summary: Thumb marks in documents Version: svn16549.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152230,7 +152231,7 @@ Place thumb marks in books, manuals and reference maunals. %package thumb-doc Summary: Documentation for thumb Version: svn16549.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thumb-doc BuildArch: noarch AutoReqProv: No @@ -152243,7 +152244,7 @@ Provides: tex-thumbs = %{tl_version} License: LPPL 1.3 Summary: Create thumb indexes Version: svn33134.1.0q -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152275,7 +152276,7 @@ a quick and easy way to find (for example) a chapter is needed. %package thumbs-doc Summary: Documentation for thumbs Version: svn33134.1.0q -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thumbs-doc BuildArch: noarch AutoReqProv: No @@ -152288,7 +152289,7 @@ Provides: tex-thumby = %{tl_version} License: GPLv3+ Summary: Create thumb indexes for printed books Version: svn16736.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152311,7 +152312,7 @@ class, and also requires PerlTeX and tikz/ %package thumby-doc Summary: Documentation for thumby Version: svn16736.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thumby-doc BuildArch: noarch AutoReqProv: No @@ -152324,7 +152325,7 @@ Provides: tex-ticket = %{tl_version} License: LPPL Summary: Make labels, visiting-cards, pins with LaTeX Version: svn20679.0.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152343,7 +152344,7 @@ commands \ticketdefault and \ticket. %package ticket-doc Summary: Documentation for ticket Version: svn20679.0.4b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ticket-doc BuildArch: noarch AutoReqProv: No @@ -152356,7 +152357,7 @@ Provides: tex-titlecaps = %{tl_version} License: LPPL 1.3 Summary: Setting rich-text input into Titling Caps Version: svn36170.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152378,7 +152379,7 @@ various sorts. %package titlecaps-doc Summary: Documentation for titlecaps Version: svn36170.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titlecaps-doc BuildArch: noarch AutoReqProv: No @@ -152391,7 +152392,7 @@ Provides: tex-titlefoot = %{tl_version} License: LPPL Summary: Add special material to footer of title page Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152410,7 +152411,7 @@ Provides: tex-titlepic = %{tl_version} License: Public Domain Summary: Add picture to title page of a document Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152428,7 +152429,7 @@ report and book. %package titlepic-doc Summary: Documentation for titlepic Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titlepic-doc BuildArch: noarch AutoReqProv: No @@ -152441,7 +152442,7 @@ Provides: tex-titleref = %{tl_version} License: Public Domain Summary: A "\titleref" command to cross-reference section titles Version: svn18729.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152457,7 +152458,7 @@ you need hypertext capabilities, use nameref instead. %package titleref-doc Summary: Documentation for titleref Version: svn18729.3.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titleref-doc BuildArch: noarch AutoReqProv: No @@ -152470,7 +152471,7 @@ Provides: tex-titlesec = %{tl_version} License: LPPL Summary: Select alternative section titles Version: svn40129 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152492,7 +152493,7 @@ may assign headers/footers to individual floats, too. %package titlesec-doc Summary: Documentation for titlesec Version: svn40129 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titlesec-doc BuildArch: noarch AutoReqProv: No @@ -152505,7 +152506,7 @@ Provides: tex-titling = %{tl_version} License: LPPL Summary: Control over the typesetting of the \maketitle command Version: svn15878.2.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152523,7 +152524,7 @@ a physical page. %package titling-doc Summary: Documentation for titling Version: svn15878.2.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-titling-doc BuildArch: noarch AutoReqProv: No @@ -152536,7 +152537,7 @@ Provides: tex-tocbibind = %{tl_version} License: LPPL Summary: Add bibliography/index/contents to Table of Contents Version: svn20085.1.5k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152550,7 +152551,7 @@ contents, etc., to the Table of Contents listing. %package tocbibind-doc Summary: Documentation for tocbibind Version: svn20085.1.5k -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tocbibind-doc BuildArch: noarch AutoReqProv: No @@ -152563,7 +152564,7 @@ Provides: tex-tocloft = %{tl_version} License: LPPL 1.3 Summary: Control table of contents, figures, etc Version: svn30209.2.3f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152578,7 +152579,7 @@ new 'List of ...'. The ToC \parskip may be changed. %package tocloft-doc Summary: Documentation for tocloft Version: svn30209.2.3f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tocloft-doc BuildArch: noarch AutoReqProv: No @@ -152591,7 +152592,7 @@ Provides: tex-tocvsec2 = %{tl_version} License: LPPL 1.3 Summary: Section numbering and table of contents control Version: svn33146.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152607,7 +152608,7 @@ Contents on a section by section basis. %package tocvsec2-doc Summary: Documentation for tocvsec2 Version: svn33146.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tocvsec2-doc BuildArch: noarch AutoReqProv: No @@ -152620,7 +152621,7 @@ Provides: tex-todo = %{tl_version} License: LPPL Summary: Make a to-do list for a document Version: svn17746.2.142 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152636,7 +152637,7 @@ to them. %package todo-doc Summary: Documentation for todo Version: svn17746.2.142 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-todo-doc BuildArch: noarch AutoReqProv: No @@ -152649,7 +152650,7 @@ Provides: tex-todonotes = %{tl_version} License: LPPL 1.2 Summary: Marking things to do in a LaTeX document Version: svn37829.1.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152669,7 +152670,7 @@ to enable customization/finetuning of the visual appearance. %package todonotes-doc Summary: Documentation for todonotes Version: svn37829.1.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-todonotes-doc BuildArch: noarch AutoReqProv: No @@ -152682,7 +152683,7 @@ Provides: tex-tokenizer = %{tl_version} License: LPPL Summary: A tokenizer Version: svn15878.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152703,7 +152704,7 @@ from its argument. %package tokenizer-doc Summary: Documentation for tokenizer Version: svn15878.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tokenizer-doc BuildArch: noarch AutoReqProv: No @@ -152716,7 +152717,7 @@ Provides: tex-toolbox = %{tl_version} License: LPPL Summary: Tool macros Version: svn32260.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152734,7 +152735,7 @@ concatenated macro names; macros for text replacement. %package toolbox-doc Summary: Documentation for toolbox Version: svn32260.5.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-toolbox-doc BuildArch: noarch AutoReqProv: No @@ -152747,7 +152748,7 @@ Provides: tex-topfloat = %{tl_version} License: GPL+ Summary: Move floats to the top of the page Version: svn19084.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152760,7 +152761,7 @@ topfloat package %package topfloat-doc Summary: Documentation for topfloat Version: svn19084.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-topfloat-doc BuildArch: noarch AutoReqProv: No @@ -152773,7 +152774,7 @@ Provides: tex-totcount = %{tl_version} License: LPPL Summary: Find the last value of a counter Version: svn21178.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152790,7 +152791,7 @@ usually be the maximum value. %package totcount-doc Summary: Documentation for totcount Version: svn21178.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-totcount-doc BuildArch: noarch AutoReqProv: No @@ -152803,7 +152804,7 @@ Provides: tex-totpages = %{tl_version} License: LPPL Summary: Count pages in a document, and report last page number Version: svn15878.2.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152821,7 +152822,7 @@ package uses the everyshi package for its task. %package totpages-doc Summary: Documentation for totpages Version: svn15878.2.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-totpages-doc BuildArch: noarch AutoReqProv: No @@ -152834,7 +152835,7 @@ Provides: tex-translations = %{tl_version} License: LPPL 1.3 Summary: Internationalisation of LaTeX2e packages Version: svn41384 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152857,7 +152858,7 @@ possible: ask the author.) %package translations-doc Summary: Documentation for translations Version: svn41384 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-translations-doc BuildArch: noarch AutoReqProv: No @@ -152870,7 +152871,7 @@ Provides: tex-trfsigns = %{tl_version} License: GPL+ Summary: Typeset transform signs Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152884,7 +152885,7 @@ Laplace transforms, Fourier transforms and others. %package trfsigns-doc Summary: Documentation for trfsigns Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-trfsigns-doc BuildArch: noarch AutoReqProv: No @@ -152897,7 +152898,7 @@ Provides: tex-trimspaces = %{tl_version} License: LPPL Summary: Trim spaces around an argument or within a macro Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152914,7 +152915,7 @@ macros. %package trimspaces-doc Summary: Documentation for trimspaces Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-trimspaces-doc BuildArch: noarch AutoReqProv: No @@ -152927,7 +152928,7 @@ Provides: tex-trivfloat = %{tl_version} License: LPPL Summary: Quick float definitions in LaTeX Version: svn15878.1.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152946,7 +152947,7 @@ classes. %package trivfloat-doc Summary: Documentation for trivfloat Version: svn15878.1.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-trivfloat-doc BuildArch: noarch AutoReqProv: No @@ -152959,7 +152960,7 @@ Provides: tex-trsym = %{tl_version} License: LPPL 1.2 Summary: Symbols for transformations Version: svn18732.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -152978,7 +152979,7 @@ mathematics. %package trsym-doc Summary: Documentation for trsym Version: svn18732.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-trsym-doc BuildArch: noarch AutoReqProv: No @@ -152991,7 +152992,7 @@ Provides: tex-truncate = %{tl_version} License: Public Domain Summary: Truncate text to a specified width Version: svn18921.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153005,7 +153006,7 @@ package options are offered to permit breaks within words. %package truncate-doc Summary: Documentation for truncate Version: svn18921.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-truncate-doc BuildArch: noarch AutoReqProv: No @@ -153018,7 +153019,7 @@ Provides: tex-tucv = %{tl_version} License: CC-BY-SA Summary: Support for typesetting a CV or resumee Version: svn20680.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153044,7 +153045,7 @@ l3packages bundles. %package tucv-doc Summary: Documentation for tucv Version: svn20680.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tucv-doc BuildArch: noarch AutoReqProv: No @@ -153057,7 +153058,7 @@ Provides: tex-turnthepage = %{tl_version} License: LPPL Summary: Provide "turn page" instructions Version: svn29803.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153080,7 +153081,7 @@ for examination papers and the like. %package turnthepage-doc Summary: Documentation for turnthepage Version: svn29803.1.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-turnthepage-doc BuildArch: noarch AutoReqProv: No @@ -153093,7 +153094,7 @@ Provides: tex-twoinone = %{tl_version} License: Public Domain Summary: Print two pages on a single page Version: svn17024.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153108,7 +153109,7 @@ the landscape 'container' page. %package twoinone-doc Summary: Documentation for twoinone Version: svn17024.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-twoinone-doc BuildArch: noarch AutoReqProv: No @@ -153121,7 +153122,7 @@ Provides: tex-twoup = %{tl_version} License: LPPL Summary: Print two virtual pages on each physical page Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153140,7 +153141,7 @@ tools. %package twoup-doc Summary: Documentation for twoup Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-twoup-doc BuildArch: noarch AutoReqProv: No @@ -153153,7 +153154,7 @@ Provides: tex-txgreeks = %{tl_version} License: LPPL 1.3 Summary: Shape selection for TX fonts Greek letters Version: svn21839.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153173,7 +153174,7 @@ text font that may be used in the document. %package txgreeks-doc Summary: Documentation for txgreeks Version: svn21839.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-txgreeks-doc BuildArch: noarch AutoReqProv: No @@ -153186,7 +153187,7 @@ Provides: tex-type1cm = %{tl_version} License: LPPL Summary: Arbitrary size font selection in LaTeX Version: svn21820.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153210,7 +153211,7 @@ the same job for T1- and TS1-encoded ec fonts. %package type1cm-doc Summary: Documentation for type1cm Version: svn21820.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-type1cm-doc BuildArch: noarch AutoReqProv: No @@ -153223,7 +153224,7 @@ Provides: tex-typeface = %{tl_version} License: LPPL 1.3 Summary: Select a balanced set of fonts Version: svn27046.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153259,7 +153260,7 @@ developed. The present release is designated "for review". %package typeface-doc Summary: Documentation for typeface Version: svn27046.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-typeface-doc BuildArch: noarch AutoReqProv: No @@ -153272,7 +153273,7 @@ Provides: tex-typogrid = %{tl_version} License: LPPL Summary: Print a typographic grid Version: svn24994.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153290,7 +153291,7 @@ of layout. %package typogrid-doc Summary: Documentation for typogrid Version: svn24994.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-typogrid-doc BuildArch: noarch AutoReqProv: No @@ -153303,7 +153304,7 @@ Provides: tex-uassign = %{tl_version} License: GPLv2+ Summary: Provides environments and options for typesetting university assignments Version: svn38459 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153318,7 +153319,7 @@ assignments %package uassign-doc Summary: Documentation for uassign Version: svn38459 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uassign-doc BuildArch: noarch AutoReqProv: No @@ -153331,7 +153332,7 @@ Provides: tex-ucs = %{tl_version} License: LPPL 1.3 Summary: Extended UTF-8 input encoding support for LaTeX Version: svn35853.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153580,7 +153581,7 @@ no package of that name now exists. %package ucs-doc Summary: Documentation for ucs Version: svn35853.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucs-doc BuildArch: noarch AutoReqProv: No @@ -153593,7 +153594,7 @@ Provides: tex-uebungsblatt = %{tl_version} License: LPPL Summary: A LaTeX class for writing exercise sheets Version: svn15878.1.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153620,7 +153621,7 @@ only. %package uebungsblatt-doc Summary: Documentation for uebungsblatt Version: svn15878.1.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uebungsblatt-doc BuildArch: noarch AutoReqProv: No @@ -153633,7 +153634,7 @@ Provides: tex-umoline = %{tl_version} License: LPPL Summary: Underline text allowing line breaking Version: svn19085.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153647,7 +153648,7 @@ underlining, striking out, and overlining their text arguments. %package umoline-doc Summary: Documentation for umoline Version: svn19085.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-umoline-doc BuildArch: noarch AutoReqProv: No @@ -153660,7 +153661,7 @@ Provides: tex-underlin = %{tl_version} License: LPPL Summary: Underlined running heads Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153674,7 +153675,7 @@ LaTeX. %package underlin-doc Summary: Documentation for underlin Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-underlin-doc BuildArch: noarch AutoReqProv: No @@ -153687,7 +153688,7 @@ Provides: tex-underoverlap = %{tl_version} License: LPPL 1.3 Summary: Position decorations over and under expressions Version: svn29019.0.0.1_r1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153705,7 +153706,7 @@ over and under expressions, overlapping as necessary. %package underoverlap-doc Summary: Documentation for underoverlap Version: svn29019.0.0.1_r1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-underoverlap-doc BuildArch: noarch AutoReqProv: No @@ -153718,7 +153719,7 @@ Provides: tex-undolabl = %{tl_version} License: LPPL 1.3 Summary: Override existing labels Version: svn36681.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153732,7 +153733,7 @@ example, those generated automatically). %package undolabl-doc Summary: Documentation for undolabl Version: svn36681.1.0l -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-undolabl-doc BuildArch: noarch AutoReqProv: No @@ -153745,7 +153746,7 @@ Provides: tex-units = %{tl_version} License: GPL+ Summary: Typeset units Version: svn36944.0.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153762,7 +153763,7 @@ physical units in a standard-looking sort of way. %package units-doc Summary: Documentation for units Version: svn36944.0.9b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-units-doc BuildArch: noarch AutoReqProv: No @@ -153775,7 +153776,7 @@ Provides: tex-unravel = %{tl_version} License: LPPL Summary: Watching TeX digest tokens Version: svn38506 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153799,7 +153800,7 @@ package gtl. %package unravel-doc Summary: Documentation for unravel Version: svn38506 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unravel-doc BuildArch: noarch AutoReqProv: No @@ -153812,7 +153813,7 @@ Provides: tex-upmethodology = %{tl_version} License: LGPLv2+ Summary: Writing specifications such as for UP-based methodologies Version: svn38094.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153873,7 +153874,7 @@ management, and several helping macros. %package upmethodology-doc Summary: Documentation for upmethodology Version: svn38094.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-upmethodology-doc BuildArch: noarch AutoReqProv: No @@ -153886,7 +153887,7 @@ Provides: tex-upquote = %{tl_version} License: LPPL 1.2 Summary: Show "realistic" quotes in verbatim Version: svn26059.v1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153910,7 +153911,7 @@ does not affect \tt, \texttt, etc. %package upquote-doc Summary: Documentation for upquote Version: svn26059.v1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-upquote-doc BuildArch: noarch AutoReqProv: No @@ -153923,7 +153924,7 @@ Provides: tex-uri = %{tl_version} License: LPPL 1.3 Summary: Hyperlinks for a wide range of URIs Version: svn21608.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153941,7 +153942,7 @@ preview, and XMPP and provides commands \citeurl, \mailto, %package uri-doc Summary: Documentation for uri Version: svn21608.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uri-doc BuildArch: noarch AutoReqProv: No @@ -153954,7 +153955,7 @@ Provides: tex-ushort = %{tl_version} License: LPPL Summary: Shorter (and longer) underlines and underbars Version: svn32261.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -153970,7 +153971,7 @@ sizes and types. %package ushort-doc Summary: Documentation for ushort Version: svn32261.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ushort-doc BuildArch: noarch AutoReqProv: No @@ -153983,7 +153984,7 @@ Provides: tex-varindex = %{tl_version} License: LPPL Summary: Luxury frontend to the \index command Version: svn32262.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154001,7 +154002,7 @@ most other TeX formats. %package varindex-doc Summary: Documentation for varindex Version: svn32262.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-varindex-doc BuildArch: noarch AutoReqProv: No @@ -154014,7 +154015,7 @@ Provides: tex-varsfromjobname = %{tl_version} License: LPPL Summary: Extract variables from the name of the LaTeX file Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154031,7 +154032,7 @@ separated by hyphens. %package varsfromjobname-doc Summary: Documentation for varsfromjobname Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-varsfromjobname-doc BuildArch: noarch AutoReqProv: No @@ -154044,7 +154045,7 @@ Provides: tex-varwidth = %{tl_version} License: LPPL Summary: A variable-width minipage Version: svn24104.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154059,7 +154060,7 @@ get a narrower "natural" width. %package varwidth-doc Summary: Documentation for varwidth Version: svn24104.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-varwidth-doc BuildArch: noarch AutoReqProv: No @@ -154072,7 +154073,7 @@ Provides: tex-vdmlisting = %{tl_version} License: LPPL Summary: Typesetting VDM in ASCII syntax Version: svn29944.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154094,7 +154095,7 @@ vdm pacakge instead %package vdmlisting-doc Summary: Documentation for vdmlisting Version: svn29944.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vdmlisting-doc BuildArch: noarch AutoReqProv: No @@ -154107,7 +154108,7 @@ Provides: tex-verbasef = %{tl_version} License: GPL+ Summary: VERBatim Automatic Splitting of External Files Version: svn21922.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154130,7 +154131,7 @@ packages. %package verbasef-doc Summary: Documentation for verbasef Version: svn21922.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verbasef-doc BuildArch: noarch AutoReqProv: No @@ -154143,7 +154144,7 @@ Provides: tex-verbatimbox = %{tl_version} License: LPPL Summary: Deposit verbatim text in a box Version: svn33197.3.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154167,7 +154168,7 @@ part of any LaTeX distribution). %package verbatimbox-doc Summary: Documentation for verbatimbox Version: svn33197.3.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verbatimbox-doc BuildArch: noarch AutoReqProv: No @@ -154180,7 +154181,7 @@ Provides: tex-verbatimcopy = %{tl_version} License: LPPL Summary: Make copies of text documents from within LaTeX Version: svn15878.0.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154198,7 +154199,7 @@ therefore overwrite an important file if used injudiciously. %package verbatimcopy-doc Summary: Documentation for verbatimcopy Version: svn15878.0.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verbatimcopy-doc BuildArch: noarch AutoReqProv: No @@ -154211,7 +154212,7 @@ Provides: tex-verbdef = %{tl_version} License: LPPL Summary: Define commands which expand to verbatim text Version: svn17177.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154230,7 +154231,7 @@ caveats about use are in comments in the file itself.) %package verbdef-doc Summary: Documentation for verbdef Version: svn17177.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verbdef-doc BuildArch: noarch AutoReqProv: No @@ -154243,7 +154244,7 @@ Provides: tex-verbments = %{tl_version} License: LPPL 1.2 Summary: Syntax highlighting of source code in LaTeX documents Version: svn23670.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154264,7 +154265,7 @@ language. %package verbments-doc Summary: Documentation for verbments Version: svn23670.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-verbments-doc BuildArch: noarch AutoReqProv: No @@ -154277,7 +154278,7 @@ Provides: tex-version = %{tl_version} License: Copyright only Summary: Conditionally include text Version: svn21920.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154295,7 +154296,7 @@ of text may be excluded. %package version-doc Summary: Documentation for version Version: svn21920.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-version-doc BuildArch: noarch AutoReqProv: No @@ -154308,7 +154309,7 @@ Provides: tex-versions = %{tl_version} License: LPPL 1.3 Summary: Optionally omit pieces of text Version: svn21921.0.55 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154324,7 +154325,7 @@ implementation and function. %package versions-doc Summary: Documentation for versions Version: svn21921.0.55 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-versions-doc BuildArch: noarch AutoReqProv: No @@ -154337,7 +154338,7 @@ Provides: tex-versonotes = %{tl_version} License: LPPL 1.3 Summary: Display brief notes on verso pages Version: svn39084 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154354,7 +154355,7 @@ lined up with the macro call. %package versonotes-doc Summary: Documentation for versonotes Version: svn39084 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-versonotes-doc BuildArch: noarch AutoReqProv: No @@ -154367,7 +154368,7 @@ Provides: tex-vertbars = %{tl_version} License: LPPL 1.3 Summary: Mark vertical rules in margin of text Version: svn20589.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154383,7 +154384,7 @@ text. %package vertbars-doc Summary: Documentation for vertbars Version: svn20589.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vertbars-doc BuildArch: noarch AutoReqProv: No @@ -154396,7 +154397,7 @@ Provides: tex-vgrid = %{tl_version} License: LPPL 1.3 Summary: Overlay a grid on the printed page Version: svn32457.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154414,7 +154415,7 @@ document on the page. %package vgrid-doc Summary: Documentation for vgrid Version: svn32457.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vgrid-doc BuildArch: noarch AutoReqProv: No @@ -154427,7 +154428,7 @@ Provides: tex-vhistory = %{tl_version} License: LPPL 1.2 Summary: Support for creating a change log Version: svn30080.1.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154448,7 +154449,7 @@ intersection of sets etc. %package vhistory-doc Summary: Documentation for vhistory Version: svn30080.1.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vhistory-doc BuildArch: noarch AutoReqProv: No @@ -154461,7 +154462,7 @@ Provides: tex-vmargin = %{tl_version} License: LPPL Summary: Set various page dimensions Version: svn15878.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154481,7 +154482,7 @@ more elaborate try the geometry package. %package vmargin-doc Summary: Documentation for vmargin Version: svn15878.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vmargin-doc BuildArch: noarch AutoReqProv: No @@ -154494,7 +154495,7 @@ Provides: tex-volumes = %{tl_version} License: LPPL Summary: Typeset only parts of a document, with complete indexes etc Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154514,7 +154515,7 @@ file. %package volumes-doc Summary: Documentation for volumes Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-volumes-doc BuildArch: noarch AutoReqProv: No @@ -154527,7 +154528,7 @@ Provides: tex-vpe = %{tl_version} License: LPPL Summary: Source specials for PDF output Version: svn26039.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154551,7 +154552,7 @@ LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the %package vpe-doc Summary: Documentation for vpe Version: svn26039.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vpe-doc BuildArch: noarch AutoReqProv: No @@ -154564,7 +154565,7 @@ Summary: Binaries for vpe Version: svn6897.0 Requires: texlive-base Requires: texlive-vpe -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description vpe-bin @@ -154575,7 +154576,7 @@ Provides: tex-vruler = %{tl_version} License: LPPL Summary: Numbering text Version: svn21598.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154591,7 +154592,7 @@ The package may be used either with LaTeX or with plain TeX. %package vruler-doc Summary: Documentation for vruler Version: svn21598.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vruler-doc BuildArch: noarch AutoReqProv: No @@ -154604,7 +154605,7 @@ Provides: tex-vwcol = %{tl_version} License: LPPL 1.3 Summary: Variable-width multiple text columns Version: svn36254.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154624,7 +154625,7 @@ on a single page. %package vwcol-doc Summary: Documentation for vwcol Version: svn36254.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vwcol-doc BuildArch: noarch AutoReqProv: No @@ -154637,7 +154638,7 @@ Provides: tex-wallpaper = %{tl_version} License: LPPL Summary: Easy addition of wallpapers (background images) to LaTeX documents, including tiling Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154657,7 +154658,7 @@ example is provided, which works under both LaTeX and pdfLaTeX. %package wallpaper-doc Summary: Documentation for wallpaper Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wallpaper-doc BuildArch: noarch AutoReqProv: No @@ -154670,7 +154671,7 @@ Provides: tex-warning = %{tl_version} License: LPPL Summary: Global warnings at the end of the logfile Version: svn22028.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154686,7 +154687,7 @@ reason' or 'This is a draft, change it before the final run'. %package warning-doc Summary: Documentation for warning Version: svn22028.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-warning-doc BuildArch: noarch AutoReqProv: No @@ -154699,7 +154700,7 @@ Provides: tex-warpcol = %{tl_version} License: LPPL Summary: Relative alignment of rows in numeric columns in tabulars Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154720,7 +154721,7 @@ different, though overlapping, applications. %package warpcol-doc Summary: Documentation for warpcol Version: svn15878.1.0c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-warpcol-doc BuildArch: noarch AutoReqProv: No @@ -154733,7 +154734,7 @@ Provides: tex-was = %{tl_version} License: Public Domain Summary: A collection of small packages by Walter Schmidt Version: svn21439.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154753,7 +154754,7 @@ maths. %package was-doc Summary: Documentation for was Version: svn21439.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-was-doc BuildArch: noarch AutoReqProv: No @@ -154766,7 +154767,7 @@ Provides: tex-widetable = %{tl_version} License: LPPL 1.3 Summary: An environment for typesetting tables of specified width Version: svn16082.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154785,7 +154786,7 @@ modern distributions). %package widetable-doc Summary: Documentation for widetable Version: svn16082.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-widetable-doc BuildArch: noarch AutoReqProv: No @@ -154798,7 +154799,7 @@ Provides: tex-williams = %{tl_version} License: LPPL Summary: Miscellaneous macros by Peter Williams Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154819,7 +154820,7 @@ pp.378-379 of the TeXbook. %package williams-doc Summary: Documentation for williams Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-williams-doc BuildArch: noarch AutoReqProv: No @@ -154832,7 +154833,7 @@ Provides: tex-withargs = %{tl_version} License: LPPL 1.3 Summary: Ephemeral macro use Version: svn38320.0.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154861,7 +154862,7 @@ withargs package %package withargs-doc Summary: Documentation for withargs Version: svn38320.0.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-withargs-doc BuildArch: noarch AutoReqProv: No @@ -154874,7 +154875,7 @@ Provides: tex-wordlike = %{tl_version} License: LPPL Summary: Simulating word processor layout Version: svn15878.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154899,7 +154900,7 @@ manual. %package wordlike-doc Summary: Documentation for wordlike Version: svn15878.1.2b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wordlike-doc BuildArch: noarch AutoReqProv: No @@ -154912,7 +154913,7 @@ Provides: tex-wrapfig = %{tl_version} License: LPPL Summary: Produces figures which text can flow around Version: svn22048.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154928,7 +154929,7 @@ float package. %package wrapfig-doc Summary: Documentation for wrapfig Version: svn22048.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wrapfig-doc BuildArch: noarch AutoReqProv: No @@ -154941,7 +154942,7 @@ Provides: tex-xargs = %{tl_version} License: LPPL Summary: Define commands with many optional arguments Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154958,7 +154959,7 @@ simple xkeyval-style syntax. %package xargs-doc Summary: Documentation for xargs Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xargs-doc BuildArch: noarch AutoReqProv: No @@ -154971,7 +154972,7 @@ Provides: tex-xcolor-solarized = %{tl_version} License: LPPL 1.3 Summary: Defines the 16 colors from Ethan Schoonover's Solarized palette Version: svn36318.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -154988,7 +154989,7 @@ for use in documents typeset with LaTeX and Friends. %package xcolor-solarized-doc Summary: Documentation for xcolor-solarized Version: svn36318.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcolor-solarized-doc BuildArch: noarch AutoReqProv: No @@ -155001,7 +155002,7 @@ Provides: tex-xcomment = %{tl_version} License: LPPL Summary: Allows selected environments to be included/excluded Version: svn20031.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155023,7 +155024,7 @@ bundle for typesetting presentations. %package xcomment-doc Summary: Documentation for xcomment Version: svn20031.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcomment-doc BuildArch: noarch AutoReqProv: No @@ -155036,7 +155037,7 @@ Provides: tex-xdoc = %{tl_version} License: LPPL Summary: Extending the LaTeX doc system Version: svn15878.prot2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155078,7 +155079,7 @@ LaTeX2e. %package xdoc-doc Summary: Documentation for xdoc Version: svn15878.prot2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xdoc-doc BuildArch: noarch AutoReqProv: No @@ -155091,7 +155092,7 @@ Provides: tex-xfor = %{tl_version} License: LPPL Summary: A reimplementation of the LaTeX for-loop macro Version: svn15878.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155107,7 +155108,7 @@ terminate until the end of the current iteration %package xfor-doc Summary: Documentation for xfor Version: svn15878.1.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xfor-doc BuildArch: noarch AutoReqProv: No @@ -155120,7 +155121,7 @@ Provides: tex-xhfill = %{tl_version} License: LPPL Summary: Extending \hrulefill Version: svn22575.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155138,7 +155139,7 @@ the line. %package xhfill-doc Summary: Documentation for xhfill Version: svn22575.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xhfill-doc BuildArch: noarch AutoReqProv: No @@ -155151,7 +155152,7 @@ Provides: tex-xint = %{tl_version} License: LPPL 1.3 Summary: Expandable operations on long numbers Version: svn40077 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155194,7 +155195,7 @@ packages may be used either with Plain TeX or LaTeX. %package xint-doc Summary: Documentation for xint Version: svn40077 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xint-doc BuildArch: noarch AutoReqProv: No @@ -155207,7 +155208,7 @@ Provides: tex-xmpincl = %{tl_version} License: GPL+ Summary: Include eXtensible Metadata Platform data in PDFLaTeX Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155231,7 +155232,7 @@ XML-file, suitable for direct inclusion. %package xmpincl-doc Summary: Documentation for xmpincl Version: svn15878.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xmpincl-doc BuildArch: noarch AutoReqProv: No @@ -155244,7 +155245,7 @@ Provides: tex-xnewcommand = %{tl_version} License: LPPL Summary: Define \global and \protected commands with \newcommand Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155259,7 +155260,7 @@ The package provides the means of defining \global and (e-TeX) %package xnewcommand-doc Summary: Documentation for xnewcommand Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xnewcommand-doc BuildArch: noarch AutoReqProv: No @@ -155272,7 +155273,7 @@ Provides: tex-xoptarg = %{tl_version} License: LPPL Summary: Expandable macros that take an optional argument Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155287,7 +155288,7 @@ provided that they have at least one mandatory argument. %package xoptarg-doc Summary: Documentation for xoptarg Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xoptarg-doc BuildArch: noarch AutoReqProv: No @@ -155300,7 +155301,7 @@ Provides: tex-xpatch = %{tl_version} License: LPPL 1.3 Summary: Extending etoolbox patching commands Version: svn27897.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155317,7 +155318,7 @@ Philipp Lehmann's etoolbox. %package xpatch-doc Summary: Documentation for xpatch Version: svn27897.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpatch-doc BuildArch: noarch AutoReqProv: No @@ -155330,7 +155331,7 @@ Provides: tex-xpeek = %{tl_version} License: LPPL 1.3 Summary: Define commands that peek ahead in the input stream Version: svn27442.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155347,7 +155348,7 @@ them in the command stream and choose appropriate behaviour. %package xpeek-doc Summary: Documentation for xpeek Version: svn27442.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpeek-doc BuildArch: noarch AutoReqProv: No @@ -155360,7 +155361,7 @@ Provides: tex-xprintlen = %{tl_version} License: LPPL 1.3 Summary: Print TeX lengths in a variety of units Version: svn35928.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155377,7 +155378,7 @@ of the fp package be installed on you system. %package xprintlen-doc Summary: Documentation for xprintlen Version: svn35928.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xprintlen-doc BuildArch: noarch AutoReqProv: No @@ -155390,7 +155391,7 @@ Provides: tex-xpunctuate = %{tl_version} License: LPPL 1.2 Summary: Process trailing punctuation which may be redundant Version: svn26641.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155409,7 +155410,7 @@ punctuation if and only if it is necessary. %package xpunctuate-doc Summary: Documentation for xpunctuate Version: svn26641.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpunctuate-doc BuildArch: noarch AutoReqProv: No @@ -155422,7 +155423,7 @@ Provides: tex-xstring = %{tl_version} License: LPPL Summary: String manipulation for (La)TeX Version: svn31900.1.7c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155442,7 +155443,7 @@ always required). The strings to be processed may contain %package xstring-doc Summary: Documentation for xstring Version: svn31900.1.7c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xstring-doc BuildArch: noarch AutoReqProv: No @@ -155455,7 +155456,7 @@ Provides: tex-xtab = %{tl_version} License: LPPL Summary: Break tables across pages Version: svn23347.2.3f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155470,7 +155471,7 @@ break across pages. %package xtab-doc Summary: Documentation for xtab Version: svn23347.2.3f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xtab-doc BuildArch: noarch AutoReqProv: No @@ -155483,7 +155484,7 @@ Provides: tex-xwatermark = %{tl_version} License: LPPL 1.3 Summary: Graphics and text watermarks on selected pages Version: svn28090.1.5.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155500,7 +155501,7 @@ packages. %package xwatermark-doc Summary: Documentation for xwatermark Version: svn28090.1.5.2d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xwatermark-doc BuildArch: noarch AutoReqProv: No @@ -155513,7 +155514,7 @@ Provides: tex-xytree = %{tl_version} License: LPPL Summary: Tree macros using XY-Pic Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155530,7 +155531,7 @@ the XY-Pic package. %package xytree-doc Summary: Documentation for xytree Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xytree-doc BuildArch: noarch AutoReqProv: No @@ -155543,7 +155544,7 @@ Provides: tex-yafoot = %{tl_version} License: LPPL Summary: A bundle of miscellaneous footnote packages Version: svn19086.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155560,7 +155561,7 @@ make footnotes double-columned. %package yafoot-doc Summary: Documentation for yafoot Version: svn19086.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yafoot-doc BuildArch: noarch AutoReqProv: No @@ -155573,7 +155574,7 @@ Provides: tex-yagusylo = %{tl_version} License: LPPL Summary: A symbol loader Version: svn29803.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155596,7 +155597,7 @@ packages. %package yagusylo-doc Summary: Documentation for yagusylo Version: svn29803.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yagusylo-doc BuildArch: noarch AutoReqProv: No @@ -155609,7 +155610,7 @@ Provides: tex-ydoc = %{tl_version} License: LPPL 1.3 Summary: Macros for documentation of LaTeX classes and packages Version: svn26202.0.6alpha -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155648,7 +155649,7 @@ it to document his own packages. %package ydoc-doc Summary: Documentation for ydoc Version: svn26202.0.6alpha -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ydoc-doc BuildArch: noarch AutoReqProv: No @@ -155661,7 +155662,7 @@ Provides: tex-yplan = %{tl_version} License: LPPL Summary: Daily planner type calendar Version: svn34398.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155683,7 +155684,7 @@ LaTeX file remains on the archive.) %package yplan-doc Summary: Documentation for yplan Version: svn34398.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yplan-doc BuildArch: noarch AutoReqProv: No @@ -155696,7 +155697,7 @@ Summary: Binaries for yplan Version: svn34398.0 Requires: texlive-base Requires: texlive-yplan -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description yplan-bin @@ -155707,7 +155708,7 @@ Provides: tex-zed-csp = %{tl_version} License: Zed Summary: Typesetting Z and CSP format specifications Version: svn17258.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155722,7 +155723,7 @@ functionality of Spivey's original Z package, written for LaTeX %package zed-csp-doc Summary: Documentation for zed-csp Version: svn17258.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zed-csp-doc BuildArch: noarch AutoReqProv: No @@ -155735,7 +155736,7 @@ Provides: tex-ziffer = %{tl_version} License: LPPL Summary: Conversion of punctuation in maths mode Version: svn32279.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155753,7 +155754,7 @@ switched on and off. %package ziffer-doc Summary: Documentation for ziffer Version: svn32279.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ziffer-doc BuildArch: noarch AutoReqProv: No @@ -155766,7 +155767,7 @@ Provides: tex-zwgetfdate = %{tl_version} License: LPPL 1.3 Summary: Get package or file date Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155783,7 +155784,7 @@ doc/docstrip. %package zwgetfdate-doc Summary: Documentation for zwgetfdate Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zwgetfdate-doc BuildArch: noarch AutoReqProv: No @@ -155796,7 +155797,7 @@ Provides: tex-zwpagelayout = %{tl_version} License: LPPL Summary: Page layout and crop-marks Version: svn28846.1.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155818,7 +155819,7 @@ package facilities work with TeX (output via dvips or %package zwpagelayout-doc Summary: Documentation for zwpagelayout Version: svn28846.1.4d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-zwpagelayout-doc BuildArch: noarch AutoReqProv: No @@ -155829,7 +155830,7 @@ Documentation for zwpagelayout %package collection-luatex Summary: LuaTeX packages Version: svn39902 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -155878,7 +155879,7 @@ Provides: tex-enigma = %{tl_version} License: BSD Summary: Encrypt documents with a three rotor Enigma Version: svn29802.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155894,7 +155895,7 @@ LuaTeX-based formats. %package enigma-doc Summary: Documentation for enigma Version: svn29802.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-enigma-doc BuildArch: noarch AutoReqProv: No @@ -155907,7 +155908,7 @@ Provides: tex-interpreter = %{tl_version} License: LPPL Summary: Translate input files on the fly Version: svn27232.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155933,7 +155934,7 @@ for plain TeX and LaTeX, but not ConTeXt. %package interpreter-doc Summary: Documentation for interpreter Version: svn27232.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-interpreter-doc BuildArch: noarch AutoReqProv: No @@ -155946,7 +155947,7 @@ Provides: tex-lua-check-hyphen = %{tl_version} License: MIT Summary: Mark hyphenations in a document, for checking Version: svn40229 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155968,7 +155969,7 @@ white-list, or adjust the document to avoid the break. %package lua-check-hyphen-doc Summary: Documentation for lua-check-hyphen Version: svn40229 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lua-check-hyphen-doc BuildArch: noarch AutoReqProv: No @@ -155981,7 +155982,7 @@ Provides: tex-lua-visual-debug = %{tl_version} License: MIT Summary: Visual debugging with LuaLaTeX Version: svn41387 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155998,7 +155999,7 @@ package is known to work in LaTeX and Plain TeX documents. %package lua-visual-debug-doc Summary: Documentation for lua-visual-debug Version: svn41387 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lua-visual-debug-doc BuildArch: noarch AutoReqProv: No @@ -156011,7 +156012,7 @@ Provides: tex-lua2dox = %{tl_version} License: LPPL 1.3 Summary: Auto-documentation of lua code Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156034,7 +156035,7 @@ which will process joint (La)TeX/lua documents. %package lua2dox-doc Summary: Documentation for lua2dox Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lua2dox-doc BuildArch: noarch AutoReqProv: No @@ -156047,7 +156048,7 @@ Summary: Binaries for lua2dox Version: svn29053.0 Requires: texlive-base Requires: texlive-lua2dox -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description lua2dox-bin @@ -156058,7 +156059,7 @@ Provides: tex-luabibentry = %{tl_version} License: LPPL 1.3 Summary: Repeat BibTeX entries in a LuaLaTeX document body Version: svn31783.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156072,7 +156073,7 @@ The package reimplements bibentry, for use in LuaLaTeX. %package luabibentry-doc Summary: Documentation for luabibentry Version: svn31783.0.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luabibentry-doc BuildArch: noarch AutoReqProv: No @@ -156085,7 +156086,7 @@ Provides: tex-luabidi = %{tl_version} License: LPPL 1.3 Summary: Bidirectional typesetting with LuaLaTeX Version: svn30790.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156102,7 +156103,7 @@ context of LuaTeX. %package luabidi-doc Summary: Documentation for luabidi Version: svn30790.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luabidi-doc BuildArch: noarch AutoReqProv: No @@ -156115,7 +156116,7 @@ Provides: tex-luacode = %{tl_version} License: LPPL 1.3 Summary: Helper for executing lua code from within TeX Version: svn25193.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156134,7 +156135,7 @@ and the luacode(*) environments to help with these problems. %package luacode-doc Summary: Documentation for luacode Version: svn25193.1.2a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luacode-doc BuildArch: noarch AutoReqProv: No @@ -156147,7 +156148,7 @@ Provides: tex-luaindex = %{tl_version} License: LPPL 1.3 Summary: Create index using lualatex Version: svn25882.0.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156165,7 +156166,7 @@ Lua. %package luaindex-doc Summary: Documentation for luaindex Version: svn25882.0.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luaindex-doc BuildArch: noarch AutoReqProv: No @@ -156178,7 +156179,7 @@ Provides: tex-luainputenc = %{tl_version} License: Public Domain Summary: Replacing inputenc for use in LuaTeX Version: svn20491.0.973 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156203,7 +156204,7 @@ same behaviour with LuaTeX as inputenc has under pdfTeX. %package luainputenc-doc Summary: Documentation for luainputenc Version: svn20491.0.973 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luainputenc-doc BuildArch: noarch AutoReqProv: No @@ -156214,7 +156215,7 @@ Documentation for luainputenc %package luaintro-doc Summary: Documentation for luaintro Version: svn35490.0.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luaintro-doc BuildArch: noarch AutoReqProv: No @@ -156225,7 +156226,7 @@ Documentation for luaintro %package lualatex-doc-doc Summary: Documentation for lualatex-doc Version: svn30473.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lualatex-doc-doc BuildArch: noarch AutoReqProv: No @@ -156238,7 +156239,7 @@ Provides: tex-lualatex-math = %{tl_version} License: LPPL 1.3 Summary: Fixes for mathematics-related LuaLaTeX issues Version: svn40621 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156261,7 +156262,7 @@ Unicode mathematics typesetting. %package lualatex-math-doc Summary: Documentation for lualatex-math Version: svn40621 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lualatex-math-doc BuildArch: noarch AutoReqProv: No @@ -156274,7 +156275,7 @@ Provides: tex-lualibs = %{tl_version} License: GPLv2+ Summary: Additional Lua functions for LuaTeX macro programmers Version: svn40370 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156289,7 +156290,7 @@ independent of ConTeXt. %package lualibs-doc Summary: Documentation for lualibs Version: svn40370 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lualibs-doc BuildArch: noarch AutoReqProv: No @@ -156302,7 +156303,7 @@ Provides: tex-luamplib = %{tl_version} License: GPLv2+ Summary: Use LuaTeX's built-in MetaPost interpreter Version: svn40217 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156319,7 +156320,7 @@ MetaPost library. The facility is only available in PDF mode. %package luamplib-doc Summary: Documentation for luamplib Version: svn40217 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luamplib-doc BuildArch: noarch AutoReqProv: No @@ -156332,7 +156333,7 @@ Provides: tex-luaotfload = %{tl_version} License: GPLv2+ Summary: OpenType 'loader' for Plain TeX and LaTeX Version: svn40902 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156350,7 +156351,7 @@ LaTeX. It works under LuaLaTeX only. %package luaotfload-doc Summary: Documentation for luaotfload Version: svn40902 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luaotfload-doc BuildArch: noarch AutoReqProv: No @@ -156364,7 +156365,7 @@ Version: svn34647.0 Requires: texlive-base Requires: texlive-luaotfload Requires: texlive-lua-alt-getopt -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description luaotfload-bin @@ -156375,7 +156376,7 @@ Provides: tex-luasseq = %{tl_version} License: LPPL Summary: Drawing spectral sequences in LuaLaTeX Version: svn37877.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156395,7 +156396,7 @@ faster than the original; it also offers several enhancements. %package luasseq-doc Summary: Documentation for luasseq Version: svn37877.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luasseq-doc BuildArch: noarch AutoReqProv: No @@ -156408,7 +156409,7 @@ Provides: tex-luatexbase = %{tl_version} License: Public Domain Summary: Basic resource management for LuaTeX code Version: svn38550 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156439,7 +156440,7 @@ package loads all the above in one fell swoop. %package luatexbase-doc Summary: Documentation for luatexbase Version: svn38550 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatexbase-doc BuildArch: noarch AutoReqProv: No @@ -156452,7 +156453,7 @@ Provides: tex-luatexko = %{tl_version} License: LPPL 1.3 Summary: Typeset Korean with Lua(La)TeX Version: svn41128 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156474,7 +156475,7 @@ ko and xetexko packages for its full functionality. %package luatexko-doc Summary: Documentation for luatexko Version: svn41128 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatexko-doc BuildArch: noarch AutoReqProv: No @@ -156487,7 +156488,7 @@ Provides: tex-luatextra = %{tl_version} License: Public Domain Summary: Additional macros for Plain TeX and LaTeX in LuaTeX Version: svn20747.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156510,7 +156511,7 @@ specification may be expected to change. %package luatextra-doc Summary: Documentation for luatextra Version: svn20747.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatextra-doc BuildArch: noarch AutoReqProv: No @@ -156523,7 +156524,7 @@ Provides: tex-luatodonotes = %{tl_version} License: LPPL 1.2 Summary: Add editing annotations in a LuaLaTeX document Version: svn39019 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156555,7 +156556,7 @@ be used with LuaLaTeX. %package luatodonotes-doc Summary: Documentation for luatodonotes Version: svn39019 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luatodonotes-doc BuildArch: noarch AutoReqProv: No @@ -156568,7 +156569,7 @@ Provides: tex-luaxml = %{tl_version} License: MIT Summary: Lua library for reading and serialising XML files Version: svn32741.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156584,7 +156585,7 @@ other projects. %package luaxml-doc Summary: Documentation for luaxml Version: svn32741.0.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-luaxml-doc BuildArch: noarch AutoReqProv: No @@ -156597,7 +156598,7 @@ Provides: tex-odsfile = %{tl_version} License: LPPL 1.3 Summary: Read OpenDocument Spreadsheet documents as LaTeX tables Version: svn38449 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156616,7 +156617,7 @@ plots. The package uses lua's zip library. %package odsfile-doc Summary: Documentation for odsfile Version: svn38449 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-odsfile-doc BuildArch: noarch AutoReqProv: No @@ -156629,7 +156630,7 @@ Provides: tex-placeat = %{tl_version} License: LPPL 1.3 Summary: Absolute content positioning Version: svn33526.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156650,7 +156651,7 @@ disabled, for 'final copy' using the command \placeatsetup). %package placeat-doc Summary: Documentation for placeat Version: svn33526.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-placeat-doc BuildArch: noarch AutoReqProv: No @@ -156663,7 +156664,7 @@ Provides: tex-selnolig = %{tl_version} License: LPPL 1.3 Summary: Selectively disable typographic ligatures Version: svn38721 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156699,7 +156700,7 @@ those from TeX Live 2012 or 2013, or MiKTeX 2.9). %package selnolig-doc Summary: Documentation for selnolig Version: svn38721 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-selnolig-doc BuildArch: noarch AutoReqProv: No @@ -156712,7 +156713,7 @@ Provides: tex-showhyphens = %{tl_version} License: MIT Summary: Show all possible hyphenations in LuaLaTeX Version: svn39787 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156728,7 +156729,7 @@ hyphenations in the printed output. %package showhyphens-doc Summary: Documentation for showhyphens Version: svn39787 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-showhyphens-doc BuildArch: noarch AutoReqProv: No @@ -156741,7 +156742,7 @@ Provides: tex-spelling = %{tl_version} License: LPPL 1.3 Summary: Support for spell-checking of LuaTeX documents Version: svn30715.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156764,7 +156765,7 @@ work with most spell-checkers, even dumb, TeX-unaware ones. %package spelling-doc Summary: Documentation for spelling Version: svn30715.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spelling-doc BuildArch: noarch AutoReqProv: No @@ -156777,7 +156778,7 @@ Provides: tex-ucharcat = %{tl_version} License: LPPL Summary: Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX Version: svn38907 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156794,7 +156795,7 @@ constructed. %package ucharcat-doc Summary: Documentation for ucharcat Version: svn38907 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucharcat-doc BuildArch: noarch AutoReqProv: No @@ -156805,7 +156806,7 @@ Documentation for ucharcat %package collection-mathextra Summary: Mathematics packages Version: svn40076 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-fontsrecommended @@ -156885,7 +156886,7 @@ Provides: tex-commath = %{tl_version} License: LPPL Summary: Mathematics typesetting support Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156903,7 +156904,7 @@ reference commands. %package commath-doc Summary: Documentation for commath Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-commath-doc BuildArch: noarch AutoReqProv: No @@ -156916,7 +156917,7 @@ Provides: tex-concmath = %{tl_version} License: LPPL Summary: Concrete Math fonts Version: svn17219.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156943,7 +156944,7 @@ fonts. %package concmath-doc Summary: Documentation for concmath Version: svn17219.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-concmath-doc BuildArch: noarch AutoReqProv: No @@ -156956,7 +156957,7 @@ Provides: tex-concrete = %{tl_version} License: Knuth Summary: Concrete Roman fonts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156988,7 +156989,7 @@ bundle. %package concrete-doc Summary: Documentation for concrete Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-concrete-doc BuildArch: noarch AutoReqProv: No @@ -157001,7 +157002,7 @@ Provides: tex-conteq = %{tl_version} License: LPPL 1.3 Summary: Typeset multiline continued equalities Version: svn37868.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157021,7 +157022,7 @@ macros. %package conteq-doc Summary: Documentation for conteq Version: svn37868.0.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-conteq-doc BuildArch: noarch AutoReqProv: No @@ -157034,7 +157035,7 @@ Provides: tex-ebproof = %{tl_version} License: LPPL 1.3 Summary: Formal proofs in the style of sequent calculus Version: svn36595.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157054,7 +157055,7 @@ pgfkeys (from the PGF/TikZ bundle) for the option system. %package ebproof-doc Summary: Documentation for ebproof Version: svn36595.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebproof-doc BuildArch: noarch AutoReqProv: No @@ -157067,7 +157068,7 @@ Provides: tex-eqnarray = %{tl_version} License: GPLv3+ Summary: More generalised equation arrays with numbering Version: svn20641.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157085,7 +157086,7 @@ package. %package eqnarray-doc Summary: Documentation for eqnarray Version: svn20641.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eqnarray-doc BuildArch: noarch AutoReqProv: No @@ -157098,7 +157099,7 @@ Provides: tex-extarrows = %{tl_version} License: LGPLv2+ Summary: Extra Arrows beyond those provided in AMSmath Version: svn15878.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157116,7 +157117,7 @@ of the AMSMath package: \xlongequal, \xLongleftarrow, %package extarrows-doc Summary: Documentation for extarrows Version: svn15878.1.0b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-extarrows-doc BuildArch: noarch AutoReqProv: No @@ -157129,7 +157130,7 @@ Provides: tex-extpfeil = %{tl_version} License: LPPL 1.3 Summary: Extensible arrows in mathematics Version: svn16243.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157148,7 +157149,7 @@ create new ones. %package extpfeil-doc Summary: Documentation for extpfeil Version: svn16243.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-extpfeil-doc BuildArch: noarch AutoReqProv: No @@ -157161,7 +157162,7 @@ Provides: tex-faktor = %{tl_version} License: LPPL Summary: Typeset quotient structures with LaTeX Version: svn15878.0.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157179,7 +157180,7 @@ sizes do not change in the \faktor command. %package faktor-doc Summary: Documentation for faktor Version: svn15878.0.1b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-faktor-doc BuildArch: noarch AutoReqProv: No @@ -157192,7 +157193,7 @@ Provides: tex-grundgesetze = %{tl_version} License: GPLv2+ Summary: Typeset Frege's Grundgesetze der Arithmetik Version: svn34439.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157209,7 +157210,7 @@ Arithmetik" (Basic Laws of Arithmetic). %package grundgesetze-doc Summary: Documentation for grundgesetze Version: svn34439.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-grundgesetze-doc BuildArch: noarch AutoReqProv: No @@ -157222,7 +157223,7 @@ Provides: tex-interval = %{tl_version} License: LPPL 1.3 Summary: Format mathematical intervals, ensuring proper spacing Version: svn34840.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157243,7 +157244,7 @@ and opening types. TeX maths does not do this job properly. %package interval-doc Summary: Documentation for interval Version: svn34840.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-interval-doc BuildArch: noarch AutoReqProv: No @@ -157256,7 +157257,7 @@ Provides: tex-ionumbers = %{tl_version} License: GPL+ Summary: Restyle numbers in maths mode Version: svn33457.0.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157284,7 +157285,7 @@ output as $26\times10\,^{6}$. %package ionumbers-doc Summary: Documentation for ionumbers Version: svn33457.0.3.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ionumbers-doc BuildArch: noarch AutoReqProv: No @@ -157297,7 +157298,7 @@ Provides: tex-isomath = %{tl_version} License: LPPL Summary: Mathematics style for science and technology Version: svn27654.0.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157318,7 +157319,7 @@ tensor symbols. %package isomath-doc Summary: Documentation for isomath Version: svn27654.0.6.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-isomath-doc BuildArch: noarch AutoReqProv: No @@ -157331,7 +157332,7 @@ Provides: tex-logicproof = %{tl_version} License: LPPL 1.3 Summary: Box proofs for propositional and predicate logic Version: svn33254.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157352,7 +157353,7 @@ Huth and Ryan. %package logicproof-doc Summary: Documentation for logicproof Version: svn33254.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-logicproof-doc BuildArch: noarch AutoReqProv: No @@ -157365,7 +157366,7 @@ Provides: tex-lpform = %{tl_version} License: LPPL Summary: Typesetting linear programming formulations and sets of equations Version: svn36918.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157385,7 +157386,7 @@ labeling/referencing and other customization options. %package lpform-doc Summary: Documentation for lpform Version: svn36918.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lpform-doc BuildArch: noarch AutoReqProv: No @@ -157398,7 +157399,7 @@ Provides: tex-lplfitch = %{tl_version} License: LPPL 1.3 Summary: Fitch-style natural deduction proofs Version: svn31077.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157415,7 +157416,7 @@ Barker-Plummer, Jon Barwise, and John Etchemendy. %package lplfitch-doc Summary: Documentation for lplfitch Version: svn31077.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lplfitch-doc BuildArch: noarch AutoReqProv: No @@ -157428,7 +157429,7 @@ Provides: tex-mathcomp = %{tl_version} License: LPPL Summary: Text symbols in maths mode Version: svn15878.0.1f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157443,7 +157444,7 @@ of the Text Companion fonts (TS1 encoding) in maths mode. %package mathcomp-doc Summary: Documentation for mathcomp Version: svn15878.0.1f -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathcomp-doc BuildArch: noarch AutoReqProv: No @@ -157456,7 +157457,7 @@ Provides: tex-mattens = %{tl_version} License: LPPL Summary: Matrices/tensor typesetting Version: svn17582.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157473,7 +157474,7 @@ such as forces, velocities, moments of inertia, etc. %package mattens-doc Summary: Documentation for mattens Version: svn17582.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mattens-doc BuildArch: noarch AutoReqProv: No @@ -157486,7 +157487,7 @@ Provides: tex-mhequ = %{tl_version} License: Public Domain Summary: Multicolumn equations, tags, labels, sub-numbering Version: svn38224.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157504,7 +157505,7 @@ package itself describe usage. %package mhequ-doc Summary: Documentation for mhequ Version: svn38224.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mhequ-doc BuildArch: noarch AutoReqProv: No @@ -157517,7 +157518,7 @@ Provides: tex-multiobjective = %{tl_version} License: LPPL Summary: Symbols for multiobjective optimisation etc Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157534,7 +157535,7 @@ similar fields. %package multiobjective-doc Summary: Documentation for multiobjective Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-multiobjective-doc BuildArch: noarch AutoReqProv: No @@ -157547,7 +157548,7 @@ Provides: tex-natded = %{tl_version} License: LPPL 1.3 Summary: Typeset natural deduction proofs Version: svn32693.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157561,7 +157562,7 @@ used by Jaskowski, or that of Kalish and Montague. %package natded-doc Summary: Documentation for natded Version: svn32693.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-natded-doc BuildArch: noarch AutoReqProv: No @@ -157574,7 +157575,7 @@ Provides: tex-nath = %{tl_version} License: GPL+ Summary: Natural mathematics notation Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157595,7 +157596,7 @@ material enclosed, rendering \left and \right almost obsolete. %package nath-doc Summary: Documentation for nath Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nath-doc BuildArch: noarch AutoReqProv: No @@ -157608,7 +157609,7 @@ Provides: tex-ot-tableau = %{tl_version} License: LPPL Summary: Optimality Theory tableaux in LaTeX Version: svn35095.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157633,7 +157634,7 @@ variants are available to suit personal taste. %package ot-tableau-doc Summary: Documentation for ot-tableau Version: svn35095.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ot-tableau-doc BuildArch: noarch AutoReqProv: No @@ -157646,7 +157647,7 @@ Provides: tex-oubraces = %{tl_version} License: Copyright only Summary: Braces over and under a formula Version: svn21833.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157660,7 +157661,7 @@ the same formula. %package oubraces-doc Summary: Documentation for oubraces Version: svn21833.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-oubraces-doc BuildArch: noarch AutoReqProv: No @@ -157673,7 +157674,7 @@ Provides: tex-perfectcut = %{tl_version} License: LPPL 1.3 Summary: Brackets whose size adjusts to the nesting Version: svn35501.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157696,7 +157697,7 @@ into arbitrary-size variants. %package perfectcut-doc Summary: Documentation for perfectcut Version: svn35501.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-perfectcut-doc BuildArch: noarch AutoReqProv: No @@ -157709,7 +157710,7 @@ Provides: tex-prftree = %{tl_version} License: GPL+ Summary: Macros for building proof trees Version: svn39356 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157723,7 +157724,7 @@ sequent-like calculi, and similar. %package prftree-doc Summary: Documentation for prftree Version: svn39356 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-prftree-doc BuildArch: noarch AutoReqProv: No @@ -157736,7 +157737,7 @@ Provides: tex-proba = %{tl_version} License: LPPL Summary: Shortcuts commands to symbols used in probability texts Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157754,7 +157755,7 @@ amsfonts package. %package proba-doc Summary: Documentation for proba Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-proba-doc BuildArch: noarch AutoReqProv: No @@ -157767,7 +157768,7 @@ Provides: tex-rec-thy = %{tl_version} License: Public Domain Summary: Commands to typeset recursion theory papers Version: svn27225.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157790,7 +157791,7 @@ in recursion theory (otherwise known as computability theory). %package rec-thy-doc Summary: Documentation for rec-thy Version: svn27225.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rec-thy-doc BuildArch: noarch AutoReqProv: No @@ -157803,7 +157804,7 @@ Provides: tex-ribbonproofs = %{tl_version} License: LPPL 1.3 Summary: Drawing ribbon proofs Version: svn31137.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157824,7 +157825,7 @@ easily modified than the corresponding textual proofs. %package ribbonproofs-doc Summary: Documentation for ribbonproofs Version: svn31137.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ribbonproofs-doc BuildArch: noarch AutoReqProv: No @@ -157837,7 +157838,7 @@ Provides: tex-rmathbr = %{tl_version} License: LPPL 1.3 Summary: Repeating of math operator at the broken line and the new line in inline equations Version: svn40415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157858,7 +157859,7 @@ LaTeX mathematical packages. See the documentation for details. %package rmathbr-doc Summary: Documentation for rmathbr Version: svn40415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-rmathbr-doc BuildArch: noarch AutoReqProv: No @@ -157871,7 +157872,7 @@ Provides: tex-sesamanuel = %{tl_version} License: LPPL 1.3 Summary: Class and package for sesamath books or paper Version: svn36613.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157921,7 +157922,7 @@ sesamath book. %package sesamanuel-doc Summary: Documentation for sesamanuel Version: svn36613.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sesamanuel-doc BuildArch: noarch AutoReqProv: No @@ -157934,7 +157935,7 @@ Provides: tex-shuffle = %{tl_version} License: Public Domain Summary: A symbol for the shuffle product Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157952,7 +157953,7 @@ mathematics and physics. %package shuffle-doc Summary: Documentation for shuffle Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shuffle-doc BuildArch: noarch AutoReqProv: No @@ -157965,7 +157966,7 @@ Provides: tex-skmath = %{tl_version} License: LPPL 1.3 Summary: Extensions to the maths command repertoir Version: svn35968.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -157986,7 +157987,7 @@ improved re-definitions of existing commands. %package skmath-doc Summary: Documentation for skmath Version: svn35968.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-skmath-doc BuildArch: noarch AutoReqProv: No @@ -157999,7 +158000,7 @@ Provides: tex-statex = %{tl_version} License: LPPL Summary: Statistics style Version: svn20306.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158019,7 +158020,7 @@ version of the package is available: statex2. %package statex-doc Summary: Documentation for statex Version: svn20306.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-statex-doc BuildArch: noarch AutoReqProv: No @@ -158032,7 +158033,7 @@ Provides: tex-statex2 = %{tl_version} License: LPPL Summary: Statistics style Version: svn23961.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158052,7 +158053,7 @@ upgrade of statex. %package statex2-doc Summary: Documentation for statex2 Version: svn23961.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-statex2-doc BuildArch: noarch AutoReqProv: No @@ -158065,7 +158066,7 @@ Provides: tex-subsupscripts = %{tl_version} License: LPPL Summary: A range of sub- and superscript commands Version: svn16080.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158080,7 +158081,7 @@ superscripts. %package subsupscripts-doc Summary: Documentation for subsupscripts Version: svn16080.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-subsupscripts-doc BuildArch: noarch AutoReqProv: No @@ -158093,7 +158094,7 @@ Provides: tex-susy = %{tl_version} License: LPPL Summary: Macros for SuperSymmetry-related work Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158106,7 +158107,7 @@ The package provides abbreviations of longer expressions. %package susy-doc Summary: Documentation for susy Version: svn19440.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-susy-doc BuildArch: noarch AutoReqProv: No @@ -158119,7 +158120,7 @@ Provides: tex-syllogism = %{tl_version} License: LPPL Summary: Typeset syllogisms in LaTeX Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158138,7 +158139,7 @@ of two premises and a conclusion. %package syllogism-doc Summary: Documentation for syllogism Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-syllogism-doc BuildArch: noarch AutoReqProv: No @@ -158151,7 +158152,7 @@ Provides: tex-sympytexpackage = %{tl_version} License: LPPL Summary: sympytexpackage package Version: svn41190 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158169,7 +158170,7 @@ sympytexpackage package %package sympytexpackage-doc Summary: Documentation for sympytexpackage Version: svn41190 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sympytexpackage-doc BuildArch: noarch AutoReqProv: No @@ -158182,7 +158183,7 @@ Provides: tex-synproof = %{tl_version} License: LPPL Summary: Easy drawing of syntactic proofs Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158203,7 +158204,7 @@ achieved through "key=value" pairs. %package synproof-doc Summary: Documentation for synproof Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-synproof-doc BuildArch: noarch AutoReqProv: No @@ -158216,7 +158217,7 @@ Provides: tex-tablor = %{tl_version} License: LPPL Summary: Create tables of signs and of variations Version: svn31855.4.07_g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158242,7 +158243,7 @@ tablor package requires that shell escape be enabled. %package tablor-doc Summary: Documentation for tablor Version: svn31855.4.07_g -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tablor-doc BuildArch: noarch AutoReqProv: No @@ -158255,7 +158256,7 @@ Provides: tex-tensor = %{tl_version} License: LPPL Summary: Typeset tensors Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158273,7 +158274,7 @@ Piff. %package tensor-doc Summary: Documentation for tensor Version: svn15878.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tensor-doc BuildArch: noarch AutoReqProv: No @@ -158286,7 +158287,7 @@ Provides: tex-tex-ewd = %{tl_version} License: BSD Summary: Macros to typeset calculational proofs and programs in Dijkstra's style Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158302,7 +158303,7 @@ Dijkstra's "guarded command language". %package tex-ewd-doc Summary: Documentation for tex-ewd Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tex-ewd-doc BuildArch: noarch AutoReqProv: No @@ -158315,7 +158316,7 @@ Provides: tex-thmbox = %{tl_version} License: LPPL Summary: Decorate theorem statements Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158332,7 +158333,7 @@ with frames and various aesthetic features. The standard macro %package thmbox-doc Summary: Documentation for thmbox Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thmbox-doc BuildArch: noarch AutoReqProv: No @@ -158345,7 +158346,7 @@ Provides: tex-turnstile = %{tl_version} License: LPPL Summary: Typeset the (logic) turnstile notation Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158361,7 +158362,7 @@ between a collection of formulas and a derived formula. %package turnstile-doc Summary: Documentation for turnstile Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-turnstile-doc BuildArch: noarch AutoReqProv: No @@ -158374,7 +158375,7 @@ Provides: tex-unicode-math = %{tl_version} License: LPPL 1.3 Summary: Unicode mathematics support for XeTeX and LuaTeX Version: svn38462 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158411,7 +158412,7 @@ packages. %package unicode-math-doc Summary: Documentation for unicode-math Version: svn38462 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unicode-math-doc BuildArch: noarch AutoReqProv: No @@ -158425,7 +158426,7 @@ Provides: tex-venn = %{tl_version} License: LPPL Summary: Creating Venn diagrams with MetaPost Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158437,7 +158438,7 @@ MetaPost macros for venn diagrams. %package venn-doc Summary: Documentation for venn Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-venn-doc BuildArch: noarch AutoReqProv: No @@ -158450,7 +158451,7 @@ Provides: tex-yhmath = %{tl_version} License: LPPL Summary: Extended maths fonts for LaTeX Version: svn31155.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158473,7 +158474,7 @@ package for using them. %package yhmath-doc Summary: Documentation for yhmath Version: svn31155.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yhmath-doc BuildArch: noarch AutoReqProv: No @@ -158486,7 +158487,7 @@ Provides: tex-ytableau = %{tl_version} License: LPPL 1.2 Summary: Many-featured Young tableaux and Young diagrams Version: svn27430.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158506,7 +158507,7 @@ both at package load and configurably. %package ytableau-doc Summary: Documentation for ytableau Version: svn27430.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ytableau-doc BuildArch: noarch AutoReqProv: No @@ -158517,7 +158518,7 @@ Documentation for ytableau %package collection-metapost Summary: MetaPost and Metafont packages Version: svn39729 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -158571,7 +158572,7 @@ Provides: tex-drv = %{tl_version} License: LPPL Summary: Derivation trees with MetaPost Version: svn29349.0.97 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158586,7 +158587,7 @@ these macros. %package drv-doc Summary: Documentation for drv Version: svn29349.0.97 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-drv-doc BuildArch: noarch AutoReqProv: No @@ -158599,7 +158600,7 @@ Provides: tex-dviincl = %{tl_version} License: Public Domain Summary: Include a DVI page into MetaPost output Version: svn29349.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158615,7 +158616,7 @@ other pages. %package dviincl-doc Summary: Documentation for dviincl Version: svn29349.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dviincl-doc BuildArch: noarch AutoReqProv: No @@ -158628,7 +158629,7 @@ Provides: tex-emp = %{tl_version} License: GPL+ Summary: "Encapsulate" MetaPost figures in a document Version: svn23483.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158652,7 +158653,7 @@ conventions. %package emp-doc Summary: Documentation for emp Version: svn23483.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-emp-doc BuildArch: noarch AutoReqProv: No @@ -158665,7 +158666,7 @@ Provides: tex-epsincl = %{tl_version} License: Public Domain Summary: Include EPS in MetaPost figures Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158678,7 +158679,7 @@ figures; it makes use of (G)AWK. %package epsincl-doc Summary: Documentation for epsincl Version: svn29349.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epsincl-doc BuildArch: noarch AutoReqProv: No @@ -158691,7 +158692,7 @@ Provides: tex-expressg = %{tl_version} License: LPPL Summary: Diagrams consisting of boxes, lines, and annotations Version: svn29349.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158708,7 +158709,7 @@ Annotation charts, but not Gantt charts directly. %package expressg-doc Summary: Documentation for expressg Version: svn29349.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-expressg-doc BuildArch: noarch AutoReqProv: No @@ -158721,7 +158722,7 @@ Provides: tex-exteps = %{tl_version} License: GPL+ Summary: Include EPS figures in MetaPost Version: svn19859.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158736,7 +158737,7 @@ output. %package exteps-doc Summary: Documentation for exteps Version: svn19859.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-exteps-doc BuildArch: noarch AutoReqProv: No @@ -158749,7 +158750,7 @@ Provides: tex-featpost = %{tl_version} License: GPL+ Summary: MetaPost macros for 3D Version: svn35346.0.8.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158763,7 +158764,7 @@ among other things. %package featpost-doc Summary: Documentation for featpost Version: svn35346.0.8.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-featpost-doc BuildArch: noarch AutoReqProv: No @@ -158776,7 +158777,7 @@ Provides: tex-feynmf = %{tl_version} License: GPL+ Summary: Macros and fonts for creating Feynman (and other) diagrams Version: svn17259.1.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158798,7 +158799,7 @@ determined. %package feynmf-doc Summary: Documentation for feynmf Version: svn17259.1.08 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-feynmf-doc BuildArch: noarch AutoReqProv: No @@ -158811,7 +158812,7 @@ Provides: tex-feynmp-auto = %{tl_version} License: LPPL 1.3 Summary: Automatic processing of feynmp graphics Version: svn30223.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158831,7 +158832,7 @@ options that apply to feynmp. %package feynmp-auto-doc Summary: Documentation for feynmp-auto Version: svn30223.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-feynmp-auto-doc BuildArch: noarch AutoReqProv: No @@ -158844,7 +158845,7 @@ Provides: tex-garrigues = %{tl_version} License: LPPL Summary: MetaPost macros for the reproduction of Garrigues' Easter nomogram Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158860,7 +158861,7 @@ pages 88-104) %package garrigues-doc Summary: Documentation for garrigues Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-garrigues-doc BuildArch: noarch AutoReqProv: No @@ -158873,7 +158874,7 @@ Provides: tex-gmp = %{tl_version} License: LPPL 1.3 Summary: Enable integration between MetaPost pictures and LaTeX Version: svn21691.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158894,7 +158895,7 @@ inside arguments to commands, including \newcommand. %package gmp-doc Summary: Documentation for gmp Version: svn21691.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gmp-doc BuildArch: noarch AutoReqProv: No @@ -158907,7 +158908,7 @@ Provides: tex-latexmp = %{tl_version} License: Public Domain Summary: Interface for LaTeX-based typesetting in MetaPost Version: svn15878.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158926,7 +158927,7 @@ solution provided by tex.mp %package latexmp-doc Summary: Documentation for latexmp Version: svn15878.1.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-latexmp-doc BuildArch: noarch AutoReqProv: No @@ -158939,7 +158940,7 @@ Provides: tex-mcf2graph = %{tl_version} License: BSD Summary: Draw chemical structure diagrams with Metafont/MetaPost Version: svn41368 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158953,7 +158954,7 @@ MCF to graphic files using Metafont / MetaPost. %package mcf2graph-doc Summary: Documentation for mcf2graph Version: svn41368 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mcf2graph-doc BuildArch: noarch AutoReqProv: No @@ -158966,7 +158967,7 @@ Provides: tex-metago = %{tl_version} License: LPPL Summary: MetaPost output of Go positions Version: svn15878.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -158981,7 +158982,7 @@ produce several images). %package metago-doc Summary: Documentation for metago Version: svn15878.0.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metago-doc BuildArch: noarch AutoReqProv: No @@ -158994,7 +158995,7 @@ Provides: tex-metaobj = %{tl_version} License: LPPL Summary: MetaPost package providing high-level objects Version: svn15878.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159011,7 +159012,7 @@ package. It is easily extensible with new objects. %package metaobj-doc Summary: Documentation for metaobj Version: svn15878.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metaobj-doc BuildArch: noarch AutoReqProv: No @@ -159024,7 +159025,7 @@ Provides: tex-metaplot = %{tl_version} License: LPPL Summary: Plot-manipulation macros for use in Metapost Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159047,7 +159048,7 @@ potentially in flux. %package metaplot-doc Summary: Documentation for metaplot Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metaplot-doc BuildArch: noarch AutoReqProv: No @@ -159060,7 +159061,7 @@ Provides: tex-metauml = %{tl_version} License: GPL+ Summary: MetaPost library for typesetting UML diagrams Version: svn19692.0.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159077,7 +159078,7 @@ and use case diagrams. %package metauml-doc Summary: Documentation for metauml Version: svn19692.0.2.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-metauml-doc BuildArch: noarch AutoReqProv: No @@ -159090,7 +159091,7 @@ Provides: tex-mfpic = %{tl_version} License: LPPL 1.3 Summary: Draw Metafont/post pictures from (La)TeX commands Version: svn28444.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159114,7 +159115,7 @@ equally well in LaTeX and PDFLaTeX. %package mfpic-doc Summary: Documentation for mfpic Version: svn28444.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mfpic-doc BuildArch: noarch AutoReqProv: No @@ -159127,7 +159128,7 @@ Provides: tex-mfpic4ode = %{tl_version} License: LPPL Summary: Macros to draw direction fields and solutions of ODEs Version: svn17745.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159149,7 +159150,7 @@ available on the Mfpic Previewer as Example 6. %package mfpic4ode-doc Summary: Documentation for mfpic4ode Version: svn17745.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mfpic4ode-doc BuildArch: noarch AutoReqProv: No @@ -159162,7 +159163,7 @@ Provides: tex-mp3d = %{tl_version} License: LPPL Summary: 3D animations Version: svn29349.1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159175,7 +159176,7 @@ in MetaPost. %package mp3d-doc Summary: Documentation for mp3d Version: svn29349.1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mp3d-doc BuildArch: noarch AutoReqProv: No @@ -159188,7 +159189,7 @@ Provides: tex-mpcolornames = %{tl_version} License: LPPL Summary: Extend list of predefined colour names for MetaPost Version: svn23252.0.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159206,7 +159207,7 @@ specifications. %package mpcolornames-doc Summary: Documentation for mpcolornames Version: svn23252.0.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mpcolornames-doc BuildArch: noarch AutoReqProv: No @@ -159219,7 +159220,7 @@ Provides: tex-mpattern = %{tl_version} License: Public Domain Summary: Patterns in MetaPost Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159232,7 +159233,7 @@ the Pattern Color Space available in PostScript Level 2. %package mpattern-doc Summary: Documentation for mpattern Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mpattern-doc BuildArch: noarch AutoReqProv: No @@ -159245,7 +159246,7 @@ Provides: tex-mpgraphics = %{tl_version} License: LPPL 1.3 Summary: Process and display MetaPost figures inline Version: svn29776.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159270,7 +159271,7 @@ is automatic and the end user is saved the tiresome processing. %package mpgraphics-doc Summary: Documentation for mpgraphics Version: svn29776.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mpgraphics-doc BuildArch: noarch AutoReqProv: No @@ -159283,7 +159284,7 @@ Provides: tex-piechartmp = %{tl_version} License: LPPL Summary: Draw pie-charts using MetaPost Version: svn19440.0.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159300,7 +159301,7 @@ charts from the same data. %package piechartmp-doc Summary: Documentation for piechartmp Version: svn19440.0.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-piechartmp-doc BuildArch: noarch AutoReqProv: No @@ -159313,7 +159314,7 @@ Provides: tex-repere = %{tl_version} License: LPPL 1.3 Summary: Diagrams for school mathematics Version: svn32455.13.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159326,7 +159327,7 @@ the specific target is support of secondary school mathematics. %package repere-doc Summary: Documentation for repere Version: svn32455.13.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-repere-doc BuildArch: noarch AutoReqProv: No @@ -159339,7 +159340,7 @@ Provides: tex-roex = %{tl_version} License: LPPL Summary: roex package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159353,7 +159354,7 @@ Provides: tex-roundrect = %{tl_version} License: LPPL 1.3 Summary: Metapost macros for highly configurable rounded rectangles (optionally with text) Version: svn39796 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159368,7 +159369,7 @@ extremely configurable. %package roundrect-doc Summary: Documentation for roundrect Version: svn39796 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-roundrect-doc BuildArch: noarch AutoReqProv: No @@ -159381,7 +159382,7 @@ Provides: tex-shapes = %{tl_version} License: LPPL 1.3 Summary: Draw polygons, reentrant stars, and fractions in circles with Metapost Version: svn38024.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159396,7 +159397,7 @@ the nature of fractions) in Metapost. %package shapes-doc Summary: Documentation for shapes Version: svn38024.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-shapes-doc BuildArch: noarch AutoReqProv: No @@ -159409,7 +159410,7 @@ Provides: tex-slideshow = %{tl_version} License: Copyright only Summary: Generate slideshow with MetaPost Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159424,7 +159425,7 @@ there are disadvantages too). %package slideshow-doc Summary: Documentation for slideshow Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-slideshow-doc BuildArch: noarch AutoReqProv: No @@ -159437,7 +159438,7 @@ Provides: tex-splines = %{tl_version} License: LPPL 1.3 Summary: MetaPost macros for drawing cubic spline interpolants Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159454,7 +159455,7 @@ y=f(x), which is either periodic or relaxed. %package splines-doc Summary: Documentation for splines Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-splines-doc BuildArch: noarch AutoReqProv: No @@ -159467,7 +159468,7 @@ Provides: tex-suanpan = %{tl_version} License: LPPL Summary: MetaPost macros for drawing Chinese and Japanese abaci Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159481,7 +159482,7 @@ drawing Chinese and Japanese abaci, TUGboat (volume 30, number %package suanpan-doc Summary: Documentation for suanpan Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-suanpan-doc BuildArch: noarch AutoReqProv: No @@ -159494,7 +159495,7 @@ Provides: tex-textpath = %{tl_version} License: LPPL Summary: Setting text along a path with MetaPost Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159510,7 +159511,7 @@ and allowing for 8-bit input (accented characters). %package textpath-doc Summary: Documentation for textpath Version: svn15878.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textpath-doc BuildArch: noarch AutoReqProv: No @@ -159523,7 +159524,7 @@ Provides: tex-threeddice = %{tl_version} License: LPPL Summary: Create images of dice with one, two, or three faces showing, using MetaPost Version: svn20675.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159538,7 +159539,7 @@ the guidance in the documentation. %package threeddice-doc Summary: Documentation for threeddice Version: svn20675.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-threeddice-doc BuildArch: noarch AutoReqProv: No @@ -159549,7 +159550,7 @@ Documentation for threeddice %package collection-music Summary: Music packages Version: svn40561 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -159585,7 +159586,7 @@ Provides: tex-figbas = %{tl_version} License: LPPL Summary: Mini-fonts for figured-bass notation in music Version: svn28943.1.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159608,7 +159609,7 @@ Palatino/Palladio, respectively. %package figbas-doc Summary: Documentation for figbas Version: svn28943.1.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-figbas-doc BuildArch: noarch AutoReqProv: No @@ -159621,7 +159622,7 @@ Provides: tex-gchords = %{tl_version} License: GPL+ Summary: Typeset guitar chords Version: svn29803.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159638,7 +159639,7 @@ creates LaTeX files that use gchords.sty. %package gchords-doc Summary: Documentation for gchords Version: svn29803.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gchords-doc BuildArch: noarch AutoReqProv: No @@ -159651,7 +159652,7 @@ Provides: tex-gtrcrd = %{tl_version} License: LPPL 1.3 Summary: Add chords to lyrics Version: svn32484.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159669,7 +159670,7 @@ start of the lyric. %package gtrcrd-doc Summary: Documentation for gtrcrd Version: svn32484.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gtrcrd-doc BuildArch: noarch AutoReqProv: No @@ -159682,7 +159683,7 @@ Provides: tex-guitar = %{tl_version} License: LPPL 1.3 Summary: Guitar chords and song texts Version: svn32258.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159701,7 +159702,7 @@ Peeters. %package guitar-doc Summary: Documentation for guitar Version: svn32258.1.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-guitar-doc BuildArch: noarch AutoReqProv: No @@ -159714,7 +159715,7 @@ Provides: tex-guitarchordschemes = %{tl_version} License: LPPL 1.3 Summary: Guitar Chord and Scale Tablatures Version: svn35179.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159733,7 +159734,7 @@ output. The package's drawing is done with the help of TikZ. %package guitarchordschemes-doc Summary: Documentation for guitarchordschemes Version: svn35179.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-guitarchordschemes-doc BuildArch: noarch AutoReqProv: No @@ -159746,7 +159747,7 @@ Provides: tex-harmony = %{tl_version} License: LPPL Summary: Typeset harmony symbols, etc., for musicology Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159763,7 +159764,7 @@ lcirclew10 and the font musix13 from musixtex. %package harmony-doc Summary: Documentation for harmony Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-harmony-doc BuildArch: noarch AutoReqProv: No @@ -159776,7 +159777,7 @@ Provides: tex-leadsheets = %{tl_version} License: LPPL 1.3 Summary: Typesetting leadsheets and songbooks Version: svn39564 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159805,7 +159806,7 @@ chords. %package leadsheets-doc Summary: Documentation for leadsheets Version: svn39564 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-leadsheets-doc BuildArch: noarch AutoReqProv: No @@ -159818,7 +159819,7 @@ Provides: tex-lilyglyphs = %{tl_version} License: LPPL 1.3 Summary: Access lilypond fragments and glyphs, in LaTeX Version: svn33164.0.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159847,7 +159848,7 @@ as a result must be compiled with LuaLaTeX or XeLaTeX. %package lilyglyphs-doc Summary: Documentation for lilyglyphs Version: svn33164.0.2.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lilyglyphs-doc BuildArch: noarch AutoReqProv: No @@ -159860,7 +159861,7 @@ Summary: Binaries for lilyglyphs Version: svn31696.0 Requires: texlive-base Requires: texlive-lilyglyphs -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description lilyglyphs-bin @@ -159871,7 +159872,7 @@ Provides: tex-m-tx = %{tl_version} License: GPL+ Summary: A preprocessor for pmx Version: svn40961 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159889,7 +159890,7 @@ Tx continues in use by those who prefer its language. %package m-tx-doc Summary: Documentation for m-tx Version: svn40961 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-m-tx-doc BuildArch: noarch AutoReqProv: No @@ -159902,7 +159903,7 @@ Summary: Binaries for m-tx Version: svn40961 Requires: texlive-base Requires: texlive-m-tx -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description m-tx-bin @@ -159913,7 +159914,7 @@ Provides: tex-musixguit = %{tl_version} License: LPPL 1.3 Summary: Easy notation for guitar music, in MusixTeX Version: svn21649.1.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -159931,7 +159932,7 @@ especially for simplifying guitar notation with MusixTeX. %package musixguit-doc Summary: Documentation for musixguit Version: svn21649.1.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-musixguit-doc BuildArch: noarch AutoReqProv: No @@ -159944,7 +159945,7 @@ Provides: tex-musixtex = %{tl_version} License: GPLv2+ Summary: Sophisticated music typesetting Version: svn41352 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160018,7 +160019,7 @@ MusixTeX macros.. %package musixtex-doc Summary: Documentation for musixtex Version: svn41352 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-musixtex-doc BuildArch: noarch AutoReqProv: No @@ -160031,7 +160032,7 @@ Summary: Binaries for musixtex Version: svn37026.0 Requires: texlive-base Requires: texlive-musixtex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description musixtex-bin @@ -160045,7 +160046,7 @@ Obsoletes: texlive-musixtex-fnts < 2016 License: GPL+ Summary: Fonts used by MusixTeX Version: svn37762.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160229,7 +160230,7 @@ Provides: tex-musixtex-fonts-doc = %{tl_version} Provides: texlive-musixtex-fnts-doc = %{tl_version} Obsoletes: texlive-musixtex-fnts-doc < 2016 Version: svn37762.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -160241,7 +160242,7 @@ Provides: tex-musixtnt = %{tl_version} License: GPLv2+ Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands Version: svn40307 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160268,7 +160269,7 @@ using \TransformNotes. %package musixtnt-doc Summary: Documentation for musixtnt Version: svn40307 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-musixtnt-doc BuildArch: noarch AutoReqProv: No @@ -160282,7 +160283,7 @@ Summary: Binaries for musixtnt Version: svn40473 Requires: texlive-base Requires: texlive-musixtnt -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description musixtnt-bin @@ -160293,7 +160294,7 @@ Provides: tex-piano = %{tl_version} License: LPPL Summary: Typeset a basic 2-octave piano diagram Version: svn21574.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160311,7 +160312,7 @@ is included in the README file.) %package piano-doc Summary: Documentation for piano Version: svn21574.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-piano-doc BuildArch: noarch AutoReqProv: No @@ -160324,7 +160325,7 @@ Provides: tex-pmx = %{tl_version} License: GPLv2+ Summary: Preprocessor for MusiXTeX Version: svn40960 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160344,7 +160345,7 @@ enhanced TeX system. %package pmx-doc Summary: Documentation for pmx Version: svn40960 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pmx-doc BuildArch: noarch AutoReqProv: No @@ -160357,7 +160358,7 @@ Summary: Binaries for pmx Version: svn41091 Requires: texlive-base Requires: texlive-pmx -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description pmx-bin @@ -160368,7 +160369,7 @@ Provides: tex-pmxchords = %{tl_version} License: GPLv2+ Summary: Produce chord information to go with pmx output Version: svn39249 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160387,7 +160388,7 @@ requirements. %package pmxchords-doc Summary: Documentation for pmxchords Version: svn39249 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pmxchords-doc BuildArch: noarch AutoReqProv: No @@ -160400,7 +160401,7 @@ Summary: Binaries for pmxchords Version: svn32405.0 Requires: texlive-base Requires: texlive-pmxchords -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pmxchords-bin @@ -160411,7 +160412,7 @@ Provides: tex-songbook = %{tl_version} License: LGPLv2+ Summary: Package for typesetting song lyrics and chord books Version: svn18136.4.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160437,7 +160438,7 @@ as songs in multiple languages. %package songbook-doc Summary: Documentation for songbook Version: svn18136.4.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-songbook-doc BuildArch: noarch AutoReqProv: No @@ -160450,7 +160451,7 @@ Provides: tex-songs = %{tl_version} License: GPL+ Summary: Produce song books for church or fellowship Version: svn30005.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160473,7 +160474,7 @@ set of example documents is provided. %package songs-doc Summary: Documentation for songs Version: svn30005.2.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-songs-doc BuildArch: noarch AutoReqProv: No @@ -160486,7 +160487,7 @@ Provides: tex-xpiano = %{tl_version} License: LPPL 1.3 Summary: An extension of the piano package Version: svn37604.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160512,7 +160513,7 @@ others. %package xpiano-doc Summary: Documentation for xpiano Version: svn37604.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xpiano-doc BuildArch: noarch AutoReqProv: No @@ -160523,7 +160524,7 @@ Documentation for xpiano %package collection-omega Summary: Omega packages Version: svn30388.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -160545,7 +160546,7 @@ Provides: tex-mxedruli = %{tl_version} License: LPPL Summary: A pair of fonts for different Georgian alphabets Version: svn30021.3.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160575,7 +160576,7 @@ cover the Mxedruli and the Xucuri alphabets. %package mxedruli-doc Summary: Documentation for mxedruli Version: svn30021.3.3c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mxedruli-doc BuildArch: noarch AutoReqProv: No @@ -160588,7 +160589,7 @@ Provides: tex-omegaware = %{tl_version} License: LPPL Summary: omegaware package Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160603,7 +160604,7 @@ Summary: Binaries for omegaware Version: svn40750 Requires: texlive-base Requires: texlive-omegaware -Release: %{tl_release}.5 +Release: %{tl_release}.6 Requires: texlive-kpathsea-lib%{?_isa} = %{epoch}:%{tl_version} %description omegaware-bin @@ -160614,7 +160615,7 @@ Provides: tex-otibet = %{tl_version} License: LPPL Summary: otibet package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160631,7 +160632,7 @@ otibet package %package otibet-doc Summary: Documentation for otibet Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-otibet-doc BuildArch: noarch AutoReqProv: No @@ -160642,7 +160643,7 @@ Documentation for otibet %package collection-plainextra Summary: Plain TeX packages Version: svn37156.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -160679,7 +160680,7 @@ Provides: tex-epsf-dvipdfmx = %{tl_version} License: Public Domain Summary: Plain TeX file for using epsf.tex with (x)dvipdfmx Version: svn35575.2014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160696,7 +160697,7 @@ bounding box. %package epsf-dvipdfmx-doc Summary: Documentation for epsf-dvipdfmx Version: svn35575.2014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-epsf-dvipdfmx-doc BuildArch: noarch AutoReqProv: No @@ -160709,7 +160710,7 @@ Provides: tex-figflow = %{tl_version} License: Copyright only Summary: Flow text around a figure Version: svn21462.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160728,7 +160729,7 @@ in this area. %package figflow-doc Summary: Documentation for figflow Version: svn21462.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-figflow-doc BuildArch: noarch AutoReqProv: No @@ -160741,7 +160742,7 @@ Provides: tex-fixpdfmag = %{tl_version} License: Public Domain Summary: Fix magnification in PDFTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160759,7 +160760,7 @@ Provides: tex-font-change = %{tl_version} License: CC-BY-SA Summary: Macros to change text and mathematics fonts in plain TeX Version: svn40403 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160827,7 +160828,7 @@ distributions. %package font-change-doc Summary: Documentation for font-change Version: svn40403 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-font-change-doc BuildArch: noarch AutoReqProv: No @@ -160840,7 +160841,7 @@ Provides: tex-fontch = %{tl_version} License: LPPL Summary: Changing fonts, sizes and encodings in Plain TeX Version: svn17859.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160870,7 +160871,7 @@ fonts. %package fontch-doc Summary: Documentation for fontch Version: svn17859.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontch-doc BuildArch: noarch AutoReqProv: No @@ -160883,7 +160884,7 @@ Provides: tex-getoptk = %{tl_version} License: CeCILL-B Summary: Define macros with sophisticated options Version: svn23567.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160901,7 +160902,7 @@ with Plain TeX; its syntax derives from that of the \hbox, %package getoptk-doc Summary: Documentation for getoptk Version: svn23567.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-getoptk-doc BuildArch: noarch AutoReqProv: No @@ -160914,7 +160915,7 @@ Provides: tex-gfnotation = %{tl_version} License: GPLv3+ Summary: Typeset Gottlob Frege's notation in plain TeX Version: svn37156.2.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160930,7 +160931,7 @@ volumes). The output styles of both books are supported. %package gfnotation-doc Summary: Documentation for gfnotation Version: svn37156.2.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gfnotation-doc BuildArch: noarch AutoReqProv: No @@ -160943,7 +160944,7 @@ Provides: tex-graphics-pln = %{tl_version} License: LPPL Summary: LaTeX-style graphics for Plain TeX users Version: svn16917.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160966,7 +160967,7 @@ provides the LaTeX picture mode to Plain TeX users. %package graphics-pln-doc Summary: Documentation for graphics-pln Version: svn16917.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-graphics-pln-doc BuildArch: noarch AutoReqProv: No @@ -160979,7 +160980,7 @@ Provides: tex-hyplain = %{tl_version} License: Public Domain Summary: Basic support for multiple languages in Plain TeX Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -160996,7 +160997,7 @@ between them while typesetting. %package hyplain-doc Summary: Documentation for hyplain Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hyplain-doc BuildArch: noarch AutoReqProv: No @@ -161009,7 +161010,7 @@ Provides: tex-js-misc = %{tl_version} License: Public Domain Summary: Miscellaneous macros from Joachim Schrod Version: svn16211.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161029,7 +161030,7 @@ TeX document; and cassette.tex for setting cassette labels. %package js-misc-doc Summary: Documentation for js-misc Version: svn16211.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-js-misc-doc BuildArch: noarch AutoReqProv: No @@ -161042,7 +161043,7 @@ Provides: tex-mkpattern = %{tl_version} License: LPPL Summary: A utility for making hyphenation patterns Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161060,7 +161061,7 @@ the creation of the Galician patterns. %package mkpattern-doc Summary: Documentation for mkpattern Version: svn15878.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mkpattern-doc BuildArch: noarch AutoReqProv: No @@ -161073,7 +161074,7 @@ Provides: tex-newsletr = %{tl_version} License: Newsletr Summary: Macros for making newsletters with Plain TeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161086,7 +161087,7 @@ newsletr package %package newsletr-doc Summary: Documentation for newsletr Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-newsletr-doc BuildArch: noarch AutoReqProv: No @@ -161099,7 +161100,7 @@ Provides: tex-pitex = %{tl_version} License: LPPL Summary: Documentation macros Version: svn24731.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161116,7 +161117,7 @@ notice. %package pitex-doc Summary: Documentation for pitex Version: svn24731.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pitex-doc BuildArch: noarch AutoReqProv: No @@ -161129,7 +161130,7 @@ Provides: tex-placeins-plain = %{tl_version} License: Public Domain Summary: Insertions that keep their place Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161150,7 +161151,7 @@ Provides: tex-plipsum = %{tl_version} License: LPPL Summary: 'Lorem ipsum' for Plain TeX developers Version: svn30353.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161166,7 +161167,7 @@ ligatures of the font in use. %package plipsum-doc Summary: Documentation for plipsum Version: svn30353.4.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plipsum-doc BuildArch: noarch AutoReqProv: No @@ -161179,7 +161180,7 @@ Provides: tex-plnfss = %{tl_version} License: LPPL Summary: Font selection for Plain TeX Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161200,7 +161201,7 @@ information. %package plnfss-doc Summary: Documentation for plnfss Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plnfss-doc BuildArch: noarch AutoReqProv: No @@ -161213,7 +161214,7 @@ Provides: tex-plstmary = %{tl_version} License: Public Domain Summary: St. Mary's Road font support for plain TeX Version: svn31088.0.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161227,7 +161228,7 @@ St Mary's Road fonts, in a Plain TeX environment. %package plstmary-doc Summary: Documentation for plstmary Version: svn31088.0.5c -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-plstmary-doc BuildArch: noarch AutoReqProv: No @@ -161240,7 +161241,7 @@ Provides: tex-present = %{tl_version} License: LPPL Summary: Presentations with Plain TeX Version: svn25953.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161260,7 +161261,7 @@ macros to their specific needs. %package present-doc Summary: Documentation for present Version: svn25953.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-present-doc BuildArch: noarch AutoReqProv: No @@ -161273,7 +161274,7 @@ Provides: tex-resumemac = %{tl_version} License: Public Domain Summary: Plain TeX macros for resumes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161287,7 +161288,7 @@ an example of use. %package resumemac-doc Summary: Documentation for resumemac Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-resumemac-doc BuildArch: noarch AutoReqProv: No @@ -161300,7 +161301,7 @@ Provides: tex-texinfo = %{tl_version} License: GPL+ Summary: Texinfo documentation system Version: svn41437 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161337,7 +161338,7 @@ Provides: tex-timetable = %{tl_version} License: LPPL Summary: Generate timetables Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161354,7 +161355,7 @@ Provides: tex-treetex = %{tl_version} License: Public Domain Summary: Draw trees Version: svn28176.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161371,7 +161372,7 @@ is discussed in an accompanying paper (written using LaTeX %package treetex-doc Summary: Documentation for treetex Version: svn28176.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-treetex-doc BuildArch: noarch AutoReqProv: No @@ -161384,7 +161385,7 @@ Provides: tex-varisize = %{tl_version} License: Public Domain Summary: Change font size in Plain TeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161408,7 +161409,7 @@ other files, so that there's always a "way back". %package varisize-doc Summary: Documentation for varisize Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-varisize-doc BuildArch: noarch AutoReqProv: No @@ -161419,7 +161420,7 @@ Documentation for varisize %package xii-doc Summary: Documentation for xii Version: svn31683.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xii-doc BuildArch: noarch AutoReqProv: No @@ -161430,7 +161431,7 @@ Documentation for xii %package collection-pstricks Summary: PSTricks Version: svn40724 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -161538,7 +161539,7 @@ Provides: tex-dsptricks = %{tl_version} License: LPPL Summary: Macros for Digital Signal Processing plots Version: svn34724.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161568,7 +161569,7 @@ diagrams. %package dsptricks-doc Summary: Documentation for dsptricks Version: svn34724.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dsptricks-doc BuildArch: noarch AutoReqProv: No @@ -161581,7 +161582,7 @@ Provides: tex-makeplot = %{tl_version} License: LPPL Summary: Easy plots from Matlab in LaTeX Version: svn15878.1.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161602,7 +161603,7 @@ Matlab output files. %package makeplot-doc Summary: Documentation for makeplot Version: svn15878.1.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-makeplot-doc BuildArch: noarch AutoReqProv: No @@ -161615,7 +161616,7 @@ Provides: tex-pdftricks = %{tl_version} License: GPL+ Summary: Support for pstricks in pdfTeX Version: svn15878.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161641,7 +161642,7 @@ documentation. %package pdftricks-doc Summary: Documentation for pdftricks Version: svn15878.1.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdftricks-doc BuildArch: noarch AutoReqProv: No @@ -161654,7 +161655,7 @@ Provides: tex-pdftricks2 = %{tl_version} License: GPLv2+ Summary: Use pstricks in pdfTeX Version: svn31016.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161674,7 +161675,7 @@ inspired by pdftricks %package pdftricks2-doc Summary: Documentation for pdftricks2 Version: svn31016.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pdftricks2-doc BuildArch: noarch AutoReqProv: No @@ -161687,7 +161688,7 @@ Provides: tex-pedigree-perl = %{tl_version} License: GPLv2+ Summary: Generate TeX pedigree files from CSV files Version: svn31990.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161704,7 +161705,7 @@ Russian languages are supported). %package pedigree-perl-doc Summary: Documentation for pedigree-perl Version: svn31990.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pedigree-perl-doc BuildArch: noarch AutoReqProv: No @@ -161717,7 +161718,7 @@ Summary: Binaries for pedigree-perl Version: svn25962.0 Requires: texlive-base Requires: texlive-pedigree-perl -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pedigree-perl-bin @@ -161728,7 +161729,7 @@ Provides: tex-psbao = %{tl_version} License: LPPL Summary: Draw Bao diagrams Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161747,7 +161748,7 @@ development of psgo, and uses PSTricks to draw the diagrams. %package psbao-doc Summary: Documentation for psbao Version: svn15878.0.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psbao-doc BuildArch: noarch AutoReqProv: No @@ -161760,7 +161761,7 @@ Provides: tex-pst-2dplot = %{tl_version} License: LPPL Summary: A PSTricks package for drawing 2D curves Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161775,7 +161776,7 @@ environment with commands similar to MATLAB for plotting. %package pst-2dplot-doc Summary: Documentation for pst-2dplot Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-2dplot-doc BuildArch: noarch AutoReqProv: No @@ -161788,7 +161789,7 @@ Provides: tex-pst-3d = %{tl_version} License: LPPL Summary: A PSTricks package for tilting and other pseudo-3D tricks Version: svn17257.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161805,7 +161806,7 @@ or graphical objects. %package pst-3d-doc Summary: Documentation for pst-3d Version: svn17257.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-3d-doc BuildArch: noarch AutoReqProv: No @@ -161818,7 +161819,7 @@ Provides: tex-pst-3dplot = %{tl_version} License: LPPL Summary: Draw 3D objects in parallel projection, using PSTricks Version: svn35042.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161840,7 +161841,7 @@ graphing within TeX/LaTeX, without the need for external tools. %package pst-3dplot-doc Summary: Documentation for pst-3dplot Version: svn35042.2.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-3dplot-doc BuildArch: noarch AutoReqProv: No @@ -161853,7 +161854,7 @@ Provides: tex-pst-abspos = %{tl_version} License: LPPL Summary: Put objects at an absolute position Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161870,7 +161871,7 @@ even a relative) position on the page. %package pst-abspos-doc Summary: Documentation for pst-abspos Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-abspos-doc BuildArch: noarch AutoReqProv: No @@ -161883,7 +161884,7 @@ Provides: tex-pst-am = %{tl_version} License: LPPL Summary: Simulation of modulation and demodulation Version: svn19591.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161905,7 +161906,7 @@ recovery and signal demodulation. %package pst-am-doc Summary: Documentation for pst-am Version: svn19591.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-am-doc BuildArch: noarch AutoReqProv: No @@ -161918,7 +161919,7 @@ Provides: tex-pst-asr = %{tl_version} License: LPPL Summary: Typeset autosegmental representations for linguists Version: svn22138.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161935,7 +161936,7 @@ representations. It uses the PStricks, and xkeyval packages. %package pst-asr-doc Summary: Documentation for pst-asr Version: svn22138.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-asr-doc BuildArch: noarch AutoReqProv: No @@ -161948,7 +161949,7 @@ Provides: tex-pst-bar = %{tl_version} License: LPPL Summary: Produces bar charts using pstricks Version: svn18734.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -161967,7 +161968,7 @@ the standard pstricks distribution. %package pst-bar-doc Summary: Documentation for pst-bar Version: svn18734.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-bar-doc BuildArch: noarch AutoReqProv: No @@ -161980,7 +161981,7 @@ Provides: tex-pst-barcode = %{tl_version} License: LPPL Summary: Print barcodes using PostScript Version: svn40703 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162000,7 +162001,7 @@ pst-pdf. %package pst-barcode-doc Summary: Documentation for pst-barcode Version: svn40703 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-barcode-doc BuildArch: noarch AutoReqProv: No @@ -162013,7 +162014,7 @@ Provides: tex-pst-bezier = %{tl_version} License: LPPL Summary: Draw Bezier curves Version: svn15878.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162030,7 +162031,7 @@ control points of the curve. %package pst-bezier-doc Summary: Documentation for pst-bezier Version: svn15878.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-bezier-doc BuildArch: noarch AutoReqProv: No @@ -162043,7 +162044,7 @@ Provides: tex-pst-blur = %{tl_version} License: LPPL Summary: PSTricks package for "blurred" shadows Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162060,7 +162061,7 @@ PSTricks. %package pst-blur-doc Summary: Documentation for pst-blur Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-blur-doc BuildArch: noarch AutoReqProv: No @@ -162073,7 +162074,7 @@ Provides: tex-pst-bspline = %{tl_version} License: LPPL Summary: Draw cubic Bspline curves and interpolations Version: svn40685 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162091,7 +162092,7 @@ output is created using PStricks. %package pst-bspline-doc Summary: Documentation for pst-bspline Version: svn40685 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-bspline-doc BuildArch: noarch AutoReqProv: No @@ -162104,7 +162105,7 @@ Provides: tex-pst-calendar = %{tl_version} License: LPPL Summary: Plot calendars in "fancy" ways Version: svn15878.0.47 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162127,7 +162128,7 @@ is not available in English. %package pst-calendar-doc Summary: Documentation for pst-calendar Version: svn15878.0.47 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-calendar-doc BuildArch: noarch AutoReqProv: No @@ -162140,7 +162141,7 @@ Provides: tex-pst-circ = %{tl_version} License: LPPL Summary: PSTricks package for drawing electric circuits Version: svn36865.2.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162161,7 +162162,7 @@ expressing a circuit. %package pst-circ-doc Summary: Documentation for pst-circ Version: svn36865.2.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-circ-doc BuildArch: noarch AutoReqProv: No @@ -162174,7 +162175,7 @@ Provides: tex-pst-coil = %{tl_version} License: LPPL Summary: A PSTricks package for coils, etc Version: svn37377.1.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162190,7 +162191,7 @@ for coil and zigzag node connections. %package pst-coil-doc Summary: Documentation for pst-coil Version: svn37377.1.07 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-coil-doc BuildArch: noarch AutoReqProv: No @@ -162203,7 +162204,7 @@ Provides: tex-pst-cox = %{tl_version} License: LGPLv2+ Summary: Drawing regular complex polytopes with PSTricks Version: svn15878.0.98_Beta -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162234,7 +162235,7 @@ is devoted to the infinite series. %package pst-cox-doc Summary: Documentation for pst-cox Version: svn15878.0.98_Beta -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-cox-doc BuildArch: noarch AutoReqProv: No @@ -162247,7 +162248,7 @@ Provides: tex-pst-dbicons = %{tl_version} License: LPPL Summary: Support for drawing ER diagrams Version: svn17556.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162267,7 +162268,7 @@ exploiting the full functionality of the package). %package pst-dbicons-doc Summary: Documentation for pst-dbicons Version: svn17556.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-dbicons-doc BuildArch: noarch AutoReqProv: No @@ -162280,7 +162281,7 @@ Provides: tex-pst-diffraction = %{tl_version} License: LPPL Summary: Print diffraction patterns from various apertures Version: svn15878.2.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162306,7 +162307,7 @@ calculated by the package). %package pst-diffraction-doc Summary: Documentation for pst-diffraction Version: svn15878.2.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-diffraction-doc BuildArch: noarch AutoReqProv: No @@ -162319,7 +162320,7 @@ Provides: tex-pst-electricfield = %{tl_version} License: LPPL Summary: Draw electric field and equipotential lines with PStricks Version: svn29803.0.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162337,7 +162338,7 @@ charges which can be placed in a cartesian coordinate system by %package pst-electricfield-doc Summary: Documentation for pst-electricfield Version: svn29803.0.14 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-electricfield-doc BuildArch: noarch AutoReqProv: No @@ -162350,7 +162351,7 @@ Provides: tex-pst-eps = %{tl_version} License: LPPL Summary: Create EPS files from PSTricks figures Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162367,7 +162368,7 @@ files, which can then be read into a document in the usual way. %package pst-eps-doc Summary: Documentation for pst-eps Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-eps-doc BuildArch: noarch AutoReqProv: No @@ -162380,7 +162381,7 @@ Provides: tex-pst-eucl = %{tl_version} License: LPPL Summary: Euclidian geometry with pstricks Version: svn38678 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162401,7 +162402,7 @@ limited to points which controlled the figure. %package pst-eucl-doc Summary: Documentation for pst-eucl Version: svn38678 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-eucl-doc BuildArch: noarch AutoReqProv: No @@ -162414,7 +162415,7 @@ Provides: tex-pst-exa = %{tl_version} License: LPPL Summary: Typeset PSTricks examples, with code Version: svn35248.0.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162435,7 +162436,7 @@ other. %package pst-exa-doc Summary: Documentation for pst-exa Version: svn35248.0.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-exa-doc BuildArch: noarch AutoReqProv: No @@ -162448,7 +162449,7 @@ Provides: tex-pst-fill = %{tl_version} License: LPPL Summary: Fill or tile areas with PSTricks Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162464,7 +162465,7 @@ areas or characters. %package pst-fill-doc Summary: Documentation for pst-fill Version: svn15878.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-fill-doc BuildArch: noarch AutoReqProv: No @@ -162477,7 +162478,7 @@ Provides: tex-pst-fit = %{tl_version} License: LPPL Summary: Macros for curve fitting Version: svn28155.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162495,7 +162496,7 @@ Recip; Kings Law data; Gaussian; and 4th order Polynomial %package pst-fit-doc Summary: Documentation for pst-fit Version: svn28155.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-fit-doc BuildArch: noarch AutoReqProv: No @@ -162508,7 +162509,7 @@ Provides: tex-pst-fr3d = %{tl_version} License: LPPL Summary: Draw 3-dimensional framed boxes using PSTricks Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162524,7 +162525,7 @@ useful for drawing 3d-seeming buttons. %package pst-fr3d-doc Summary: Documentation for pst-fr3d Version: svn15878.1.10 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-fr3d-doc BuildArch: noarch AutoReqProv: No @@ -162537,7 +162538,7 @@ Provides: tex-pst-fractal = %{tl_version} License: LPPL Summary: Draw fractal sets using PSTricks Version: svn16958.0.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162557,7 +162558,7 @@ part of the xkeyval distribution. %package pst-fractal-doc Summary: Documentation for pst-fractal Version: svn16958.0.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-fractal-doc BuildArch: noarch AutoReqProv: No @@ -162570,7 +162571,7 @@ Provides: tex-pst-fun = %{tl_version} License: LPPL Summary: Draw "funny" objects with PSTricks Version: svn17909.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162591,7 +162592,7 @@ be used for fun...) %package pst-fun-doc Summary: Documentation for pst-fun Version: svn17909.0.04 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-fun-doc BuildArch: noarch AutoReqProv: No @@ -162604,7 +162605,7 @@ Provides: tex-pst-func = %{tl_version} License: LPPL Summary: PSTricks package for plotting mathematical functions Version: svn40824 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162637,7 +162638,7 @@ volumes of rotation about the X-axis, as well. %package pst-func-doc Summary: Documentation for pst-func Version: svn40824 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-func-doc BuildArch: noarch AutoReqProv: No @@ -162650,7 +162651,7 @@ Provides: tex-pst-gantt = %{tl_version} License: LPPL Summary: Draw GANTT charts with pstricks Version: svn35832.0.22a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162667,7 +162668,7 @@ requires the pstricks apparatus, of course. %package pst-gantt-doc Summary: Documentation for pst-gantt Version: svn35832.0.22a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-gantt-doc BuildArch: noarch AutoReqProv: No @@ -162680,7 +162681,7 @@ Provides: tex-pst-geo = %{tl_version} License: LPPL Summary: Geographical Projections Version: svn17751.2.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162765,7 +162766,7 @@ for the user to do the decompression, if the need should arise. %package pst-geo-doc Summary: Documentation for pst-geo Version: svn17751.2.03 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-geo-doc BuildArch: noarch AutoReqProv: No @@ -162778,7 +162779,7 @@ Provides: tex-pst-ghsb = %{tl_version} License: LPPL Summary: pst-ghsb package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162792,7 +162793,7 @@ pst-ghsb package %package pst-ghsb-doc Summary: Documentation for pst-ghsb Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-ghsb-doc BuildArch: noarch AutoReqProv: No @@ -162805,7 +162806,7 @@ Provides: tex-pst-gr3d = %{tl_version} License: LPPL Summary: Three dimensional grids with PSTricks Version: svn15878.1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162822,7 +162823,7 @@ options for its appearance. %package pst-gr3d-doc Summary: Documentation for pst-gr3d Version: svn15878.1.34 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-gr3d-doc BuildArch: noarch AutoReqProv: No @@ -162835,7 +162836,7 @@ Provides: tex-pst-grad = %{tl_version} License: LPPL Summary: Filling with colour gradients, using PStricks Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162852,7 +162853,7 @@ mechanisms are to be found in package pst-slpe. %package pst-grad-doc Summary: Documentation for pst-grad Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-grad-doc BuildArch: noarch AutoReqProv: No @@ -162865,7 +162866,7 @@ Provides: tex-pst-graphicx = %{tl_version} License: LPPL Summary: A pstricks-compatible graphicx for use with Plain TeX Version: svn21717.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162880,7 +162881,7 @@ with pstricks' use of xkeyval. %package pst-graphicx-doc Summary: Documentation for pst-graphicx Version: svn21717.0.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-graphicx-doc BuildArch: noarch AutoReqProv: No @@ -162893,7 +162894,7 @@ Provides: tex-pst-infixplot = %{tl_version} License: LPPL Summary: Using pstricks plotting capacities with infix expressions rather than RPN Version: svn15878.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162914,7 +162915,7 @@ mathematical expressions to PostScript syntax. %package pst-infixplot-doc Summary: Documentation for pst-infixplot Version: svn15878.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-infixplot-doc BuildArch: noarch AutoReqProv: No @@ -162927,7 +162928,7 @@ Provides: tex-pst-intersect = %{tl_version} License: LPPL Summary: Compute intersections of arbitrary curves Version: svn33210.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162947,7 +162948,7 @@ algorithm. %package pst-intersect-doc Summary: Documentation for pst-intersect Version: svn33210.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-intersect-doc BuildArch: noarch AutoReqProv: No @@ -162960,7 +162961,7 @@ Provides: tex-pst-jtree = %{tl_version} License: LPPL 1.3 Summary: Typeset complex trees for linguists Version: svn20946.2.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -162977,7 +162978,7 @@ for, the jftree package, which is no longer available. %package pst-jtree-doc Summary: Documentation for pst-jtree Version: svn20946.2.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-jtree-doc BuildArch: noarch AutoReqProv: No @@ -162990,7 +162991,7 @@ Provides: tex-pst-knot = %{tl_version} License: LPPL Summary: PSTricks package for displaying knots Version: svn16033.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163006,7 +163007,7 @@ the standard graphics controls one expects. %package pst-knot-doc Summary: Documentation for pst-knot Version: svn16033.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-knot-doc BuildArch: noarch AutoReqProv: No @@ -163019,7 +163020,7 @@ Provides: tex-pst-labo = %{tl_version} License: LPPL Summary: Draw objects for Chemistry laboratories Version: svn39077 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163038,7 +163039,7 @@ source code, making it an easy read. %package pst-labo-doc Summary: Documentation for pst-labo Version: svn39077 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-labo-doc BuildArch: noarch AutoReqProv: No @@ -163051,7 +163052,7 @@ Provides: tex-pst-layout = %{tl_version} License: LPPL Summary: Page layout macros based on PStricks packages Version: svn29803.95 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163070,7 +163071,7 @@ package pst-node and some other pstricks-related material. %package pst-layout-doc Summary: Documentation for pst-layout Version: svn29803.95 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-layout-doc BuildArch: noarch AutoReqProv: No @@ -163083,7 +163084,7 @@ Provides: tex-pst-lens = %{tl_version} License: LPPL Summary: Lenses with PSTricks Version: svn15878.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163100,7 +163101,7 @@ remarkable range of effects. %package pst-lens-doc Summary: Documentation for pst-lens Version: svn15878.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-lens-doc BuildArch: noarch AutoReqProv: No @@ -163113,7 +163114,7 @@ Provides: tex-pst-light3d = %{tl_version} License: LPPL Summary: Three dimensional lighting effects (PSTricks) Version: svn15878.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163130,7 +163131,7 @@ characters and PSTricks graphics, like lines, curves, plots, %package pst-light3d-doc Summary: Documentation for pst-light3d Version: svn15878.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-light3d-doc BuildArch: noarch AutoReqProv: No @@ -163143,7 +163144,7 @@ Provides: tex-pst-magneticfield = %{tl_version} License: LPPL Summary: Plotting a magnetic field with PSTricks Version: svn18922.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163164,7 +163165,7 @@ the documentation of the package. %package pst-magneticfield-doc Summary: Documentation for pst-magneticfield Version: svn18922.1.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-magneticfield-doc BuildArch: noarch AutoReqProv: No @@ -163177,7 +163178,7 @@ Provides: tex-pst-math = %{tl_version} License: LPPL Summary: Enhancement of PostScript math operators to use with pstricks Version: svn34786.0.63 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163201,7 +163202,7 @@ integration and a solver of linear equation systems. %package pst-math-doc Summary: Documentation for pst-math Version: svn34786.0.63 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-math-doc BuildArch: noarch AutoReqProv: No @@ -163214,7 +163215,7 @@ Provides: tex-pst-mirror = %{tl_version} License: LPPL Summary: Images on a spherical mirror Version: svn32997.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163231,7 +163232,7 @@ mirror. %package pst-mirror-doc Summary: Documentation for pst-mirror Version: svn32997.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-mirror-doc BuildArch: noarch AutoReqProv: No @@ -163244,7 +163245,7 @@ Provides: tex-pst-node = %{tl_version} License: LPPL Summary: Nodes and node connections in pstricks Version: svn40743 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163268,7 +163269,7 @@ extension to PSTricks. %package pst-node-doc Summary: Documentation for pst-node Version: svn40743 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-node-doc BuildArch: noarch AutoReqProv: No @@ -163281,7 +163282,7 @@ Provides: tex-pst-ob3d = %{tl_version} License: LPPL Summary: Three dimensional objects using PSTricks Version: svn15878.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163299,7 +163300,7 @@ kind of cubes) are defined. %package pst-ob3d-doc Summary: Documentation for pst-ob3d Version: svn15878.0.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-ob3d-doc BuildArch: noarch AutoReqProv: No @@ -163312,7 +163313,7 @@ Provides: tex-pst-ode = %{tl_version} License: LPPL Summary: Solving initial value problems for sets of Ordinary Differential Equations Version: svn35418.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163335,7 +163336,7 @@ state vectors can be written as a table to a text file. %package pst-ode-doc Summary: Documentation for pst-ode Version: svn35418.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-ode-doc BuildArch: noarch AutoReqProv: No @@ -163348,7 +163349,7 @@ Provides: tex-pst-optexp = %{tl_version} License: LPPL 1.3 Summary: Drawing optical experimental setups Version: svn35673.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163377,7 +163378,7 @@ beams, and realistic raytraced beam paths are also possible. %package pst-optexp-doc Summary: Documentation for pst-optexp Version: svn35673.5.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-optexp-doc BuildArch: noarch AutoReqProv: No @@ -163390,7 +163391,7 @@ Provides: tex-pst-optic = %{tl_version} License: LPPL Summary: Drawing optics diagrams Version: svn19704.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163407,7 +163408,7 @@ diagrams. The package requires pstricks later than version %package pst-optic-doc Summary: Documentation for pst-optic Version: svn19704.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-optic-doc BuildArch: noarch AutoReqProv: No @@ -163420,7 +163421,7 @@ Provides: tex-pst-osci = %{tl_version} License: LPPL Summary: Oscgons with PSTricks Version: svn15878.2.82 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163441,7 +163442,7 @@ diagrams (XY-mode) can also be obtained. %package pst-osci-doc Summary: Documentation for pst-osci Version: svn15878.2.82 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-osci-doc BuildArch: noarch AutoReqProv: No @@ -163454,7 +163455,7 @@ Provides: tex-pst-ovl = %{tl_version} License: LPPL Summary: Create and manage graphical overlays Version: svn40873 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163471,7 +163472,7 @@ restrictions on usage when generating PDF output. %package pst-ovl-doc Summary: Documentation for pst-ovl Version: svn40873 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-ovl-doc BuildArch: noarch AutoReqProv: No @@ -163484,7 +163485,7 @@ Provides: tex-pst-pad = %{tl_version} License: LPPL Summary: Draw simple attachment systems with PSTricks Version: svn15878.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163505,7 +163506,7 @@ lubrication. %package pst-pad-doc Summary: Documentation for pst-pad Version: svn15878.0.3b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-pad-doc BuildArch: noarch AutoReqProv: No @@ -163518,7 +163519,7 @@ Provides: tex-pst-pdgr = %{tl_version} License: LPPL Summary: Draw medical pedigrees using pstricks Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163539,7 +163540,7 @@ TeX files from spreadsheets is available. %package pst-pdgr-doc Summary: Documentation for pst-pdgr Version: svn15878.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-pdgr-doc BuildArch: noarch AutoReqProv: No @@ -163552,7 +163553,7 @@ Provides: tex-pst-perspective = %{tl_version} License: LPPL 1.3 Summary: Draw perspective views using pstricks Version: svn39585 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163570,7 +163571,7 @@ shortening factor. %package pst-perspective-doc Summary: Documentation for pst-perspective Version: svn39585 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-perspective-doc BuildArch: noarch AutoReqProv: No @@ -163583,7 +163584,7 @@ Provides: tex-pst-platon = %{tl_version} License: LPPL Summary: Platonic solids in PSTricks Version: svn16538.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163600,7 +163601,7 @@ views of the five Platonic solids. %package pst-platon-doc Summary: Documentation for pst-platon Version: svn16538.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-platon-doc BuildArch: noarch AutoReqProv: No @@ -163613,7 +163614,7 @@ Provides: tex-pst-plot = %{tl_version} License: LPPL Summary: Plot data using PSTricks Version: svn41242 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163633,7 +163634,7 @@ variety of parameters. %package pst-plot-doc Summary: Documentation for pst-plot Version: svn41242 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-plot-doc BuildArch: noarch AutoReqProv: No @@ -163646,7 +163647,7 @@ Provides: tex-pst-poly = %{tl_version} License: LPPL Summary: Polygons with PSTricks Version: svn35062.1.63 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163666,7 +163667,7 @@ the xkeyval package for argument decoding. %package pst-poly-doc Summary: Documentation for pst-poly Version: svn35062.1.63 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-poly-doc BuildArch: noarch AutoReqProv: No @@ -163679,7 +163680,7 @@ Provides: tex-pst-pulley = %{tl_version} License: LPPL 1.3 Summary: Plot pulleys, using pstricks Version: svn25142.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163697,7 +163698,7 @@ requires a several pstricks-related packages. %package pst-pulley-doc Summary: Documentation for pst-pulley Version: svn25142.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-pulley-doc BuildArch: noarch AutoReqProv: No @@ -163710,7 +163711,7 @@ Provides: tex-pst-qtree = %{tl_version} License: GPL+ Summary: Simple syntax for trees Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163724,7 +163725,7 @@ The package provides a qtree-like front end for PSTricks. %package pst-qtree-doc Summary: Documentation for pst-qtree Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-qtree-doc BuildArch: noarch AutoReqProv: No @@ -163737,7 +163738,7 @@ Provides: tex-pst-rubans = %{tl_version} License: LPPL Summary: Draw three-dimensional ribbons Version: svn23464.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163757,7 +163758,7 @@ choose the number of ribbons. %package pst-rubans-doc Summary: Documentation for pst-rubans Version: svn23464.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-rubans-doc BuildArch: noarch AutoReqProv: No @@ -163770,7 +163771,7 @@ Provides: tex-pst-sigsys = %{tl_version} License: LPPL Summary: Support of signal processing-related disciplines Version: svn21667.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163793,7 +163794,7 @@ connecting a list of nodes using any node-connecting macro. %package pst-sigsys-doc Summary: Documentation for pst-sigsys Version: svn21667.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-sigsys-doc BuildArch: noarch AutoReqProv: No @@ -163806,7 +163807,7 @@ Provides: tex-pst-slpe = %{tl_version} License: LPPL Summary: Sophisticated colour gradients Version: svn24391.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163829,7 +163830,7 @@ uses the xkeyval package for the extended key handling. %package pst-slpe-doc Summary: Documentation for pst-slpe Version: svn24391.1.31 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-slpe-doc BuildArch: noarch AutoReqProv: No @@ -163842,7 +163843,7 @@ Provides: tex-pst-solarsystem = %{tl_version} License: LPPL Summary: Plot the solar system for a specific date Version: svn24995.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163863,7 +163864,7 @@ not in the correct size. %package pst-solarsystem-doc Summary: Documentation for pst-solarsystem Version: svn24995.0.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-solarsystem-doc BuildArch: noarch AutoReqProv: No @@ -163876,7 +163877,7 @@ Provides: tex-pst-solides3d = %{tl_version} License: LPPL 1.3 Summary: Draw perspective views of 3D solids Version: svn39130 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163899,7 +163900,7 @@ database files. %package pst-solides3d-doc Summary: Documentation for pst-solides3d Version: svn39130 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-solides3d-doc BuildArch: noarch AutoReqProv: No @@ -163912,7 +163913,7 @@ Provides: tex-pst-soroban = %{tl_version} License: LPPL Summary: Draw a Soroban using PSTricks Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163929,7 +163930,7 @@ soroban. The soroban is still used in Japan today. %package pst-soroban-doc Summary: Documentation for pst-soroban Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-soroban-doc BuildArch: noarch AutoReqProv: No @@ -163942,7 +163943,7 @@ Provides: tex-pst-spectra = %{tl_version} License: LPPL Summary: Draw continuum, emission and absorption spectra with PSTricks Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163963,7 +163964,7 @@ package for decoding its arguments. %package pst-spectra-doc Summary: Documentation for pst-spectra Version: svn15878.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-spectra-doc BuildArch: noarch AutoReqProv: No @@ -163976,7 +163977,7 @@ Provides: tex-pst-spirograph = %{tl_version} License: LPPL Summary: Drawing hypotrochoids as with a spirograph Version: svn35026.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -163993,7 +163994,7 @@ curves (technically known as hypotrochoids and epitrochoids). %package pst-spirograph-doc Summary: Documentation for pst-spirograph Version: svn35026.0.41 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-spirograph-doc BuildArch: noarch AutoReqProv: No @@ -164006,7 +164007,7 @@ Provides: tex-pst-stru = %{tl_version} License: LPPL Summary: Civil engineering diagrams, using pstricks Version: svn38613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164024,7 +164025,7 @@ beams, portals, arches and piles. %package pst-stru-doc Summary: Documentation for pst-stru Version: svn38613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-stru-doc BuildArch: noarch AutoReqProv: No @@ -164035,7 +164036,7 @@ Documentation for pst-stru %package pst-support-doc Summary: Documentation for pst-support Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-support-doc BuildArch: noarch AutoReqProv: No @@ -164048,7 +164049,7 @@ Provides: tex-pst-text = %{tl_version} License: LPPL Summary: Text and character manipulation in PSTricks Version: svn15878.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164067,7 +164068,7 @@ functionality of the old package pst-char. %package pst-text-doc Summary: Documentation for pst-text Version: svn15878.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-text-doc BuildArch: noarch AutoReqProv: No @@ -164080,7 +164081,7 @@ Provides: tex-pst-thick = %{tl_version} License: LPPL Summary: Drawing very thick lines and curves Version: svn16369.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164096,7 +164097,7 @@ PSTricks, with various fillings for the body of the lines. %package pst-thick-doc Summary: Documentation for pst-thick Version: svn16369.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-thick-doc BuildArch: noarch AutoReqProv: No @@ -164109,7 +164110,7 @@ Provides: tex-pst-tools = %{tl_version} License: LPPL Summary: PStricks support functions Version: svn34067.0.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164125,7 +164126,7 @@ related packages. %package pst-tools-doc Summary: Documentation for pst-tools Version: svn34067.0.05 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-tools-doc BuildArch: noarch AutoReqProv: No @@ -164138,7 +164139,7 @@ Provides: tex-pst-tree = %{tl_version} License: LPPL Summary: Trees, using pstricks Version: svn24142.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164155,7 +164156,7 @@ pst-node in order to draw trees. %package pst-tree-doc Summary: Documentation for pst-tree Version: svn24142.1.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-tree-doc BuildArch: noarch AutoReqProv: No @@ -164168,7 +164169,7 @@ Provides: tex-pst-tvz = %{tl_version} License: LPPL 1.3 Summary: Draw trees with more than one root node, using PSTricks Version: svn23451.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164185,7 +164186,7 @@ placement algorithm. %package pst-tvz-doc Summary: Documentation for pst-tvz Version: svn23451.1.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-tvz-doc BuildArch: noarch AutoReqProv: No @@ -164198,7 +164199,7 @@ Provides: tex-pst-uml = %{tl_version} License: LPPL Summary: UML diagrams with PSTricks Version: svn15878.0.83 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164222,7 +164223,7 @@ moderately complex UML (Universal Modelling Language) diagrams. %package pst-uml-doc Summary: Documentation for pst-uml Version: svn15878.0.83 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-uml-doc BuildArch: noarch AutoReqProv: No @@ -164236,7 +164237,7 @@ Provides: tex-pst-vectorian = %{tl_version} License: LPPL Summary: Printing ornaments Version: svn28801.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164252,7 +164253,7 @@ repertoire of ornaments is provided). %package pst-vectorian-doc Summary: Documentation for pst-vectorian Version: svn28801.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-vectorian-doc BuildArch: noarch AutoReqProv: No @@ -164265,7 +164266,7 @@ Provides: tex-pst-vowel = %{tl_version} License: LPPL Summary: Enable arrows showing diphthongs on vowel charts Version: svn25228.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164283,7 +164284,7 @@ package depends on use of pstricks. %package pst-vowel-doc Summary: Documentation for pst-vowel Version: svn25228.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-vowel-doc BuildArch: noarch AutoReqProv: No @@ -164296,7 +164297,7 @@ Provides: tex-pst-vue3d = %{tl_version} License: LPPL Summary: Draw perspective views of three dimensional objects Version: svn15878.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164313,7 +164314,7 @@ distribution includes a comprehensive set of examples of usage. %package pst-vue3d-doc Summary: Documentation for pst-vue3d Version: svn15878.1.24 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst-vue3d-doc BuildArch: noarch AutoReqProv: No @@ -164326,7 +164327,7 @@ Provides: tex-pst2pdf = %{tl_version} License: GPLv2+ Summary: A script to compile pstricks documents via pdftex Version: svn35247.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164347,7 +164348,7 @@ acquired from the document itself via Perldoc. %package pst2pdf-doc Summary: Documentation for pst2pdf Version: svn35247.0.16 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pst2pdf-doc BuildArch: noarch AutoReqProv: No @@ -164360,7 +164361,7 @@ Summary: Binaries for pst2pdf Version: svn29333.0 Requires: texlive-base Requires: texlive-pst2pdf -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pst2pdf-bin @@ -164371,7 +164372,7 @@ Provides: tex-pstricks = %{tl_version} License: LPPL 1.3 Summary: PostScript macros for TeX Version: svn41321 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164466,7 +164467,7 @@ for PSTricks contributed is completed. %package pstricks-doc Summary: Documentation for pstricks Version: svn41321 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstricks-doc BuildArch: noarch AutoReqProv: No @@ -164479,7 +164480,7 @@ Provides: tex-pstricks-add = %{tl_version} License: LPPL Summary: A collection of add-ons and bugfixes for PSTricks Version: svn40744 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164508,7 +164509,7 @@ makes use of PostScript routines provided by pst-math. %package pstricks-add-doc Summary: Documentation for pstricks-add Version: svn40744 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstricks-add-doc BuildArch: noarch AutoReqProv: No @@ -164519,7 +164520,7 @@ Documentation for pstricks-add %package pstricks_calcnotes-doc Summary: Documentation for pstricks_calcnotes Version: svn34363.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pstricks_calcnotes-doc BuildArch: noarch AutoReqProv: No @@ -164532,7 +164533,7 @@ Provides: tex-uml = %{tl_version} License: LPPL Summary: UML diagrams in LaTeX Version: svn17476.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164552,7 +164553,7 @@ package cannot be used together with pst-uml. %package uml-doc Summary: Documentation for uml Version: svn17476.0.11 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uml-doc BuildArch: noarch AutoReqProv: No @@ -164565,7 +164566,7 @@ Provides: tex-vaucanson-g = %{tl_version} License: LPPL Summary: PSTricks macros for drawing automata Version: svn15878.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164596,7 +164597,7 @@ of commands of PStricks %package vaucanson-g-doc Summary: Documentation for vaucanson-g Version: svn15878.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vaucanson-g-doc BuildArch: noarch AutoReqProv: No @@ -164609,7 +164610,7 @@ Provides: tex-vocaltract = %{tl_version} License: LPPL Summary: Visualise the vocal tract using LaTeX and PStricks Version: svn25629.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164629,7 +164630,7 @@ package's graphics are produced using pstricks. %package vocaltract-doc Summary: Documentation for vocaltract Version: svn25629.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vocaltract-doc BuildArch: noarch AutoReqProv: No @@ -164640,7 +164641,7 @@ Documentation for vocaltract %package collection-publishers Summary: Publisher styles, theses, etc Version: svn41372 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -164808,7 +164809,7 @@ Provides: tex-IEEEconf = %{tl_version} License: LPPL Summary: Macros for IEEE conference proceedings Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164828,7 +164829,7 @@ IEEE Computer Society Press for conference proceedings. %package IEEEconf-doc Summary: Documentation for IEEEconf Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-IEEEconf-doc BuildArch: noarch AutoReqProv: No @@ -164841,7 +164842,7 @@ Provides: tex-IEEEtran = %{tl_version} License: LPPL 1.3 Summary: Document class for IEEE Transactions journals and conferences Version: svn38238.1.8b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164861,7 +164862,7 @@ conferences. %package IEEEtran-doc Summary: Documentation for IEEEtran Version: svn38238.1.8b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-IEEEtran-doc BuildArch: noarch AutoReqProv: No @@ -164874,7 +164875,7 @@ Provides: tex-confproc = %{tl_version} License: LPPL Summary: A set of tools for generating conference proceedings Version: svn29349.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164913,7 +164914,7 @@ its time-saving aspects when designing conference proceedings. %package confproc-doc Summary: Documentation for confproc Version: svn29349.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-confproc-doc BuildArch: noarch AutoReqProv: No @@ -164926,7 +164927,7 @@ Provides: tex-dccpaper = %{tl_version} License: LPPL 1.3 Summary: Typeset papers for the International Journal of Digital Curation Version: svn37647.1.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164946,7 +164947,7 @@ International Digital Curation Conference, beginning with the %package dccpaper-doc Summary: Documentation for dccpaper Version: svn37647.1.4.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dccpaper-doc BuildArch: noarch AutoReqProv: No @@ -164959,7 +164960,7 @@ Provides: tex-dithesis = %{tl_version} License: LPPL Summary: Thesis class for undergraduate theses at the University of Athens Version: svn34295.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -164992,7 +164993,7 @@ is made for use under Linux (with a different sans-serif font). %package dithesis-doc Summary: Documentation for dithesis Version: svn34295.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dithesis-doc BuildArch: noarch AutoReqProv: No @@ -165005,7 +165006,7 @@ Provides: tex-ebook = %{tl_version} License: Public Domain Summary: ebook Version: svn29466.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165021,7 +165022,7 @@ Kindle e-ink and iPad mini. %package ebook-doc Summary: Documentation for ebook Version: svn29466.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebook-doc BuildArch: noarch AutoReqProv: No @@ -165034,7 +165035,7 @@ Provides: tex-ebsthesis = %{tl_version} License: LPPL Summary: Typesetting theses for economics Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165072,7 +165073,7 @@ by the European Business School. %package ebsthesis-doc Summary: Documentation for ebsthesis Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ebsthesis-doc BuildArch: noarch AutoReqProv: No @@ -165085,7 +165086,7 @@ Provides: tex-ejpecp = %{tl_version} License: LPPL 1.2 Summary: Class for EJP and ECP Version: svn40331 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165117,7 +165118,7 @@ Probability (EJP) and Electronic Communications in Probability %package ejpecp-doc Summary: Documentation for ejpecp Version: svn40331 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ejpecp-doc BuildArch: noarch AutoReqProv: No @@ -165130,7 +165131,7 @@ Provides: tex-ekaia = %{tl_version} License: LPPL 1.2 Summary: Article format for publishing the Basque Country Science and Technology Journal "Ekaia" Version: svn35927.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165150,7 +165151,7 @@ University of the Basque Country. %package ekaia-doc Summary: Documentation for ekaia Version: svn35927.1.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ekaia-doc BuildArch: noarch AutoReqProv: No @@ -165163,7 +165164,7 @@ Provides: tex-elbioimp = %{tl_version} License: LPPL Summary: A LaTeX document class for the Journal of Electrical Bioimpedance Version: svn21758.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165184,7 +165185,7 @@ Electrical Bioimpedance. %package elbioimp-doc Summary: Documentation for elbioimp Version: svn21758.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elbioimp-doc BuildArch: noarch AutoReqProv: No @@ -165197,7 +165198,7 @@ Provides: tex-elsarticle = %{tl_version} License: LPPL 1.2 Summary: Class for articles for submission to Elsevier journals Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165218,7 +165219,7 @@ system and elsewhere. %package elsarticle-doc Summary: Documentation for elsarticle Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elsarticle-doc BuildArch: noarch AutoReqProv: No @@ -165231,7 +165232,7 @@ Provides: tex-elteikthesis = %{tl_version} License: LPPL 1.2 Summary: Thesis class for ELTE University Informatics wing Version: svn22513.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165248,7 +165249,7 @@ approved by the University. %package elteikthesis-doc Summary: Documentation for elteikthesis Version: svn22513.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-elteikthesis-doc BuildArch: noarch AutoReqProv: No @@ -165261,7 +165262,7 @@ Provides: tex-erdc = %{tl_version} License: LPPL Summary: Style for Reports by US Army Corps of Engineers Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165288,7 +165289,7 @@ Corps of Engineers, Engineer Research and Development Center, %package erdc-doc Summary: Documentation for erdc Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-erdc-doc BuildArch: noarch AutoReqProv: No @@ -165301,7 +165302,7 @@ Provides: tex-estcpmm = %{tl_version} License: LPPL Summary: Style for Munitions Management Project Reports Version: svn17335.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165323,7 +165324,7 @@ Corps of Engineers, Engineer Research and Development Center, %package estcpmm-doc Summary: Documentation for estcpmm Version: svn17335.0.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-estcpmm-doc BuildArch: noarch AutoReqProv: No @@ -165336,7 +165337,7 @@ Provides: tex-fbithesis = %{tl_version} License: LPPL Summary: Computer Science thesis class for University of Dortmund Version: svn21340.1.2m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165356,7 +165357,7 @@ pages. %package fbithesis-doc Summary: Documentation for fbithesis Version: svn21340.1.2m -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fbithesis-doc BuildArch: noarch AutoReqProv: No @@ -165369,7 +165370,7 @@ Provides: tex-fcavtex = %{tl_version} License: LPPL 1.3 Summary: A thesis class for the FCAV/UNESP (Brazil) Version: svn38074.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165404,7 +165405,7 @@ institution rules for thesis publications. %package fcavtex-doc Summary: Documentation for fcavtex Version: svn38074.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fcavtex-doc BuildArch: noarch AutoReqProv: No @@ -165417,7 +165418,7 @@ Provides: tex-fcltxdoc = %{tl_version} License: LPPL 1.3 Summary: Macros for use in the author's documentation Version: svn24500.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165478,7 +165479,7 @@ compiled under the ltxdoc class). %package fcltxdoc-doc Summary: Documentation for fcltxdoc Version: svn24500.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fcltxdoc-doc BuildArch: noarch AutoReqProv: No @@ -165491,7 +165492,7 @@ Provides: tex-fei = %{tl_version} License: LPPL 1.3 Summary: Class for academic works at FEI University Center -- Brazil Version: svn38364.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165539,7 +165540,7 @@ the creation of academic works, such as ABNT NBR 10520:2002 %package fei-doc Summary: Documentation for fei Version: svn38364.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fei-doc BuildArch: noarch AutoReqProv: No @@ -165552,7 +165553,7 @@ Provides: tex-gaceta = %{tl_version} License: LPPL Summary: A class to typeset La Gaceta de la RSME Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165573,7 +165574,7 @@ Sociedad Matematica Espanola>>. %package gaceta-doc Summary: Documentation for gaceta Version: svn15878.1.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gaceta-doc BuildArch: noarch AutoReqProv: No @@ -165586,7 +165587,7 @@ Provides: tex-gatech-thesis = %{tl_version} License: GPL+ Summary: Georgia Institute of Technology thesis class Version: svn19886.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165611,7 +165612,7 @@ Thesis Style Manual, as amended up to 2010. %package gatech-thesis-doc Summary: Documentation for gatech-thesis Version: svn19886.1.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gatech-thesis-doc BuildArch: noarch AutoReqProv: No @@ -165624,7 +165625,7 @@ Provides: tex-gsemthesis = %{tl_version} License: LPPL 1.3 Summary: Geneva School of Economics and Management PhD thesis format Version: svn36244.0.9.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165645,7 +165646,7 @@ writing PhD dissertations. %package gsemthesis-doc Summary: Documentation for gsemthesis Version: svn36244.0.9.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gsemthesis-doc BuildArch: noarch AutoReqProv: No @@ -165658,7 +165659,7 @@ Provides: tex-gzt = %{tl_version} License: LPPL 1.3 Summary: Bundle of classes for "La Gazette des Mathematiciens" Version: svn41426 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165738,7 +165739,7 @@ mathematic formulas. %package gzt-doc Summary: Documentation for gzt Version: svn41426 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gzt-doc BuildArch: noarch AutoReqProv: No @@ -165751,7 +165752,7 @@ Provides: tex-har2nat = %{tl_version} License: LPPL Summary: Replace the harvard package with natbib Version: svn17356.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165772,7 +165773,7 @@ after natbib, since it modifies natbib commands. %package har2nat-doc Summary: Documentation for har2nat Version: svn17356.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-har2nat-doc BuildArch: noarch AutoReqProv: No @@ -165785,7 +165786,7 @@ Provides: tex-hobete = %{tl_version} License: LPPL Summary: Unofficial beamer theme for the University of Hohenheim Version: svn27036.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165811,7 +165812,7 @@ between the University and this theme. %package hobete-doc Summary: Documentation for hobete Version: svn27036.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hobete-doc BuildArch: noarch AutoReqProv: No @@ -165824,7 +165825,7 @@ Provides: tex-icsv = %{tl_version} License: LPPL Summary: Class for typesetting articles for the ICSV conference Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165854,7 +165855,7 @@ conference, based on the earler active-conf by the same author. %package icsv-doc Summary: Documentation for icsv Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-icsv-doc BuildArch: noarch AutoReqProv: No @@ -165867,7 +165868,7 @@ Provides: tex-ieeepes = %{tl_version} License: LPPL Summary: IEEE Power Engineering Society Transactions Version: svn17359.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165886,7 +165887,7 @@ Transactions journals. %package ieeepes-doc Summary: Documentation for ieeepes Version: svn17359.4.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ieeepes-doc BuildArch: noarch AutoReqProv: No @@ -165899,7 +165900,7 @@ Provides: tex-ijmart = %{tl_version} License: LPPL Summary: LaTeX Class for the Israel Journal of Mathematics Version: svn30958.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165922,7 +165923,7 @@ preprints in arXiv with minimal changes in the LaTeX source. %package ijmart-doc Summary: Documentation for ijmart Version: svn30958.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ijmart-doc BuildArch: noarch AutoReqProv: No @@ -165935,7 +165936,7 @@ Provides: tex-imac = %{tl_version} License: GPL+ Summary: International Modal Analysis Conference format Version: svn17347.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165950,7 +165951,7 @@ provides a LaTeX package and a BibTeX style file. %package imac-doc Summary: Documentation for imac Version: svn17347.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-imac-doc BuildArch: noarch AutoReqProv: No @@ -165963,7 +165964,7 @@ Provides: tex-imtekda = %{tl_version} License: LPPL Summary: IMTEK thesis class Version: svn17667.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -165984,7 +165985,7 @@ typesetting theses and a list of recommended packages. %package imtekda-doc Summary: Documentation for imtekda Version: svn17667.1.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-imtekda-doc BuildArch: noarch AutoReqProv: No @@ -165997,7 +165998,7 @@ Provides: tex-jmlr = %{tl_version} License: LPPL 1.3 Summary: Class files for the Journal of Machine Learning Research Version: svn36370.1.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166039,7 +166040,7 @@ articles as PDFs. %package jmlr-doc Summary: Documentation for jmlr Version: svn36370.1.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jmlr-doc BuildArch: noarch AutoReqProv: No @@ -166052,7 +166053,7 @@ Provides: tex-jpsj = %{tl_version} License: LPPL Summary: Document Class for Journal of the Physical Society of Japan Version: svn15878.1.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166069,7 +166070,7 @@ jpsj package %package jpsj-doc Summary: Documentation for jpsj Version: svn15878.1.2.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-jpsj-doc BuildArch: noarch AutoReqProv: No @@ -166082,7 +166083,7 @@ Provides: tex-kdgdocs = %{tl_version} License: LPPL 1.3 Summary: Document classes for Karel de Grote University College Version: svn24498.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166111,7 +166112,7 @@ the archive). %package kdgdocs-doc Summary: Documentation for kdgdocs Version: svn24498.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kdgdocs-doc BuildArch: noarch AutoReqProv: No @@ -166124,7 +166125,7 @@ Provides: tex-kluwer = %{tl_version} License: LPPL Summary: kluwer package Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166164,7 +166165,7 @@ kluwer package %package kluwer-doc Summary: Documentation for kluwer Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-kluwer-doc BuildArch: noarch AutoReqProv: No @@ -166177,7 +166178,7 @@ Provides: tex-lps = %{tl_version} License: LPPL Summary: Class for "Logic and Philosophy of Science" Version: svn21322.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166199,7 +166200,7 @@ LaTeX authors may use when submitting to the journal. %package lps-doc Summary: Documentation for lps Version: svn21322.0.7 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-lps-doc BuildArch: noarch AutoReqProv: No @@ -166212,7 +166213,7 @@ Provides: tex-matc3 = %{tl_version} License: LPPL 1.3 Summary: Commands for MatematicaC3 textbooks Version: svn29845.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166227,7 +166228,7 @@ schools. %package matc3-doc Summary: Documentation for matc3 Version: svn29845.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-matc3-doc BuildArch: noarch AutoReqProv: No @@ -166240,7 +166241,7 @@ Provides: tex-matc3mem = %{tl_version} License: LPPL 1.3 Summary: Class for MatematicaC3 textbooks Version: svn35773.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166259,7 +166260,7 @@ free mathematical textbooks for use in Italian high schools. %package matc3mem-doc Summary: Documentation for matc3mem Version: svn35773.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-matc3mem-doc BuildArch: noarch AutoReqProv: No @@ -166272,7 +166273,7 @@ Provides: tex-mcmthesis = %{tl_version} License: LPPL 1.3 Summary: Template designed for MCM/ICM Version: svn39515 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166324,7 +166325,7 @@ Modeling). %package mcmthesis-doc Summary: Documentation for mcmthesis Version: svn39515 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mcmthesis-doc BuildArch: noarch AutoReqProv: No @@ -166337,7 +166338,7 @@ Provides: tex-mentis = %{tl_version} License: LPPL Summary: A basis for books to be published by Mentis publishers Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166365,7 +166366,7 @@ author in close co-operation with Mentis. %package mentis-doc Summary: Documentation for mentis Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mentis-doc BuildArch: noarch AutoReqProv: No @@ -166378,7 +166379,7 @@ Provides: tex-mnras = %{tl_version} License: LPPL 1.3 Summary: Monthly Notices of the Royal Astronomical Society Version: svn37579.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166392,7 +166393,7 @@ the Royal Astronomical Society. %package mnras-doc Summary: Documentation for mnras Version: svn37579.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mnras-doc BuildArch: noarch AutoReqProv: No @@ -166405,7 +166406,7 @@ Provides: tex-msu-thesis = %{tl_version} License: LPPL 1.3 Summary: Class for Michigan State University Master's and PhD theses Version: svn41345 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166428,7 +166429,7 @@ functionality of that class. %package msu-thesis-doc Summary: Documentation for msu-thesis Version: svn41345 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-msu-thesis-doc BuildArch: noarch AutoReqProv: No @@ -166441,7 +166442,7 @@ Provides: tex-mugsthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis class complying with Marquette University Graduate School requirements Version: svn34878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166458,7 +166459,7 @@ requirements. %package mugsthesis-doc Summary: Documentation for mugsthesis Version: svn34878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mugsthesis-doc BuildArch: noarch AutoReqProv: No @@ -166471,7 +166472,7 @@ Provides: tex-musuos = %{tl_version} License: LPPL Summary: Typeset papers for the department of music, Osnabruck Version: svn24857.1.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166495,7 +166496,7 @@ Stefan Hahnheide. A biblatex style is provided. %package musuos-doc Summary: Documentation for musuos Version: svn24857.1.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-musuos-doc BuildArch: noarch AutoReqProv: No @@ -166508,7 +166509,7 @@ Provides: tex-muthesis = %{tl_version} License: LPPL Summary: Classes for University of Manchester Dept of Computer Science Version: svn23861.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166525,7 +166526,7 @@ Science. %package muthesis-doc Summary: Documentation for muthesis Version: svn23861.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-muthesis-doc BuildArch: noarch AutoReqProv: No @@ -166538,7 +166539,7 @@ Provides: tex-nature = %{tl_version} License: LPPL Summary: Prepare papers for the journal Nature Version: svn21819.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166557,7 +166558,7 @@ to produce papers in a format acceptable to the publisher. %package nature-doc Summary: Documentation for nature Version: svn21819.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nature-doc BuildArch: noarch AutoReqProv: No @@ -166570,7 +166571,7 @@ Provides: tex-nddiss = %{tl_version} License: LPPL Summary: Notre Dame Dissertation format class Version: svn29349.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166609,7 +166610,7 @@ format a thesis or dissertation in LaTeX. %package nddiss-doc Summary: Documentation for nddiss Version: svn29349.3.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nddiss-doc BuildArch: noarch AutoReqProv: No @@ -166622,7 +166623,7 @@ Provides: tex-ndsu-thesis = %{tl_version} License: LPPL 1.3 Summary: North Dakota State University disquisition class Version: svn40536 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166636,7 +166637,7 @@ compliance with North Dakota State University requirements. %package ndsu-thesis-doc Summary: Documentation for ndsu-thesis Version: svn40536 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ndsu-thesis-doc BuildArch: noarch AutoReqProv: No @@ -166649,7 +166650,7 @@ Provides: tex-nih = %{tl_version} License: LPPL Summary: A class for NIH grant applications Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166675,7 +166676,7 @@ without even the restrictions of the LaTeX licence.) %package nih-doc Summary: Documentation for nih Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nih-doc BuildArch: noarch AutoReqProv: No @@ -166688,7 +166689,7 @@ Provides: tex-nostarch = %{tl_version} License: LPPL Summary: LaTeX class for No Starch Press Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166716,7 +166717,7 @@ printed and for electronic books. %package nostarch-doc Summary: Documentation for nostarch Version: svn15878.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nostarch-doc BuildArch: noarch AutoReqProv: No @@ -166729,7 +166730,7 @@ Provides: tex-nrc = %{tl_version} License: LPPL Summary: Class for the NRC technical journals Version: svn29027.2.01a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166750,7 +166751,7 @@ column layout) should be used. %package nrc-doc Summary: Documentation for nrc Version: svn29027.2.01a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nrc-doc BuildArch: noarch AutoReqProv: No @@ -166763,7 +166764,7 @@ Provides: tex-onrannual = %{tl_version} License: LPPL 1.3 Summary: Class for Office of Naval Research Ocean Battlespace Sensing annual report Version: svn17474.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166785,7 +166786,7 @@ document (and its PDF output) are included. %package onrannual-doc Summary: Documentation for onrannual Version: svn17474.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-onrannual-doc BuildArch: noarch AutoReqProv: No @@ -166798,7 +166799,7 @@ Provides: tex-opteng = %{tl_version} License: LPPL Summary: SPIE Optical Engineering and OE Letters manuscript template Version: svn27331.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166816,7 +166817,7 @@ gives simple instructions on how to prepare the manuscript. %package opteng-doc Summary: Documentation for opteng Version: svn27331.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-opteng-doc BuildArch: noarch AutoReqProv: No @@ -166829,7 +166830,7 @@ Provides: tex-philosophersimprint = %{tl_version} License: LPPL Summary: Typesetting articles for "Philosophers' Imprint" Version: svn28845.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166864,7 +166865,7 @@ to freely available and freely distributed fonts, only. %package philosophersimprint-doc Summary: Documentation for philosophersimprint Version: svn28845.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-philosophersimprint-doc BuildArch: noarch AutoReqProv: No @@ -166877,7 +166878,7 @@ Provides: tex-pittetd = %{tl_version} License: LPPL Summary: Electronic Theses and Dissertations at Pitt Version: svn15878.1.618 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166897,7 +166898,7 @@ their thesis or dissertation. %package pittetd-doc Summary: Documentation for pittetd Version: svn15878.1.618 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pittetd-doc BuildArch: noarch AutoReqProv: No @@ -166910,7 +166911,7 @@ Provides: tex-pkuthss = %{tl_version} License: LPPL Summary: LaTeX template for dissertations in Peking University Version: svn41407 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166939,7 +166940,7 @@ template for dissertations in Peking University. %package pkuthss-doc Summary: Documentation for pkuthss Version: svn41407 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pkuthss-doc BuildArch: noarch AutoReqProv: No @@ -166952,7 +166953,7 @@ Provides: tex-powerdot-FUBerlin = %{tl_version} License: LPPL Summary: Powerdot, using the style of FU Berlin Version: svn15878.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -166982,7 +166983,7 @@ examples do of course differ. %package powerdot-FUBerlin-doc Summary: Documentation for powerdot-FUBerlin Version: svn15878.0.01 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-powerdot-FUBerlin-doc BuildArch: noarch AutoReqProv: No @@ -166995,7 +166996,7 @@ Provides: tex-pracjourn = %{tl_version} License: GPL+ Summary: Typeset articles for PracTeX Version: svn15878.0.4n -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167018,7 +167019,7 @@ revision control, among other small changes. %package pracjourn-doc Summary: Documentation for pracjourn Version: svn15878.0.4n -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pracjourn-doc BuildArch: noarch AutoReqProv: No @@ -167031,7 +167032,7 @@ Provides: tex-procIAGssymp = %{tl_version} License: LPPL Summary: Macros for IAG symposium papers Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167048,7 +167049,7 @@ Springer-Verlag. %package procIAGssymp-doc Summary: Documentation for procIAGssymp Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-procIAGssymp-doc BuildArch: noarch AutoReqProv: No @@ -167061,7 +167062,7 @@ Provides: tex-proposal = %{tl_version} License: LPPL Summary: A class for preparing proposals Version: svn40538 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167122,7 +167123,7 @@ author's stex bundle. %package proposal-doc Summary: Documentation for proposal Version: svn40538 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-proposal-doc BuildArch: noarch AutoReqProv: No @@ -167135,7 +167136,7 @@ Provides: tex-ptptex = %{tl_version} License: LPPL Summary: Macros for 'Progress of Theoretical Physics' Version: svn19440.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167156,7 +167157,7 @@ cite, overcite and wrapfig packages. %package ptptex-doc Summary: Documentation for ptptex Version: svn19440.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptptex-doc BuildArch: noarch AutoReqProv: No @@ -167169,7 +167170,7 @@ Provides: tex-psu-thesis = %{tl_version} License: LPPL Summary: Package for writing a thesis at Penn State University Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167187,7 +167188,7 @@ bibliography. %package psu-thesis-doc Summary: Documentation for psu-thesis Version: svn15878.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-psu-thesis-doc BuildArch: noarch AutoReqProv: No @@ -167200,7 +167201,7 @@ Provides: tex-resphilosophica = %{tl_version} License: LPPL 1.3 Summary: Typeset articles for the journal Res Philosophica Version: svn38862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167225,7 +167226,7 @@ Louis University. %package resphilosophica-doc Summary: Documentation for resphilosophica Version: svn38862 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-resphilosophica-doc BuildArch: noarch AutoReqProv: No @@ -167238,7 +167239,7 @@ Provides: tex-resumecls = %{tl_version} License: LPPL 1.3 Summary: Typeset a resumee in both Chinese and English Version: svn38427 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167259,7 +167260,7 @@ natively, with both Chinese and English text. %package resumecls-doc Summary: Documentation for resumecls Version: svn38427 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-resumecls-doc BuildArch: noarch AutoReqProv: No @@ -167272,7 +167273,7 @@ Provides: tex-revtex = %{tl_version} License: LPPL 1.3 Summary: Styles for various Physics Journals Version: svn19652.4.1r -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167303,7 +167304,7 @@ support packages. %package revtex-doc Summary: Documentation for revtex Version: svn19652.4.1r -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-revtex-doc BuildArch: noarch AutoReqProv: No @@ -167316,7 +167317,7 @@ Provides: tex-revtex4 = %{tl_version} License: LPPL Summary: revtex4 package Version: svn16488.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167337,7 +167338,7 @@ revtex4 package %package revtex4-doc Summary: Documentation for revtex4 Version: svn16488.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-revtex4-doc BuildArch: noarch AutoReqProv: No @@ -167350,7 +167351,7 @@ Provides: tex-ryethesis = %{tl_version} License: LPPL 1.3 Summary: Class for Ryerson Unversity Graduate School requirements Version: svn33945.1.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167376,7 +167377,7 @@ Studies thesis formatting regulations. %package ryethesis-doc Summary: Documentation for ryethesis Version: svn33945.1.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ryethesis-doc BuildArch: noarch AutoReqProv: No @@ -167389,7 +167390,7 @@ Provides: tex-sageep = %{tl_version} License: LPPL Summary: Format papers for the annual meeting of EEGS Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167409,7 +167410,7 @@ Problems", known as SAGEEP). %package sageep-doc Summary: Documentation for sageep Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sageep-doc BuildArch: noarch AutoReqProv: No @@ -167422,7 +167423,7 @@ Provides: tex-sapthesis = %{tl_version} License: LPPL 1.3 Summary: Typeset theses for Sapienza-University, Rome Version: svn39014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167450,7 +167451,7 @@ of Rome. %package sapthesis-doc Summary: Documentation for sapthesis Version: svn39014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sapthesis-doc BuildArch: noarch AutoReqProv: No @@ -167463,7 +167464,7 @@ Provides: tex-scrjrnl = %{tl_version} License: LPPL 1.3 Summary: Typeset diaries or journals Version: svn27810.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167480,7 +167481,7 @@ journals or devotionals. %package scrjrnl-doc Summary: Documentation for scrjrnl Version: svn27810.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-scrjrnl-doc BuildArch: noarch AutoReqProv: No @@ -167493,7 +167494,7 @@ Provides: tex-schule = %{tl_version} License: LPPL 1.3 Summary: Support for teachers at German schools Version: svn37277.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167574,7 +167575,7 @@ and answer keys). %package schule-doc Summary: Documentation for schule Version: svn37277.0.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-schule-doc BuildArch: noarch AutoReqProv: No @@ -167587,7 +167588,7 @@ Provides: tex-sduthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis Template of Shandong University Version: svn41401 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167620,7 +167621,7 @@ Thesis Template of Shandong University. %package sduthesis-doc Summary: Documentation for sduthesis Version: svn41401 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sduthesis-doc BuildArch: noarch AutoReqProv: No @@ -167633,7 +167634,7 @@ Provides: tex-seuthesis = %{tl_version} License: GPLv3+ Summary: LaTeX template for theses at Southeastern University Version: svn33042.2.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167646,7 +167647,7 @@ Nanjing, China. %package seuthesis-doc Summary: Documentation for seuthesis Version: svn33042.2.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-seuthesis-doc BuildArch: noarch AutoReqProv: No @@ -167659,7 +167660,7 @@ Provides: tex-soton = %{tl_version} License: LPPL Summary: University of Southampton-compliant slides Version: svn16215.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167676,7 +167677,7 @@ produce compliant presentations. %package soton-doc Summary: Documentation for soton Version: svn16215.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-soton-doc BuildArch: noarch AutoReqProv: No @@ -167689,7 +167690,7 @@ Provides: tex-sphdthesis = %{tl_version} License: Public Domain Summary: Latex template for writing PhD Thesis Version: svn34374.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167737,7 +167738,7 @@ be difficult. %package sphdthesis-doc Summary: Documentation for sphdthesis Version: svn34374.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sphdthesis-doc BuildArch: noarch AutoReqProv: No @@ -167750,7 +167751,7 @@ Provides: tex-spie = %{tl_version} License: LPPL Summary: Support for formatting SPIE Proceedings manuscripts Version: svn15878.3.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167765,7 +167766,7 @@ A class and a BibTeX style are provided. %package spie-doc Summary: Documentation for spie Version: svn15878.3.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-spie-doc BuildArch: noarch AutoReqProv: No @@ -167778,7 +167779,7 @@ Provides: tex-sr-vorl = %{tl_version} License: LPPL 1.3 Summary: Class for Springer books Version: svn39529 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167807,7 +167808,7 @@ Springer Research. %package sr-vorl-doc Summary: Documentation for sr-vorl Version: svn39529 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sr-vorl-doc BuildArch: noarch AutoReqProv: No @@ -167820,7 +167821,7 @@ Provides: tex-stellenbosch = %{tl_version} License: LPPL Summary: Stellenbosch thesis bundle Version: svn36696.11a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167861,7 +167862,7 @@ for logos. %package stellenbosch-doc Summary: Documentation for stellenbosch Version: svn36696.11a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-stellenbosch-doc BuildArch: noarch AutoReqProv: No @@ -167874,7 +167875,7 @@ Provides: tex-suftesi = %{tl_version} License: LPPL 1.3 Summary: A document class for typesetting theses, books and articles Version: svn40238 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167912,7 +167913,7 @@ humanities. %package suftesi-doc Summary: Documentation for suftesi Version: svn40238 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-suftesi-doc BuildArch: noarch AutoReqProv: No @@ -167925,7 +167926,7 @@ Provides: tex-sugconf = %{tl_version} License: LPPL Summary: SAS(R) user group conference proceedings document class Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167941,7 +167942,7 @@ SAS Institute (2006). %package sugconf-doc Summary: Documentation for sugconf Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sugconf-doc BuildArch: noarch AutoReqProv: No @@ -167954,7 +167955,7 @@ Provides: tex-tabriz-thesis = %{tl_version} License: LPPL 1.3 Summary: A template for the University of Tabriz Version: svn29421.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -167980,7 +167981,7 @@ use of XeLaTeX. %package tabriz-thesis-doc Summary: Documentation for tabriz-thesis Version: svn29421.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tabriz-thesis-doc BuildArch: noarch AutoReqProv: No @@ -167993,7 +167994,7 @@ Provides: tex-texilikechaps = %{tl_version} License: LPPL Summary: Format chapters with a texi-like format Version: svn28553.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168011,7 +168012,7 @@ Provides: tex-texilikecover = %{tl_version} License: LPPL Summary: A cover-page package, like TeXinfo Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168027,7 +168028,7 @@ Provides: tex-thesis-ekf = %{tl_version} License: LPPL 1.2 Summary: Thesis class for Eszterhazy Karoly College Version: svn36950.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168043,7 +168044,7 @@ class as well as three templates. %package thesis-ekf-doc Summary: Documentation for thesis-ekf Version: svn36950.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thesis-ekf-doc BuildArch: noarch AutoReqProv: No @@ -168056,7 +168057,7 @@ Provides: tex-thesis-titlepage-fhac = %{tl_version} License: LPPL Summary: Little style to create a standard titlepage for diploma thesis Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168076,7 +168077,7 @@ Aachen (Standort Juelich) %package thesis-titlepage-fhac-doc Summary: Documentation for thesis-titlepage-fhac Version: svn15878.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thesis-titlepage-fhac-doc BuildArch: noarch AutoReqProv: No @@ -168089,7 +168090,7 @@ Provides: tex-thuthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis template for Tsinghua University Version: svn40085 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168128,7 +168129,7 @@ bachelor's, master's or doctor's degree. %package thuthesis-doc Summary: Documentation for thuthesis Version: svn40085 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-thuthesis-doc BuildArch: noarch AutoReqProv: No @@ -168141,7 +168142,7 @@ Provides: tex-toptesi = %{tl_version} License: LPPL 1.3 Summary: Bundle for typesetting multilanguage theses Version: svn39154 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168178,7 +168179,7 @@ and with all the necessary metadata. %package toptesi-doc Summary: Documentation for toptesi Version: svn39154 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-toptesi-doc BuildArch: noarch AutoReqProv: No @@ -168191,7 +168192,7 @@ Provides: tex-tudscr = %{tl_version} License: LPPL 1.3 Summary: The Corporate Design of TU Dresden Version: svn40147 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168292,7 +168293,7 @@ comprehensive user documentation as well as several tutorials. %package tudscr-doc Summary: Documentation for tudscr Version: svn40147 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tudscr-doc BuildArch: noarch AutoReqProv: No @@ -168305,7 +168306,7 @@ Provides: tex-tugboat = %{tl_version} License: LPPL 1.3 Summary: LaTeX macros for TUGboat articles Version: svn36614.2.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168325,7 +168326,7 @@ style appropriate for use with the classes' "harvard" option. %package tugboat-doc Summary: Documentation for tugboat Version: svn36614.2.17 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tugboat-doc BuildArch: noarch AutoReqProv: No @@ -168338,7 +168339,7 @@ Provides: tex-tugboat-plain = %{tl_version} License: Bibtex Summary: Plain TeX macros for TUGboat Version: svn31340.1.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168354,7 +168355,7 @@ publication in TUGboat. %package tugboat-plain-doc Summary: Documentation for tugboat-plain Version: svn31340.1.21 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tugboat-plain-doc BuildArch: noarch AutoReqProv: No @@ -168367,7 +168368,7 @@ Provides: tex-turabian = %{tl_version} License: LPPL Summary: Create Turabian-formatted material using LaTeX Version: svn36298.0.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168382,7 +168383,7 @@ formatting conforming to the Turabian 8th Edition style guide. %package turabian-doc Summary: Documentation for turabian Version: svn36298.0.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-turabian-doc BuildArch: noarch AutoReqProv: No @@ -168395,7 +168396,7 @@ Provides: tex-tui = %{tl_version} License: LPPL Summary: Thesis style for the University of the Andes, Colombia Version: svn27253.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168428,7 +168429,7 @@ doctorales para ingenieria, Universidad de los Andes, Bogota. %package tui-doc Summary: Documentation for tui Version: svn27253.1.9 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-tui-doc BuildArch: noarch AutoReqProv: No @@ -168441,7 +168442,7 @@ Provides: tex-uaclasses = %{tl_version} License: Public Domain Summary: University of Arizona thesis and dissertation format Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168466,7 +168467,7 @@ separate packages to work with any document class. %package uaclasses-doc Summary: Documentation for uaclasses Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uaclasses-doc BuildArch: noarch AutoReqProv: No @@ -168479,7 +168480,7 @@ Provides: tex-uafthesis = %{tl_version} License: LPPL Summary: Document class for theses at University of Alaska Fairbanks Version: svn29349.12.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168492,7 +168493,7 @@ This is an "unofficial" official class. %package uafthesis-doc Summary: Documentation for uafthesis Version: svn29349.12.12 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uafthesis-doc BuildArch: noarch AutoReqProv: No @@ -168505,7 +168506,7 @@ Provides: tex-ucbthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis and dissertation class supporting UCB requirements Version: svn37776.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168521,7 +168522,7 @@ class. %package ucbthesis-doc Summary: Documentation for ucbthesis Version: svn37776.3.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucbthesis-doc BuildArch: noarch AutoReqProv: No @@ -168534,7 +168535,7 @@ Provides: tex-ucdavisthesis = %{tl_version} License: LPPL Summary: A thesis/dissertation class for University of California at Davis Version: svn40772 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168552,7 +168553,7 @@ The class conforms to the University's requirements for 2009. %package ucdavisthesis-doc Summary: Documentation for ucdavisthesis Version: svn40772 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucdavisthesis-doc BuildArch: noarch AutoReqProv: No @@ -168565,7 +168566,7 @@ Provides: tex-ucthesis = %{tl_version} License: LPPL 1.3 Summary: University of California thesis format Version: svn15878.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168584,7 +168585,7 @@ and bibliography are provided. %package ucthesis-doc Summary: Documentation for ucthesis Version: svn15878.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucthesis-doc BuildArch: noarch AutoReqProv: No @@ -168597,7 +168598,7 @@ Provides: tex-uestcthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis class for UESTC Version: svn36371.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168643,7 +168644,7 @@ Electronic Science and Technology of China. %package uestcthesis-doc Summary: Documentation for uestcthesis Version: svn36371.1.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uestcthesis-doc BuildArch: noarch AutoReqProv: No @@ -168656,7 +168657,7 @@ Provides: tex-uiucredborder = %{tl_version} License: LPPL 1.2 Summary: Class for UIUC thesis red-bordered forms Version: svn29974.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168672,7 +168673,7 @@ for doctoral dissertations -- your thesis committee members. %package uiucredborder-doc Summary: Documentation for uiucredborder Version: svn29974.1.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uiucredborder-doc BuildArch: noarch AutoReqProv: No @@ -168685,7 +168686,7 @@ Provides: tex-uiucthesis = %{tl_version} License: LPPL Summary: UIUC thesis class Version: svn15878.2.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168702,7 +168703,7 @@ Preparing to Deposit. %package uiucthesis-doc Summary: Documentation for uiucthesis Version: svn15878.2.25 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uiucthesis-doc BuildArch: noarch AutoReqProv: No @@ -168715,7 +168716,7 @@ Provides: tex-ulthese = %{tl_version} License: LPPL 1.3 Summary: Thesis class and templates for Universite Laval Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168746,7 +168747,7 @@ language of the target audience. %package ulthese-doc Summary: Documentation for ulthese Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ulthese-doc BuildArch: noarch AutoReqProv: No @@ -168759,7 +168760,7 @@ Provides: tex-umthesis = %{tl_version} License: LPPL Summary: Dissertations at the University of Michigan Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168778,7 +168779,7 @@ has few conflicts with potential add-on packages. %package umthesis-doc Summary: Documentation for umthesis Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-umthesis-doc BuildArch: noarch AutoReqProv: No @@ -168791,7 +168792,7 @@ Provides: tex-umich-thesis = %{tl_version} License: LPPL Summary: University of Michigan Thesis LaTeX class Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168808,7 +168809,7 @@ according to the Rackham dissertation handbook. %package umich-thesis-doc Summary: Documentation for umich-thesis Version: svn15878.1.20 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-umich-thesis-doc BuildArch: noarch AutoReqProv: No @@ -168819,7 +168820,7 @@ Documentation for umich-thesis %package unamth-template-doc Summary: Documentation for unamth-template Version: svn33625.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unamth-template-doc BuildArch: noarch AutoReqProv: No @@ -168832,7 +168833,7 @@ Provides: tex-unamthesis = %{tl_version} License: LPPL 1.3 Summary: Style for Universidad Nacional Autonoma de Mexico theses Version: svn29799.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168852,7 +168853,7 @@ schemes using the natbib package. %package unamthesis-doc Summary: Documentation for unamthesis Version: svn29799.2.02 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unamthesis-doc BuildArch: noarch AutoReqProv: No @@ -168865,7 +168866,7 @@ Provides: tex-unswcover = %{tl_version} License: LPPL 1.3 Summary: Typeset a dissertation cover page following UNSW guidelines Version: svn29476.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168884,7 +168885,7 @@ statements. %package unswcover-doc Summary: Documentation for unswcover Version: svn29476.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unswcover-doc BuildArch: noarch AutoReqProv: No @@ -168897,7 +168898,7 @@ Provides: tex-uothesis = %{tl_version} License: LPPL 1.3 Summary: Class for dissertations and theses at the University of Oregon Version: svn25355.2.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168931,7 +168932,7 @@ graduate school student manual. %package uothesis-doc Summary: Documentation for uothesis Version: svn25355.2.5.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uothesis-doc BuildArch: noarch AutoReqProv: No @@ -168944,7 +168945,7 @@ Provides: tex-urcls = %{tl_version} License: LPPL Summary: Beamer and scrlttr2 classes and styles for the University of Regensburg Version: svn37550.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -168979,7 +168980,7 @@ are provided as .tex and .pdf-files. %package urcls-doc Summary: Documentation for urcls Version: svn37550.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-urcls-doc BuildArch: noarch AutoReqProv: No @@ -168992,7 +168993,7 @@ Provides: tex-uowthesis = %{tl_version} License: LPPL 1.3 Summary: Document class for dissertations at the University of Wollongong Version: svn19700.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169015,7 +169016,7 @@ Student Centre, Research & Innovation Division, UoW. %package uowthesis-doc Summary: Documentation for uowthesis Version: svn19700.1.0a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uowthesis-doc BuildArch: noarch AutoReqProv: No @@ -169028,7 +169029,7 @@ Provides: tex-uowthesistitlepage = %{tl_version} License: LPPL 1.3 Summary: Title page for dissertations at the University of Wollongong Version: svn32626.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169051,7 +169052,7 @@ of each PhD Thesis. %package uowthesistitlepage-doc Summary: Documentation for uowthesistitlepage Version: svn32626.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uowthesistitlepage-doc BuildArch: noarch AutoReqProv: No @@ -169064,7 +169065,7 @@ Provides: tex-uspatent = %{tl_version} License: LPPL 1.3 Summary: U.S. Patent Application Tools for LaTeX and LyX Version: svn27744.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169079,7 +169080,7 @@ LaTeX and/or LyX. %package uspatent-doc Summary: Documentation for uspatent Version: svn27744.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uspatent-doc BuildArch: noarch AutoReqProv: No @@ -169092,7 +169093,7 @@ Provides: tex-ut-thesis = %{tl_version} License: LPPL 1.3 Summary: University of Toronto thesis style Version: svn38269.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169110,7 +169111,7 @@ the class, is provided. %package ut-thesis-doc Summary: Documentation for ut-thesis Version: svn38269.2.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ut-thesis-doc BuildArch: noarch AutoReqProv: No @@ -169123,7 +169124,7 @@ Provides: tex-uwthesis = %{tl_version} License: ASL 2.0 Summary: University of Washington thesis class Version: svn15878.6.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169136,7 +169137,7 @@ uwthesis package %package uwthesis-doc Summary: Documentation for uwthesis Version: svn15878.6.13 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-uwthesis-doc BuildArch: noarch AutoReqProv: No @@ -169149,7 +169150,7 @@ Provides: tex-vancouver = %{tl_version} License: LPPL 1.3 Summary: Bibliographic style file for Biomedical Journals Version: svn34470.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169166,7 +169167,7 @@ ICMJE web site. %package vancouver-doc Summary: Documentation for vancouver Version: svn34470.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-vancouver-doc BuildArch: noarch AutoReqProv: No @@ -169179,7 +169180,7 @@ Provides: tex-wsemclassic = %{tl_version} License: BSD Summary: LaTeX class for Bavarian school w-seminar papers Version: svn31532.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169216,7 +169217,7 @@ standard report class. %package wsemclassic-doc Summary: Documentation for wsemclassic Version: svn31532.1.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-wsemclassic-doc BuildArch: noarch AutoReqProv: No @@ -169229,7 +169230,7 @@ Provides: tex-xcookybooky = %{tl_version} License: LPPL 1.3 Summary: Typeset (potentially long) recipes Version: svn36435.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169265,7 +169266,7 @@ hint. The package depends on the Emerald fonts. %package xcookybooky-doc Summary: Documentation for xcookybooky Version: svn36435.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xcookybooky-doc BuildArch: noarch AutoReqProv: No @@ -169278,7 +169279,7 @@ Provides: tex-yathesis = %{tl_version} License: LPPL 1.3 Summary: yathesis provides a LaTeX class that aims to help to write a thesis following French rules Version: svn41349 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169334,7 +169335,7 @@ following French rules. %package yathesis-doc Summary: Documentation for yathesis Version: svn41349 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-yathesis-doc BuildArch: noarch AutoReqProv: No @@ -169347,7 +169348,7 @@ Provides: tex-york-thesis = %{tl_version} License: LPPL 1.3 Summary: A thesis class file for York University, Toronto Version: svn23348.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169365,7 +169366,7 @@ file now implements the changes made in Spring 2005. %package york-thesis-doc Summary: Documentation for york-thesis Version: svn23348.3.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-york-thesis-doc BuildArch: noarch AutoReqProv: No @@ -169376,7 +169377,7 @@ Documentation for york-thesis %package collection-science Summary: Natural and computer sciences Version: svn39074 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-latex @@ -169457,7 +169458,7 @@ Provides: tex-SIstyle = %{tl_version} License: LPPL Summary: Package to typeset SI units, numbers and angles Version: svn15878.2.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169475,7 +169476,7 @@ sistyle has maintenance-only support, now. %package SIstyle-doc Summary: Documentation for SIstyle Version: svn15878.2.3a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-SIstyle-doc BuildArch: noarch AutoReqProv: No @@ -169488,7 +169489,7 @@ Provides: tex-SIunits = %{tl_version} License: LPPL 1.3 Summary: International System of Units Version: svn15878.1.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169508,7 +169509,7 @@ now. %package SIunits-doc Summary: Documentation for SIunits Version: svn15878.1.36 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-SIunits-doc BuildArch: noarch AutoReqProv: No @@ -169521,7 +169522,7 @@ Provides: tex-complexity = %{tl_version} License: LPPL Summary: Computational complexity class names Version: svn15878.0.76 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169542,7 +169543,7 @@ ifthen package. %package complexity-doc Summary: Documentation for complexity Version: svn15878.0.76 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-complexity-doc BuildArch: noarch AutoReqProv: No @@ -169555,7 +169556,7 @@ Provides: tex-computational-complexity = %{tl_version} License: LPPL Summary: Class for the journal Computational Complexity Version: svn39903 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169616,7 +169617,7 @@ an algorithm environment, ... The class requires natbib. %package computational-complexity-doc Summary: Documentation for computational-complexity Version: svn39903 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-computational-complexity-doc BuildArch: noarch AutoReqProv: No @@ -169629,7 +169630,7 @@ Provides: tex-cryptocode = %{tl_version} License: LPPL 1.3 Summary: Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography Version: svn37019.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169665,7 +169666,7 @@ used within the cryptographic community. %package cryptocode-doc Summary: Documentation for cryptocode Version: svn37019.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-cryptocode-doc BuildArch: noarch AutoReqProv: No @@ -169678,7 +169679,7 @@ Provides: tex-digiconfigs = %{tl_version} License: LPPL Summary: Writing "configurations" Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169696,7 +169697,7 @@ mechanism for displaying these configurations. %package digiconfigs-doc Summary: Documentation for digiconfigs Version: svn15878.0.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-digiconfigs-doc BuildArch: noarch AutoReqProv: No @@ -169709,7 +169710,7 @@ Provides: tex-drawstack = %{tl_version} License: LPPL 1.3 Summary: Draw execution stacks Version: svn28582.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169726,7 +169727,7 @@ notions). The code is written on top of TikZ. %package drawstack-doc Summary: Documentation for drawstack Version: svn28582.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-drawstack-doc BuildArch: noarch AutoReqProv: No @@ -169739,7 +169740,7 @@ Provides: tex-dyntree = %{tl_version} License: LGPLv2+ Summary: Construct Dynkin tree diagrams Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169763,7 +169764,7 @@ roots. The package makes use of the author's coollist package. %package dyntree-doc Summary: Documentation for dyntree Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-dyntree-doc BuildArch: noarch AutoReqProv: No @@ -169776,7 +169777,7 @@ Provides: tex-eltex = %{tl_version} License: LPPL Summary: Simple circuit diagrams in LaTeX picture mode Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169799,7 +169800,7 @@ circuit symbols accord to the various parts of the standard IEC %package eltex-doc Summary: Documentation for eltex Version: svn15878.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-eltex-doc BuildArch: noarch AutoReqProv: No @@ -169812,7 +169813,7 @@ Provides: tex-endiagram = %{tl_version} License: LPPL 1.3 Summary: Easy creation of potential energy curve diagrams Version: svn34486.0.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169832,7 +169833,7 @@ cannot (yet) be considered stable. %package endiagram-doc Summary: Documentation for endiagram Version: svn34486.0.1d -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-endiagram-doc BuildArch: noarch AutoReqProv: No @@ -169845,7 +169846,7 @@ Provides: tex-engtlc = %{tl_version} License: LPPL 1.3 Summary: Support for users in Telecommunications Engineering Version: svn28571.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169859,7 +169860,7 @@ used in Telecommunications Engineering. %package engtlc-doc Summary: Documentation for engtlc Version: svn28571.3.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-engtlc-doc BuildArch: noarch AutoReqProv: No @@ -169872,7 +169873,7 @@ Provides: tex-fouridx = %{tl_version} License: LPPL Summary: Left sub- and superscripts in maths mode Version: svn32214.2.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169890,7 +169891,7 @@ command in the amsmath package. %package fouridx-doc Summary: Documentation for fouridx Version: svn32214.2.00 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fouridx-doc BuildArch: noarch AutoReqProv: No @@ -169903,7 +169904,7 @@ Provides: tex-functan = %{tl_version} License: LPPL Summary: Macros for functional analysis and PDE theory Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169922,7 +169923,7 @@ override the standard behavior of norms, ...). %package functan-doc Summary: Documentation for functan Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-functan-doc BuildArch: noarch AutoReqProv: No @@ -169935,7 +169936,7 @@ Provides: tex-galois = %{tl_version} License: LPPL Summary: Typeset Galois connections Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169950,7 +169951,7 @@ optionally in colour. %package galois-doc Summary: Documentation for galois Version: svn15878.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-galois-doc BuildArch: noarch AutoReqProv: No @@ -169963,7 +169964,7 @@ Provides: tex-gastex = %{tl_version} License: LPPL Summary: Graphs and Automata Simplified in TeX Version: svn15878.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -169984,7 +169985,7 @@ PDFLaTeX. %package gastex-doc Summary: Documentation for gastex Version: svn15878.2.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gastex-doc BuildArch: noarch AutoReqProv: No @@ -169997,7 +169998,7 @@ Provides: tex-gene-logic = %{tl_version} License: Crossword Summary: Typeset logic formulae, etc Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170012,7 +170013,7 @@ newtheorem-like environment (NewTheorem), and several macros. %package gene-logic-doc Summary: Documentation for gene-logic Version: svn15878.1.4 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gene-logic-doc BuildArch: noarch AutoReqProv: No @@ -170025,7 +170026,7 @@ Provides: tex-ghsystem = %{tl_version} License: LPPL 1.3 Summary: Globally harmonised system of chemical (etc) naming Version: svn34925.4.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170086,7 +170087,7 @@ way. The statements are taken from EU regulation 1272/2008. %package ghsystem-doc Summary: Documentation for ghsystem Version: svn34925.4.6 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ghsystem-doc BuildArch: noarch AutoReqProv: No @@ -170099,7 +170100,7 @@ Provides: tex-gu = %{tl_version} License: LPPL Summary: Typeset crystallographic group-subgroup-schemes Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170123,7 +170124,7 @@ symmetry reduction are supported. %package gu-doc Summary: Documentation for gu Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-gu-doc BuildArch: noarch AutoReqProv: No @@ -170136,7 +170137,7 @@ Provides: tex-hep = %{tl_version} License: LPPL Summary: A "convenience wrapper" for High Energy Physics packages Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170170,7 +170171,7 @@ papers, etc. %package hep-doc Summary: Documentation for hep Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hep-doc BuildArch: noarch AutoReqProv: No @@ -170183,7 +170184,7 @@ Provides: tex-hepnames = %{tl_version} License: LPPL Summary: Pre-defined high energy particle names Version: svn35722.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170211,7 +170212,7 @@ main non-resonant particle names from heppennames with more %package hepnames-doc Summary: Documentation for hepnames Version: svn35722.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hepnames-doc BuildArch: noarch AutoReqProv: No @@ -170224,7 +170225,7 @@ Provides: tex-hepparticles = %{tl_version} License: LPPL Summary: Macros for typesetting high energy physics particle names Version: svn35723.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170254,7 +170255,7 @@ used. %package hepparticles-doc Summary: Documentation for hepparticles Version: svn35723.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hepparticles-doc BuildArch: noarch AutoReqProv: No @@ -170267,7 +170268,7 @@ Provides: tex-hepthesis = %{tl_version} License: LPPL Summary: A class for academic reports, especially PhD theses Version: svn35720.1.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170312,7 +170313,7 @@ from the KOMA-Script bundle. %package hepthesis-doc Summary: Documentation for hepthesis Version: svn35720.1.5.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hepthesis-doc BuildArch: noarch AutoReqProv: No @@ -170325,7 +170326,7 @@ Provides: tex-hepunits = %{tl_version} License: LPPL Summary: A set of units useful in high energy physics applications Version: svn15878.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170345,7 +170346,7 @@ on. %package hepunits-doc Summary: Documentation for hepunits Version: svn15878.1.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-hepunits-doc BuildArch: noarch AutoReqProv: No @@ -170358,7 +170359,7 @@ Provides: tex-karnaugh = %{tl_version} License: LPPL Summary: Typeset Karnaugh-Veitch-maps Version: svn21338.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170375,7 +170376,7 @@ and Veitch-Charts with up to ten variables (=1024 entries). %package karnaugh-doc Summary: Documentation for karnaugh Version: svn21338.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-karnaugh-doc BuildArch: noarch AutoReqProv: No @@ -170388,7 +170389,7 @@ Provides: tex-karnaughmap = %{tl_version} License: LPPL 1.2 Summary: Typeset Karnaugh maps Version: svn36989.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170408,7 +170409,7 @@ karnaughmaps and a proper LaTeX package. %package karnaughmap-doc Summary: Documentation for karnaughmap Version: svn36989.2.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-karnaughmap-doc BuildArch: noarch AutoReqProv: No @@ -170421,7 +170422,7 @@ Provides: tex-matlab-prettifier = %{tl_version} License: LPPL 1.3 Summary: Pretty-print Matlab source code Version: svn34323.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170439,7 +170440,7 @@ of Octave syntax is not complete.) %package matlab-prettifier-doc Summary: Documentation for matlab-prettifier Version: svn34323.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-matlab-prettifier-doc BuildArch: noarch AutoReqProv: No @@ -170452,7 +170453,7 @@ Provides: tex-mhchem = %{tl_version} License: LPPL 1.3 Summary: Typeset chemical formulae/equations and Risk and Safety phrases Version: svn39676 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170487,7 +170488,7 @@ requires the expl3 bundle. %package mhchem-doc Summary: Documentation for mhchem Version: svn39676 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mhchem-doc BuildArch: noarch AutoReqProv: No @@ -170500,7 +170501,7 @@ Provides: tex-miller = %{tl_version} License: LPPL Summary: Typeset miller indices Version: svn18789.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170515,7 +170516,7 @@ above the corresponding number. %package miller-doc Summary: Documentation for miller Version: svn18789.1.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-miller-doc BuildArch: noarch AutoReqProv: No @@ -170528,7 +170529,7 @@ Provides: tex-mychemistry = %{tl_version} License: LPPL 1.3 Summary: Create reaction schemes with LaTeX and ChemFig Version: svn28611.1.99b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170550,7 +170551,7 @@ chemexec. %package mychemistry-doc Summary: Documentation for mychemistry Version: svn28611.1.99b -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mychemistry-doc BuildArch: noarch AutoReqProv: No @@ -170563,7 +170564,7 @@ Provides: tex-nuc = %{tl_version} License: LPPL Summary: Notation for nuclear isotopes Version: svn22256.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170581,7 +170582,7 @@ properly; this spacing is supported in the package. %package nuc-doc Summary: Documentation for nuc Version: svn22256.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-nuc-doc BuildArch: noarch AutoReqProv: No @@ -170594,7 +170595,7 @@ Provides: tex-objectz = %{tl_version} License: LPPL Summary: Macros for typesetting Object Z Version: svn19389.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170609,7 +170610,7 @@ develops the original zed package %package objectz-doc Summary: Documentation for objectz Version: svn19389.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-objectz-doc BuildArch: noarch AutoReqProv: No @@ -170622,7 +170623,7 @@ Provides: tex-physics = %{tl_version} License: LPPL Summary: Macros supporting the Mathematics of Physics Version: svn28590.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170639,7 +170640,7 @@ algebra, using Dirac notation. %package physics-doc Summary: Documentation for physics Version: svn28590.1.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-physics-doc BuildArch: noarch AutoReqProv: No @@ -170652,7 +170653,7 @@ Provides: tex-pseudocode = %{tl_version} License: LPPL Summary: LaTeX environment for specifying algorithms in a natural way Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170668,7 +170669,7 @@ describing algorithms in a natural manner. %package pseudocode-doc Summary: Documentation for pseudocode Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pseudocode-doc BuildArch: noarch AutoReqProv: No @@ -170681,7 +170682,7 @@ Provides: tex-pygmentex = %{tl_version} License: LPPL 1.3 Summary: Use Pygments to format code listings in documents Version: svn34996.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170706,7 +170707,7 @@ applications that need to prettify source code. %package pygmentex-doc Summary: Documentation for pygmentex Version: svn34996.0.8 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-pygmentex-doc BuildArch: noarch AutoReqProv: No @@ -170719,7 +170720,7 @@ Summary: Binaries for pygmentex Version: svn34996.0 Requires: texlive-base Requires: texlive-pygmentex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pygmentex-bin @@ -170730,7 +170731,7 @@ Provides: tex-sasnrdisplay = %{tl_version} License: LPPL 1.3 Summary: Typeset SAS or R code or output Version: svn33120.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170754,7 +170755,7 @@ and SASweave packages. %package sasnrdisplay-doc Summary: Documentation for sasnrdisplay Version: svn33120.0.93 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sasnrdisplay-doc BuildArch: noarch AutoReqProv: No @@ -170767,7 +170768,7 @@ Provides: tex-sciposter = %{tl_version} License: LPPL Summary: Make posters of ISO A3 size and larger Version: svn15878.1.18 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170807,7 +170808,7 @@ are ignored. %package sciposter-doc Summary: Documentation for sciposter Version: svn15878.1.18 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sciposter-doc BuildArch: noarch AutoReqProv: No @@ -170820,7 +170821,7 @@ Provides: tex-sclang-prettifier = %{tl_version} License: LPPL 1.3 Summary: Prettyprinting SuperCollider source code Version: svn35087.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170838,7 +170839,7 @@ documents typeset with LaTeX & friends. %package sclang-prettifier-doc Summary: Documentation for sclang-prettifier Version: svn35087.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sclang-prettifier-doc BuildArch: noarch AutoReqProv: No @@ -170851,7 +170852,7 @@ Provides: tex-sfg = %{tl_version} License: LPPL Summary: Draw signal flow graphs Version: svn20209.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170869,7 +170870,7 @@ machine). %package sfg-doc Summary: Documentation for sfg Version: svn20209.0.91 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-sfg-doc BuildArch: noarch AutoReqProv: No @@ -170882,7 +170883,7 @@ Provides: tex-siunitx = %{tl_version} License: LPPL 1.3 Summary: A comprehensive (SI) units package Version: svn39922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170924,7 +170925,7 @@ l3packages bundles. %package siunitx-doc Summary: Documentation for siunitx Version: svn39922 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-siunitx-doc BuildArch: noarch AutoReqProv: No @@ -170937,7 +170938,7 @@ Provides: tex-steinmetz = %{tl_version} License: LPPL Summary: Print Steinmetz notation Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170954,7 +170955,7 @@ angle symbol> The package makes use of pict2e. %package steinmetz-doc Summary: Documentation for steinmetz Version: svn15878.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-steinmetz-doc BuildArch: noarch AutoReqProv: No @@ -170967,7 +170968,7 @@ Provides: tex-struktex = %{tl_version} License: LPPL 1.2 Summary: Draw Nassi-Schneidermann charts Version: svn25916.141 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -170999,7 +171000,7 @@ picture environment (using pict2e for preference). %package struktex-doc Summary: Documentation for struktex Version: svn25916.141 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-struktex-doc BuildArch: noarch AutoReqProv: No @@ -171012,7 +171013,7 @@ Provides: tex-substances = %{tl_version} License: LPPL 1.3 Summary: A database of chemicals Version: svn40989 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171034,7 +171035,7 @@ in the document can be created.. %package substances-doc Summary: Documentation for substances Version: svn40989 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-substances-doc BuildArch: noarch AutoReqProv: No @@ -171047,7 +171048,7 @@ Provides: tex-t-angles = %{tl_version} License: GPL+ Summary: Draw tangles, trees, Hopf algebra operations and other pictures Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171066,7 +171067,7 @@ PDFLaTeX. %package t-angles-doc Summary: Documentation for t-angles Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-t-angles-doc BuildArch: noarch AutoReqProv: No @@ -171079,7 +171080,7 @@ Provides: tex-textopo = %{tl_version} License: GPL+ Summary: Annotated membrane protein topology plots Version: svn23796.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171098,7 +171099,7 @@ protein topology plots and helical wheels. %package textopo-doc Summary: Documentation for textopo Version: svn23796.1.5 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-textopo-doc BuildArch: noarch AutoReqProv: No @@ -171111,7 +171112,7 @@ Provides: tex-ulqda = %{tl_version} License: LPPL Summary: Support of Qualitative Data Analysis Version: svn26313.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171135,7 +171136,7 @@ information -- for example, in-depth interviews. %package ulqda-doc Summary: Documentation for ulqda Version: svn26313.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ulqda-doc BuildArch: noarch AutoReqProv: No @@ -171148,7 +171149,7 @@ Summary: Binaries for ulqda Version: svn13663.0 Requires: texlive-base Requires: texlive-ulqda -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description ulqda-bin @@ -171159,7 +171160,7 @@ Provides: tex-unitsdef = %{tl_version} License: LPPL Summary: Typesetting units in LaTeX Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171192,7 +171193,7 @@ changes the output concerning to the surrounding font settings. %package unitsdef-doc Summary: Documentation for unitsdef Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unitsdef-doc BuildArch: noarch AutoReqProv: No @@ -171205,7 +171206,7 @@ Provides: tex-xymtex = %{tl_version} License: LPPL 1.3 Summary: Typesetting chemical structures Version: svn32182.5.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171262,7 +171263,7 @@ independent) tool for use with LaTeX. %package xymtex-doc Summary: Documentation for xymtex Version: svn32182.5.06 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xymtex-doc BuildArch: noarch AutoReqProv: No @@ -171275,7 +171276,7 @@ Provides: tex-youngtab = %{tl_version} License: LPPL Summary: Typeset Young-Tableaux Version: svn17635.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171290,7 +171291,7 @@ for the representations of groups, providing two macros, %package youngtab-doc Summary: Documentation for youngtab Version: svn17635.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-youngtab-doc BuildArch: noarch AutoReqProv: No @@ -171301,7 +171302,7 @@ Documentation for youngtab %package collection-xetex Summary: XeTeX and packages Version: svn40404 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -171355,7 +171356,7 @@ Provides: tex-fixlatvian = %{tl_version} License: LPPL 1.3 Summary: Improve Latvian language support in XeLaTeX Version: svn21631.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171378,7 +171379,7 @@ classes. %package fixlatvian-doc Summary: Documentation for fixlatvian Version: svn21631.1a -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fixlatvian-doc BuildArch: noarch AutoReqProv: No @@ -171391,7 +171392,7 @@ Provides: tex-fontbook = %{tl_version} License: LPPL 1.3 Summary: Generate a font book Version: svn23608.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171409,7 +171410,7 @@ samples (for evaluation, etc.). %package fontbook-doc Summary: Documentation for fontbook Version: svn23608.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontbook-doc BuildArch: noarch AutoReqProv: No @@ -171422,7 +171423,7 @@ Provides: tex-fontwrap = %{tl_version} License: GPL+ Summary: Bind fonts to specific unicode blocks Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171438,7 +171439,7 @@ construct its tables. %package fontwrap-doc Summary: Documentation for fontwrap Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-fontwrap-doc BuildArch: noarch AutoReqProv: No @@ -171451,7 +171452,7 @@ Provides: tex-interchar = %{tl_version} License: LPPL 1.3 Summary: Managing character class schemes in XeTeX Version: svn36312.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171469,7 +171470,7 @@ using this mechanism compatible with each others. %package interchar-doc Summary: Documentation for interchar Version: svn36312.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-interchar-doc BuildArch: noarch AutoReqProv: No @@ -171482,7 +171483,7 @@ Provides: tex-mathspec = %{tl_version} License: LPPL Summary: Specify arbitrary fonts for mathematics in XeTeX Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171506,7 +171507,7 @@ requires at least version 0.9995 of XeTeX. %package mathspec-doc Summary: Documentation for mathspec Version: svn15878.0.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-mathspec-doc BuildArch: noarch AutoReqProv: No @@ -171519,7 +171520,7 @@ Provides: tex-philokalia = %{tl_version} License: OFL Summary: A font to typeset the Philokalia Books Version: svn18651.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171541,7 +171542,7 @@ Philokalia books. %package philokalia-doc Summary: Documentation for philokalia Version: svn18651.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-philokalia-doc BuildArch: noarch AutoReqProv: No @@ -171554,7 +171555,7 @@ Provides: tex-polyglossia = %{tl_version} License: LPPL 1.3 Summary: An alternative to babel for XeLaTeX and LuaLaTeX Version: svn40138 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171679,7 +171680,7 @@ that role. %package polyglossia-doc Summary: Documentation for polyglossia Version: svn40138 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-polyglossia-doc BuildArch: noarch AutoReqProv: No @@ -171697,7 +171698,7 @@ Provides: tex-ptext = %{tl_version} License: LPPL 1.2 Summary: A 'lipsum' for Persian Version: svn30171.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171714,7 +171715,7 @@ be run under XeLaTeX. %package ptext-doc Summary: Documentation for ptext Version: svn30171.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ptext-doc BuildArch: noarch AutoReqProv: No @@ -171727,7 +171728,7 @@ Provides: tex-quran = %{tl_version} License: LPPL 1.3 Summary: An easy way to typeset any part of The Holy Quran Version: svn41165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171748,7 +171749,7 @@ loaded before the bidi package. %package quran-doc Summary: Documentation for quran Version: svn41165 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-quran-doc BuildArch: noarch AutoReqProv: No @@ -171761,7 +171762,7 @@ Provides: tex-realscripts = %{tl_version} License: LPPL 1.3 Summary: Access OpenType subscript and superscript glyphs Version: svn39706 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171782,7 +171783,7 @@ which now loads realscripts by default. %package realscripts-doc Summary: Documentation for realscripts Version: svn39706 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-realscripts-doc BuildArch: noarch AutoReqProv: No @@ -171795,7 +171796,7 @@ Provides: tex-ucharclasses = %{tl_version} License: Public Domain Summary: Font actions in XeTeX according to what is being processed Version: svn40854 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171813,7 +171814,7 @@ switch font to use ...". %package ucharclasses-doc Summary: Documentation for ucharclasses Version: svn40854 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-ucharclasses-doc BuildArch: noarch AutoReqProv: No @@ -171826,7 +171827,7 @@ Provides: tex-unisugar = %{tl_version} License: LPPL 1.3 Summary: Define syntactic sugar for Unicode LaTeX Version: svn22357.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171844,7 +171845,7 @@ XeTeX and LuaTeX. %package unisugar-doc Summary: Documentation for unisugar Version: svn22357.0.92 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-unisugar-doc BuildArch: noarch AutoReqProv: No @@ -171857,7 +171858,7 @@ Provides: tex-xebaposter = %{tl_version} License: LPPL 1.3 Summary: Creates beautiful scientific Persian/Latin posters using TikZ Version: svn39709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171883,7 +171884,7 @@ without any problem. %package xebaposter-doc Summary: Documentation for xebaposter Version: svn39709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xebaposter-doc BuildArch: noarch AutoReqProv: No @@ -171896,7 +171897,7 @@ Provides: tex-xecjk = %{tl_version} License: LPPL 1.3 Summary: Support for CJK documents in XeLaTeX Version: svn41129 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171932,7 +171933,7 @@ development environment). %package xecjk-doc Summary: Documentation for xecjk Version: svn41129 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xecjk-doc BuildArch: noarch AutoReqProv: No @@ -171945,7 +171946,7 @@ Provides: tex-xecolor = %{tl_version} License: LPPL 1.3 Summary: Support for color in XeLaTeX Version: svn29660.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171962,7 +171963,7 @@ in bidirectional texts without any problem. %package xecolor-doc Summary: Documentation for xecolor Version: svn29660.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xecolor-doc BuildArch: noarch AutoReqProv: No @@ -171975,7 +171976,7 @@ Provides: tex-xecyr = %{tl_version} License: LPPL Summary: Using Cyrillic languages in XeTeX Version: svn20221.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -171993,7 +171994,7 @@ babel. %package xecyr-doc Summary: Documentation for xecyr Version: svn20221.1.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xecyr-doc BuildArch: noarch AutoReqProv: No @@ -172006,7 +172007,7 @@ Provides: tex-xeindex = %{tl_version} License: LPPL Summary: Automatic index generation for XeLaTeX Version: svn35756.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172024,7 +172025,7 @@ content can be fully specified beforehand. %package xeindex-doc Summary: Documentation for xeindex Version: svn35756.0.3 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xeindex-doc BuildArch: noarch AutoReqProv: No @@ -172037,7 +172038,7 @@ Provides: tex-xepersian = %{tl_version} License: LPPL 1.3 Summary: Persian for LaTeX, using XeTeX Version: svn40841 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172127,7 +172128,7 @@ The package supports Persian typesetting. %package xepersian-doc Summary: Documentation for xepersian Version: svn40841 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xepersian-doc BuildArch: noarch AutoReqProv: No @@ -172140,7 +172141,7 @@ Provides: tex-xesearch = %{tl_version} License: LPPL Summary: A string finder for XeTeX Version: svn16041.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172161,7 +172162,7 @@ syntax of programming languages. %package xesearch-doc Summary: Documentation for xesearch Version: svn16041.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xesearch-doc BuildArch: noarch AutoReqProv: No @@ -172174,7 +172175,7 @@ Provides: tex-xespotcolor = %{tl_version} License: LPPL 1.3 Summary: Spot colours support for XeLaTeX Version: svn40118 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172194,7 +172195,7 @@ interface and the same capabilities. %package xespotcolor-doc Summary: Documentation for xespotcolor Version: svn40118 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xespotcolor-doc BuildArch: noarch AutoReqProv: No @@ -172207,7 +172208,7 @@ Provides: tex-xetex-def = %{tl_version} License: LPPL Summary: Colour and graphics support for XeTeX Version: svn40327 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172223,7 +172224,7 @@ Provides: tex-xetex-itrans = %{tl_version} License: LPPL 1.3 Summary: Itrans input maps for use with XeLaTeX Version: svn35088.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172246,7 +172247,7 @@ using itrans. Fontspec maps are provided for Devanagari %package xetex-itrans-doc Summary: Documentation for xetex-itrans Version: svn35088.4.2 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetex-itrans-doc BuildArch: noarch AutoReqProv: No @@ -172259,7 +172260,7 @@ Provides: tex-xetex-pstricks = %{tl_version} License: Public Domain Summary: Running PStricks under XeTeX Version: svn17055.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172276,7 +172277,7 @@ documents. %package xetex-pstricks-doc Summary: Documentation for xetex-pstricks Version: svn17055.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetex-pstricks-doc BuildArch: noarch AutoReqProv: No @@ -172289,7 +172290,7 @@ Provides: tex-xetex-tibetan = %{tl_version} License: LPPL Summary: XeTeX input maps for Unicode Tibetan Version: svn28847.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172304,7 +172305,7 @@ to translate Tibetan to Unicode (range 0F00-0FFF). %package xetex-tibetan-doc Summary: Documentation for xetex-tibetan Version: svn28847.0.1 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetex-tibetan-doc BuildArch: noarch AutoReqProv: No @@ -172317,7 +172318,7 @@ Provides: tex-xetexfontinfo = %{tl_version} License: ASL 2.0 Summary: Report font features in XeTeX Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172333,7 +172334,7 @@ fonts, and AAT-info.tex for AAT fonts (Mac OS X only). %package xetexfontinfo-doc Summary: Documentation for xetexfontinfo Version: svn15878.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetexfontinfo-doc BuildArch: noarch AutoReqProv: No @@ -172346,7 +172347,7 @@ Provides: tex-xetexko = %{tl_version} License: LPPL 1.3 Summary: Typeset Korean with Xe(La)TeX Version: svn40374 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172370,7 +172371,7 @@ typesetting. %package xetexko-doc Summary: Documentation for xetexko Version: svn40374 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xetexko-doc BuildArch: noarch AutoReqProv: No @@ -172383,7 +172384,7 @@ Provides: tex-xevlna = %{tl_version} License: LPPL 1.3 Summary: Insert non-breakable spaces using XeTeX Version: svn30086.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172403,7 +172404,7 @@ cannot reliably be recognised.) The package works both with %package xevlna-doc Summary: Documentation for xevlna Version: svn30086.1.0 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xevlna-doc BuildArch: noarch AutoReqProv: No @@ -172416,7 +172417,7 @@ Provides: tex-xltxtra = %{tl_version} License: LPPL Summary: "Extras" for LaTeX users of XeTeX Version: svn39453 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172445,7 +172446,7 @@ package for typesetting the XeTeX and XeLaTeX logos. %package xltxtra-doc Summary: Documentation for xltxtra Version: svn39453 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xltxtra-doc BuildArch: noarch AutoReqProv: No @@ -172459,7 +172460,7 @@ Provides: tex-xunicode = %{tl_version} License: LPPL 1.3 Summary: Generate Unicode characters from accented glyphs Version: svn30466.0.981 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172480,7 +172481,7 @@ which define many commands for single text glyphs. %package xunicode-doc Summary: Documentation for xunicode Version: svn30466.0.981 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-xunicode-doc BuildArch: noarch AutoReqProv: No @@ -172492,7 +172493,7 @@ Documentation for xunicode %package scheme-basic Summary: basic scheme (plain and latex) Version: svn25923.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -172507,7 +172508,7 @@ scheme corresponds to collection-basic and collection-latex. %package scheme-context Summary: ConTeXt scheme Version: svn35799.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-context @@ -172539,7 +172540,7 @@ This is the TeX Live scheme for installing ConTeXt. %package scheme-full Summary: full scheme (everything) Version: svn33790.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -172596,7 +172597,7 @@ available. %package scheme-gust Summary: GUST TeX Live scheme Version: svn30372.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-FAQ-en-doc @@ -172641,7 +172642,7 @@ documents in PostScript or PDF. %package scheme-medium Summary: medium scheme (small + more packages and languages) Version: svn30457.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -172675,7 +172676,7 @@ languages. %package scheme-minimal Summary: minimal scheme (plain only) Version: svn13822.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -172689,7 +172690,7 @@ corresponds exactly to collection-basic. %package scheme-small Summary: small scheme (basic + xetex, metapost, a few languages) Version: svn41261 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-collection-basic @@ -172748,7 +172749,7 @@ hyphenations, and some recommended packages to scheme-basic. %package scheme-tetex Summary: teTeX scheme (more than medium, but nowhere near full) Version: svn32952.0 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-FAQ-en-doc @@ -172825,7 +172826,7 @@ that was maintained by Thomas Esser. %package scheme-xml Summary: XML scheme Version: svn40631 -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch Requires: texlive-base Requires: tex-context @@ -172857,7 +172858,7 @@ Provides: tex-texlive-docindex = %{tl_version} License: LPPL Summary: top-level TeX Live doc.html, etc Version: svn41430 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172871,7 +172872,7 @@ for the process. %package texlive-docindex-doc Summary: Documentation for texlive-docindex Version: svn41430 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 Provides: tex-texlive-docindex-doc BuildArch: noarch AutoReqProv: No @@ -172886,7 +172887,7 @@ Provides: tex-acmart-doc = %{tl_version} License: LPPL Summary: doc files of acmart Version: svn41385 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -172898,7 +172899,7 @@ Provides: tex-acmart = %{tl_version} License: LPPL Summary: Class for typesetting publications of ACM> Version: svn41385 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172914,7 +172915,7 @@ Provides: tex-adtrees = %{tl_version} License: GPL+ Summary: Macros for drawing adpositional trees Version: svn39438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172934,7 +172935,7 @@ Provides: tex-adtrees-doc License: GPL+ Summary: doc files of adtrees Version: svn39438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -172946,7 +172947,7 @@ Provides: tex-arabi-add-doc = %{tl_version} License: LPPL Summary: doc files of arabi-add Version: svn37709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -172958,7 +172959,7 @@ Provides: tex-arabi-add = %{tl_version} License: LPPL Summary: Using hyperref and bookmark packages with arabic and farsi languages Version: svn37709 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172975,7 +172976,7 @@ Provides: tex-arabluatex-doc = %{tl_version} License: GPLv3+ Summary: doc files of arabluatex Version: svn41397 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -172987,7 +172988,7 @@ Provides: tex-arabluatex = %{tl_version} License: GPLv3+ Summary: An ArabTeX-like interface for LuaLaTeX Version: svn41397 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173014,7 +173015,7 @@ Provides: tex-archaeologie-doc = %{tl_version} License: LPPL Summary: doc files of archaeologie Version: svn41325 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173026,7 +173027,7 @@ Provides: tex-archaeologie = %{tl_version} License: LPPL Summary: Citation-style which covers rules of the German Archaeology Institute Version: svn41325 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173043,7 +173044,7 @@ Provides: tex-asapsym-doc = %{tl_version} License: LPPL Summary: doc files of asapsym Version: svn40201 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173055,7 +173056,7 @@ Provides: tex-asapsym = %{tl_version} License: LPPL Summary: Using the free ASAP Symbol font with LaTeX and Plain TeX Version: svn40201 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173078,7 +173079,7 @@ Provides: tex-asciilist-doc = %{tl_version} License: LPPL Summary: doc files of asciilist Version: svn41158 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173090,7 +173091,7 @@ Provides: tex-asciilist = %{tl_version} License: LPPL Summary: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX. Version: svn41158 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173111,7 +173112,7 @@ Provides: tex-autosp-doc = %{tl_version} License: GPLv2 Summary: doc files for autosp Version: svn40768 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173122,7 +173123,7 @@ Documentation for babel-belarusian Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores Version: svn40768 Requires: texlive-base -Release: %{tl_release}.5 +Release: %{tl_release}.6 %description autosp-bin Binaries for autosp. @@ -173141,7 +173142,7 @@ Provides: tex-babel-belarusian-doc = %{tl_version} License: LPPL Summary: doc files of babel-belarusian Version: svn40636 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173153,7 +173154,7 @@ Provides: tex-babel-belarusian = %{tl_version} License: LPPL Summary: Babel support for Belarusian Version: svn40636 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173169,7 +173170,7 @@ Provides: tex-babel-macedonian-doc = %{tl_version} License: LPPL Summary: doc files of babel-macedonian Version: svn39587 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173181,7 +173182,7 @@ Provides: tex-babel-macedonian = %{tl_version} License: LPPL Summary: Babel module to support Macedonian Cyrillic Version: svn39587 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173197,7 +173198,7 @@ Provides: tex-babel-occitan-doc = %{tl_version} License: LPPL Summary: doc files of babel-occitan Version: svn39608 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173209,7 +173210,7 @@ Provides: tex-babel-occitan = %{tl_version} License: LPPL Summary: Babel support for Occitan Version: svn39608 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173224,7 +173225,7 @@ Provides: tex-babel-vietnamese-doc = %{tl_version} License: LPPL Summary: doc files of babel-vietnamese Version: svn39246 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173236,7 +173237,7 @@ Provides: tex-beamercolorthemeowl-doc = %{tl_version} License: LPPL Summary: doc files of beamercolorthemeowl Version: svn40105 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173248,7 +173249,7 @@ Provides: tex-beamercolorthemeowl = %{tl_version} License: LPPL Summary: A flexible beamer color theme to maximize visibility Version: svn40105 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173275,7 +173276,7 @@ Obsoletes: texlive-devlev-cm-doc < 2016 License: GPL+ Summary: doc files of beamertheme-detlevcm Version: svn39048 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173290,7 +173291,7 @@ Obsoletes: texlive-devlev-cm < 2016 License: GPL+ Summary: A beamer theme designed for use in the University of Leeds Version: svn39048 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173312,7 +173313,7 @@ Obsoletes: texlive-epyt-doc < 2016 License: LPPL Summary: doc files of beamertheme-epyt Version: svn41404 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173327,7 +173328,7 @@ Obsoletes: texlive-epyt < 2016 License: LPPL Summary: A simple and clean theme for LaTeX beamer class Version: svn41404 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173346,7 +173347,7 @@ Provides: tex-beamertheme-metropolis-doc = %{tl_version} License: CC-BY-SA Summary: doc files of beamertheme-metropolis Version: svn40024 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173358,7 +173359,7 @@ Provides: tex-beamertheme-metropolis = %{tl_version} License: CC-BY-SA Summary: A modern LaTeX beamer theme Version: svn40024 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173387,7 +173388,7 @@ Provides: tex-beamer-verona-doc = %{tl_version} License: LPPL Summary: doc files of beamer-verona Version: svn39180 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173399,7 +173400,7 @@ Provides: tex-beamer-verona = %{tl_version} License: LPPL Summary: A theme for the beamer class Version: svn39180 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173415,7 +173416,7 @@ Provides: tex-biblatex-abnt-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-abnt Version: svn41824 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173427,7 +173428,7 @@ Provides: tex-biblatex-abnt = %{tl_version} License: LPPL Summary: BibLaTeX style for Brazil's ABNT rules Version: svn41824 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173445,7 +173446,7 @@ Provides: tex-biblatex-bookinother-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-bookinother Version: svn42068 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173457,7 +173458,7 @@ Provides: tex-biblatex-bookinother = %{tl_version} License: LPPL Summary: Manage book edited in other entry type Version: svn42068 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173474,7 +173475,7 @@ Provides: tex-biblatex-iso690-doc = %{tl_version} License: GPLv3 Summary: doc files of biblatex-iso690 Version: svn41148 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173486,7 +173487,7 @@ Provides: tex-biblatex-iso690 = %{tl_version} License: GPLv3 Summary: BibLaTeX style for ISO 690 standard Version: svn41148 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173503,7 +173504,7 @@ Provides: tex-biblatex-morenames-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-morenames Version: svn42070 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173515,7 +173516,7 @@ Provides: tex-biblatex-morenames = %{tl_version} License: LPPL Summary: New names for standard BibLaTeX entry type Version: svn42070 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173535,7 +173536,7 @@ Provides: tex-bibletext-doc = %{tl_version} License: MIT Summary: doc files of bibletext Version: svn39785 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173547,7 +173548,7 @@ Provides: tex-bibletext = %{tl_version} License: MIT Summary: Insert Bible passages by their reference Version: svn39785 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173563,7 +173564,7 @@ Provides: tex-bibtexperllibs-doc = %{tl_version} License: GPL+ or Artistic Summary: doc files of bibtexperllibs Version: svn40139 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173575,7 +173576,7 @@ Provides: tex-bibtexperllibs = %{tl_version} License: GPL+ or Artistic Summary: BibTeX Perl Libraries Version: svn40139 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173595,7 +173596,7 @@ Provides: tex-bitpattern-doc = %{tl_version} License: LPPL Summary: doc files of bitpattern Version: svn39073 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173607,7 +173608,7 @@ Provides: tex-bitpattern = %{tl_version} License: LPPL Summary: Typeset bit pattern diagrams Version: svn39073 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173623,7 +173624,7 @@ Provides: tex-breakcites-doc = %{tl_version} License: Copyright only Summary: doc files of breakcites Version: svn21014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173635,7 +173636,7 @@ Provides: tex-breakcites = %{tl_version} License: Copyright only Summary: Ensure that multiple citations may break at line end Version: svn21014 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173654,7 +173655,7 @@ Provides: tex-bxdvidriver-doc = %{tl_version} License: MIT Summary: doc files of bxdvidriver Version: svn40148 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173666,7 +173667,7 @@ Provides: tex-bxdvidriver = %{tl_version} License: MIT Summary: Enables specifying a driver option effective only in DVI output Version: svn40148 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173685,7 +173686,7 @@ Provides: tex-bxenclose-doc = %{tl_version} License: MIT Summary: doc files of bxenclose Version: svn40213 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173697,7 +173698,7 @@ Provides: tex-bxenclose = %{tl_version} License: MIT Summary: Enclose the document body with some pieces of code Version: svn40213 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173716,7 +173717,7 @@ Provides: tex-bxnewfont-doc = %{tl_version} License: MIT Summary: doc files of bxnewfont Version: svn40214 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173728,7 +173729,7 @@ Provides: tex-bxnewfont = %{tl_version} License: MIT Summary: Enhanced \newfont command Version: svn40214 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173749,7 +173750,7 @@ Provides: tex-bxpapersize-doc = %{tl_version} License: MIT Summary: doc files of bxpapersize Version: svn40149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173761,7 +173762,7 @@ Provides: tex-bxpapersize = %{tl_version} License: MIT Summary: Synchronize output paper size with layout paper size Version: svn40149 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173779,7 +173780,7 @@ Provides: tex-carbohydrates-doc = %{tl_version} License: LPPL Summary: doc files of carbohydrates Version: svn39000 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173791,7 +173792,7 @@ Provides: tex-carbohydrates = %{tl_version} License: LPPL Summary: Carbohydrate molecules with chemfig Version: svn39000 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173810,7 +173811,7 @@ Provides: tex-chivo-doc = %{tl_version} License: LPPL Summary: doc files of chivo Version: svn40931 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -173822,7 +173823,7 @@ Provides: tex-chivo = %{tl_version} License: LPPL Summary: Using the free Chivo fonts with LaTeX Version: svn40931 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173994,7 +173995,7 @@ Provides: tex-churchslavonic-doc = %{tl_version} License: MIT Summary: doc files of churchslavonic Version: svn41182 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -174006,7 +174007,7 @@ Provides: tex-churchslavonic = %{tl_version} License: MIT Summary: Typesetting documents in Church Slavonic language using Unicode Version: svn41182 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -174026,7 +174027,7 @@ Provides: tex-cmdtrack-doc = %{tl_version} License: LPPL Summary: doc files of cmdtrack Version: svn28910 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -174038,7 +174039,7 @@ Provides: tex-cmdtrack = %{tl_version} License: LPPL Summary: Check used commands Version: svn28910 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -174060,7 +174061,7 @@ Provides: tex-cmexb-doc = %{tl_version} License: Public Domain Summary: doc files of cmexb Version: svn40785 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -174072,7 +174073,7 @@ Provides: tex-cmexb = %{tl_version} License: Public Domain Summary: PFB font support Version: svn40785 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -174090,7 +174091,7 @@ Provides: tex-cochineal-doc = %{tl_version} License: LPPL and OFL Summary: doc files of cochineal Version: svn41391 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -174102,7 +174103,7 @@ Provides: tex-cochineal = %{tl_version} License: LPPL and OFL Summary: Cochineal fonts with LaTeX support Version: svn41391 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175010,7 +175011,7 @@ Provides: tex-coloring-doc = %{tl_version} License: LPPL Summary: doc files of coloring Version: svn41042 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175022,7 +175023,7 @@ Provides: tex-coloring = %{tl_version} License: LPPL Summary: Define missing colors by their names Version: svn41042 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175040,7 +175041,7 @@ Provides: tex-continue-doc = %{tl_version} License: LPPL Summary: doc files of continue Version: svn39308 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175052,7 +175053,7 @@ Provides: tex-continue = %{tl_version} License: LPPL Summary: Prints 'continuation' marks on recto pages of multipage documents Version: svn39308 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175071,7 +175072,7 @@ Provides: tex-cquthesis-doc = %{tl_version} License: LPPL Summary: doc files of cquthesis Version: svn41372 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175083,7 +175084,7 @@ Provides: tex-cquthesis = %{tl_version} License: LPPL Summary: LaTeX Thesis Template for Chongqing University Version: svn41372 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175102,7 +175103,7 @@ Provides: tex-crimson-doc = %{tl_version} License: LPPL and OFL Summary: doc files of crimson Version: svn39782 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175114,7 +175115,7 @@ Provides: tex-crimson = %{tl_version} License: LPPL and OFL Summary: Crimson fonts with LaTeX support Version: svn39782 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175234,7 +175235,7 @@ Provides: tex-ctablestack-doc = %{tl_version} License: LPPL Summary: doc files of ctablestack Version: svn38514 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175246,7 +175247,7 @@ Provides: tex-ctablestack = %{tl_version} License: LPPL Summary: Catcode table stable support Version: svn38514 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175266,7 +175267,7 @@ Provides: tex-delimseasy-doc = %{tl_version} License: LPPL Summary: doc files of delimseasy Version: svn39589 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175278,7 +175279,7 @@ Provides: tex-delimseasy = %{tl_version} License: LPPL Summary: Delimiter commands that are easy to use and resize Version: svn39589 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175298,7 +175299,7 @@ Provides: tex-drawmatrix-doc = %{tl_version} License: MIT Summary: doc files of drawmatrix Version: svn38980 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175310,7 +175311,7 @@ Provides: tex-drawmatrix = %{tl_version} License: MIT Summary: Draw visual representations of matrices in LaTeX Version: svn38980 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175327,7 +175328,7 @@ Provides: tex-dvipdfmx-def-doc = %{tl_version} License: LPPL Summary: doc files of dvipdfmx-def Version: svn40328 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175339,7 +175340,7 @@ Provides: tex-dvisvgm-def-doc = %{tl_version} License: LPPL Summary: doc files of dvisvgm-def Version: svn41011 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175351,7 +175352,7 @@ Provides: tex-dvisvgm-def = %{tl_version} License: LPPL Summary: Colour and Graphics support for dvisvgm Version: svn41011 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175367,7 +175368,7 @@ Provides: tex-dynamicnumber-doc = %{tl_version} License: MIT Summary: doc files of dynamicnumber Version: svn38726 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175379,7 +175380,7 @@ Provides: tex-dynamicnumber = %{tl_version} License: MIT Summary: Dynamically typeset numbers and values in LaTeX through "symbolic links" Version: svn38726 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175403,7 +175404,7 @@ Provides: tex-ecobiblatex-doc = %{tl_version} License: LPPL Summary: doc files of ecobiblatex Version: svn39233 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175415,7 +175416,7 @@ Provides: tex-ecobiblatex = %{tl_version} License: LPPL Summary: Global Ecology and Biogeography BibLaTeX styles for the Biber backend Version: svn39233 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175433,7 +175434,7 @@ Provides: tex-econometrics-doc = %{tl_version} License: LPPL Summary: doc files of econometrics Version: svn39396 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175445,7 +175446,7 @@ Provides: tex-econometrics = %{tl_version} License: LPPL Summary: defines some commands that simplify mathematic notation in economic and econometric writing Version: svn39396 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175467,7 +175468,7 @@ Provides: tex-einfuehrung2-doc = %{tl_version} License: LPPL Summary: doc files of einfuehrung2 Version: svn39153 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175479,7 +175480,7 @@ Provides: tex-ellipse-doc = %{tl_version} License: LPPL Summary: doc files of ellipse Version: svn39025 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175491,7 +175492,7 @@ Provides: tex-ellipse = %{tl_version} License: LPPL Summary: Draw ellipses and elliptical arcs using the standard LaTeX2e picture environment Version: svn39025 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175507,7 +175508,7 @@ Provides: tex-emisa-doc = %{tl_version} License: LPPL Summary: doc files of emisa Version: svn40326 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175519,7 +175520,7 @@ Provides: tex-emisa = %{tl_version} License: LPPL Summary: A LaTeX package for preparing manuscripts for the journal EMISA Version: svn40326 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175538,7 +175539,7 @@ Provides: tex-exercises-doc = %{tl_version} License: LPPL Summary: doc files of exercises Version: svn38430 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175550,7 +175551,7 @@ Provides: tex-exercises = %{tl_version} License: LPPL Summary: Typeset exercises and solutions with automatic addition of points Version: svn38430 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175568,7 +175569,7 @@ Provides: tex-ffslides-doc = %{tl_version} License: LPPL Summary: doc files of ffslides Version: svn38895 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175580,7 +175581,7 @@ Provides: tex-ffslides = %{tl_version} License: LPPL Summary: Freeform slides based on the article class Version: svn38895 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175604,7 +175605,7 @@ Provides: tex-fibeamer-doc = %{tl_version} License: LPPL Summary: doc files of fibeamer Version: svn40954 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175616,7 +175617,7 @@ Provides: tex-fibeamer = %{tl_version} License: LPPL Summary: Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic) Version: svn40954 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175647,7 +175648,7 @@ Provides: tex-fixcmex-doc = %{tl_version} License: LPPL Summary: doc files of fixcmex Version: svn38816 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175659,7 +175660,7 @@ Provides: tex-fixcmex = %{tl_version} License: LPPL Summary: Fully scalable version of Computer Modern Math Extension font Version: svn38816 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175681,7 +175682,7 @@ Provides: tex-font-change-xetex-doc = %{tl_version} License: CC-BY-SA Summary: doc files of font-change-xetex Version: svn40404 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175693,7 +175694,7 @@ Provides: tex-font-change-xetex = %{tl_version} License: CC-BY-SA Summary: Macros to change text and mathematics fonts in plain XeTeX Version: svn40404 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175718,7 +175719,7 @@ Provides: tex-fonts-churchslavonic = %{tl_version} License: OFL Summary: Fonts for typesetting in Church Slavonic language Version: svn41166 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175741,7 +175742,7 @@ Provides: tex-fonts-churchslavonic-doc = %{tl_version} License: OFL Summary: doc files of fonts-churchslavonic Version: svn41166 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175753,7 +175754,7 @@ Provides: tex-footnotehyper-doc = %{tl_version} License: LPPL Summary: doc files of footnotehyper Version: svn40852 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175765,7 +175766,7 @@ Provides: tex-footnotehyper = %{tl_version} License: LPPL Summary: hyperref aware footnote.sty Version: svn40852 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175782,7 +175783,7 @@ Provides: tex-formation-latex-ul-doc = %{tl_version} License: CC-BY-SA Summary: doc files of formation-latex-ul Version: svn40391 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175794,7 +175795,7 @@ Provides: tex-getargs-doc = %{tl_version} License: LPPL Summary: doc files of getargs Version: svn41415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175806,7 +175807,7 @@ Provides: tex-getargs = %{tl_version} License: LPPL Summary: A flexible list-parsing macro with configurable parsing character Version: svn41415 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175828,7 +175829,7 @@ Provides: tex-getitems-doc = %{tl_version} License: LPPL Summary: doc files of getitems Version: svn39365 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175840,7 +175841,7 @@ Provides: tex-getitems = %{tl_version} License: LPPL Summary: Gathering items from a list-like environment Version: svn39365 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175858,7 +175859,7 @@ Provides: tex-gitlog-doc = %{tl_version} License: LPPL Summary: doc files of gitlog Version: svn38932 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175870,7 +175871,7 @@ Provides: tex-gitlog = %{tl_version} License: LPPL Summary: Typesetting git changelogs Version: svn38932 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175890,7 +175891,7 @@ Provides: tex-glossaries-extra-doc = %{tl_version} License: LPPL Summary: doc files of glossaries-extra Version: svn41342 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175902,7 +175903,7 @@ Provides: tex-glossaries-extra = %{tl_version} License: LPPL Summary: An extension to the glossaries package Version: svn41342 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175921,7 +175922,7 @@ Provides: tex-gloss-occitan-doc = %{tl_version} License: LPPL Summary: doc files of gloss-occitan Version: svn39609 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175933,7 +175934,7 @@ Provides: tex-gloss-occitan = %{tl_version} License: LPPL Summary: Polyglossia support for Occitan Version: svn39609 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175948,7 +175949,7 @@ Provides: tex-gobble-doc = %{tl_version} License: LPPL Summary: doc files of gobble Version: svn40936 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175960,7 +175961,7 @@ Provides: tex-gobble = %{tl_version} License: LPPL Summary: More gobble macros for PlainTeX and LaTeX Version: svn40936 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -175986,7 +175987,7 @@ Provides: tex-gradstudentresume-doc = %{tl_version} License: LPPL Summary: doc files of gradstudentresume Version: svn38832 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -175998,7 +175999,7 @@ Provides: tex-gradstudentresume = %{tl_version} License: LPPL Summary: A generic template for graduate student resumes Version: svn38832 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176015,7 +176016,7 @@ Provides: tex-graphics-cfg-doc = %{tl_version} License: CC-0 Summary: doc files of graphics-cfg Version: svn40269 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176027,7 +176028,7 @@ Provides: tex-graphics-cfg = %{tl_version} License: Public Domain Summary: Sample configuration files for LaTeX color and graphics Version: svn40269 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176048,7 +176049,7 @@ Provides: tex-greektonoi-doc = %{tl_version} License: GPLv3 Summary: doc files of greektonoi Version: svn39419 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176060,7 +176061,7 @@ Provides: tex-greektonoi = %{tl_version} License: GPLv3 Summary: Facilitates writing/editing of multiaccented greek Version: svn39419 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176088,7 +176089,7 @@ Provides: tex-gregoriotex-doc = %{tl_version} License: GPLv3 Summary: doc files of gregoriotex Version: svn41389 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176100,7 +176101,7 @@ Provides: tex-gregoriotex = %{tl_version} License: GPLv3 Summary: engraving Gregorian Chant scores Version: svn41389 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176130,7 +176131,7 @@ Summary: Binaries for gregoriotex Version: svn40473 Requires: texlive-base Requires: texlive-gregoriotex -Release: %{tl_release}.5 +Release: %{tl_release}.6 %description gregoriotex-bin Binaries for gregoriotex @@ -176140,7 +176141,7 @@ Provides: tex-h2020proposal-doc = %{tl_version} License: GPLv3+ Summary: doc files of h2020proposal Version: svn38428 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176152,7 +176153,7 @@ Provides: tex-h2020proposal = %{tl_version} License: GPLv3+ Summary: LaTeX class and template for EU H2020 RIA proposal Version: svn38428 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176170,7 +176171,7 @@ Provides: tex-hyphen-bulgarian-doc = %{tl_version} License: LPPL Summary: doc files of hyphen-bulgarian Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176182,7 +176183,7 @@ Provides: tex-hyphen-churchslavonic = %{tl_version} License: Copyright only Summary: Church Slavonic hyphenation patterns. Version: svn41113 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176198,7 +176199,7 @@ Provides: tex-hyphen-occitan = %{tl_version} License: Copyright only Summary: Occitan hyphenation patterns. Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176221,7 +176222,7 @@ Provides: tex-hyphen-sanskrit-doc = %{tl_version} License: LPPL Summary: doc files of hyphen-sanskrit Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176233,7 +176234,7 @@ Provides: tex-hyphen-spanish-doc = %{tl_version} License: LPPL Summary: doc files of hyphen-spanish Version: svn40340 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176245,7 +176246,7 @@ Provides: tex-ietfbibs-doc = %{tl_version} License: MIT Summary: doc files of ietfbibs Version: svn41332 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176257,7 +176258,7 @@ Provides: tex-iffont-doc = %{tl_version} License: LPPL Summary: doc files of iffont Version: svn38823 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176269,7 +176270,7 @@ Provides: tex-iffont = %{tl_version} License: LPPL Summary: Conditionally load fonts with fontspec Version: svn38823 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176286,7 +176287,7 @@ Provides: tex-imfellenglish-doc = %{tl_version} License: LPPL and OFL Summary: doc files of imfellenglish Version: svn38547 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176298,7 +176299,7 @@ Provides: tex-imfellenglish = %{tl_version} License: LPPL and OFL Summary: IM Fell English fonts with LaTeX support Version: svn38547 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176381,7 +176382,7 @@ Provides: tex-jacow-doc = %{tl_version} License: LPPL Summary: doc files of jacow Version: svn40523 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176393,7 +176394,7 @@ Provides: tex-jacow = %{tl_version} License: LPPL Summary: The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org Version: svn40523 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176411,7 +176412,7 @@ Provides: tex-keyvaltable-doc = %{tl_version} License: LPPL Summary: doc files of keyvaltable Version: svn41414 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176423,7 +176424,7 @@ Provides: tex-keyvaltable = %{tl_version} License: LPPL Summary: Re-usable tables separating content and presentation Version: svn41414 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176444,7 +176445,7 @@ Provides: tex-ksp-thesis-doc = %{tl_version} License: LPPL Summary: doc files of ksp-thesis Version: svn39080 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176456,7 +176457,7 @@ Provides: tex-ksp-thesis = %{tl_version} License: LPPL Summary: A LaTeX class for theses published with KIT Scientific Publishing Version: svn39080 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176478,7 +176479,7 @@ Provides: tex-langsci-doc = %{tl_version} License: LPPL Summary: doc files of langsci Version: svn41007 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176490,7 +176491,7 @@ Provides: tex-langsci = %{tl_version} License: LPPL Summary: Typeset books for publication with Language Science Press Version: svn41007 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176520,7 +176521,7 @@ Provides: tex-latex2e-help-texinfo-fr-doc = %{tl_version} License: LPPL Summary: doc files of latex2e-help-texinfo-fr Version: svn40765 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176541,7 +176542,7 @@ Provides: tex-latex-bib2-ex-doc = %{tl_version} License: LPPL Summary: doc files of latex-bib2-ex Version: svn40098 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176553,7 +176554,7 @@ Provides: tex-latex-tds-doc = %{tl_version} License: LPPL Summary: doc files of latex-tds Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176565,7 +176566,7 @@ Provides: tex-libertinegc-doc = %{tl_version} License: LPPL Summary: doc files of libertinegc Version: svn39746 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176577,7 +176578,7 @@ Provides: tex-libertinegc = %{tl_version} License: LPPL Summary: Libertine add-on to support Greek and Cyrillic Version: svn39746 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176684,7 +176685,7 @@ Provides: tex-libertinus-doc = %{tl_version} License: OFL Summary: doc files of libertinus Version: svn39526 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176696,7 +176697,7 @@ Provides: tex-libertinust1math-doc = %{tl_version} License: LPPL and OFL Summary: doc files of libertinust1math Version: svn40167 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176708,7 +176709,7 @@ Provides: tex-libertinust1math = %{tl_version} License: LPPL and OFL Summary: A Type 1 font and LaTeX support for Libertinus Math Version: svn40167 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176753,7 +176754,7 @@ Provides: tex-libertinus = %{tl_version} License: OFL Summary: The Libertinus font family Version: svn39526 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176788,7 +176789,7 @@ Provides: tex-librebodoni-doc = %{tl_version} License: LPPL and OFL Summary: doc files of librebodoni Version: svn39375 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176800,7 +176801,7 @@ Provides: tex-librebodoni = %{tl_version} License: LPPL and OFL Summary: Libre Bodoni fonts with LaTeX support Version: svn39375 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176942,7 +176943,7 @@ Provides: tex-linop-doc = %{tl_version} License: LPPL Summary: doc files of linop Version: svn41304 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176954,7 +176955,7 @@ Provides: tex-linop = %{tl_version} License: LPPL Summary: Typeset linear operators as they appear in quantum theory or linear algebra Version: svn41304 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -176972,7 +176973,7 @@ Provides: tex-longfbox-doc = %{tl_version} License: LPPL Summary: doc files of longfbox Version: svn39028 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -176984,7 +176985,7 @@ Provides: tex-longfbox = %{tl_version} License: LPPL Summary: Draw framed boxes with standard CSS attributes that can break over multiple pages Version: svn39028 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177002,7 +177003,7 @@ Provides: tex-lroundrect-doc = %{tl_version} License: LPPL Summary: doc files of lroundrect Version: svn39804 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177014,7 +177015,7 @@ Provides: tex-lroundrect = %{tl_version} License: LPPL Summary: LaTeX macros for utilizing the roundrect MetaPost routines Version: svn39804 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177033,7 +177034,7 @@ Provides: tex-lshort-estonian-doc = %{tl_version} License: GPLv2+ Summary: doc files of lshort-estonian Version: svn39323 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177045,7 +177046,7 @@ Provides: tex-lstbayes-doc = %{tl_version} License: LPPL Summary: doc files of lstbayes Version: svn39183 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177057,7 +177058,7 @@ Provides: tex-lstbayes = %{tl_version} License: LPPL Summary: Listings language driver for Bayesian modeling languages Version: svn39183 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177074,7 +177075,7 @@ Provides: tex-luatex-def = %{tl_version} License: LPPL Summary: LuaTeX option file for color and graphics Version: svn41466 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177093,7 +177094,7 @@ Provides: tex-luatex-def-doc = %{tl_version} License: LPPL Summary: doc files of luatex-def Version: svn41466 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177105,7 +177106,7 @@ Provides: tex-luatex85-doc = %{tl_version} License: LPPL Summary: doc files of luatex85 Version: svn41395 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177117,7 +177118,7 @@ Provides: tex-luatex85 = %{tl_version} License: LPPL Summary: pdfTeX aliases for LuaTeX Version: svn41395 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177133,7 +177134,7 @@ Provides: tex-makebase-doc = %{tl_version} License: LPPL Summary: doc files of makebase Version: svn41012 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177145,7 +177146,7 @@ Provides: tex-makebase = %{tl_version} License: LPPL Summary: Typeset counters in a different base Version: svn41012 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177166,7 +177167,7 @@ Provides: tex-markdown-doc = %{tl_version} License: LPPL Summary: doc files of markdown Version: svn41376 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177178,7 +177179,7 @@ Provides: tex-markdown = %{tl_version} License: LPPL Summary: A package for converting and rendering markdown documents inside TeX Version: svn41376 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177204,7 +177205,7 @@ Provides: tex-mathpartir-doc = %{tl_version} License: GPLv2+ Summary: doc files of mathpartir Version: svn39864 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177216,7 +177217,7 @@ Provides: tex-mathpartir = %{tl_version} License: GPLv2+ Summary: Typesetting sequences of math formulas, e.g. type inference rules Version: svn39864 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177241,7 +177242,7 @@ Provides: tex-mflua = %{tl_version} License: GPL+ Summary: A METAFONT compliant program with a Lua interpreter embedded Version: svn40493 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177256,7 +177257,7 @@ Summary: Binaries for mflua Version: svn40987 Requires: texlive-base Requires: texlive-mflua -Release: %{tl_release}.5 +Release: %{tl_release}.6 %description mflua-bin Binaries for mflua @@ -177266,7 +177267,7 @@ Provides: tex-miama-doc = %{tl_version} License: LPPL and OFL Summary: doc files of miama Version: svn39837 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177278,7 +177279,7 @@ Provides: tex-miama = %{tl_version} License: LPPL and OFL Summary: The Miama Nueva handwriting font with LaTeX support Version: svn39837 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177325,7 +177326,7 @@ Provides: tex-moodle-doc = %{tl_version} License: LPPL Summary: doc files of moodle Version: svn39367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177337,7 +177338,7 @@ Provides: tex-moodle = %{tl_version} License: LPPL Summary: Generating Moodle quizzes via LaTeX Version: svn39367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177354,7 +177355,7 @@ Provides: tex-mparrows-doc = %{tl_version} License: GPLv3+ Summary: doc files of mparrows Version: svn39729 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177366,7 +177367,7 @@ Provides: tex-mparrows = %{tl_version} License: Public Domain Summary: MetaPost module with different types of arrow heads Version: svn39729 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177381,7 +177382,7 @@ Provides: tex-multidef-doc = %{tl_version} License: LPPL Summary: doc files of multidef Version: svn40637 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177393,7 +177394,7 @@ Provides: tex-multidef = %{tl_version} License: LPPL Summary: Quickly define several similar macros Version: svn40637 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177409,7 +177410,7 @@ Provides: tex-mynsfc-doc = %{tl_version} License: LPPL Summary: doc files of mynsfc Version: svn39590 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177421,7 +177422,7 @@ Provides: tex-mynsfc = %{tl_version} License: LPPL Summary: XeLaTeX template for writing the main body of NSFC proposals Version: svn39590 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177440,7 +177441,7 @@ Provides: tex-nihbiosketch-doc = %{tl_version} License: LPPL Summary: doc files of nihbiosketch Version: svn39460 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177452,7 +177453,7 @@ Provides: tex-nihbiosketch = %{tl_version} License: LPPL Summary: A class for NIH biosketches based on the 2015 updated format Version: svn39460 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177477,7 +177478,7 @@ Provides: tex-nimbus15-doc = %{tl_version} License: AGPLv3 with exceptions and LPPL Summary: doc files of nimbus15 Version: svn39343 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177489,7 +177490,7 @@ Provides: tex-nimbus15 = %{tl_version} License: AGPLv3 with exceptions and LPPL Summary: Support files for Nimbus 2015 Core fonts Version: svn39343 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177777,7 +177778,7 @@ Provides: tex-normalcolor-doc = %{tl_version} License: LPPL Summary: doc files of normalcolor Version: svn40125 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177789,7 +177790,7 @@ Provides: tex-normalcolor = %{tl_version} License: LPPL Summary: Changing \normalcolor Version: svn40125 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177807,7 +177808,7 @@ Provides: tex-noto-doc = %{tl_version} License: LPPL and OFL Summary: doc files of noto Version: svn40119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177819,7 +177820,7 @@ Provides: tex-noto = %{tl_version} License: LPPL and OFL Summary: Support for Noto fonts Version: svn40119 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177961,7 +177962,7 @@ Provides: tex-nucleardata-doc = %{tl_version} License: LPPL Summary: doc files of nucleardata Version: svn40216 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -177973,7 +177974,7 @@ Provides: tex-nucleardata = %{tl_version} License: LPPL Summary: Provides data about atomic nuclides for documents Version: svn40216 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -177991,7 +177992,7 @@ Provides: tex-nwejm-doc = %{tl_version} License: LPPL Summary: doc files of nwejm Version: svn41367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178003,7 +178004,7 @@ Provides: tex-nwejm = %{tl_version} License: LPPL Summary: Support for the journal "North-Western European Journal of Mathematics" Version: svn41367 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178022,7 +178023,7 @@ Provides: tex-optidef-doc = %{tl_version} License: LPPL Summary: doc files of optidef Version: svn41347 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178034,7 +178035,7 @@ Provides: tex-optidef = %{tl_version} License: LPPL Summary: Provides a standard set of environments for writing minimization problems Version: svn41347 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178064,7 +178065,7 @@ Provides: tex-options-doc = %{tl_version} License: LPPL Summary: doc files of options Version: svn39030 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178076,7 +178077,7 @@ Provides: tex-options = %{tl_version} License: LPPL Summary: Provides convenient key-value options for LaTeX package writers Version: svn39030 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178094,7 +178095,7 @@ Provides: tex-parades-doc = %{tl_version} License: LPPL Summary: doc files of parades Version: svn40042 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178106,7 +178107,7 @@ Provides: tex-parades = %{tl_version} License: LPPL Summary: Tabulators and space between paragraphs in galley approach Version: svn40042 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178124,7 +178125,7 @@ Provides: tex-pbibtex-base-doc = %{tl_version} License: BSD Summary: doc files of pbibtex-base Version: svn40986 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178136,7 +178137,7 @@ Provides: tex-pbibtex-base = %{tl_version} License: BSD Summary: Bibliography styles and miscellaneous files for pBibTeX Version: svn40986 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178153,7 +178154,7 @@ Provides: tex-pdfxup-doc = %{tl_version} License: LPPL Summary: doc files of pdfxup Version: svn40690 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178165,7 +178166,7 @@ Provides: tex-pdfxup = %{tl_version} License: LPPL Summary: Create n-up PDF pages with minimal margins Version: svn40690 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178182,7 +178183,7 @@ Summary: Binaries for pdfxup Version: svn40690 Requires: texlive-base Requires: texlive-pdfxup -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description pdfxup-bin @@ -178193,7 +178194,7 @@ Provides: tex-pgfornament-doc = %{tl_version} License: LPPL Summary: doc files of pgfornament Version: svn39988 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178205,7 +178206,7 @@ Provides: tex-pgfornament = %{tl_version} License: LPPL Summary: Drawing of Vectorian ornaments with PGF/TikZ Version: svn39988 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178225,7 +178226,7 @@ Provides: tex-pgf-spectra-doc = %{tl_version} License: LPPL Summary: doc files of pgf-spectra Version: svn40656 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178237,7 +178238,7 @@ Provides: tex-pgf-spectra = %{tl_version} License: LPPL Summary: Draw continuous or discrete spectra using PGF/TikZ Version: svn40656 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178259,7 +178260,7 @@ Provides: tex-platex-doc = %{tl_version} License: BSD Summary: doc files of platex Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178271,7 +178272,7 @@ Provides: tex-platex = %{tl_version} License: BSD Summary: pLaTeX2e and miscellaneous macros for pTeX Version: svn41438 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178327,7 +178328,7 @@ Summary: Binaries for platex Version: svn22859 Requires: texlive-base Requires: texlive-platex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description platex-bin @@ -178338,7 +178339,7 @@ Provides: tex-preview-doc = %{tl_version} License: GPLv3 Summary: doc files of preview Version: svn38865 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178350,7 +178351,7 @@ Provides: tex-preview = %{tl_version} License: GPLv3 Summary: Extract bits of a LaTeX source for output Version: svn38865 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178378,7 +178379,7 @@ Provides: tex-prooftrees-doc = %{tl_version} License: LPPL Summary: doc files of prooftrees Version: svn41196 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178390,7 +178391,7 @@ Provides: tex-prooftrees = %{tl_version} License: LPPL Summary: Forest-based proof trees (symbolic logic) Version: svn41196 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178417,7 +178418,7 @@ Provides: tex-pst-cie-doc = %{tl_version} License: LPPL Summary: doc files of pst-cie Version: svn41223 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178429,7 +178430,7 @@ Provides: tex-pst-cie = %{tl_version} License: LPPL Summary: CIE color space Version: svn41223 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178447,7 +178448,7 @@ Provides: tex-rosario-doc = %{tl_version} License: LPPL and OFL Summary: doc files of rosario Version: svn40843 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178459,7 +178460,7 @@ Provides: tex-rosario = %{tl_version} License: LPPL and OFL Summary: Using the free Rosario fonts with LaTeX Version: svn40843 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178559,7 +178560,7 @@ Provides: tex-russ-doc = %{tl_version} License: LPPL Summary: doc files of russ Version: svn25209 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178571,7 +178572,7 @@ Provides: tex-russ = %{tl_version} License: LPPL Summary: LaTeX in Russian, without babel Version: svn25209 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178591,7 +178592,7 @@ Provides: tex-sanitize-umlaut-doc = %{tl_version} License: LPPL Summary: doc files of sanitize-umlaut Version: svn41365 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178603,7 +178604,7 @@ Provides: tex-sanitize-umlaut = %{tl_version} License: LPPL Summary: sanitize umlauts for MakeIndex and pdfLaTeX Version: svn41365 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178622,7 +178623,7 @@ Provides: tex-scrlttr2copy-doc = %{tl_version} License: LPPL Summary: doc files of scrlttr2copy Version: svn39734 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178634,7 +178635,7 @@ Provides: tex-scrlttr2copy = %{tl_version} License: LPPL Summary: A letter class option file for the automatic creation of copies Version: svn39734 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178651,7 +178652,7 @@ Provides: tex-seuthesix-doc = %{tl_version} License: GPLv3 Summary: doc files of seuthesix Version: svn40088 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178663,7 +178664,7 @@ Provides: tex-seuthesix = %{tl_version} License: GPLv3 Summary: LaTeX class for theses at Southeast University, Nanjing, China Version: svn40088 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178683,7 +178684,7 @@ Provides: tex-signchart-doc = %{tl_version} License: LPPL Summary: doc files of signchart Version: svn39707 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178695,7 +178696,7 @@ Provides: tex-signchart = %{tl_version} License: LPPL Summary: Create beautifully typeset sign charts Version: svn39707 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178711,7 +178712,7 @@ Provides: tex-simpler-wick-doc = %{tl_version} License: GPLv3+ Summary: doc files of simpler-wick Version: svn39074 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178723,7 +178724,7 @@ Provides: tex-simpler-wick = %{tl_version} License: LPPL Summary: Simpler Wick contractions Version: svn39074 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178746,7 +178747,7 @@ Provides: tex-smartunits-doc = %{tl_version} License: LPPL Summary: doc files of smartunits Version: svn39592 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178758,7 +178759,7 @@ Provides: tex-smartunits = %{tl_version} License: LPPL Summary: Converting between common metric and Imperial units Version: svn39592 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178775,7 +178776,7 @@ Provides: tex-srcredact-doc = %{tl_version} License: GPLv2+ Summary: doc files of srcredact Version: svn38710 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178787,7 +178788,7 @@ Provides: tex-srcredact = %{tl_version} License: GPLv2+ Summary: A tool for redacting sources Version: svn38710 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178808,7 +178809,7 @@ Summary: Binaries for srcredact Version: svn38710 Requires: texlive-base Requires: texlive-srcredact -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description srcredact-bin @@ -178819,7 +178820,7 @@ Provides: tex-svrsymbols-doc = %{tl_version} License: LPPL Summary: doc files of svrsymbols Version: svn40371 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178831,7 +178832,7 @@ Provides: tex-svrsymbols = %{tl_version} License: LPPL Summary: 'A new font with symbols for use in Physics texts.' Version: svn40371 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -178852,7 +178853,7 @@ Provides: tex-tempora-doc = %{tl_version} License: GPLv2+ with exceptions and LPPL Summary: doc files of tempora Version: svn39596 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -178864,7 +178865,7 @@ Provides: tex-tempora = %{tl_version} License: GPLv2+ and LPPL Summary: Greek and Cyrillic to accompany Times Version: svn39596 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179057,7 +179058,7 @@ Provides: tex-tex-ini-files-doc = %{tl_version} License: Public Domain Summary: doc files of tex-ini-files Version: svn40533 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179069,7 +179070,7 @@ Provides: tex-tex-ini-files = %{tl_version} License: Public Domain Summary: Model TeX format creation files Version: svn40533 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179090,7 +179091,7 @@ Provides: tex-texlive-es-doc = %{tl_version} License: LPPL Summary: doc files of texlive-es Version: svn41224 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179102,7 +179103,7 @@ Provides: tex-texvc-doc = %{tl_version} License: ASL 2.0 Summary: doc files of texvc Version: svn38809 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179114,7 +179115,7 @@ Provides: tex-texvc = %{tl_version} License: ASL 2.0 and LPPL Summary: Use MediaWiki LaTeX commands Version: svn38809 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179130,7 +179131,7 @@ Provides: tex-texworks-doc = %{tl_version} License: Public Domain Summary: doc files of texworks Version: svn40613 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179142,7 +179143,7 @@ Provides: tex-tikz-feynman-doc = %{tl_version} License: GPLv3+ Summary: doc files of tikz-feynman Version: svn39582 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179154,7 +179155,7 @@ Provides: tex-tikz-feynman = %{tl_version} License: LPPL Summary: Feynman diagrams with TikZ Version: svn39582 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179177,7 +179178,7 @@ Provides: tex-tipfr = %{tl_version} License: LPPL Summary: Produces calculator's keys with the help of TikZ Version: svn38646 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179194,7 +179195,7 @@ Provides: tex-typed-checklist-doc = %{tl_version} License: LPPL Summary: doc files of typed-checklist Version: svn40389 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179206,7 +179207,7 @@ Provides: tex-typed-checklist = %{tl_version} License: LPPL Summary: Typesetting tasks, goals, milestones, artifacts, and more in LaTeX Version: svn40389 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179229,7 +179230,7 @@ Provides: tex-uantwerpe-docs-doc = %{tl_version} License: LPPL Summary: doc files of uantwerpendocs Version: svn40826 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179241,7 +179242,7 @@ Provides: tex-uantwerpe-docs = %{tl_version} License: LPPL Summary: Course texts and masters theses in University of Antwerp style Version: svn40826 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179253,7 +179254,7 @@ Provides: tex-uhrzeit-doc = %{tl_version} License: LPPL Summary: doc files of uhrzeit Version: svn39570 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179265,7 +179266,7 @@ Provides: tex-uhrzeit = %{tl_version} License: LPPL Summary: Time printing, in German Version: svn39570 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179282,7 +179283,7 @@ Provides: tex-umbclegislation-doc = %{tl_version} License: GPLv3+ Summary: doc files of umbclegislation Version: svn41348 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179294,7 +179295,7 @@ Provides: tex-umbclegislation = %{tl_version} License: GPLv3+ Summary: class for building legislation files for UMBC Student Government Association Bills Version: svn41348 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179311,7 +179312,7 @@ Provides: tex-unicode-data-doc = %{tl_version} License: LPPL and Unicode Summary: doc files of unicode-data Version: svn39808 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179323,7 +179324,7 @@ Provides: tex-unicode-data = %{tl_version} License: LPPL and Unicode Summary: Unicode data and loaders for TeX Version: svn39808 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179353,7 +179354,7 @@ Provides: tex-updmap-map = %{tl_version} License: Public Domain Summary: Font maps Version: svn41159 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179377,7 +179378,7 @@ Provides: tex-uplatex-doc = %{tl_version} License: BSD Summary: doc files of uplatex Version: svn41370 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179391,7 +179392,7 @@ Provides: tex-uplatex = %{tl_version} License: BSD Summary: pLaTeX2e and miscellaneous macros for upTeX Version: %{uplatexver} -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179434,7 +179435,7 @@ Summary: Binaries for uplatex Version: svn26326 Requires: texlive-base Requires: texlive-uplatex -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description uplatex-bin @@ -179445,7 +179446,7 @@ Provides: tex-visualpstricks-doc = %{tl_version} License: GPL+ Summary: doc files of visualpstricks Version: svn39799 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179457,7 +179458,7 @@ Provides: tex-visualtikz-doc = %{tl_version} License: LPPL Summary: doc files of visualtikz Version: svn40120 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179469,7 +179470,7 @@ Provides: tex-wordcount-doc = %{tl_version} License: LPPL Summary: doc files of wordcount Version: svn41381 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179481,7 +179482,7 @@ Provides: tex-wordcount = %{tl_version} License: LPPL Summary: Estimate the number of words in a LaTeX document Version: svn41381 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179502,7 +179503,7 @@ Provides: tex-xassoccnt-doc = %{tl_version} License: LPPL Summary: doc files of xassoccnt Version: svn41371 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179514,7 +179515,7 @@ Provides: tex-xassoccnt = %{tl_version} License: LPPL Summary: Associated counters stepping simultaneously Version: svn41371 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179537,7 +179538,7 @@ Provides: tex-xcntperchap-doc = %{tl_version} License: LPPL Summary: doc files of xcntperchap Version: svn41360 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179549,7 +179550,7 @@ Provides: tex-xcntperchap = %{tl_version} License: LPPL Summary: Track the number of subsections etc. that occur in a specified tracklevel Version: svn41360 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179565,7 +179566,7 @@ Provides: tex-xduthesis-doc = %{tl_version} License: LPPL Summary: doc files of xduthesis Version: svn39694 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179577,7 +179578,7 @@ Provides: tex-xduthesis = %{tl_version} License: LPPL Summary: XeLaTeX template for writing Xidian University Thesis Version: svn39694 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179600,7 +179601,7 @@ Provides: tex-xellipsis-doc = %{tl_version} License: LPPL Summary: doc files of xellipsis Version: svn38632 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179612,7 +179613,7 @@ Provides: tex-xellipsis = %{tl_version} License: LPPL Summary: Extremely configurable ellipses with formats for various style manuals Version: svn38632 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179634,7 +179635,7 @@ Provides: tex-xindy-doc = %{tl_version} License: GPLv2+ Summary: doc files of xindy Version: svn41316 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179646,7 +179647,7 @@ Provides: tex-xindy = %{tl_version} License: GPLv2+ Summary: A general-purpose index processor Version: svn41316 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179666,7 +179667,7 @@ Summary: Binaries for xindy Version: svn40473 Requires: texlive-base Requires: texlive-xindy -Release: %{tl_release}.5 +Release: %{tl_release}.6 BuildArch: noarch %description xindy-bin @@ -179677,7 +179678,7 @@ Provides: tex-xsavebox-doc = %{tl_version} License: LPPL Summary: doc files of xsavebox Version: svn39965 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179689,7 +179690,7 @@ Provides: tex-xsavebox = %{tl_version} License: LPPL Summary: Saveboxes for repeating content without code replication, based on PDF Form XObjects Version: svn39965 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179713,7 +179714,7 @@ Provides: tex-ycbook-doc = %{tl_version} License: LPPL Summary: doc files of ycbook Version: svn41410 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179725,7 +179726,7 @@ Provides: tex-ycbook = %{tl_version} License: LPPL Summary: A versatile book class Version: svn41410 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179746,7 +179747,7 @@ Provides: tex-yinit-otf-doc = %{tl_version} License: Public Domain Summary: doc files of yinit-otf Version: svn40207 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179758,7 +179759,7 @@ Provides: tex-yinit-otf = %{tl_version} License: Public Domain Summary: OTF conversion of Yannis Haralambous' Old German decorative initials Version: svn40207 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179774,7 +179775,7 @@ Provides: tex-zhmetrics-uptex-doc = %{tl_version} License: LPPL Summary: doc files of zhmetrics-uptex Version: svn40728 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179786,7 +179787,7 @@ Provides: tex-zhmetrics-uptex = %{tl_version} License: LPPL Summary: Chinese font metrics for upTeX Version: svn40728 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179838,7 +179839,7 @@ Provides: tex-bestpapers-doc = %{tl_version} License: Public Domain Summary: doc files of bestpapers Version: svn38708 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179850,7 +179851,7 @@ Provides: tex-bestpapers = %{tl_version} License: Public Domain Summary: A BibTeX package to produce lists of authors' best papers Version: svn38708 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179874,7 +179875,7 @@ Provides: tex-biblatex-claves = %{tl_version} License: LPPL Summary: A tool to manage claves of old litterature with BibLaTeX Version: svn42153 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179899,7 +179900,7 @@ Provides: tex-biblatex-claves-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-claves Version: svn42153 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179911,7 +179912,7 @@ Provides: tex-biblatex-ijsra = %{tl_version} License: LPPL Summary: BibLaTeX style for the International Journal of Student Research in Archaeology Version: svn41634 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179927,7 +179928,7 @@ Provides: tex-biblatex-ijsra-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-ijsra Version: svn41634 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179939,7 +179940,7 @@ Provides: tex-biblatex-lni = %{tl_version} License: LPPL Summary: LNI style for BibLaTeX Version: svn42236 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179955,7 +179956,7 @@ Provides: tex-biblatex-lni-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-lni Version: svn42236 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179967,7 +179968,7 @@ Provides: tex-biblatex-nottsclassic = %{tl_version} License: LPPL Summary: Citation style covering the citation and bibliography rules of the University of Nottingham Version: svn41596 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -179983,7 +179984,7 @@ Provides: tex-biblatex-nottsclassic-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-nottsclassic Version: svn41596 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch AutoReqProv: No @@ -179995,7 +179996,7 @@ Provides: tex-graphics-def = %{tl_version} License: LPPL Summary: Colour and graphics option files Version: svn41879 -Release: %{tl_noarch_release}.5 +Release: %{tl_noarch_release}.6 BuildArch: noarch Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -180032,6 +180033,7 @@ cp %{SOURCE7597} . %patch100 -p0 %patch104 -p1 %patch105 -p1 +%patch107 -p1 for l in `unxz -c %{SOURCE3} | tar t`; do ln -s %{_texdir}/licenses/$l $l done @@ -222045,6 +222047,9 @@ fi %{_libdir}/pkgconfig/*.pc %changelog +* Fri Sep 08 2017 David Tardon - 6:2016-36.20160520.6 +- rebuild for poppler 0.59.0 + * Sat Aug 05 2017 Björn Esser - 6:2016-36.20160520.5 - Use '-std=c++11' for building C++ sources