From 57f9732197314cef70bdad38ea32fba67781b84b Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 01:00:17 +0300 Subject: [PATCH 01/22] guile-2.0.14 --- system/devel/guile/actions.py | 2 +- system/devel/guile/pspec.xml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/system/devel/guile/actions.py b/system/devel/guile/actions.py index 7f6e1e33..82a6470f 100644 --- a/system/devel/guile/actions.py +++ b/system/devel/guile/actions.py @@ -38,6 +38,6 @@ def install(): pisitools.dodir("/etc/env.d") shelltools.echo("%s/etc/env.d/50guile" % get.installDIR(), 'GUILE_LOAD_PATH="/usr/share/guile/%s"' % major) - pisitools.domove("/usr/lib/libguile-2.2.so.1.3.1-gdb.scm", "/usr/share/gdb/auto-load") + pisitools.domove("/usr/lib/libguile-2.0.so.22.*.scm", "/usr/share/gdb/auto-load") pisitools.dodoc("AUTHORS", "ChangeLog", "HACKING", "NEWS", "README", "THANKS") diff --git a/system/devel/guile/pspec.xml b/system/devel/guile/pspec.xml index 71ecf470..3ea12da5 100644 --- a/system/devel/guile/pspec.xml +++ b/system/devel/guile/pspec.xml @@ -14,12 +14,12 @@ library GNU Scheme interpreter and library GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. - mirrors://gnu/guile/guile-2.2.4.tar.xz + mirrors://gnu/guile/guile-2.0.14.tar.xz - gc-devel + gc-devel gettext-devel gmp-devel - libunistring-devel + libunistring-devel libffi-devel readline-devel @@ -30,11 +30,11 @@ guile - gc + gc gmp libffi libtool-ltdl - libunistring + libunistring readline @@ -47,7 +47,7 @@ /usr/share/guile /usr/share/emacs /usr/share/gdb/auto-load - /usr/lib/guile/2.2 + /usr/lib/guile/2.0 @@ -71,8 +71,8 @@ 2018-07-15 - 2.2.4 - Version bump. + 2.0.14 + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From 20e0753aa5d51a4e004503137a793508746c535e Mon Sep 17 00:00:00 2001 From: suvari Date: Wed, 18 Jul 2018 02:19:35 +0300 Subject: [PATCH 02/22] make: patched --- system/devel/make/actions.py | 1 + system/devel/make/files/guile-2.2.patch | 15 +++++++++++++++ system/devel/make/pspec.xml | 8 +++++--- 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 system/devel/make/files/guile-2.2.patch diff --git a/system/devel/make/actions.py b/system/devel/make/actions.py index 1d8d5caf..5b471c70 100644 --- a/system/devel/make/actions.py +++ b/system/devel/make/actions.py @@ -10,6 +10,7 @@ from pisi.actionsapi import get from pisi.actionsapi import pisitools def setup(): + autotools.autoreconf("-fi") autotools.configure("--enable-nls \ --program-prefix=g") diff --git a/system/devel/make/files/guile-2.2.patch b/system/devel/make/files/guile-2.2.patch new file mode 100644 index 00000000..8e4cbc0f --- /dev/null +++ b/system/devel/make/files/guile-2.2.patch @@ -0,0 +1,15 @@ +diff --git a/configure.ac b/configure.ac +index 64ec870..eb1139f 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -168,8 +168,8 @@ AC_ARG_WITH([guile], [AS_HELP_STRING([--with-guile], + # comes with it's own PC file so we have to specify them as individual + # packages. Ugh. + AS_IF([test "x$with_guile" != xno], +-[ PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes], +- [PKG_CHECK_MODULES([GUILE], [guile-1.8], [have_guile=yes], ++[ PKG_CHECK_MODULES([GUILE], [guile-2.2], [have_guile=yes], ++ [PKG_CHECK_MODULES([GUILE], [guile-2.0], [have_guile=yes], + [have_guile=no])]) + ]) + diff --git a/system/devel/make/pspec.xml b/system/devel/make/pspec.xml index b3c4d3c1..44fee04c 100644 --- a/system/devel/make/pspec.xml +++ b/system/devel/make/pspec.xml @@ -14,14 +14,16 @@ Standard tool to compile source trees. Make gets its knowledge of how to build your program from a file called the makefile. When you write a program, you should write a makefile for it, so that it is possible to use Make to build and install the program mirrors://gnu/make/make-4.2.1.tar.bz2 + texinfo gettext gnuconfig patch gc-devel - + guile-devel glibc_2_27.patch + guile-2.2.patch @@ -42,7 +44,7 @@ - 2018-07-15 + 2018-07-18 4.2.1 Rebuild Ertuğrul Erata @@ -70,4 +72,4 @@ ertugrulerata@gmail.com - + \ No newline at end of file From a96a4a91cbd4086c4ef74d4c31267d79e2ef4431 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 02:47:32 +0300 Subject: [PATCH 03/22] guile --- system/devel/guile/actions.py | 2 +- system/devel/guile/pspec.xml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/system/devel/guile/actions.py b/system/devel/guile/actions.py index 82a6470f..7f6e1e33 100644 --- a/system/devel/guile/actions.py +++ b/system/devel/guile/actions.py @@ -38,6 +38,6 @@ def install(): pisitools.dodir("/etc/env.d") shelltools.echo("%s/etc/env.d/50guile" % get.installDIR(), 'GUILE_LOAD_PATH="/usr/share/guile/%s"' % major) - pisitools.domove("/usr/lib/libguile-2.0.so.22.*.scm", "/usr/share/gdb/auto-load") + pisitools.domove("/usr/lib/libguile-2.2.so.1.3.1-gdb.scm", "/usr/share/gdb/auto-load") pisitools.dodoc("AUTHORS", "ChangeLog", "HACKING", "NEWS", "README", "THANKS") diff --git a/system/devel/guile/pspec.xml b/system/devel/guile/pspec.xml index 3ea12da5..71ecf470 100644 --- a/system/devel/guile/pspec.xml +++ b/system/devel/guile/pspec.xml @@ -14,12 +14,12 @@ library GNU Scheme interpreter and library GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. - mirrors://gnu/guile/guile-2.0.14.tar.xz + mirrors://gnu/guile/guile-2.2.4.tar.xz - gc-devel + gc-devel gettext-devel gmp-devel - libunistring-devel + libunistring-devel libffi-devel readline-devel @@ -30,11 +30,11 @@ guile - gc + gc gmp libffi libtool-ltdl - libunistring + libunistring readline @@ -47,7 +47,7 @@ /usr/share/guile /usr/share/emacs /usr/share/gdb/auto-load - /usr/lib/guile/2.0 + /usr/lib/guile/2.2 @@ -71,8 +71,8 @@ 2018-07-15 - 2.0.14 - Rebuild. + 2.2.4 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com From c1364f0c43f807477de43d475d565c1d171022e9 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 11:09:14 +0300 Subject: [PATCH 04/22] guile-2.0.14 --- system/devel/guile/actions.py | 2 +- system/devel/guile/pspec.xml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/system/devel/guile/actions.py b/system/devel/guile/actions.py index 7f6e1e33..82a6470f 100644 --- a/system/devel/guile/actions.py +++ b/system/devel/guile/actions.py @@ -38,6 +38,6 @@ def install(): pisitools.dodir("/etc/env.d") shelltools.echo("%s/etc/env.d/50guile" % get.installDIR(), 'GUILE_LOAD_PATH="/usr/share/guile/%s"' % major) - pisitools.domove("/usr/lib/libguile-2.2.so.1.3.1-gdb.scm", "/usr/share/gdb/auto-load") + pisitools.domove("/usr/lib/libguile-2.0.so.22.*.scm", "/usr/share/gdb/auto-load") pisitools.dodoc("AUTHORS", "ChangeLog", "HACKING", "NEWS", "README", "THANKS") diff --git a/system/devel/guile/pspec.xml b/system/devel/guile/pspec.xml index 71ecf470..3ea12da5 100644 --- a/system/devel/guile/pspec.xml +++ b/system/devel/guile/pspec.xml @@ -14,12 +14,12 @@ library GNU Scheme interpreter and library GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. - mirrors://gnu/guile/guile-2.2.4.tar.xz + mirrors://gnu/guile/guile-2.0.14.tar.xz - gc-devel + gc-devel gettext-devel gmp-devel - libunistring-devel + libunistring-devel libffi-devel readline-devel @@ -30,11 +30,11 @@ guile - gc + gc gmp libffi libtool-ltdl - libunistring + libunistring readline @@ -47,7 +47,7 @@ /usr/share/guile /usr/share/emacs /usr/share/gdb/auto-load - /usr/lib/guile/2.2 + /usr/lib/guile/2.0 @@ -71,8 +71,8 @@ 2018-07-15 - 2.2.4 - Version bump. + 2.0.14 + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From 048c3dd7d4bd94d9b1e07951d9f8f1a18ca4e024 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 13:25:42 +0300 Subject: [PATCH 05/22] libtool --- system/devel/libtool/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/libtool/pspec.xml b/system/devel/libtool/pspec.xml index bb937e50..af2b4b37 100644 --- a/system/devel/libtool/pspec.xml +++ b/system/devel/libtool/pspec.xml @@ -64,7 +64,7 @@ 2018-07-15 2.4.6 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From 7ebf784b27ef442030dd7c4cb7a47b0957d898a8 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 13:26:18 +0300 Subject: [PATCH 06/22] klibc --- system/devel/klibc/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/klibc/pspec.xml b/system/devel/klibc/pspec.xml index ee804b65..33784dc6 100644 --- a/system/devel/klibc/pspec.xml +++ b/system/devel/klibc/pspec.xml @@ -42,7 +42,7 @@ 2018-07-15 2.0.4 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From 66ee19231ac2d92147818912ab437b59eaa21a97 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 13:27:31 +0300 Subject: [PATCH 07/22] libgcrypt --- system/base/libgcrypt/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/libgcrypt/pspec.xml b/system/base/libgcrypt/pspec.xml index 284ccd20..fd558f06 100644 --- a/system/base/libgcrypt/pspec.xml +++ b/system/base/libgcrypt/pspec.xml @@ -73,7 +73,7 @@ 2018-07-15 1.7.6 - Rebuild. + Rebuild Ertuğrul Erata ertugrulerata@gmail.com From 8a452c41da30e3ce75ea416acb71a3200cdf7881 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 13:28:34 +0300 Subject: [PATCH 08/22] m4 --- system/devel/m4/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/m4/pspec.xml b/system/devel/m4/pspec.xml index f5248645..5cefa558 100644 --- a/system/devel/m4/pspec.xml +++ b/system/devel/m4/pspec.xml @@ -36,7 +36,7 @@ 2018-07-15 1.4.18 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From d5c56720feb54f29460b601f91c814163582bd86 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 15:00:29 +0300 Subject: [PATCH 09/22] autogen --- system/devel/autogen/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/autogen/pspec.xml b/system/devel/autogen/pspec.xml index 68b8ef20..c3a47297 100644 --- a/system/devel/autogen/pspec.xml +++ b/system/devel/autogen/pspec.xml @@ -58,7 +58,7 @@ 2018-07-15 5.18.10 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com From dcddb6f1d33f129c12079aaa97c94c552d15567f Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 22:49:59 +0300 Subject: [PATCH 10/22] make --- system/devel/make/pspec.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/devel/make/pspec.xml b/system/devel/make/pspec.xml index 44fee04c..1700b43e 100644 --- a/system/devel/make/pspec.xml +++ b/system/devel/make/pspec.xml @@ -23,7 +23,7 @@ glibc_2_27.patch - guile-2.2.patch + @@ -72,4 +72,4 @@ ertugrulerata@gmail.com - \ No newline at end of file + From 9413267978f9bc2f3fbd18b9d9cfa3cd7f7f7115 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 18 Jul 2018 23:40:01 +0300 Subject: [PATCH 11/22] guile:rebuild --- system/devel/guile/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/guile/pspec.xml b/system/devel/guile/pspec.xml index 3ea12da5..fe925c29 100644 --- a/system/devel/guile/pspec.xml +++ b/system/devel/guile/pspec.xml @@ -70,7 +70,7 @@ - 2018-07-15 + 2018-07-18 2.0.14 Rebuild. Ertuğrul Erata From 4dd5be6315ac2ac016a34a52af243d8f7ce35172 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 02:58:34 +0300 Subject: [PATCH 12/22] readline --- system/base/readline/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/readline/pspec.xml b/system/base/readline/pspec.xml index 6c131f14..5fd57eaa 100644 --- a/system/base/readline/pspec.xml +++ b/system/base/readline/pspec.xml @@ -69,7 +69,7 @@ - 2018-07-15 + 2018-07-18 7.0 Rebuild Ertuğrul Erata From eea1a3bf4f52f2855aa4caaa02ecdaa9142ab136 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 19:00:11 +0300 Subject: [PATCH 13/22] perl-XML-Parser --- system/devel/perl-XML-Parser/actions.py | 2 +- system/devel/perl-XML-Parser/pspec.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/devel/perl-XML-Parser/actions.py b/system/devel/perl-XML-Parser/actions.py index b22ca884..93db8007 100644 --- a/system/devel/perl-XML-Parser/actions.py +++ b/system/devel/perl-XML-Parser/actions.py @@ -9,7 +9,7 @@ from pisi.actionsapi import pisitools from pisi.actionsapi import get def setup(): - perlmodules.configure("perl Makefile.PL EXPATLIBPATH=/usr/lib EXPATINCPATH=/usr/include") + perlmodules.configure() def build(): perlmodules.make() diff --git a/system/devel/perl-XML-Parser/pspec.xml b/system/devel/perl-XML-Parser/pspec.xml index 34d32f2a..11a76717 100644 --- a/system/devel/perl-XML-Parser/pspec.xml +++ b/system/devel/perl-XML-Parser/pspec.xml @@ -34,7 +34,7 @@ - 2018-07-15 + 2018-07-19 2.44 Rebuild Ertuğrul Erata From 6f77189809fc5850477356dcb58fc18f295ffa56 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 19:04:50 +0300 Subject: [PATCH 14/22] intltool --- system/devel/intltool/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/devel/intltool/pspec.xml b/system/devel/intltool/pspec.xml index 31607b3d..ff63d45f 100644 --- a/system/devel/intltool/pspec.xml +++ b/system/devel/intltool/pspec.xml @@ -35,7 +35,7 @@ - 2018-07-15 + 2018-07-19 0.51.0 Rebuild Ertuğrul Erata From b71d980b52d264a50365542a3905fcd88369d8c0 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 19:08:29 +0300 Subject: [PATCH 15/22] pisi --- system/base/pisi/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/pisi/pspec.xml b/system/base/pisi/pspec.xml index e9f46b6a..c0e3ef25 100644 --- a/system/base/pisi/pspec.xml +++ b/system/base/pisi/pspec.xml @@ -88,7 +88,7 @@ - 2018-07-15 + 2018-07-19 2.6 Rebuild Ertuğrul Erata From 799c34bb3b4acd8e90fb39e608883ee9c472ec31 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 19:14:07 +0300 Subject: [PATCH 16/22] gdbm --- system/base/gdbm/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/gdbm/pspec.xml b/system/base/gdbm/pspec.xml index 016e61dd..f74682cd 100644 --- a/system/base/gdbm/pspec.xml +++ b/system/base/gdbm/pspec.xml @@ -51,7 +51,7 @@ - 2018-07-15 + 2018-07-19 1.14.1 Rebuild Ertuğrul Erata From 8615e750a9da85a447cfd630aadab7dc855275a8 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 19:56:23 +0300 Subject: [PATCH 17/22] texinfo:rebuild --- system/base/texinfo/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/texinfo/pspec.xml b/system/base/texinfo/pspec.xml index 668916b9..c1c82c20 100644 --- a/system/base/texinfo/pspec.xml +++ b/system/base/texinfo/pspec.xml @@ -46,7 +46,7 @@ - 2018-07-15 + 2018-07-19 6.5 Rebuild Ertuğrul Erata From 3ba8cfa37d4533057c47770d4f1f44a401c1c2b5 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 20:04:49 +0300 Subject: [PATCH 18/22] liblogging:rebuild --- system/base/liblogging/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/liblogging/pspec.xml b/system/base/liblogging/pspec.xml index 1c719b4c..79e3ecea 100644 --- a/system/base/liblogging/pspec.xml +++ b/system/base/liblogging/pspec.xml @@ -40,7 +40,7 @@ - 2018-07-15 + 2018-07-19 1.0.5 Rebuild Ertuğrul Erata From d3ca0bae1bf660c084a9adad4aa81efc1a04c27f Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 20:06:13 +0300 Subject: [PATCH 19/22] bc:rebuild --- system/base/bc/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/bc/pspec.xml b/system/base/bc/pspec.xml index 5a1f07f5..44c51338 100644 --- a/system/base/bc/pspec.xml +++ b/system/base/bc/pspec.xml @@ -43,7 +43,7 @@ - 2018-07-15 + 2018-07-19 1.07.1 Rebuild Ertuğrul Erata From 18400c207b9193654a2a720a4a22466d2c6a18e1 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 20:10:02 +0300 Subject: [PATCH 20/22] rebuild --- system/base/libfastjson/pspec.xml | 2 +- system/base/libgpg-error/pspec.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/base/libfastjson/pspec.xml b/system/base/libfastjson/pspec.xml index 9ca39d95..42ec9122 100644 --- a/system/base/libfastjson/pspec.xml +++ b/system/base/libfastjson/pspec.xml @@ -38,7 +38,7 @@ - 2018-07-15 + 2018-07-19 0.99.4 Rebuild Ertuğrul Erata diff --git a/system/base/libgpg-error/pspec.xml b/system/base/libgpg-error/pspec.xml index aafb6601..c75582fa 100644 --- a/system/base/libgpg-error/pspec.xml +++ b/system/base/libgpg-error/pspec.xml @@ -62,7 +62,7 @@ - 2018-07-15 + 2018-07-19 1.26 Rebuild. Ertuğrul Erata From 2d45aa85a7e95412e1d642ae109094131af5fd57 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 20:12:31 +0300 Subject: [PATCH 21/22] libee:rebuild --- system/base/libee/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/base/libee/pspec.xml b/system/base/libee/pspec.xml index dfa892ff..b52edbde 100644 --- a/system/base/libee/pspec.xml +++ b/system/base/libee/pspec.xml @@ -45,7 +45,7 @@ - 2018-07-15 + 2018-07-19 0.4.1 Rebuild Ertuğrul Erata From 8b4b52af82cddf37e3457e668ed033985bacb446 Mon Sep 17 00:00:00 2001 From: Rmys Date: Thu, 19 Jul 2018 20:15:08 +0300 Subject: [PATCH 22/22] mdadm:rebuild --- hardware/disk/mdadm/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/disk/mdadm/pspec.xml b/hardware/disk/mdadm/pspec.xml index 7a15a4aa..a8663071 100644 --- a/hardware/disk/mdadm/pspec.xml +++ b/hardware/disk/mdadm/pspec.xml @@ -55,7 +55,7 @@ - 2018-07-15 + 2018-07-19 3.4 Rebuild Ertuğrul Erata