summaryrefslogtreecommitdiff
path: root/package/coreutils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-07-06 21:02:54 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-07-06 21:09:25 +0200
commit61a8a2194521815977063c35f1c6ac340c3f9ef8 (patch)
treeea984cd22dd5e1acfe90313e2c284af5c650d0c7 /package/coreutils
parent203452e81ef83217d1c24b9bc46ff294c2da8c1e (diff)
update coreutils to latest stable version
Diffstat (limited to 'package/coreutils')
-rw-r--r--package/coreutils/Makefile6
-rw-r--r--package/coreutils/patches/patch-Makefile_am6
-rw-r--r--package/coreutils/patches/patch-configure_ac8
-rw-r--r--package/coreutils/patches/patch-m4_spawn_h_m418
4 files changed, 10 insertions, 28 deletions
diff --git a/package/coreutils/Makefile b/package/coreutils/Makefile
index 05c14b7b8..293ed151e 100644
--- a/package/coreutils/Makefile
+++ b/package/coreutils/Makefile
@@ -4,9 +4,9 @@
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= coreutils
-PKG_VERSION:= 8.22
-PKG_RELEASE:= 3
-PKG_HASH:= 5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212
+PKG_VERSION:= 8.24
+PKG_RELEASE:= 1
+PKG_HASH:= a2d75286a4b9ef3a13039c2da3868a61be4ee9f17d8ae380a35a97e506972170
PKG_DESCR:= basic file, shell and text manipulation utilities
PKG_SECTION:= base/apps
PKG_BUILDDEP:= gmp
diff --git a/package/coreutils/patches/patch-Makefile_am b/package/coreutils/patches/patch-Makefile_am
index a55df18bd..20f1fff1d 100644
--- a/package/coreutils/patches/patch-Makefile_am
+++ b/package/coreutils/patches/patch-Makefile_am
@@ -1,5 +1,5 @@
---- coreutils-8.22.orig/Makefile.am 2013-12-04 15:48:30.000000000 +0100
-+++ coreutils-8.22/Makefile.am 2014-04-28 07:54:33.112599463 +0200
+--- coreutils-8.24.orig/Makefile.am 2015-07-03 22:07:38.000000000 +0200
++++ coreutils-8.24/Makefile.am 2015-07-06 20:55:18.000000000 +0200
@@ -17,7 +17,7 @@
ALL_RECURSIVE_TARGETS =
@@ -19,7 +19,7 @@
EXTRA_DIST = \
$(changelog_etc) \
-@@ -187,5 +186,4 @@ AM_CPPFLAGS = -Ilib -I$(top_srcdir)/lib
+@@ -223,5 +222,4 @@ AM_CPPFLAGS = -Ilib -I$(top_srcdir)/lib
include $(top_srcdir)/lib/local.mk
include $(top_srcdir)/src/local.mk
include $(top_srcdir)/doc/local.mk
diff --git a/package/coreutils/patches/patch-configure_ac b/package/coreutils/patches/patch-configure_ac
index 817ed600d..2ec02088f 100644
--- a/package/coreutils/patches/patch-configure_ac
+++ b/package/coreutils/patches/patch-configure_ac
@@ -1,13 +1,13 @@
---- coreutils-8.22.orig/configure.ac 2013-12-13 03:43:10.000000000 +0100
-+++ coreutils-8.22/configure.ac 2014-04-28 07:54:09.336549262 +0200
-@@ -490,11 +490,6 @@ AM_CONDITIONAL([CROSS_COMPILING], [test
+--- coreutils-8.24.orig/configure.ac 2015-06-26 19:05:22.000000000 +0200
++++ coreutils-8.24/configure.ac 2015-07-06 20:55:57.000000000 +0200
+@@ -589,11 +589,6 @@ AM_CONDITIONAL([CROSS_COMPILING], [test
############################################################################
-# As long as "grep 'PRI[diouxX]' po/*.pot" reports matches in
-# translatable strings, we must use need-formatstring-macros here.
-AM_GNU_GETTEXT([external], [need-formatstring-macros])
--AM_GNU_GETTEXT_VERSION([0.18.1])
+-AM_GNU_GETTEXT_VERSION([0.19.2])
-
# For a test of uniq: it uses the $LOCALE_FR envvar.
gt_LOCALE_FR
diff --git a/package/coreutils/patches/patch-m4_spawn_h_m4 b/package/coreutils/patches/patch-m4_spawn_h_m4
deleted file mode 100644
index 5273ee3d3..000000000
--- a/package/coreutils/patches/patch-m4_spawn_h_m4
+++ /dev/null
@@ -1,18 +0,0 @@
---- coreutils-8.22.orig/m4/spawn_h.m4 2013-12-04 15:53:33.000000000 +0100
-+++ coreutils-8.22/m4/spawn_h.m4 2014-02-21 15:19:26.000000000 +0100
-@@ -64,7 +64,14 @@ AC_DEFUN([gl_HAVE_POSIX_SPAWN],
- dnl once only, before all statements that occur in other macros.
- AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
-
-- AC_CHECK_FUNCS_ONCE([posix_spawn])
-+ LIB_POSIX_SPAWN=
-+ AC_SUBST([LIB_POSIX_SPAWN])
-+ gl_saved_libs=$LIBS
-+ AC_SEARCH_LIBS([posix_spawn], [rt],
-+ [test "$ac_cv_search_posix_spawn" = "none required" ||
-+ LIB_POSIX_SPAWN=$ac_cv_search_posix_spawn])
-+ AC_CHECK_FUNCS([posix_spawn])
-+ LIBS=$gl_saved_libs
- if test $ac_cv_func_posix_spawn != yes; then
- HAVE_POSIX_SPAWN=0
- fi