Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (13a891ca5be812258e068c84e7076f563a338e7c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (13a891ca5be812258e068c84e7076f563a338e7c)
  • Date: Mon, 20 Jan 2020 11:34:29 +0000

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

ChangeLog | 3 +
devel/make/DETAILS | 4 -
devel/make/HISTORY | 4 +
devel/make/PRE_BUILD | 4 -
devel/make/patches/10-glibc-2.27.patch | 86
---------------------------------
gnu.gpg |binary
6 files changed, 9 insertions(+), 92 deletions(-)

New commits:
commit 13a891ca5be812258e068c84e7076f563a338e7c
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

gnu.gpg - add Paul D. Smith

commit a589e6586aff553d39715ab3875eb86920462ddd
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

make: => 4.3

diff --git a/ChangeLog b/ChangeLog
index e5e1b34..7d8378e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2020-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * gnu.gpg: add Paul D. Smith <psmith AT gnu.org>
+
2020-01-19 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* python-pypi/python-imagesize: new spell, extracts image sizes from
files
diff --git a/devel/make/DETAILS b/devel/make/DETAILS
index 18c7856..c4f3386 100755
--- a/devel/make/DETAILS
+++ b/devel/make/DETAILS
@@ -1,5 +1,5 @@
SPELL=make
- VERSION=4.2.1
+ VERSION=4.3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
SOURCE_GPG=gnu.gpg:$SOURCE2:UPSTREAM_KEY
@@ -10,7 +10,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
SOURCE2_URL[1]=${SOURCE_URL[1]}.sig
LICENSE[0]=GPL
- WEB_SITE=http://www.gnu.org/software/make/make.html
+ WEB_SITE=https://www.gnu.org/software/make/make.html
ENTERED=20010922
KEYWORDS="devel"
SHORT="make generates executables and other non-source programs"
diff --git a/devel/make/HISTORY b/devel/make/HISTORY
index 583c073..36e66ce 100644
--- a/devel/make/HISTORY
+++ b/devel/make/HISTORY
@@ -1,3 +1,7 @@
+2020-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 4.3
+ * PRE_BUILD patches/*: deleted
+
2019-05-18 Ismael Luceno <ismael AT sourcemage.org>
* DEPENDS: Update dependency; s/gettext/GETTEXT/

diff --git a/devel/make/PRE_BUILD b/devel/make/PRE_BUILD
deleted file mode 100755
index 7c2851f..0000000
--- a/devel/make/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-apply_patch_dir patches &&
-autoreconf
diff --git a/devel/make/patches/10-glibc-2.27.patch
b/devel/make/patches/10-glibc-2.27.patch
deleted file mode 100644
index 8cead65..0000000
--- a/devel/make/patches/10-glibc-2.27.patch
+++ /dev/null
@@ -1,86 +0,0 @@
-# From https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891365
-commit 48c8a116a914a325a0497721f5d8b58d5bba34d4
-Author: Paul Smith <psmith AT gnu.org>
-Date: Sun Nov 19 15:09:16 2017 -0500
-
- * configure.ac: Support GLIBC glob interface version 2
-
-commit 193f1e81edd6b1b56b0eb0ff8aa4b41c7b4257b4
-Author: Paul Eggert <eggert AT cs.ucla.edu>
-Date: Sun Sep 24 09:12:58 2017 -0400
-
- glob: Do not assume glibc glob internals.
-
- It has been proposed that glibc glob start using gl_lstat,
- which the API allows it to do. GNU 'make' should not get in
- the way of this. See:
- https://sourceware.org/ml/libc-alpha/2017-09/msg00409.html
-
- * dir.c (local_lstat): New function, like local_stat.
- (dir_setup_glob): Use it to initialize gl_lstat too, as the API
- requires.
-
-diff --git a/configure.ac b/configure.ac
-index 8c72568..4710832 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -404,10 +404,9 @@ AC_CACHE_CHECK([if system libc has GNU glob],
[make_cv_sys_gnu_glob],
- #include <glob.h>
- #include <fnmatch.h>
-
--#define GLOB_INTERFACE_VERSION 1
- #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1
- # include <gnu-versions.h>
--# if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
-+# if _GNU_GLOB_INTERFACE_VERSION == 1 || _GNU_GLOB_INTERFACE_VERSION == 2
- gnu glob
- # endif
- #endif],
-diff --git a/dir.c b/dir.c
-index adbb8a9..c343e4c 100644
---- a/dir.c
-+++ b/dir.c
-@@ -1299,15 +1299,40 @@ local_stat (const char *path, struct stat *buf)
- }
- #endif
-
-+/* Similarly for lstat. */
-+#if !defined(lstat) && !defined(WINDOWS32) || defined(VMS)
-+# ifndef VMS
-+# ifndef HAVE_SYS_STAT_H
-+int lstat (const char *path, struct stat *sbuf);
-+# endif
-+# else
-+ /* We are done with the fake lstat. Go back to the real lstat */
-+# ifdef lstat
-+# undef lstat
-+# endif
-+# endif
-+# define local_lstat lstat
-+#elif defined(WINDOWS32)
-+/* Windows doesn't support lstat(). */
-+# define local_lstat local_stat
-+#else
-+static int
-+local_lstat (const char *path, struct stat *buf)
-+{
-+ int e;
-+ EINTRLOOP (e, lstat (path, buf));
-+ return e;
-+}
-+#endif
-+
- void
- dir_setup_glob (glob_t *gl)
- {
- gl->gl_opendir = open_dirstream;
- gl->gl_readdir = read_dirstream;
- gl->gl_closedir = free;
-+ gl->gl_lstat = local_lstat;
- gl->gl_stat = local_stat;
-- /* We don't bother setting gl_lstat, since glob never calls it.
-- The slot is only there for compatibility with 4.4 BSD. */
- }
-
- void
-
diff --git a/gnu.gpg b/gnu.gpg
index 7f686df..6618be5 100644
Binary files a/gnu.gpg and b/gnu.gpg differ



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (13a891ca5be812258e068c84e7076f563a338e7c), Treeve Jelbert, 01/20/2020

Archive powered by MHonArc 2.6.24.

Top of Page