From 8054ab42abc39a818bf1d939f8e49e322f4fe4cd Mon Sep 17 00:00:00 2001 From: Dmitry Zakharchenko Date: Sat, 16 Oct 2021 22:06:22 +0300 Subject: [PATCH 1/7] python3-babelfish: update to 0.6.0. --- srcpkgs/python3-babelfish/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-babelfish/template b/srcpkgs/python3-babelfish/template index 5a7b7aceb2b0..d49b7c7b23c2 100644 --- a/srcpkgs/python3-babelfish/template +++ b/srcpkgs/python3-babelfish/template @@ -1,7 +1,7 @@ # Template file for 'python3-babelfish' pkgname=python3-babelfish -version=0.5.5 -revision=5 +version=0.6.0 +revision=1 wrksrc="babelfish-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -10,7 +10,7 @@ maintainer="Daniel Santana " license="BSD-3-Clause" homepage="https://github.com/Diaoul/babelfish" distfiles="${PYPI_SITE}/b/babelfish/babelfish-${version}.tar.gz" -checksum=8380879fa51164ac54a3e393f83c4551a275f03617f54a99d70151358e444104 +checksum=2dadfadd1b205ca5fa5dc9fa637f5b7933160a0418684c7c46a7a664033208a2 post_install() { vlicense LICENSE From b6dbd47e7c778dbf8fafa48bf07f7537bb2f6388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Sat, 16 Oct 2021 12:33:57 -0300 Subject: [PATCH 2/7] flintlib: update to 2.8.2. --- srcpkgs/flintlib/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/flintlib/template b/srcpkgs/flintlib/template index 831602166916..d255014d7e89 100644 --- a/srcpkgs/flintlib/template +++ b/srcpkgs/flintlib/template @@ -1,6 +1,6 @@ # Template file for 'flintlib' pkgname=flintlib -version=2.8.1 +version=2.8.2 revision=1 wrksrc="flint-${version}" build_style=configure @@ -11,7 +11,7 @@ maintainer="Gonzalo TornarĂ­a " license="LGPL-2.1-or-later" homepage="https://flintlib.org" distfiles="https://flintlib.org/flint-${version}.tar.gz" -checksum=edfdda7a7cb847db4e55e050349259cbc9778589686007fb45602d36ecfb427e +checksum=4e878577dc1e17b27887272ff1dff1721189b078d36682c5ceb71b34cd1b3484 build_options="ntl" desc_option_ntl="enable NTL support" From 93054c170947e910de455bf2199ee00ada96f50d Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 16 Oct 2021 12:37:50 +0200 Subject: [PATCH 3/7] fzf: update to 0.27.3. --- srcpkgs/fzf/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fzf/template b/srcpkgs/fzf/template index 5bacbb59790d..8c312d3399a2 100644 --- a/srcpkgs/fzf/template +++ b/srcpkgs/fzf/template @@ -1,6 +1,6 @@ # Template file for 'fzf' pkgname=fzf -version=0.27.2 +version=0.27.3 revision=1 build_style=go go_import_path="github.com/junegunn/fzf" @@ -12,7 +12,7 @@ license="MIT" homepage="https://github.com/junegunn/fzf" changelog="https://raw.githubusercontent.com/junegunn/fzf/master/CHANGELOG.md" distfiles="https://github.com/junegunn/fzf/archive/${version}.tar.gz" -checksum=7798a9e22fc363801131456dc21026ccb0f037aed026d17df60b1178b3f24111 +checksum=a0ad8dc6dd5c7a0c87ad623c0d9164cc2861489b76cb7a8b66f51cb4f9a81254 post_install() { cd ${wrksrc} From d245af96486188fb9bfd8a40d19913461b8f1c25 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 16 Oct 2021 21:54:22 +0200 Subject: [PATCH 4/7] New package: gnushogi-1.4.2 --- srcpkgs/gnushogi/patches/gcc-10-globals.patch | 86 +++++++++++++++++++ srcpkgs/gnushogi/template | 20 +++++ 2 files changed, 106 insertions(+) create mode 100644 srcpkgs/gnushogi/patches/gcc-10-globals.patch create mode 100644 srcpkgs/gnushogi/template diff --git a/srcpkgs/gnushogi/patches/gcc-10-globals.patch b/srcpkgs/gnushogi/patches/gcc-10-globals.patch new file mode 100644 index 000000000000..f173bfcc6067 --- /dev/null +++ b/srcpkgs/gnushogi/patches/gcc-10-globals.patch @@ -0,0 +1,86 @@ +Patch from https://salsa.debian.org/debian/gnushogi/-/commit/ae9ff5c5d4a047e895030add12cc0e75480026b5 + +Index: gnushogi-1.4.2/gnushogi/commondsp.c +=================================================================== +--- gnushogi-1.4.2.orig/gnushogi/commondsp.c ++++ gnushogi-1.4.2/gnushogi/commondsp.c +@@ -53,6 +53,7 @@ char mvstr[4][6]; + char *InPtr; + int InBackground = false; + ++unsigned short MV[MAXDEPTH]; + + #if defined(BOOKTEST) + +@@ -2034,7 +2035,7 @@ InputCommand(char *command) + { + int i; + +- printf(" %6d ", MSCORE); ++ printf(" %6d ", 0); + + for (i = 1; MV[i] > 0; i++) + { +Index: gnushogi-1.4.2/gnushogi/cursesdsp.c +=================================================================== +--- gnushogi-1.4.2.orig/gnushogi/cursesdsp.c ++++ gnushogi-1.4.2/gnushogi/cursesdsp.c +@@ -62,18 +62,12 @@ + + #define FLUSH_SCANW fflush(stdout), scanw + +-int mycnt1, mycnt2; +- + #define MARGIN (5) + #define TAB (58) + + #define VIR_C(s) ((flag.reverse) ? (NO_COLS - 1 - column(s)) : column(s)) + #define VIR_R(s) ((flag.reverse) ? (NO_ROWS - 1 - row(s)) : row(s)) + +-unsigned short MV[MAXDEPTH]; +-int MSCORE; +-char *DRAW; +- + /* Forward declarations. */ + /* FIXME: change this name, puh-leeze! */ + +Index: gnushogi-1.4.2/gnushogi/globals.c +=================================================================== +--- gnushogi-1.4.2.orig/gnushogi/globals.c ++++ gnushogi-1.4.2/gnushogi/globals.c +@@ -201,3 +201,6 @@ char *DRAW; + char *DRAW_REPETITION = "Repetition"; + char *DRAW_MAXMOVES = "Max Moves"; + char *DRAW_JUSTDRAW = "Drawn game!"; ++ ++int mycnt1, mycnt2; ++ +Index: gnushogi-1.4.2/gnushogi/gnushogi.h +=================================================================== +--- gnushogi-1.4.2.orig/gnushogi/gnushogi.h ++++ gnushogi-1.4.2/gnushogi/gnushogi.h +@@ -685,8 +685,6 @@ extern long znodes; + extern char ColorStr[2][10]; + + extern char mvstr[4][6]; +-extern unsigned short MV[MAXDEPTH]; +-extern int MSCORE; + extern int mycnt1, mycnt2; + extern short ahead; + extern struct leaf rootnode; +Index: gnushogi-1.4.2/gnushogi/rawdsp.c +=================================================================== +--- gnushogi-1.4.2.orig/gnushogi/rawdsp.c ++++ gnushogi-1.4.2/gnushogi/rawdsp.c +@@ -44,11 +44,6 @@ + #include "gnushogi.h" + #include "rawdsp.h" + +-unsigned short MV[MAXDEPTH]; +-int MSCORE; +- +-int mycnt1, mycnt2; +-char *DRAW; + extern char *InPtr; + extern short pscore[]; + diff --git a/srcpkgs/gnushogi/template b/srcpkgs/gnushogi/template new file mode 100644 index 000000000000..c3f29d9c407d --- /dev/null +++ b/srcpkgs/gnushogi/template @@ -0,0 +1,20 @@ +# Template file for 'gnushogi' +pkgname=gnushogi +version=1.4.2 +revision=1 +build_style=gnu-configure +short_desc="GNU Shogi (Japanese chess)" +maintainer="Leah Neukirchen " +license="GPL-3.0-or-later" +homepage="https://www.gnu.org/software/gnushogi/" +distfiles="${GNU_SITE}/gnushogi/${pkgname}-${version}.tar.gz" +checksum=1ecc48a866303c63652552b325d685e7ef5e9893244080291a61d96505d52b29 +disable_parallel_build=yes +nocross=yes + +do_install() { + make -C gnushogi prefix=${DESTDIR}/usr install + vmkdir usr/share + mv ${DESTDIR}/usr/man ${DESTDIR}/usr/share/man + mv ${DESTDIR}/usr/info ${DESTDIR}/usr/share/info +} From 1fdd240d86077108f4cebc212b9ce24baf6adc33 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 16 Oct 2021 21:54:25 +0200 Subject: [PATCH 5/7] New package: xshogi-1.4.2 --- srcpkgs/xshogi/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/xshogi/template diff --git a/srcpkgs/xshogi/template b/srcpkgs/xshogi/template new file mode 100644 index 000000000000..710a2f974f51 --- /dev/null +++ b/srcpkgs/xshogi/template @@ -0,0 +1,18 @@ +# Template file for 'xshogi' +pkgname=xshogi +version=1.4.2 +revision=1 +build_style=gnu-configure +makedepends="libXaw-devel" +depends="gnushogi" +short_desc="X11 user interface for GNU Shogi (Japanese chess)" +maintainer="Leah Neukirchen " +license="GPL-3.0-or-later, MIT" +homepage="https://www.gnu.org/software/gnushogi/" +distfiles="${GNU_SITE}/gnushogi/${pkgname}-${version}.tar.gz" +checksum=2e2f1145e3317143615a764411178f538bd54945646b14fc2264aaeaa105dab6 + +post_install() { + rm -r ${DESTDIR}/usr/share/doc + vlicense README.xboard +} From 4656642854d0e996e0c7795dcb104514ac83ed85 Mon Sep 17 00:00:00 2001 From: newbluemoon Date: Wed, 13 Oct 2021 07:12:01 +0200 Subject: [PATCH 6/7] lilypond: update to 2.23.4 --- srcpkgs/lilypond/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/lilypond/template b/srcpkgs/lilypond/template index 80a20a244970..b600f727146a 100644 --- a/srcpkgs/lilypond/template +++ b/srcpkgs/lilypond/template @@ -1,6 +1,6 @@ # Template file for 'lilypond' pkgname=lilypond -version=2.23.3 +version=2.23.4 revision=1 build_wrksrc="build" build_style="gnu-configure" @@ -17,7 +17,7 @@ maintainer="newbluemoon " license="GPL-3.0-or-later, GFDL-1.3-or-later" homepage="https://lilypond.org/" distfiles="https://lilypond.org/downloads/sources/v2.23/lilypond-${version}.tar.gz" -checksum=8a833696f7c6d2d4b4ae162ffd0836216c63c3765ea14069d6632d320d6bc308 +checksum=e300cfd7b94d81f1fb782ffee2aca8249002ece2f4868004274cebde32764b1e python_version=3 if [ -n "${CROSS_BUILD}" ]; then From 2eb035cc8129d27004007dbc4971d5a70d588c41 Mon Sep 17 00:00:00 2001 From: newbluemoon Date: Wed, 13 Oct 2021 07:12:40 +0200 Subject: [PATCH 7/7] lilypond-doc: udpate to 2.23.4 --- srcpkgs/lilypond-doc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template index b9fcfd6b818a..a4d97e19b579 100644 --- a/srcpkgs/lilypond-doc/template +++ b/srcpkgs/lilypond-doc/template @@ -1,6 +1,6 @@ # Template file for 'lilypond-doc' pkgname=lilypond-doc -version=2.23.3 +version=2.23.4 revision=1 create_wrksrc=yes short_desc="Documentation for the lilypond music engraving program" @@ -8,7 +8,7 @@ maintainer="newbluemoon " license="GPL-3.0-or-later, GFDL-1.3-or-later" homepage="https://lilypond.org/" distfiles="https://lilypond.org/downloads/binaries/documentation/lilypond-${version}-1.documentation.tar.bz2" -checksum=51b8f3c4a541f64c7a06b07fb25e987517198d77396652edc022fd787b4baf1c +checksum=b53eed66e8797e45743e3cf507d8395e597f1b4549e8cf2de1804edbbb456a04 do_install() { vmkdir usr