diff --git a/SuSEconfig.texlive b/SuSEconfig.texlive index 60d6def..434fc21 100644 --- a/SuSEconfig.texlive +++ b/SuSEconfig.texlive @@ -7,7 +7,7 @@ # # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# Author: Werner Fink, 1997-2011 +# Author: Werner Fink, 1997-2012 # typeset -r OLDIFS="$IFS" @@ -41,7 +41,7 @@ else exec 4> /dev/null fi -type -p texhash &> /dev/null || exit 0 +type -p mktexlsr &> /dev/null || exit 0 type -p kpsewhich &> /dev/null || exit 0 type -p updmap-sys &> /dev/null || exit 0 type -p find &> /dev/null || { echo "${0##*/}: No find in PATH ... skipping"; exit 0 ; } @@ -63,15 +63,8 @@ unset KPSE_DOT || true : ${TEXMFLSR:=$(kpsewhich --show-path=ls-R 2> /dev/null)} : ${WEB2C:=$TEXMFVAR/web2c} -HASHLSR= -for lsr in ${TEXMFLSR//:/ }; do - find $lsr -prune -type d -and -not -fstype nfs > /dev/null 2>&1 || continue - HASHLSR=${HASHLSR:+$HASHLSR:}${lsr} - size=$(find /etc/texmf/ls-R -follow -printf '%s') - if test $size -lt 80 ; then - > /var/run/texlive/run-texhash - fi -done +size=$(find /etc/texmf/ls-R -follow -printf '%s') +test $size -lt 80 && > /var/run/texlive/run-mktexlsr tcfmgr () { @@ -89,23 +82,31 @@ enablemaps () # # Straightforward ... here we go # -if test -e /var/run/texlive/run-texhash; do +if test -e /var/run/texlive/run-mktexlsr; then + test $VERBOSE = true && echo -e "\r[ ]Updating TeX hash data base." + mktexlsr < /dev/null 1>&4 2>&4 + let rc+=$? + rm -f /var/run/texlive/run-mktexlsr +fi +if test -e /var/run/texlive/run-fmtutil; then + test $VERBOSE = true && echo -e "\r[ ]Updating TeX formats." + fmtutil-sys --missing < /dev/null 1>&4 2>&4 + let rc+=$? + rm -f /var/run/texlive/run-fmtutil +fi +if test -e /var/run/texlive/run-updmap; then + test $VERBOSE = true && echo -e "\r[ ]Updating TeX font mappings." + updmap-sys --nohash < /dev/null 1>&4 2>&4 + rm -f /var/run/texlive/run-updmap +else typeset -i n=0 - for lsr in ${HASHLSR//:/ }; do - ((n++ == 0)) && test $VERBOSE = true && echo -e "\r[ ]Enabling TeX hash data base." - find $lsr -prune -type d -and -not -fstype nfs > /dev/null 2>&1 || continue - if test $f -nt $lsr/ls-R ; then - texhash $lsr 1>&4 2>&4 - let rc+=$? - fi - done cfg=$(tcfmgr --cmd find --file updmap.cfg) if test -e ${cfg} ; then - test $VERBOSE = true && echo -e "\r[ ]Enabling TeX font mappings." updmap-sys --nohash --nomkmap --syncwithtrees < /dev/null 1>&4 2>&4 let rc+=$? enablemaps | \ while read line ; do + ((n++ == 0)) && test $VERBOSE = true && echo -e "\r[ ]Updating TeX font mappings." line='^#![[:space:]]*((Mixed)?Map)[[:space:]]*('$line')' emap=$(sed -n -r "s/$line/\1=\3/p" ${cfg}) updmap-sys --nohash --nomkmap --enable $emap < /dev/null 1>&4 2>&4 diff --git a/nobody.c b/nobody.c index 71d9f87..e0b5725 100644 --- a/nobody.c +++ b/nobody.c @@ -1,9 +1,9 @@ /* * Nobody For user root run a specific program as user nobody * - * Usage: nobody [ls|find|false|true] + * Usage: nobody [texhash|ls|find|false|true] * - * Copyright (C) 2010 Werner Fink + * Copyright (C) 2010,2012 Werner Fink * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,6 +22,7 @@ */ #include +#include #include #include #include @@ -42,6 +43,8 @@ static struct { const char *run; } *lp, list[] = { /* prog run */ + { "mktexlsr", "/usr/bin/mktexlsr" }, + { "texhash", "/usr/bin/mktexlsr" }, { "ls", "/bin/ls" }, { "true", "/bin/true" }, { "false", "/bin/false" }, @@ -105,13 +108,13 @@ int main(int argc, char *argv[]) goto err; } - if (ruid == 0 || euid == 0) { + if ((pwd = getpwnam("nobody")) == (struct passwd*)0) + goto err; + + if (ruid != pwd->pw_uid || euid != pwd->pw_gid) { int initgrp = 0; - if ((pwd = getpwnam("nobody")) == (struct passwd*)0) - goto err; - - if (ruid == 0) { + if (ruid != pwd->pw_uid) { initgrp = 1; ruid = pwd->pw_uid; rgid = pwd->pw_gid; @@ -169,6 +172,26 @@ int main(int argc, char *argv[]) } } } + if (strcmp(lp->prog, "texhash") == 0 || strcmp(lp->prog, "mktexlsr") == 0) { + int n; + char buf[PATH_MAX+1], *lsr, *base; + for (n = 1; n < argc; n++) { + if (!argv[n] || *argv[n] == '\0') + continue; + if ((lsr = realpath(argv[n], buf)) == NULL) + goto err; + if ((base = strrchr(lsr, '/')) == NULL) { + errno = ENOTSUP; + goto err; + } + if (strcmp(base, "/ls-R") != 0) { + errno = ENOTSUP; + goto err; + } + if (access(lsr, W_OK) != 0) + goto err; + } + } } } diff --git a/source.dif b/source.dif index d8712b2..b2ed851 100644 --- a/source.dif +++ b/source.dif @@ -178,18 +178,30 @@ # The supporting scripts: : ${MT_MKTEXNAM=`kpsewhich --format='web2c files' mktexnam`} --- texk/kpathsea/mktexlsr -+++ texk/kpathsea/mktexlsr 2011-09-14 10:37:28.867925384 +0000 -@@ -15,6 +15,9 @@ version='$Id: mktexlsr 23151 2011-06-27 ++++ texk/kpathsea/mktexlsr 2012-04-23 09:29:20.382064991 +0000 +@@ -15,6 +15,21 @@ version='$Id: mktexlsr 23151 2011-06-27 progname=`echo $0 | sed 's%.*/%%'` usage="Usage: $progname [OPTION]... [DIR]... ++nobody="$(id -un nobody)" ++if test -n "$nobody" -a "$(id -urn 2> /dev/null)" != "$nobody" && type -p nobody > /dev/null 2>&1 ; then ++ grep -qE 'nobody:[^:]*:[0-9]+:0:0::::' /etc/shadow ++ if test $? -eq 0 ; then ++ echo "$progname: Warning the password of the user nobody has expired." >&2 ++ echo " Please use program \`chage' to set maxdays to 99999." >&2 ++ echo "" ++ exit 1 ++ fi ++ exec nobody $0 ${1+"$@"} ++fi ++ +MKTEXLSR=true; export MKTEXLSR +set -o noclobber + Rebuild ls-R filename databases used by TeX. If one or more arguments DIRS are given, these are used as the directories in which to build ls-R. Else all directories in the search path for ls-R files -@@ -51,6 +54,9 @@ if test "$DOSISH" = "no"; then SEP=':'; +@@ -51,6 +66,9 @@ if test "$DOSISH" = "no"; then SEP=':'; # be done before kpsewhich can be called, and thus cannot be put into # mktex.opt. dirname=`echo $0 | sed 's%/*[^/][^/]*$%%'` @@ -199,58 +211,15 @@ case $dirname in "") # Do nothing ;; -@@ -62,6 +68,28 @@ case $dirname in - export PATH ;; - esac - -+# Sometimes the scripts and binaries are located elsewhere check this -+# by following the links and extend the path with appropiate dirnames. -+ link=`readlink -f $0` -+dirname=`echo $link | sed 's%/*[^/][^/]*$%%'` -+ cpu=`uname -i|tr '[:upper:]' '[:lower:]' | sed 's/ppc64/ppc/;s/i386/i?86/'` -+ os=`uname -s|tr '[:upper:]' '[:lower:]'` -+ binary=`echo $dirname | sed "s%share%lib%;s%noarch%${cpu}-${os}%"` -+ binary=`echo $binary` -+case "$SEP$PATH$SEP" in -+ *$SEP$dirname$SEP*) dirname="" ;; -+esac -+case $dirname in -+ "") # Do nothing -+ ;; -+ /* | [A-z]:/*) # Absolute name -+ PATH="$dirname$SEP$binary$SEP$PATH" -+ export PATH ;; -+ *) # Relative name -+ PATH="`pwd`/$dirname$SEP`pwd`/$binary$SEP$PATH" -+ export PATH ;; -+esac -+ - if tty -s; then verbose=true; else verbose=false; fi - dry_run=false - trees= -@@ -134,6 +162,21 @@ old_ls_R_magic='% ls-R -- maintained by +@@ -134,6 +152,7 @@ old_ls_R_magic='% ls-R -- maintained by shift } -+nobody="$(id -un nobody)" -+if test "$(id -ur 2> /dev/null)" = "0" -a -n "$nobody" && type -p nobody > /dev/null 2>&1 ; then -+ grep -qE 'nobody:[^:]*:[0-9]+:0:0::::' /etc/shadow -+ if test $? -eq 0 ; then -+ echo "$progname: Warning the password of the user nobody has expired." >&2 -+ echo " Please use program \`chage' to set maxdays to 99999." >&2 -+ echo "" -+ exit 1 -+ fi -+ runls () { nobody ls -LRa 2>/dev/null; } -+else -+ runls () { ls -LRa 2>/dev/null; } -+fi -+ +cache="`kpsewhich --expand-var='$VARTEXFONTS'`" for TEXMFLS_R in "$@"; do # Prepend cwd if the directory was relative. case "$TEXMFLS_R" in -@@ -163,12 +206,23 @@ for TEXMFLS_R in "$@"; do +@@ -163,12 +182,23 @@ for TEXMFLS_R in "$@"; do # want to be silent if the directory doesn't exist, since the ls-R # path ordinarily contains many nonexistent directories. test -d "$db_dir" || continue @@ -276,7 +245,7 @@ elif test -s "$db_file" \ && test "x`sed '1s/ $//;1q' \"$db_file\"`" != "x$ls_R_magic" \ && test "x`sed '1s/ $//;1q' \"$db_file\"`" != "x$old_ls_R_magic"; then -@@ -179,16 +233,23 @@ for TEXMFLS_R in "$@"; do +@@ -179,16 +209,23 @@ for TEXMFLS_R in "$@"; do # Skip if we cannot write the file: kpseaccess -w "$db_file" || { echo "$progname: $db_file: no write permission, skipping..." >&2; continue; } @@ -304,12 +273,9 @@ # The main task. We put ./: in the output, so top-level files can be # found via ls-R. Probably irrelevant in practice. The sed command -@@ -200,17 +261,25 @@ for TEXMFLS_R in "$@"; do - # - echo "./:" >>"$db_file_tmp" +@@ -202,15 +239,23 @@ for TEXMFLS_R in "$@"; do vc_dirs='\.\(bzr\|git\|hg\|svn\)\|_darcs' -- (cd "$TEXMFLS_R" && \ls -LRa 2>/dev/null) \ -+ (cd "$TEXMFLS_R" && \runls) \ + (cd "$TEXMFLS_R" && \ls -LRa 2>/dev/null) \ | sed -e '/^$/{n;s%^\./%%;s%^%./%;}; /^\.$/d; /^\.\.$/d; /^'$vc_dirs'$/d;' \ - -e '/^[\.\/]*lsR[0-9]*\.tmp:*$/d' \ + -e '/^[\.\/]*lsR[0-9]*\.tmp:*$/d;/^[\.\/]*'${db_dir_tmp##*/}':*$/d' \ diff --git a/texlive.spec b/texlive.spec index b0939f5..a33a9f6 100644 --- a/texlive.spec +++ b/texlive.spec @@ -25,11 +25,28 @@ Name: texlive Version: %{texlive_version} -Release: %{texlive_release} +Release: %{texlive_release}.. License: GPL-2.0+ and GPL-2.0 and GPL-3.0 and LPPL-1.3c and LPPL-1.0 and Artistic-1.0 and Apache-2.0 and MIT and BSD-3-Clause and SUSE-TeX and SUSE-Public-Domain Summary: The TeXLive Formatting System Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ +Requires: %{name}-kpathsea +Requires: %{name}-tetex = %{texlive_version} +Requires(post): %fillup_prereq +Requires(prereq): texlive-filesystem +Requires(prereq): coreutils +Requires(prereq): ed +Requires(prereq): findutils +Requires(prereq): grep +Requires(prereq): sed +Requires(interp): /usr/bin/env +Requires(interp): /usr/bin/perl +Requires(interp): /usr/bin/clear +Requires(interp): /usr/bin/dialog +Requires: cron +Requires: ghostscript_x11 +Requires: perl-Tk +Requires: perl-File-Which BuildRequires: autoconf BuildRequires: automake BuildRequires: bison @@ -251,37 +268,20 @@ dvips, etc., shell script configuration, and a big collection of documentations. This package is easily configured by the script texconfig and has multilanguage options. -%package basesystem +%package filesystem Summary: Basic system layout for TeX Live Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ -#Requires: %{name} = %{texlive_version} -#Requires: %{name}-kpathsea -#Requires: %{name}-tetex = %{texlive_version} -Requires(post): %fillup_prereq -Requires(prereq): coreutils -Requires(prereq): ed -Requires(prereq): findutils -Requires(prereq): grep -Requires(prereq): permissions -Requires(prereq): sed -Requires(interp): /usr/bin/env -Requires(interp): /usr/bin/perl -Requires: cron -Requires: ghostscript_x11 -Requires: perl-Tk -Requires: perl-File-Which -Requires: /usr/bin/clear -Requires: /usr/bin/dialog +Requires(post,verify): permissions BuildArch: noarch -%description basesystem -The basic system layout for TeX Live installation. +%description filesystem +The basic file system layout for TeX Live installation. %package scheme-basic Version: %{texlive_version} -Release: %{texlive_release}.svn25923 +Release: %{texlive_release}.svn25923.. Summary: Basic scheme (plain and latex) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -297,7 +297,7 @@ scheme corresponds to collection-basic and collection-latex. %package scheme-context Version: %{texlive_version} -Release: %{texlive_release}.svn23157 +Release: %{texlive_release}.svn23157.. Summary: ConTeXt scheme Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -322,7 +322,7 @@ This is the TeX Live scheme for installing ConTeXt. %package scheme-full Version: %{texlive_version} -Release: %{texlive_release}.svn21417 +Release: %{texlive_release}.svn21417.. Summary: Full scheme (everything) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -417,7 +417,7 @@ available. %package scheme-gust Version: %{texlive_version} -Release: %{texlive_release}.svn21479 +Release: %{texlive_release}.svn21479.. Summary: GUST TeX Live scheme Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -465,7 +465,7 @@ documents in PostScript or PDF. %package scheme-medium Version: %{texlive_version} -Release: %{texlive_release}.svn18615 +Release: %{texlive_release}.svn18615.. Summary: Medium scheme (plain, latex, recommended packages, some languages) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -501,7 +501,7 @@ used European languages. %package scheme-minimal Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Minimal scheme (plain only) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -516,7 +516,7 @@ corresponds exactly to collection-basic. %package scheme-small Version: %{texlive_version} -Release: %{texlive_release}.svn25850 +Release: %{texlive_release}.svn25850.. Summary: Small scheme (essentials, xetex, recommended packages) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -555,7 +555,7 @@ hyphenations, and some recommended packages to scheme-basic. %package scheme-tetex Version: %{texlive_version} -Release: %{texlive_release}.svn21479 +Release: %{texlive_release}.svn21479.. Summary: TeTeX scheme (more than medium, but nowhere near full) Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -641,7 +641,7 @@ that was maintained by Thomas Esser. %package scheme-xml Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: XML scheme Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -672,7 +672,7 @@ including PassiveTeX, JadeTeX, ConTeXt and Omega. %package collection-basic Version: %{texlive_version} -Release: %{texlive_release}.svn20730 +Release: %{texlive_release}.svn20730.. Summary: Essential programs and files Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -720,7 +720,7 @@ common drivers; no LaTeX. %package collection-bibtexextra Version: %{texlive_version} -Release: %{texlive_release}.svn25790 +Release: %{texlive_release}.svn25790.. Summary: Extra BibTeX styles Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -805,7 +805,7 @@ BibLaTeX. %package collection-binextra Version: %{texlive_version} -Release: %{texlive_release}.svn25648 +Release: %{texlive_release}.svn25648.. Summary: TeX auxiliary programs Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -872,7 +872,7 @@ programming, patgen, and the TeX Works Editor. %package collection-context Version: %{texlive_version} -Release: %{texlive_release}.svn23785 +Release: %{texlive_release}.svn23785.. Summary: ConTeXt format Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -913,7 +913,7 @@ Also includes third-party ConTeXt packages. %package collection-documentation-arabic Version: %{texlive_version} -Release: %{texlive_release}.svn14327 +Release: %{texlive_release}.svn14327.. Summary: Arabic documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -926,7 +926,7 @@ The collection-documentation-arabic package %package collection-documentation-base Version: %{texlive_version} -Release: %{texlive_release}.svn17091 +Release: %{texlive_release}.svn17091.. Summary: TeX Live documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -939,7 +939,7 @@ The collection-documentation-base package %package collection-documentation-bulgarian Version: %{texlive_version} -Release: %{texlive_release}.svn19296 +Release: %{texlive_release}.svn19296.. Summary: Bulgarian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -953,7 +953,7 @@ The collection-documentation-bulgarian package %package collection-documentation-chinese Version: %{texlive_version} -Release: %{texlive_release}.svn14384 +Release: %{texlive_release}.svn14384.. Summary: Chinese documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -972,7 +972,7 @@ The collection-documentation-chinese package %package collection-documentation-czechslovak Version: %{texlive_version} -Release: %{texlive_release}.svn23021 +Release: %{texlive_release}.svn23021.. Summary: Czech/Slovak documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -987,7 +987,7 @@ The collection-documentation-czechslovak package %package collection-documentation-dutch Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Dutch documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1000,7 +1000,7 @@ The collection-documentation-dutch package %package collection-documentation-english Version: %{texlive_version} -Release: %{texlive_release}.svn25096 +Release: %{texlive_release}.svn25096.. Summary: English documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1064,7 +1064,7 @@ The collection-documentation-english package %package collection-documentation-finnish Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Finnish documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1077,7 +1077,7 @@ The collection-documentation-finnish package %package collection-documentation-french Version: %{texlive_version} -Release: %{texlive_release}.svn25105 +Release: %{texlive_release}.svn25105.. Summary: French documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1099,7 +1099,7 @@ The collection-documentation-french package %package collection-documentation-german Version: %{texlive_version} -Release: %{texlive_release}.svn25301 +Release: %{texlive_release}.svn25301.. Summary: German documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1134,7 +1134,7 @@ The collection-documentation-german package %package collection-documentation-italian Version: %{texlive_version} -Release: %{texlive_release}.svn25218 +Release: %{texlive_release}.svn25218.. Summary: Italian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1155,7 +1155,7 @@ The collection-documentation-italian package %package collection-documentation-japanese Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Japanese documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1168,7 +1168,7 @@ The collection-documentation-japanese package %package collection-documentation-korean Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Korean documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1181,7 +1181,7 @@ The collection-documentation-korean package %package collection-documentation-mongolian Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Mongolian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1194,7 +1194,7 @@ The collection-documentation-mongolian package %package collection-documentation-polish Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Polish documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1209,7 +1209,7 @@ The collection-documentation-polish package %package collection-documentation-portuguese Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Portuguese documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1226,7 +1226,7 @@ The collection-documentation-portuguese package %package collection-documentation-russian Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Russian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1241,7 +1241,7 @@ The collection-documentation-russian package %package collection-documentation-serbian Version: %{texlive_version} -Release: %{texlive_release}.svn19112 +Release: %{texlive_release}.svn19112.. Summary: Serbian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1254,7 +1254,7 @@ The collection-documentation-serbian package %package collection-documentation-slovenian Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Slovenian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1267,7 +1267,7 @@ The collection-documentation-slovenian package %package collection-documentation-spanish Version: %{texlive_version} -Release: %{texlive_release}.svn19634 +Release: %{texlive_release}.svn19634.. Summary: Spanish documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1284,7 +1284,7 @@ The collection-documentation-spanish package %package collection-documentation-thai Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Thai documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1297,7 +1297,7 @@ The collection-documentation-thai package %package collection-documentation-turkish Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Turkish documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1310,7 +1310,7 @@ The collection-documentation-turkish package %package collection-documentation-ukrainian Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Ukrainian documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1323,7 +1323,7 @@ The collection-documentation-ukrainian package %package collection-documentation-vietnamese Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: Vietnamese documentation Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1338,7 +1338,7 @@ The collection-documentation-vietnamese package %package collection-fontsextra Version: %{texlive_version} -Release: %{texlive_release}.svn25890 +Release: %{texlive_release}.svn25890.. Summary: Extra fonts Group: Productivity/Publishing/TeX/Fonts Url: http://www.tug.org/texlive/ @@ -1517,7 +1517,7 @@ The collection-fontsextra package %package collection-fontsrecommended Version: %{texlive_version} -Release: %{texlive_release}.svn22193 +Release: %{texlive_release}.svn22193.. Summary: Recommended fonts Group: Productivity/Publishing/TeX/Fonts Url: http://www.tug.org/texlive/ @@ -1559,7 +1559,7 @@ Computer Modern, in outline form. %package collection-fontutils Version: %{texlive_version} -Release: %{texlive_release}.svn25704 +Release: %{texlive_release}.svn25704.. Summary: Graphics and font utilities Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1587,7 +1587,7 @@ PostScript and other images. %package collection-formatsextra Version: %{texlive_version} -Release: %{texlive_release}.svn21879 +Release: %{texlive_release}.svn21879.. Summary: Extra formats Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -1607,7 +1607,7 @@ ones, such as latex and context. %package collection-games Version: %{texlive_version} -Release: %{texlive_release}.svn25963 +Release: %{texlive_release}.svn25963.. Summary: Games typesetting Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1643,7 +1643,7 @@ Setups for typesetting various games, including chess. %package collection-genericextra Version: %{texlive_version} -Release: %{texlive_release}.svn25779 +Release: %{texlive_release}.svn25779.. Summary: Extra generic packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1692,7 +1692,7 @@ TeX and LaTeX. %package collection-genericrecommended Version: %{texlive_version} -Release: %{texlive_release}.svn19849 +Release: %{texlive_release}.svn19849.. Summary: Recommended generic packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1712,7 +1712,7 @@ Recommended packages that work with multiple formats. %package collection-htmlxml Version: %{texlive_version} -Release: %{texlive_release}.svn13822 +Release: %{texlive_release}.svn13822.. Summary: HTML/SGML/XML support Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -1732,7 +1732,7 @@ Packages to convert LaTeX to XML/HTML, and typset XML/SGML %package collection-humanities Version: %{texlive_version} -Release: %{texlive_release}.svn25527 +Release: %{texlive_release}.svn25527.. Summary: Humanities packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1781,7 +1781,7 @@ humanities, etc. %package collection-langafrican Version: %{texlive_version} -Release: %{texlive_release}.svn21061 +Release: %{texlive_release}.svn21061.. Summary: African scripts Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1797,7 +1797,7 @@ Support for typesetting some African scripts %package collection-langarabic Version: %{texlive_version} -Release: %{texlive_release}.svn24768 +Release: %{texlive_release}.svn24768.. Summary: Arabic Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1817,7 +1817,7 @@ Support for typesetting Arabic. %package collection-langarmenian Version: %{texlive_version} -Release: %{texlive_release}.svn20529 +Release: %{texlive_release}.svn20529.. Summary: Armenian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1829,7 +1829,7 @@ Support for typesetting Armenian. %package collection-langcjk Version: %{texlive_version} -Release: %{texlive_release}.svn25417 +Release: %{texlive_release}.svn25417.. Summary: Chinese, Japanese, Korean Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1868,7 +1868,7 @@ also Thai since there is some overlap in the fonts. %package collection-langcroatian Version: %{texlive_version} -Release: %{texlive_release}.svn21190 +Release: %{texlive_release}.svn21190.. Summary: Croatian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1882,7 +1882,7 @@ Support for typesetting Croatian. %package collection-langcyrillic Version: %{texlive_version} -Release: %{texlive_release}.svn25209 +Release: %{texlive_release}.svn25209.. Summary: Cyrillic Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1913,7 +1913,7 @@ Support for typesetting Cyrillic. %package collection-langczechslovak Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Czech/Slovak Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1933,7 +1933,7 @@ Support for typesetting Czech/Slovak. %package collection-langdanish Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Danish Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1946,7 +1946,7 @@ Support for typesetting Danish. %package collection-langdutch Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Dutch Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1959,7 +1959,7 @@ Support for typesetting Dutch. %package collection-langenglish Version: %{texlive_version} -Release: %{texlive_release}.svn18615 +Release: %{texlive_release}.svn18615.. Summary: US and UK English Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1972,7 +1972,7 @@ Support for typesetting US and UK English. %package collection-langfinnish Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Finnish Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -1986,7 +1986,7 @@ Support for typesetting Finnish. %package collection-langfrench Version: %{texlive_version} -Release: %{texlive_release}.svn25419 +Release: %{texlive_release}.svn25419.. Summary: French Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2013,7 +2013,7 @@ Support for typesetting French. %package collection-langgerman Version: %{texlive_version} -Release: %{texlive_release}.svn25356 +Release: %{texlive_release}.svn25356.. Summary: German Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2041,7 +2041,7 @@ Support for typesetting German. %package collection-langgreek Version: %{texlive_version} -Release: %{texlive_release}.svn15748 +Release: %{texlive_release}.svn15748.. Summary: Greek Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2073,7 +2073,7 @@ Support for typesetting Greek. %package collection-langhebrew Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Hebrew Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2086,7 +2086,7 @@ Support for typesetting Hebrew. %package collection-langhungarian Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Hungarian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2100,7 +2100,7 @@ Support for typesetting Hungarian. %package collection-langindic Version: %{texlive_version} -Release: %{texlive_release}.svn25494 +Release: %{texlive_release}.svn25494.. Summary: Indic scripts Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2125,7 +2125,7 @@ Support for typesetting some Indic scripts. %package collection-langitalian Version: %{texlive_version} -Release: %{texlive_release}.svn25122 +Release: %{texlive_release}.svn25122.. Summary: Italian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2142,7 +2142,7 @@ Support for typesetting Italian. %package collection-langlatin Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Latin Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2155,7 +2155,7 @@ Support for typesetting Latin. %package collection-langlatvian Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Latvian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2168,7 +2168,7 @@ Support for typesetting Latvian. %package collection-langlithuanian Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Lithuanian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2182,7 +2182,7 @@ Support for typesetting Lithuanian. %package collection-langmongolian Version: %{texlive_version} -Release: %{texlive_release}.svn22468 +Release: %{texlive_release}.svn22468.. Summary: Mongolian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2197,7 +2197,7 @@ Support for typesetting Mongolian. %package collection-langnorwegian Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Norwegian Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2210,7 +2210,7 @@ Support for typesetting Norwegian. %package collection-langother Version: %{texlive_version} -Release: %{texlive_release}.svn25956 +Release: %{texlive_release}.svn25956.. Summary: Other hyphenation patterns Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2242,7 +2242,7 @@ support. %package collection-langpolish Version: %{texlive_version} -Release: %{texlive_release}.svn23552 +Release: %{texlive_release}.svn23552.. Summary: Polish Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2267,7 +2267,7 @@ Support for typesetting Polish. %package collection-langportuguese Version: %{texlive_version} -Release: %{texlive_release}.svn21528 +Release: %{texlive_release}.svn21528.. Summary: Portuguese Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2281,7 +2281,7 @@ Support for typesetting Portuguese. %package collection-langspanish Version: %{texlive_version} -Release: %{texlive_release}.svn21528 +Release: %{texlive_release}.svn21528.. Summary: Spanish Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2298,7 +2298,7 @@ Support for typesetting Spanish. %package collection-langswedish Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Swedish Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2312,7 +2312,7 @@ Support for typesetting Swedish. %package collection-langtibetan Version: %{texlive_version} -Release: %{texlive_release}.svn14727 +Release: %{texlive_release}.svn14727.. Summary: Tibetan Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2326,7 +2326,7 @@ Support for typesetting Tibetan. %package collection-langturkmen Version: %{texlive_version} -Release: %{texlive_release}.svn17578 +Release: %{texlive_release}.svn17578.. Summary: Turkmen Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2340,7 +2340,7 @@ Support for typesetting Turkmen. %package collection-langvietnamese Version: %{texlive_version} -Release: %{texlive_release}.svn15272 +Release: %{texlive_release}.svn15272.. Summary: Vietnamese Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -2353,7 +2353,7 @@ Support for typesetting Vietnamese. %package collection-latex Version: %{texlive_version} -Release: %{texlive_release}.svn25030 +Release: %{texlive_release}.svn25030.. Summary: Basic LaTeX packages Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -2393,7 +2393,7 @@ very strongly recommended. %package collection-latexextra Version: %{texlive_version} -Release: %{texlive_release}.svn25978 +Release: %{texlive_release}.svn25978.. Summary: LaTeX supplementary packages Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -3226,7 +3226,7 @@ A large collection of add-on packages for LaTeX. %package collection-latexrecommended Version: %{texlive_version} -Release: %{texlive_release}.svn25795 +Release: %{texlive_release}.svn25795.. Summary: LaTeX recommended packages Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -3292,7 +3292,7 @@ have widespread use. %package collection-luatex Version: %{texlive_version} -Release: %{texlive_release}.svn25623 +Release: %{texlive_release}.svn25623.. Summary: LuaTeX packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3323,7 +3323,7 @@ http://luatex.org/ %package collection-mathextra Version: %{texlive_version} -Release: %{texlive_release}.svn25870 +Release: %{texlive_release}.svn25870.. Summary: Advanced math typesetting Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3377,7 +3377,7 @@ Extra math %package collection-metapost Version: %{texlive_version} -Release: %{texlive_release}.svn23252 +Release: %{texlive_release}.svn23252.. Summary: MetaPost (and Metafont) drawing packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3425,7 +3425,7 @@ The collection-metapost package %package collection-music Version: %{texlive_version} -Release: %{texlive_release}.svn25121 +Release: %{texlive_release}.svn25121.. Summary: Music typesetting Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -3448,7 +3448,7 @@ Music-related fonts and packages. %package collection-omega Version: %{texlive_version} -Release: %{texlive_release}.svn25844 +Release: %{texlive_release}.svn25844.. Summary: Omega packages Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -3469,7 +3469,7 @@ Haralambous. %package collection-pictures Version: %{texlive_version} -Release: %{texlive_release}.svn25777 +Release: %{texlive_release}.svn25777.. Summary: Graphics packages and programs Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3572,7 +3572,7 @@ The collection-pictures package %package collection-plainextra Version: %{texlive_version} -Release: %{texlive_release}.svn23436 +Release: %{texlive_release}.svn23436.. Summary: Plain TeX supplementary packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3602,7 +3602,7 @@ Add-on packages and macros that work with plain TeX. %package collection-pstricks Version: %{texlive_version} -Release: %{texlive_release}.svn25962 +Release: %{texlive_release}.svn25962.. Summary: PSTricks packages Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3700,7 +3700,7 @@ The collection-pstricks package %package collection-publishers Version: %{texlive_version} -Release: %{texlive_release}.svn25892 +Release: %{texlive_release}.svn25892.. Summary: Support for publishers, theses, standards, conferences, etc. Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3810,7 +3810,7 @@ The collection-publishers package %package collection-science Version: %{texlive_version} -Release: %{texlive_release}.svn25104 +Release: %{texlive_release}.svn25104.. Summary: Typesetting for natural and computer sciences Group: Productivity/Publishing/TeX/Base Url: http://www.tug.org/texlive/ @@ -3877,7 +3877,7 @@ Typesetting for natural and computer sciences %package collection-texinfo Version: %{texlive_version} -Release: %{texlive_release}.svn15216 +Release: %{texlive_release}.svn15216.. Summary: GNU Texinfo Group: Productivity/Publishing/Texinfo Url: http://www.tug.org/texlive/ @@ -3892,7 +3892,7 @@ Live; get the original Texinfo package for your system. %package collection-xetex Version: %{texlive_version} -Release: %{texlive_release}.svn25850 +Release: %{texlive_release}.svn25850.. Summary: XeTeX packages Group: Productivity/Publishing/TeX/Frontends Url: http://www.tug.org/texlive/ @@ -3930,7 +3930,7 @@ Jonathan Kew, http://tug.org/xetex. %package a2ping-bin Version: %{texlive_version} -Release: %{texlive_release}.svn6834 +Release: %{texlive_release}.svn6834.. Summary: Binary files of a2ping Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3941,7 +3941,7 @@ Binary files of a2ping %package accfonts-bin Version: %{texlive_version} -Release: %{texlive_release}.svn12688 +Release: %{texlive_release}.svn12688.. Summary: Binary files of accfonts Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3952,7 +3952,7 @@ Binary files of accfonts %package afm2pl-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of afm2pl Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3963,7 +3963,7 @@ Binary files of afm2pl %package aleph-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of aleph Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3974,7 +3974,7 @@ Binary files of aleph %package amstex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of amstex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3985,7 +3985,7 @@ Binary files of amstex %package asymptote-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23068 +Release: %{texlive_release}.svn23068.. Summary: Binary files of asymptote Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -3996,7 +3996,7 @@ Binary files of asymptote %package authorindex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18790 +Release: %{texlive_release}.svn18790.. Summary: Binary files of authorindex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4007,7 +4007,7 @@ Binary files of authorindex %package biber-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25858 +Release: %{texlive_release}.svn25858.. Summary: Binary files of biber Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4018,7 +4018,7 @@ Binary files of biber %package bibexport-bin Version: %{texlive_version} -Release: %{texlive_release}.svn16219 +Release: %{texlive_release}.svn16219.. Summary: Binary files of bibexport Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4029,7 +4029,7 @@ Binary files of bibexport %package bibtex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of bibtex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4040,7 +4040,7 @@ Binary files of bibtex %package bibtex8-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of bibtex8 Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4051,7 +4051,7 @@ Binary files of bibtex8 %package bibtexu-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of bibtexu Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4062,7 +4062,7 @@ Binary files of bibtexu %package bundledoc-bin Version: %{texlive_version} -Release: %{texlive_release}.svn17794 +Release: %{texlive_release}.svn17794.. Summary: Binary files of bundledoc Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4073,7 +4073,7 @@ Binary files of bundledoc %package cachepic-bin Version: %{texlive_version} -Release: %{texlive_release}.svn15543 +Release: %{texlive_release}.svn15543.. Summary: Binary files of cachepic Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4084,7 +4084,7 @@ Binary files of cachepic %package checkcites-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25623 +Release: %{texlive_release}.svn25623.. Summary: Binary files of checkcites Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4095,7 +4095,7 @@ Binary files of checkcites %package chktex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn21010 +Release: %{texlive_release}.svn21010.. Summary: Binary files of chktex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4106,7 +4106,7 @@ Binary files of chktex %package cjkutils-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of cjkutils Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4117,7 +4117,7 @@ Binary files of cjkutils %package context-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23104 +Release: %{texlive_release}.svn23104.. Summary: Binary files of context Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4128,7 +4128,7 @@ Binary files of context %package cslatex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of cslatex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4139,7 +4139,7 @@ Binary files of cslatex %package csplain-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of csplain Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4150,7 +4150,7 @@ Binary files of csplain %package ctanify-bin Version: %{texlive_version} -Release: %{texlive_release}.svn24061 +Release: %{texlive_release}.svn24061.. Summary: Binary files of ctanify Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4161,7 +4161,7 @@ Binary files of ctanify %package ctanupload-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23866 +Release: %{texlive_release}.svn23866.. Summary: Binary files of ctanupload Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4172,7 +4172,7 @@ Binary files of ctanupload %package ctie-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of ctie Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4183,7 +4183,7 @@ Binary files of ctie %package cweb-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of cweb Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4194,7 +4194,7 @@ Binary files of cweb %package cyrillic-bin-bin Version: %{texlive_version} -Release: %{texlive_release}.svn10 +Release: %{texlive_release}.svn10.. Summary: Binary files of cyrillic-bin Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4205,7 +4205,7 @@ Binary files of cyrillic-bin %package de-macro-bin Version: %{texlive_version} -Release: %{texlive_release}.svn17399 +Release: %{texlive_release}.svn17399.. Summary: Binary files of de-macro Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4216,7 +4216,7 @@ Binary files of de-macro %package detex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of detex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4227,7 +4227,7 @@ Binary files of detex %package devnag-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18336 +Release: %{texlive_release}.svn18336.. Summary: Binary files of devnag Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4238,7 +4238,7 @@ Binary files of devnag %package dosepsbin-bin Version: %{texlive_version} -Release: %{texlive_release}.svn24759 +Release: %{texlive_release}.svn24759.. Summary: Binary files of dosepsbin Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4249,7 +4249,7 @@ Binary files of dosepsbin %package dtl-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18336 +Release: %{texlive_release}.svn18336.. Summary: Binary files of dtl Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4260,7 +4260,7 @@ Binary files of dtl %package dviasm-bin Version: %{texlive_version} -Release: %{texlive_release}.svn8329 +Release: %{texlive_release}.svn8329.. Summary: Binary files of dviasm Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4271,7 +4271,7 @@ Binary files of dviasm %package dvicopy-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvicopy Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4282,7 +4282,7 @@ Binary files of dvicopy %package dvidvi-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14164 +Release: %{texlive_release}.svn14164.. Summary: Binary files of dvidvi Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4293,7 +4293,7 @@ Binary files of dvidvi %package dviljk-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dviljk Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4304,7 +4304,7 @@ Binary files of dviljk %package dvipdfm-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of dvipdfm Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4315,7 +4315,7 @@ Binary files of dvipdfm %package dvipdfmx-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvipdfmx Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4326,7 +4326,7 @@ Binary files of dvipdfmx %package dvipng-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvipng Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4337,7 +4337,7 @@ Binary files of dvipng %package dvipos-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvipos Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4348,7 +4348,7 @@ Binary files of dvipos %package dvips-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvips Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4359,7 +4359,7 @@ Binary files of dvips %package dvisvgm-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of dvisvgm Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4370,7 +4370,7 @@ Binary files of dvisvgm %package ebong-bin Version: %{texlive_version} -Release: %{texlive_release}.svn21000 +Release: %{texlive_release}.svn21000.. Summary: Binary files of ebong Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4381,7 +4381,7 @@ Binary files of ebong %package eplain-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of eplain Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4392,7 +4392,7 @@ Binary files of eplain %package epspdf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn20860 +Release: %{texlive_release}.svn20860.. Summary: Binary files of epspdf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4403,7 +4403,7 @@ Binary files of epspdf %package epstopdf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18336 +Release: %{texlive_release}.svn18336.. Summary: Binary files of epstopdf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4414,7 +4414,7 @@ Binary files of epstopdf %package exceltex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25860 +Release: %{texlive_release}.svn25860.. Summary: Binary files of exceltex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4425,7 +4425,7 @@ Binary files of exceltex %package fig4latex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14752 +Release: %{texlive_release}.svn14752.. Summary: Binary files of fig4latex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4436,7 +4436,7 @@ Binary files of fig4latex %package findhyph-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14758 +Release: %{texlive_release}.svn14758.. Summary: Binary files of findhyph Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4447,7 +4447,7 @@ Binary files of findhyph %package fontinst-bin Version: %{texlive_version} -Release: %{texlive_release}.svn10 +Release: %{texlive_release}.svn10.. Summary: Binary files of fontinst Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4458,7 +4458,7 @@ Binary files of fontinst %package fontools-bin Version: %{texlive_version} -Release: %{texlive_release}.svn12687 +Release: %{texlive_release}.svn12687.. Summary: Binary files of fontools Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4469,7 +4469,7 @@ Binary files of fontools %package fontware-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of fontware Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4480,7 +4480,7 @@ Binary files of fontware %package fragmaster-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of fragmaster Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4491,7 +4491,7 @@ Binary files of fragmaster %package glossaries-bin Version: %{texlive_version} -Release: %{texlive_release}.svn6881 +Release: %{texlive_release}.svn6881.. Summary: Binary files of glossaries Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4502,7 +4502,7 @@ Binary files of glossaries %package gsftopk-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of gsftopk Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4513,7 +4513,7 @@ Binary files of gsftopk %package jadetex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of jadetex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4524,7 +4524,7 @@ Binary files of jadetex %package jfontmaps-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25294 +Release: %{texlive_release}.svn25294.. Summary: Binary files of jfontmaps Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4535,7 +4535,7 @@ Binary files of jfontmaps %package kpathsea-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23152 +Release: %{texlive_release}.svn23152.. Summary: Binary files of kpathsea Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4546,7 +4546,7 @@ Binary files of kpathsea %package lacheck-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22641 +Release: %{texlive_release}.svn22641.. Summary: Binary files of lacheck Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4557,7 +4557,7 @@ Binary files of lacheck %package latex-bin-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14050 +Release: %{texlive_release}.svn14050.. Summary: Binary files of latex-bin Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4568,7 +4568,7 @@ Binary files of latex-bin %package latex2man-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of latex2man Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4579,7 +4579,7 @@ Binary files of latex2man %package latexdiff-bin Version: %{texlive_version} -Release: %{texlive_release}.svn16420 +Release: %{texlive_release}.svn16420.. Summary: Binary files of latexdiff Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4590,7 +4590,7 @@ Binary files of latexdiff %package latexfileversion-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25012 +Release: %{texlive_release}.svn25012.. Summary: Binary files of latexfileversion Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4601,7 +4601,7 @@ Binary files of latexfileversion %package latexmk-bin Version: %{texlive_version} -Release: %{texlive_release}.svn10937 +Release: %{texlive_release}.svn10937.. Summary: Binary files of latexmk Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4612,7 +4612,7 @@ Binary files of latexmk %package lcdftypetools-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of lcdftypetools Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4623,7 +4623,7 @@ Binary files of lcdftypetools %package listings-ext-bin Version: %{texlive_version} -Release: %{texlive_release}.svn15093 +Release: %{texlive_release}.svn15093.. Summary: Binary files of listings-ext Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4634,7 +4634,7 @@ Binary files of listings-ext %package luaotfload-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18579 +Release: %{texlive_release}.svn18579.. Summary: Binary files of luaotfload Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4645,7 +4645,7 @@ Binary files of luaotfload %package luatex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of luatex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4656,7 +4656,7 @@ Binary files of luatex %package makeindex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of makeindex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4667,7 +4667,7 @@ Binary files of makeindex %package match_parens-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23500 +Release: %{texlive_release}.svn23500.. Summary: Binary files of match_parens Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4678,7 +4678,7 @@ Binary files of match_parens %package mathspic-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23661 +Release: %{texlive_release}.svn23661.. Summary: Binary files of mathspic Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4689,7 +4689,7 @@ Binary files of mathspic %package metafont-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of metafont Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4700,7 +4700,7 @@ Binary files of metafont %package metapost-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of metapost Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4711,7 +4711,7 @@ Binary files of metapost %package mex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of mex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4722,7 +4722,7 @@ Binary files of mex %package mf2pt1-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23406 +Release: %{texlive_release}.svn23406.. Summary: Binary files of mf2pt1 Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4733,7 +4733,7 @@ Binary files of mf2pt1 %package mfware-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of mfware Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4744,7 +4744,7 @@ Binary files of mfware %package mkgrkindex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14428 +Release: %{texlive_release}.svn14428.. Summary: Binary files of mkgrkindex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4755,7 +4755,7 @@ Binary files of mkgrkindex %package mkjobtexmf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn8457 +Release: %{texlive_release}.svn8457.. Summary: Binary files of mkjobtexmf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4766,7 +4766,7 @@ Binary files of mkjobtexmf %package mltex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of mltex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4777,7 +4777,7 @@ Binary files of mltex %package mptopdf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18674 +Release: %{texlive_release}.svn18674.. Summary: Binary files of mptopdf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4788,7 +4788,7 @@ Binary files of mptopdf %package musixtex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22187 +Release: %{texlive_release}.svn22187.. Summary: Binary files of musixtex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4799,7 +4799,7 @@ Binary files of musixtex %package omegaware-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of omegaware Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4810,7 +4810,7 @@ Binary files of omegaware %package patgen-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22641 +Release: %{texlive_release}.svn22641.. Summary: Binary files of patgen Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4821,7 +4821,7 @@ Binary files of patgen %package pax-bin Version: %{texlive_version} -Release: %{texlive_release}.svn10843 +Release: %{texlive_release}.svn10843.. Summary: Binary files of pax Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4832,7 +4832,7 @@ Binary files of pax %package pdfcrop-bin Version: %{texlive_version} -Release: %{texlive_release}.svn14387 +Release: %{texlive_release}.svn14387.. Summary: Binary files of pdfcrop Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4843,7 +4843,7 @@ Binary files of pdfcrop %package pdfjam-bin Version: %{texlive_version} -Release: %{texlive_release}.svn17868 +Release: %{texlive_release}.svn17868.. Summary: Binary files of pdfjam Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4854,7 +4854,7 @@ Binary files of pdfjam %package pdftex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23498 +Release: %{texlive_release}.svn23498.. Summary: Binary files of pdftex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4865,7 +4865,7 @@ Binary files of pdftex %package pdftools-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22859 +Release: %{texlive_release}.svn22859.. Summary: Binary files of pdftools Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4876,7 +4876,7 @@ Binary files of pdftools %package pedigree-perl-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25962 +Release: %{texlive_release}.svn25962.. Summary: Binary files of pedigree-perl Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4887,7 +4887,7 @@ Binary files of pedigree-perl %package perltex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn16181 +Release: %{texlive_release}.svn16181.. Summary: Binary files of perltex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4898,7 +4898,7 @@ Binary files of perltex %package pkfix-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13364 +Release: %{texlive_release}.svn13364.. Summary: Binary files of pkfix Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4909,7 +4909,7 @@ Binary files of pkfix %package pkfix-helper-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of pkfix-helper Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4920,7 +4920,7 @@ Binary files of pkfix-helper %package ps2pkm-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of ps2pkm Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4931,7 +4931,7 @@ Binary files of ps2pkm %package pst2pdf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn16622 +Release: %{texlive_release}.svn16622.. Summary: Binary files of pst2pdf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4942,7 +4942,7 @@ Binary files of pst2pdf %package pstools-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22641 +Release: %{texlive_release}.svn22641.. Summary: Binary files of pstools Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4953,7 +4953,7 @@ Binary files of pstools %package ptex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of ptex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4964,7 +4964,7 @@ Binary files of ptex %package purifyeps-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of purifyeps Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4975,7 +4975,7 @@ Binary files of purifyeps %package seetexk-bin Version: %{texlive_version} -Release: %{texlive_release}.svn18336 +Release: %{texlive_release}.svn18336.. Summary: Binary files of seetexk Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4986,7 +4986,7 @@ Binary files of seetexk %package splitindex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn12613 +Release: %{texlive_release}.svn12613.. Summary: Binary files of splitindex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -4997,7 +4997,7 @@ Binary files of splitindex %package sty2dtx-bin Version: %{texlive_version} -Release: %{texlive_release}.svn21215 +Release: %{texlive_release}.svn21215.. Summary: Binary files of sty2dtx Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5008,7 +5008,7 @@ Binary files of sty2dtx %package svn-multi-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of svn-multi Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5019,7 +5019,7 @@ Binary files of svn-multi %package synctex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of synctex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5030,7 +5030,7 @@ Binary files of synctex %package tetex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25900 +Release: %{texlive_release}.svn25900.. Summary: Binary files of tetex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5041,7 +5041,7 @@ Binary files of tetex %package tex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of tex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5052,7 +5052,7 @@ Binary files of tex %package tex4ht-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of tex4ht Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5063,7 +5063,7 @@ Binary files of tex4ht %package texconfig-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22544 +Release: %{texlive_release}.svn22544.. Summary: Binary files of texconfig Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5074,7 +5074,7 @@ Binary files of texconfig %package texcount-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13013 +Release: %{texlive_release}.svn13013.. Summary: Binary files of texcount Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5085,7 +5085,7 @@ Binary files of texcount %package texdef-bin Version: %{texlive_version} -Release: %{texlive_release}.svn21802 +Release: %{texlive_release}.svn21802.. Summary: Binary files of texdef Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5096,7 +5096,7 @@ Binary files of texdef %package texdiff-bin Version: %{texlive_version} -Release: %{texlive_release}.svn15506 +Release: %{texlive_release}.svn15506.. Summary: Binary files of texdiff Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5107,7 +5107,7 @@ Binary files of texdiff %package texdirflatten-bin Version: %{texlive_version} -Release: %{texlive_release}.svn12782 +Release: %{texlive_release}.svn12782.. Summary: Binary files of texdirflatten Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5118,7 +5118,7 @@ Binary files of texdirflatten %package texdoc-bin Version: %{texlive_version} -Release: %{texlive_release}.svn12518 +Release: %{texlive_release}.svn12518.. Summary: Binary files of texdoc Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5129,7 +5129,7 @@ Binary files of texdoc %package texlive-scripts-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of texlive-scripts Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5140,7 +5140,7 @@ Binary files of texlive-scripts %package texliveonfly-bin Version: %{texlive_version} -Release: %{texlive_release}.svn24062 +Release: %{texlive_release}.svn24062.. Summary: Binary files of texliveonfly Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5151,7 +5151,7 @@ Binary files of texliveonfly %package texloganalyser-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of texloganalyser Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5162,7 +5162,7 @@ Binary files of texloganalyser %package texsis-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of texsis Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5173,7 +5173,7 @@ Binary files of texsis %package texware-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of texware Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5184,7 +5184,7 @@ Binary files of texware %package thumbpdf-bin Version: %{texlive_version} -Release: %{texlive_release}.svn6898 +Release: %{texlive_release}.svn6898.. Summary: Binary files of thumbpdf Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5195,7 +5195,7 @@ Binary files of thumbpdf %package tie-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of tie Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5206,7 +5206,7 @@ Binary files of tie %package tpic2pdftex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of tpic2pdftex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5217,7 +5217,7 @@ Binary files of tpic2pdftex %package ttfutils-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of ttfutils Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5228,7 +5228,7 @@ Binary files of ttfutils %package typeoutfileinfo-bin Version: %{texlive_version} -Release: %{texlive_release}.svn25648 +Release: %{texlive_release}.svn25648.. Summary: Binary files of typeoutfileinfo Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5239,7 +5239,7 @@ Binary files of typeoutfileinfo %package ulqda-bin Version: %{texlive_version} -Release: %{texlive_release}.svn13663 +Release: %{texlive_release}.svn13663.. Summary: Binary files of ulqda Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5250,7 +5250,7 @@ Binary files of ulqda %package urlbst-bin Version: %{texlive_version} -Release: %{texlive_release}.svn23262 +Release: %{texlive_release}.svn23262.. Summary: Binary files of urlbst Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5261,7 +5261,7 @@ Binary files of urlbst %package vlna-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22641 +Release: %{texlive_release}.svn22641.. Summary: Binary files of vlna Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5272,7 +5272,7 @@ Binary files of vlna %package vpe-bin Version: %{texlive_version} -Release: %{texlive_release}.svn6897 +Release: %{texlive_release}.svn6897.. Summary: Binary files of vpe Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5283,7 +5283,7 @@ Binary files of vpe %package web-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of web Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5294,7 +5294,7 @@ Binary files of web %package xdvi-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of xdvi Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5305,7 +5305,7 @@ Binary files of xdvi %package xetex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn22981 +Release: %{texlive_release}.svn22981.. Summary: Binary files of xetex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5316,7 +5316,7 @@ Binary files of xetex %package xmltex-bin Version: %{texlive_version} -Release: %{texlive_release}.svn3006 +Release: %{texlive_release}.svn3006.. Summary: Binary files of xmltex Group: Productivity/Publishing/TeX/Utilities Url: http://www.tug.org/texlive/ @@ -5328,7 +5328,7 @@ Binary files of xmltex %package -n libkpathsea6 License: LGPL-2.1+ Version: 6.0.1 -Release: 0 +Release: . Summary: Path searching library for TeX-related files Group: System/Libraries Url: http://www.tug.org/texlive/ @@ -5345,7 +5345,7 @@ the TeX-live sources. %package -n %{name}-kpathsea-devel License: LGPL-2.1+ Version: 6.0.1 -Release: 0 +Release: . Summary: Path searching library for TeX-related files Group: Development/Libraries/C and C++ Url: http://www.tug.org/texlive/ @@ -5362,7 +5362,7 @@ the TeX-live sources. %package -n libptexenc1 License: BSD3c Version: 1.2.0 -Release: 0 +Release: . Summary: Libraries of Kanji code convert library for pTeX Group: System/Libraries Url: http://www.tug.org/texlive/ @@ -5376,7 +5376,7 @@ TeX by ASCII Co.) and its surrounding tools. %package -n %{name}-ptexenc-devel License: BSD3c Version: 1.2.0 -Release: 0 +Release: . Summary: Libraries of Kanji code convert library for pTeX Group: Development/Libraries/C and C++ Url: http://www.tug.org/texlive/ @@ -5708,7 +5708,7 @@ TeX by ASCII Co.) and its surrounding tools. popd # compile nobody - $CC ${RPM_OPT_FLAGS} -o $prefix/bin/nobody %{S:50} + $CC ${RPM_OPT_FLAGS} -fPIE -pie -o $prefix/bin/nobody %{S:50} %install @@ -12990,10 +12990,11 @@ TeX by ASCII Co.) and its surrounding tools. # the permission files, any change is also required within do.mklists mkdir -p %{buildroot}%{_sysconfdir}/permissions.d (cat > %{buildroot}%{_sysconfdir}/permissions.d/texlive) <<-EOF - %{_texmfvardir}/ls-R root:root 0666 - %{_texmfvardir}/dist/ls-R root:root 0666 - %{_texmfvardir}/main/ls-R root:root 0666 - %{_fontcache}/ls-R root:root 0666 + %{_texmfconfdir}/ls-R nobody:nobody 0644 + %{_texmfvardir}/ls-R nobody:nobody 0644 + %{_texmfvardir}/dist/ls-r nobody:nobody 0644 + %{_texmfvardir}/main/ls-r nobody:nobody 0644 + %{_fontcache}/ls-r nobody:nobody 0644 %{_texmfvardir}/ root:root 1755 %{_texmfvardir}/dist/ root:root 1755 %{_texmfvardir}/main/ root:root 1755 @@ -13006,12 +13007,13 @@ TeX by ASCII Co.) and its surrounding tools. %{_fontcache}/pk/ root:root 1777 %{_fontcache}/source/ root:root 1777 %{_fontcache}/tfm/ root:root 1777 - EOF - (cat > %{buildroot}%{_sysconfdir}/permissions.d/texlive.paranoid) <<-EOF - %{_texmfvardir}/ls-R root:root 0644 - %{_texmfvardir}/dist/ls-R root:root 0644 - %{_texmfvardir}/main/ls-R root:root 0644 - %{_fontcache}/ls-R root:root 0644 + eof + (cat > %{buildroot}%{_sysconfdir}/permissions.d/texlive.paranoid) <<-eof + %{_texmfconfdir}/ls-R nobody:nobody 0644 + %{_texmfvardir}/ls-r nobody:nobody 0644 + %{_texmfvardir}/dist/ls-r nobody:nobody 0644 + %{_texmfvardir}/main/ls-r nobody:nobody 0644 + %{_fontcache}/ls-r nobody:nobody 0644 %{_texmfvardir}/ root:root 1755 %{_texmfvardir}/dist/ root:root 1755 %{_texmfvardir}/main/ root:root 1755 @@ -13024,7 +13026,7 @@ TeX by ASCII Co.) and its surrounding tools. %{_fontcache}/pk/ root:root 1755 %{_fontcache}/source/ root:root 1755 %{_fontcache}/tfm/ root:root 1755 - EOF + eof while read path rest ; do echo $path done < %{buildroot}%{_sysconfdir}/permissions.d/texlive > %{buildroot}/%{_texmfconfdir}/permlist @@ -13060,8 +13062,9 @@ TeX by ASCII Co.) and its surrounding tools. install -m 0755 %{S:12} %{buildroot}%{_sysconfdir}/cron.daily/suse-texlive %if %{defined verify_permissions} -%verifyscript basesystem +%verifyscript filesystem %verify_permissions -f %{_texmfconfdir}/permlist +%verify_permissions -e %{_texmfconfdir}/ls-R %verify_permissions -e %{_texmfvardir}/ %verify_permissions -e %{_texmfvardir}/fonts/ %verify_permissions -e %{_texmfvardir}/fonts/dvipdfm/ @@ -13081,7 +13084,15 @@ TeX by ASCII Co.) and its surrounding tools. %verify_permissions -e %{_fontcache}/tfm/ %endif -%post basesystem +%post +%fillup_only -n texlive +mkdir -p /var/run/texlive +> /var/run/texlive/run-mktexlsr + +%posttrans +%{_texmfmaindir}/texconfig/update + +%post filesystem %fillup_only -n texlive %set_permissions %{_texmfvardir}/ %set_permissions %{_texmfvardir}/fonts/ @@ -13089,6 +13100,7 @@ TeX by ASCII Co.) and its surrounding tools. %set_permissions %{_texmfvardir}/fonts/dvips/ %set_permissions %{_texmfvardir}/fonts/ls-R %set_permissions %{_texmfvardir}/fonts/pdftex/ +%set_permissions %{_texmfconfdir}/ls-R %set_permissions %{_texmfvardir}/dist/ %set_permissions %{_texmfvardir}/dist/ls-R %set_permissions %{_texmfvardir}/ls-R @@ -13100,11 +13112,6 @@ TeX by ASCII Co.) and its surrounding tools. %set_permissions %{_fontcache}/pk/ %set_permissions %{_fontcache}/source/ %set_permissions %{_fontcache}/tfm/ -mkdir -p /var/run/texlive -> /var/run/texlive/run-texhash - -%posttrans basesystem -%{_texmfmaindir}/texconfig/update %post -n libkpathsea6 -p /sbin/ldconfig %postun -n libkpathsea6 -p /sbin/ldconfig @@ -13114,9 +13121,22 @@ mkdir -p /var/run/texlive %files %defattr(-,root,root,755) -%{_bindir}/nobody +%attr(1755,root,root) %{_bindir}/nobody +%config %{_sysconfdir}/cron.daily/suse-texlive +%config %{_sysconfdir}/permissions.d/texlive* +%config %{_sysconfdir}/profile.d/texlive* +%config %{_sysconfdir}/skel/.dvipsrc +%config %verify(not md5 size mtime) %{_sysconfdir}/fonts/conf.avail/09-texlive*.conf +%config %verify(not link) %{_sysconfdir}/fonts/conf.d/09-texlive*.conf +%config(noreplace) %verify(not md5 size mtime) %{_texmfconfdir}/web2c/fmtutil.cnf +%config(noreplace) %verify(not md5 size mtime) %{_texmfconfdir}/web2c/texmf.cnf +%verify(link) %{_texmfmaindir}/web2c/fmtutil.cnf +%verify(link) %{_texmfmaindir}/web2c/texmf.cnf +%attr(0755,root,root) %{_texmfmaindir}/texconfig/update +%{_localstatedir}/adm/fillup-templates/sysconfig.texlive +%{_mandir}/man8/nobody.* -%files basesystem +%files filesystem %defattr(-,root,root,755) %dir %{_texmfconfdir} %dir %{_texmfconfdir}/dvipdfm @@ -20261,27 +20281,14 @@ mkdir -p /var/run/texlive %dir %attr(1755,root,root) %{_texmfvardir}/fonts/dvips %dir %attr(1755,root,root) %{_texmfvardir}/fonts/pdftex %dir %{_texmfvardir}/md5 -%config %{_sysconfdir}/cron.daily/suse-texlive -%config %{_sysconfdir}/permissions.d/texlive* -%config %{_sysconfdir}/profile.d/texlive* -%config %{_sysconfdir}/skel/.dvipsrc -%config %verify(not md5 size mtime) %{_sysconfdir}/fonts/conf.avail/09-texlive*.conf -%config %verify(not link) %{_sysconfdir}/fonts/conf.d/09-texlive*.conf -%config(noreplace) %verify(not md5 size mtime) %{_texmfconfdir}/web2c/fmtutil.cnf -%config(noreplace) %verify(not md5 size mtime) %{_texmfconfdir}/web2c/texmf.cnf -%verify(link) %{_texmfmaindir}/web2c/fmtutil.cnf -%verify(link) %{_texmfmaindir}/web2c/texmf.cnf %config %{_texmfconfdir}/permlist -%attr(0755,root,root) %{_texmfmaindir}/texconfig/update %verify(link) %{_texmfmaindir}/ls-R %verify(link) %{_texmfdistdir}/ls-R -%ghost %attr(0644,root,root) %verify(not md5 size mtime) %{_texmfconfdir}/ls-R -%ghost %attr(0666,root,root) %verify(not md5 size mtime) %{_fontcache}/ls-R -%ghost %attr(0666,root,root) %verify(not md5 size mtime) %{_texmfvardir}/ls-R -%ghost %attr(0666,root,root) %verify(not md5 size mtime) %{_texmfvardir}/dist/ls-R -%ghost %attr(0666,root,root) %verify(not md5 size mtime) %{_texmfvardir}/main/ls-R -%{_mandir}/man8/nobody.* -%{_localstatedir}/adm/fillup-templates/sysconfig.texlive +%ghost %attr(0644,nobody,nobody) %verify(not md5 size mtime) %{_texmfconfdir}/ls-R +%ghost %attr(0644,nobody,nobody) %verify(not md5 size mtime) %{_fontcache}/ls-R +%ghost %attr(0644,nobody,nobody) %verify(not md5 size mtime) %{_texmfvardir}/ls-R +%ghost %attr(0644,nobody,nobody) %verify(not md5 size mtime) %{_texmfvardir}/dist/ls-R +%ghost %attr(0644,nobody,nobody) %verify(not md5 size mtime) %{_texmfvardir}/main/ls-R %files scheme-basic