From 78584f0abde98ad2348fae381f366f7cfc12545e 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 | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/common/build-style/texmf.sh b/common/build-style/texmf.sh index 798d44e14d2..dbed1fd64bf 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,21 @@ 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 current_ver current_rev exitcode=0 cd build + while read p; do - if [[ ${p%-*} =~ .*-bin$ ]] || [ "${p%-*}" = "$pkgname" ]; then + # 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 + # Don't check against any version other than the version in the source tree + current_ver="$(grep -m 1 version= ${XBPS_SRCPKGDIR}/${p%-*}/template | cut -d= -f2)" + current_rev="$(grep -m 1 revision= ${XBPS_SRCPKGDIR}/${p%-*}/template | cut -d= -f2)" + if [ "${p%-*}-${current_ver}_${current_rev}" != "${p}" ]; then + # They are not the same version continue fi echo checking conflicts with ${p}... From 07774d8e1057dc2f032fe710e09acff121b06094 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 ecf3928bb0944d5a84d1eb83229a74a84cc515da 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 24360d4a4e97be78ce230fff5b5c15dcb0b67b33 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 0fd1790236260b11f1d9186398d30cdd4ee4d41b 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 7bb9abc9049504b68bff0104f2b291a2fd8b3e14 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 3f8b19e2ec0692c797b0d78f7e7ada114f4fcd20 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 20f26891b5b18f249f06a5adaeee12e66184be3d 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 8cc42377d96512540a12304f1ec3dba001d3db7b 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 1817f57f3ed4ab66b6bd64cf6ef27a091679cf74 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 2e1e819771e57b4e002f14699e3e336169acc76f 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 ecfb0b751264b9995ef58ead97fa8f729dff8fe5 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 71ee63f240aa69b0d9b8a10e7d681d014797d66d 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 f3d9b3798bc90e2258c75f7d23eb03e756a4f987 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 1f36ce274cd5dae478da6564b87551fb587f64da 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 24bf6925d68375c68c74a9d0d2f7da3127541ccc 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 9b0d4e25b8fc18066b332e921625f63100b4db25 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 734ac8e73683df4f28e3d2fd9aa8c3fbb7e2b35f 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 6e8dc428abffc48f07568469c5d82977fbacef7a 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 d47404e1bdd558460bc646577d72cf8365c8600c 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 47280d1127e93d06da5de54bef379f619389b83b 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 1c4ee2a0f0810d240d1b57bd961f27ebd7172e9c 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 c00d5ed66756abc8d45c858bf40f23eb8694a9d4 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 2adf49eda5501fc197ff27248e8cce03e11d51de 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"