Skip to Content.
Sympa Menu

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

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 (b723bbef27cec0aeb28e8292794db565047e93f0)
  • Date: Fri, 12 Apr 2019 18:59:57 +0000

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

editors/gawk/DETAILS | 4 +--
editors/gawk/HISTORY | 4 +++
editors/gawk/PRE_BUILD | 5 ----
editors/gawk/gawk_autoconf.patch | 48
---------------------------------------
4 files changed, 6 insertions(+), 55 deletions(-)

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

gawk: => 5.0.0

diff --git a/editors/gawk/DETAILS b/editors/gawk/DETAILS
index 3bb2f51..6d08851 100755
--- a/editors/gawk/DETAILS
+++ b/editors/gawk/DETAILS
@@ -1,5 +1,5 @@
SPELL=gawk
- VERSION=4.2.1
+ VERSION=5.0.0
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE2=$SOURCE.sig
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
@@ -7,7 +7,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE2_URL[0]=$GNU_URL/$SPELL/$SOURCE2
SOURCE_GPG=gnu.gpg:$SOURCE2:UPSTREAM_KEY
SOURCE2_IGNORE=signature
- WEB_SITE=http://www.gnu.org/software/gawk/gawk.html
+ WEB_SITE=https://www.gnu.org/software/gawk/gawk.html
LICENSE[0]=GPL
ENTERED=20010922
KEYWORDS="editors"
diff --git a/editors/gawk/HISTORY b/editors/gawk/HISTORY
index 6b03cb4..d2e2665 100644
--- a/editors/gawk/HISTORY
+++ b/editors/gawk/HISTORY
@@ -1,3 +1,7 @@
+2019-04-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.0.0
+ * gawk_autoconf.patch PRE_BUILD: deleted
+
2019-01-09 Treeve Jelbert <treeve AT sourcemage.org>
* PRE_INSTALL: added
* DEPENDS: delete gnupg, add readline
diff --git a/editors/gawk/PRE_BUILD b/editors/gawk/PRE_BUILD
deleted file mode 100755
index 505fb17..0000000
--- a/editors/gawk/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-if grep -q "# Generated by GNU Autoconf 2.61" configure; then
- patch -Np1 < $SCRIPT_DIRECTORY/gawk_autoconf.patch
-fi
diff --git a/editors/gawk/gawk_autoconf.patch
b/editors/gawk/gawk_autoconf.patch
deleted file mode 100644
index 3123a83..0000000
--- a/editors/gawk/gawk_autoconf.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Naur gawk-3.1.6.orig/configure gawk-3.1.6/configure
---- gawk-3.1.6.orig/configure 2007-10-22 08:52:03.000000000 +0200
-+++ gawk-3.1.6/configure 2008-10-23 20:40:58.000000000 +0200
-@@ -10518,6 +10518,7 @@
- # endif
- #endif
-
-+#include <limits.h>
- #include <stdlib.h>
-
- #ifdef HAVE_UNISTD_H
-@@ -10666,12 +10667,15 @@
- isn't worth using anyway. */
- alarm (60);
-
-- for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
-- continue;
-- time_t_max--;
-- if ((time_t) -1 < 0)
-- for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
-- continue;
-+ for (;;)
-+ {
-+ t = (time_t_max << 1) + 1;
-+ if (t <= time_t_max)
-+ break;
-+ time_t_max = t;
-+ }
-+ time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max;
-+
- delta = time_t_max / 997; /* a suitable prime number */
- for (i = 0; i < N_STRINGS; i++)
- {
-@@ -10686,10 +10690,12 @@
- && mktime_test ((time_t) (60 * 60 * 24))))
- return 1;
-
-- for (j = 1; 0 < j; j *= 2)
-+ for (j = 1; ; j <<= 1)
- if (! bigtime_test (j))
- return 1;
-- if (! bigtime_test (j - 1))
-+ else if (INT_MAX / 2 < j)
-+ break;
-+ if (! bigtime_test (INT_MAX))
- return 1;
- }
- return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ());



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (b723bbef27cec0aeb28e8292794db565047e93f0), Treeve Jelbert, 04/12/2019

Archive powered by MHonArc 2.6.24.

Top of Page