From 1751961557e04805b857f16862c2a8aa94e2ebe1 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:31:50 +1100 Subject: [PATCH 01/24] common/build-style/texmf.sh: various improvments. - do_check (ownership check): only check against latest version of package. - Add comments. --- common/build-style/texmf.sh | 40 +++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/common/build-style/texmf.sh b/common/build-style/texmf.sh index 798d44e14d2..60c73055bc0 100644 --- a/common/build-style/texmf.sh +++ b/common/build-style/texmf.sh @@ -1,19 +1,34 @@ do_build() { local f p + # Extract the source files mkdir -p "build/usr/share/texmf-dist" find . -maxdepth 1 -print -name "*.tar.xz" \ -exec bsdtar -C "build/usr/share/texmf-dist" -xf {} \; cd "build/usr/share/texmf-dist/" + # Everything in usr/share/texmf-dist/texmf-dist should really be in + # usr/share/texmf-dist, so we move it if [ -d "texmf-dist" ] ; then rsync -ar texmf-dist/ ./ rm -rf texmf-dist/ fi + # LICENSEs are unneeded rm -f LICENSE* + + # We have some conflicting files between different packages. To work + # around this, we use an ownership file that maps which conflicting + # files should be in which packages. Here, each file in the map list is + # checked whether it is in the package, and if it shouldn't be it is + # removed. while IFS=' ' read -r f p ; do if [ "$p" = "$pkgname" ] && ! [ -e "$f" ]; then + # Error out if the ownership map expects this package to have a + # file but it dosen't msg_error "$pkgver: missing file $f\n" elif [ "$p" != "$pkgname" ] && [ -e "$f" ]; then + # Remove a file that according to the ownership map belongs to + # another file echo "removed $f" + # Install a file that lists the removed packages mkdir -p ../texlive/removed echo "$f" >> ../texlive/removed/$pkgname.txt rm -f "$f" @@ -22,10 +37,27 @@ do_build() { } do_check() { - local f p exitcode=0 + # This is essentially a helper for generating the ownership map. It checks + # to see if there are any conflicts between all of the different packages. + local f p p_names pkgs exitcode=0 cd build - while read p; do - if [[ ${p%-*} =~ .*-bin$ ]] || [ "${p%-*}" = "$pkgname" ]; then + + # Generate a list of packages to check against. We need to do this + # manipulation because we only want to check against the most recent + # version of the package. + p_names="$(xbps-query -Rs texlive -p pkgver | cut -d : -f 1 | sed 's/-[0-9].*$//' | sort | uniq)" + pkgs="" + # For each package name, get the last match in p_alls to get the latest + # version + for p in ${p_names}; do + pkgs+="$(xbps-query -Rs texlive -p pkgver | cut -d : -f 1 | grep "${p}" | head -n 1)" + pkgs+=" " + done + + # Perform the actual check + for p in ${pkgs}; do + # Don't check against the texlive-bin* packages, ourselves, -dbg or -32bit pkgs + if [[ ${p%-*} =~ .*-bin$ ]] || [ "${p%-*}" = "$pkgname" ] || [[ ${p%-*} =~ .*-dbg$ ]] || [[ ${p%-*} =~ .*-32bit$ ]]; then continue fi echo checking conflicts with ${p}... @@ -35,7 +67,7 @@ do_check() { exitcode=1 fi done < <(xbps-query -Rf $p | sed 's/ -> .*//') - done < <(xbps-query -Rs texlive -p pkgver | cut -d : -f 1) + done return $exitcode } From a0391f9c4ec644f5396128c081a88c6371dc7217 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:24:33 +1100 Subject: [PATCH 02/24] texlive-core: update to 2020.57066. --- srcpkgs/texlive-core/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template index b264f88ea4f..b330bfc6c2b 100644 --- a/srcpkgs/texlive-core/template +++ b/srcpkgs/texlive-core/template @@ -1,11 +1,11 @@ # Template file for 'texlive-core' pkgname=texlive-core -version=2020.55416 -revision=2 +version=2020.57066 +revision=1 build_style="texmf" short_desc="TeX Live - core texmf distribution" maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=8e025c2dfa4e19dcb6aa5e661874d2c2a158aa2e1a078c11a4ddd6347bd9db45 +checksum=b3280ddd2b2c8d41dba3784ba41b755e317e5352868015fe1f70a16b24f5dde9 From 129f7defe7d1f5ba39dd90758a52251412fb50e5 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:25:09 +1100 Subject: [PATCH 03/24] texlive-bibtexextra: update to 2020.56991. --- srcpkgs/texlive-bibtexextra/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template index 8919b87655b..fe9d2fa2681 100644 --- a/srcpkgs/texlive-bibtexextra/template +++ b/srcpkgs/texlive-bibtexextra/template @@ -1,7 +1,7 @@ # Template file for 'texlive-bibtexextra' pkgname=texlive-bibtexextra -version=2020.55376 -revision=2 +version=2020.56991 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Additional BibTeX styles and bibliography databases" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=f886188aa015f8450519a22cca61b7dc929bb206c90f5de8947a1a949f762f4a +checksum=29ac4e1ab0447832a6847abf4a4f2a034ff4deae339fe9c118aef1bc95c02b49 From 820ce8eea6c03003e3d8937ba4af9e96832e319b Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:25:31 +1100 Subject: [PATCH 04/24] texlive-fontsextra: update to 2020.57042. --- srcpkgs/texlive-fontsextra/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template index bded49719ef..ea129fa90f8 100644 --- a/srcpkgs/texlive-fontsextra/template +++ b/srcpkgs/texlive-fontsextra/template @@ -1,7 +1,7 @@ # Template file for 'texlive-fontsextra' pkgname=texlive-fontsextra -version=2020.55407 -revision=2 +version=2020.57042 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - All sorts of extra fonts" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=25e1060c699f09e02924bf27902b162d7af5a6cc2d0c898f83c09ca0928d9060 +checksum=88a46fc20ec4522bb825aad3b8792ad1494933b2dcbeee4e6b746e1a264352fb From 3fe331ba25c435b6264ba8c2b84ef6b63b583d37 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:25:50 +1100 Subject: [PATCH 05/24] texlive-formatsextra: update to 2020.56699. --- srcpkgs/texlive-formatsextra/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template index 9c16243f867..fee99a62cd6 100644 --- a/srcpkgs/texlive-formatsextra/template +++ b/srcpkgs/texlive-formatsextra/template @@ -1,7 +1,7 @@ # Template file for 'texlive-formatsextra' pkgname=texlive-formatsextra -version=2020.54498 -revision=2 +version=2020.56699 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Collection of extra TeX 'formats'" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=897881410cc6144478c40cee45d976950a60bd5f86f798857d57501b3c2a4bf0 +checksum=ead7b2f6674f0db9b35db6ad89c13dead0831f7782999b7fdd921937ffec8352 From ed615e56dfc7b800974d74528232601a6f1ef97e Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:26:10 +1100 Subject: [PATCH 06/24] texlive-games: update to 2020.56833. --- srcpkgs/texlive-games/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template index 886078f5f55..682791ab0e3 100644 --- a/srcpkgs/texlive-games/template +++ b/srcpkgs/texlive-games/template @@ -1,7 +1,7 @@ # Template file for 'texlive-games' pkgname=texlive-games -version=2020.55271 -revision=2 +version=2020.56833 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Typesetting board games" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=8fee7616c18bd8c53cdea108d2d17583b88ace4a97fe6d23f13d32c56397885b +checksum=c11db61e7daf90f815a606df357da480479d300ebe7606179f67ca8c13fedc27 From a7d0a234be57f319402f7988c4adde5d2fc7652d Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:26:48 +1100 Subject: [PATCH 07/24] texlive-humanities: update to 2020.57034. --- srcpkgs/texlive-humanities/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template index 6a212087ae1..4623280a891 100644 --- a/srcpkgs/texlive-humanities/template +++ b/srcpkgs/texlive-humanities/template @@ -1,7 +1,7 @@ # Template file for 'texlive-humanities' pkgname=texlive-humanities -version=2020.55389 -revision=2 +version=2020.57034 +revision=1 build_style="texmf" depends="texlive-core texlive-latexextra texlive-pictures" short_desc="TeX Live - Packages for humanities, law, linguistics, etc" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=528bc27a2ba5410a76d4ab509b97d0ea87038fde1b65f4254fb0d94805c1f3e5 +checksum=9eecd63565d7ab550fa7f82f10f4f1bbb523c501e987c3eef051426e5927ed70 From 8b0637fb4942babc76bc7c9c0ab7b24278df9f79 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:27:17 +1100 Subject: [PATCH 08/24] texlive-langchinese: update to 2020.57044. --- srcpkgs/texlive-langchinese/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template index 45500a2fcae..9b10e8751d5 100644 --- a/srcpkgs/texlive-langchinese/template +++ b/srcpkgs/texlive-langchinese/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langchinese' pkgname=texlive-langchinese -version=2020.55162 -revision=2 +version=2020.57044 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Fonts and macro packages for typesetting Chinese" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=4ed294a09e69ca853fd9a141103ad4d4f6282afc3dcc058e18415acfd71f8883 +checksum=635ff96a2373caca1c4b927ba54d6fd1bd3ee629dc9279be768021eb8fe1c93f From c2930131b87f7a1e716871854100b6de9ed142ec Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:27:43 +1100 Subject: [PATCH 09/24] texlive-langcyrillic: update to 2020.56674. --- srcpkgs/texlive-langcyrillic/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template index 2bf41280803..6ab9170e30d 100644 --- a/srcpkgs/texlive-langcyrillic/template +++ b/srcpkgs/texlive-langcyrillic/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langcyrillic' pkgname=texlive-langcyrillic -version=2020.54594 -revision=2 +version=2020.56674 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=42cb98a93a1cb9437691d24d4aae64360b260da036f874cb6644aa7bc8a47c67 +checksum=b20e99fd5a7f48e0024fc2e2bb2609d28eb9a74e5b2abee1843e680632833cf9 From 2aed46a09e04d3bccace52cc64b617237121bbf0 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:28:05 +1100 Subject: [PATCH 10/24] texlive-langextra: update to 2020.56781. --- srcpkgs/texlive-langextra/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template index e59d071ad63..a66c38aa338 100644 --- a/srcpkgs/texlive-langextra/template +++ b/srcpkgs/texlive-langextra/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langextra' pkgname=texlive-langextra -version=2020.55417 -revision=2 +version=2020.56781 +revision=1 build_style="texmf" depends="texlive-core texlive-latexextra" short_desc="TeX Live - Packages for a bunch of extra languages" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=b92cff8917d8f44071de42307c9f5d72d0be8999d789d1d407225d010f026ac9 +checksum=57b27be556189cb9a50ee5c724d4cce40cab2efdc3e253d8a4fb61c52d36860a From 48e58c27a9c67a6aba5df9aca0eb247421a44ef0 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:28:30 +1100 Subject: [PATCH 11/24] texlive-langgreek: update to 2020.56956. --- srcpkgs/texlive-langgreek/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template index dffd3471916..1e4c61c3fc2 100644 --- a/srcpkgs/texlive-langgreek/template +++ b/srcpkgs/texlive-langgreek/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langgreek' pkgname=texlive-langgreek -version=2020.54512 -revision=2 +version=2020.56956 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Fonts and macro packages for typesetting Greek" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=72c7c9b7ab23df11edf2ec2430a97d8a45885316ccbcfa7bc62684b3f2e9188b +checksum=9fac133578469c91572306a537c47ee6fdc661caf0f0dacba276af6a69fca465 From 1e00888a9e1559889bdab686ee87ae33cb2784a1 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:28:51 +1100 Subject: [PATCH 12/24] texlive-langjapanese: update to 2020.57025. --- srcpkgs/texlive-langjapanese/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template index 3a8d424ac1d..e5949a7f232 100644 --- a/srcpkgs/texlive-langjapanese/template +++ b/srcpkgs/texlive-langjapanese/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langjapanese' pkgname=texlive-langjapanese -version=2020.55320 -revision=2 +version=2020.57025 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Fonts and macro packages for typesetting Japanese" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=2e2538c9c81ed69530ce78b1dd132eaa54832276e614d6907bafeec17a1c3a90 +checksum=8f358bde670e7afb8b1561382bc0c18797da97f0e2ea40c74b87a54fc32057c7 From 5ea9f420810ab8f93f99645465277a3167e6764d Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:29:12 +1100 Subject: [PATCH 13/24] texlive-langkorean: update to 2020.56915. --- srcpkgs/texlive-langkorean/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template index 75e6390c8bb..05287fea517 100644 --- a/srcpkgs/texlive-langkorean/template +++ b/srcpkgs/texlive-langkorean/template @@ -1,7 +1,7 @@ # Template file for 'texlive-langkorean' pkgname=texlive-langkorean -version=2020.54519 -revision=2 +version=2020.56915 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Fonts and macro packages for typesetting Korean" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=dfc1e1434bbc10442009e9c3e28609ae45aeda96930df899d365eea38423f66e +checksum=e767951038f076f9cdd76a7b5bad9598733ef3df098082d623511d9adffb1d1e From b23c9a8e8d8272e61fc4e86c7e2722a24d06408f Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:29:36 +1100 Subject: [PATCH 14/24] texlive-latexextra: update to 2020.57067. --- srcpkgs/texlive-latexextra/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template index 7d9ab489fe0..bedea015267 100644 --- a/srcpkgs/texlive-latexextra/template +++ b/srcpkgs/texlive-latexextra/template @@ -1,7 +1,7 @@ # Template file for 'texlive-latexextra' pkgname=texlive-latexextra -version=2020.55418 -revision=2 +version=2020.57067 +revision=1 build_style="texmf" depends="perl-File-Which python3-Pygments texlive-core texlive-pictures" short_desc="TeX Live - Collection of LaTeX addon packages" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=a2ee21a2a6f00def6bec620a85bb8116de97a16dcd98adaa308eb455fe0e7fcb +checksum=6ab6ca702f7d956de9ee8fb9c78518da64c322472716c99780d9dfd9c158930f From 8ea5667b25556e8590129dc6522653d66c7064fe Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:29:54 +1100 Subject: [PATCH 15/24] texlive-music: update to 2020.56473. --- srcpkgs/texlive-music/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template index 2210ffcb936..03a03d99805 100644 --- a/srcpkgs/texlive-music/template +++ b/srcpkgs/texlive-music/template @@ -1,7 +1,7 @@ # Template file for 'texlive-music' pkgname=texlive-music -version=2020.54758 -revision=2 +version=2020.56473 +revision=1 build_style="texmf" depends="fontforge python3 texlive-core" short_desc="TeX Live - Music typesetting packages" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=47f418d851a0f838c08be406135ef338533e32cf0bc9c4ffefeaa0139973e8f1 +checksum=06caf29f5ef2e3881cde74963f70ffe75215359ae824ebae4f0599b24ca4458b From ddda1c9fe6a93d8b024135e91baf66f80ea3f908 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:30:10 +1100 Subject: [PATCH 16/24] texlive-pictures: update to 2020.57065. --- srcpkgs/texlive-pictures/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template index 5f1c07af383..e60fb246282 100644 --- a/srcpkgs/texlive-pictures/template +++ b/srcpkgs/texlive-pictures/template @@ -1,7 +1,7 @@ # Template file for 'texlive-pictures' pkgname=texlive-pictures -version=2020.55342 -revision=2 +version=2020.57065 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Packages for drawing graphics" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=4bfd4a1cf0339151806ff7591c11d4b1868bc9ebf7f9b0f396193abbc3c7aec5 +checksum=4e9a720d65b4a2d15cb05591f817cc76dff57797485b075f356c1c1ff109bca5 From 42fe693a35abc8d8c87a4f1430800830a17a63ab Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:30:32 +1100 Subject: [PATCH 17/24] texlive-pstricks: update to 2020.56758. --- srcpkgs/texlive-pstricks/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template index f7ca79bf681..40773bad302 100644 --- a/srcpkgs/texlive-pstricks/template +++ b/srcpkgs/texlive-pstricks/template @@ -1,7 +1,7 @@ # Template file for 'texlive-pstricks' pkgname=texlive-pstricks -version=2020.55289 -revision=2 +version=2020.56758 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Additional PSTricks packages" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=be0eb4d24474a3af116af7d34af5b78f6cdc7aee6235ed4d63f1682dc2ef0cbc +checksum=3c02a5733450544e8d38f66e6fa20055974a474e6184b293fe7d7003e891f6a1 From 958cd13c92df84ff3fc8b204bc9e7f9b769e5dae Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:30:51 +1100 Subject: [PATCH 18/24] texlive-publishers: update to 2020.57058. --- srcpkgs/texlive-publishers/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template index f1cea965157..892d6e20246 100644 --- a/srcpkgs/texlive-publishers/template +++ b/srcpkgs/texlive-publishers/template @@ -1,11 +1,11 @@ # Template file for 'texlive-publishers' pkgname=texlive-publishers -version=2020.55415 -revision=2 +version=2020.57058 +revision=1 build_style="texmf" short_desc="TeX Live - Classes and packages for certain publishers" maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=4d36cad1e18e5ad9b9866bba17c9288454f6d7b17a3ac144160ec4a5bce79176 +checksum=13a312f58913e168e68b6dc57ef93b099485537c99e5f6f588f5c98764abf069 From 08d38a054f7fc52554c8fffb5b447c779bacbff3 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:31:09 +1100 Subject: [PATCH 19/24] texlive-science: update to 2020.57068. --- srcpkgs/texlive-science/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template index 9a179ccfbe1..c405043a463 100644 --- a/srcpkgs/texlive-science/template +++ b/srcpkgs/texlive-science/template @@ -1,7 +1,7 @@ # Template file for 'texlive-science' pkgname=texlive-science -version=2020.55390 -revision=2 +version=2020.57068 +revision=1 build_style="texmf" depends="texlive-core" short_desc="TeX Live - Typesetting for mathematatics and science disciplines" @@ -9,4 +9,4 @@ maintainer="fosslinux " license="GPL-2.0-or-later" homepage="http://tug.org/texlive/" distfiles="https://sources.archlinux.org/other/texlive/${pkgname}-${version}-src.zip" -checksum=c42294cd26e5a65585b27520e5a877539f88ba1583d5e1101c828a934225eea4 +checksum=ae3925dce04e315ee53cef15799c03a743bdf048313cf328a50b143ff9ace888 From d6692efba275e973f7ebc6403ee911ab94d8d029 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:32:42 +1100 Subject: [PATCH 20/24] texlive-minimal: update to 2020.1. --- srcpkgs/texlive-minimal/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template index 1b40bb3ea71..cd6fed4d1f4 100644 --- a/srcpkgs/texlive-minimal/template +++ b/srcpkgs/texlive-minimal/template @@ -1,10 +1,10 @@ # Template file for 'texlive-minimal' pkgname=texlive-minimal -version=2020 -revision=2 +version=2020.1 +revision=1 build_style=meta depends="texlive>=20200406 - texlive-core>=2020.55416" + texlive-core>=2020.57066" short_desc="TeX Live - Metapackage including minimal packages" maintainer="fosslinux " license="GPL-2.0-or-later" From 33728b18d2ff342db642bd51caa69b2a5f14933c Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:33:02 +1100 Subject: [PATCH 21/24] texlive-basic: update to 2020.1. --- srcpkgs/texlive-basic/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template index 8058751dc87..68af65f2c70 100644 --- a/srcpkgs/texlive-basic/template +++ b/srcpkgs/texlive-basic/template @@ -1,15 +1,15 @@ # Template file for 'texlive-basic' pkgname=texlive-basic -version=2020 -revision=2 +version=2020.1 +revision=1 build_style=meta depends="texlive>=20200406 texlive-BibTeX>=20200406 texlive-LuaTeX>=20200406 texlive-dvi>=20200406 - texlive-core>=2020.55416 - texlive-latexextra>=2020.55418 - texlive-pictures>=2020.55342" + texlive-core>=2020.57066 + texlive-latexextra>=2020.57067 + texlive-pictures>=2020.57065" short_desc="TeX Live - Metapackage including some simple packages" maintainer="fosslinux " license="GPL-2.0-or-later" From 56fbf37247222a31bc9a7d9cd387cc667d7803e9 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:33:16 +1100 Subject: [PATCH 22/24] texlive-most: update to 2020.1. --- srcpkgs/texlive-most/template | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template index 8e61be6ff87..68683f7d1c0 100644 --- a/srcpkgs/texlive-most/template +++ b/srcpkgs/texlive-most/template @@ -1,7 +1,7 @@ # Template file for 'texlive-most' pkgname=texlive-most -version=2020 -revision=2 +version=2020.1 +revision=1 build_style=meta depends="texlive>=20200406 texlive-BibTeX>=20200406 @@ -11,18 +11,18 @@ depends="texlive>=20200406 texlive-Xdvi>=20200406 texlive-XeTeX>=20200406 texlive-dvi>=20200406 - texlive-core>=2020.55416 - texlive-bibtexextra>=2020.55376 - texlive-fontsextra>=2020.55407 - texlive-formatsextra>=2020.54498 - texlive-games>=2020.55271 - texlive-humanities>=2020.55389 - texlive-latexextra>=2020.55418 - texlive-music>=2020.54758 - texlive-pictures>=2020.55342 - texlive-pstricks>=2020.55289 - texlive-publishers>=2020.55415 - texlive-science>=2020.55390" + texlive-core>=2020.57066 + texlive-bibtexextra>=2020.56991 + texlive-fontsextra>=2020.57042 + texlive-formatsextra>=2020.56699 + texlive-games>=2020.56833 + texlive-humanities>=2020.57034 + texlive-latexextra>=2020.57067 + texlive-music>=2020.56473 + texlive-pictures>=2020.57065 + texlive-pstricks>=2020.56758 + texlive-publishers>=2020.57058 + texlive-science>=2020.57068" short_desc="TeX Live - Metapackage including most packages" maintainer="fosslinux " license="GPL-2.0-or-later" From 7d051b367cb57878748b31653d2f1c5b1cd4f49d Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:33:29 +1100 Subject: [PATCH 23/24] texlive-lang: update to 2020.1. --- srcpkgs/texlive-lang/template | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template index b6eb6ec78e1..7473c58c229 100644 --- a/srcpkgs/texlive-lang/template +++ b/srcpkgs/texlive-lang/template @@ -1,15 +1,15 @@ # Template file for 'texlive-lang' pkgname=texlive-lang -version=2020 -revision=2 +version=2020.1 +revision=1 build_style=meta -depends="texlive-core>=2020.55416 - texlive-langchinese>=2020.55162 - texlive-langcyrillic>=2020.54594 - texlive-langextra>=2020.55417 - texlive-langgreek>=2020.54512 - texlive-langjapanese>=2020.55320 - texlive-langkorean>=2020.54519" +depends="texlive-core>=2020.57066 + texlive-langchinese>=2020.57044 + texlive-langcyrillic>=2020.56674 + texlive-langextra>=2020.56781 + texlive-langgreek>=2020.56956 + texlive-langjapanese>=2020.57025 + texlive-langkorean>=2020.56915" short_desc="TeX Live - Metapackage including all languages" maintainer="fosslinux " license="GPL-2.0-or-later" From c521f6f3a2888b4f4bbc37b90a007dcf9d0330bb Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 31 Dec 2020 11:33:39 +1100 Subject: [PATCH 24/24] texlive-full: update to 2020.1. --- srcpkgs/texlive-full/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template index e506e4935c7..dd578736f60 100644 --- a/srcpkgs/texlive-full/template +++ b/srcpkgs/texlive-full/template @@ -1,10 +1,10 @@ # Template file for 'texlive-full' pkgname=texlive-full -version=2020 -revision=2 +version=2020.1 +revision=1 build_style=meta -depends="texlive-most>=2020 - texlive-lang>=2020" +depends="texlive-most>=2020.1 + texlive-lang>=2020.1" short_desc="TeX Live - Metapackage including all packages" maintainer="fosslinux " license="GPL-2.0-or-later"