Skip to Content.
Sympa Menu

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

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 (5636d3a143c0f364f18959b40a730dbfd7651ed8)
  • Date: Wed, 3 Jun 2015 08:02:59 +0000

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

devel/perl/DETAILS | 4
devel/perl/HISTORY | 4
devel/perl/PRE_BUILD | 3
devel/perl/perl-5.20.2-gcc5_fixes-1.patch | 127
------------------------------
libs/tzdata/DETAILS | 2
libs/tzdata/HISTORY | 3
6 files changed, 10 insertions(+), 133 deletions(-)

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

perl: => 5.22.0

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

tzdata: => 2015d

diff --git a/devel/perl/DETAILS b/devel/perl/DETAILS
index 091c41b..e0eb9b8 100755
--- a/devel/perl/DETAILS
+++ b/devel/perl/DETAILS
@@ -1,6 +1,6 @@
SPELL=perl
- VERSION=5.20.2
-
SOURCE_HASH=sha512:fb41e2f55237cc7dacba7021bf36c78ff52d926095af0d6b6d69fe49cf970a76b2b85775660d504a70c9f0528db5a6f7503b35046ec76000ab59836a127d30ef
+ VERSION=5.22.0
+
SOURCE_HASH=sha512:751c715f6483109fcaf3304115751a3bddb50f5e648efc767fd796e3959f42ab88b6471a6ad901667f18eda4d9bfbc85cb091d582b6fc66fcab77668f41d1e0c
SECURITY_PATCH=3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/devel/perl/HISTORY b/devel/perl/HISTORY
index 9b9cb55..885ecbb 100644
--- a/devel/perl/HISTORY
+++ b/devel/perl/HISTORY
@@ -1,3 +1,7 @@
+2015-06-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.22.0
+ * PRE_BUILD, perl-5.20.2-gcc5_fixes-1.patch: deleted
+
2015-04-26 Florian Franzmann < siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 5.20.2
* PRE_BUILD, perl-5.20.2-gcc5_fixes-1.patch: add fixes from
diff --git a/devel/perl/PRE_BUILD b/devel/perl/PRE_BUILD
deleted file mode 100755
index 90afffc..0000000
--- a/devel/perl/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd ${SOURCE_DIRECTORY} &&
-patch -p1 < $SPELL_DIRECTORY/perl-5.20.2-gcc5_fixes-1.patch
diff --git a/devel/perl/perl-5.20.2-gcc5_fixes-1.patch
b/devel/perl/perl-5.20.2-gcc5_fixes-1.patch
deleted file mode 100644
index 21f3ca8..0000000
--- a/devel/perl/perl-5.20.2-gcc5_fixes-1.patch
+++ /dev/null
@@ -1,127 +0,0 @@
-Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
-Date: 2015-04-17
-Initial Package Version: 5.20.2
-Upstream Status: Committed
-Origin: Petr Pisař and Tony Cook
-Description: Fixes Errno.pm and h2ph with gcc-5.
-
-1. cherry-picked because the change to $version will not apply, from
-commit 816b056ffb99ae54642320e20dc30a59fd1effef
-Author: Petr Písař <ppisar AT redhat.com>
-Date: Wed Feb 11 15:46:37 2015 +0100
-
- Fix Errno.pm generation for gcc-5.0
-
- gcc-5.0 -E interleaves now line numbers with expended macros, so that
- the generated errno.c will be preprocessed to
-
- EBFONT => [[
- 59
- ]]
-
- which is hard to parse in in line-based reader.
-
- So use -P option with gcc >= 5.0. Global -P usage would break makedepend,
- global -ftrack-macro-expansion=0 would break lib/h2ph.t.
-
- RT#123784
-
-diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
-index 3dadfce..c6bfa06 100644
---- a/ext/Errno/Errno_pm.PL
-+++ b/ext/Errno/Errno_pm.PL
-@@ -215,20 +215,31 @@ sub write_errno_pm {
- { # BeOS (support now removed) did not enter this block
- # invoke CPP and read the output
-
-+ my $inhibit_linemarkers = '';
-+ if ($Config{gccversion} =~ /\A(\d+)\./ and $1 >= 5) {
-+ # GCC 5.0 interleaves expanded macros with line numbers breaking
-+ # each line into multiple lines. RT#123784
-+ $inhibit_linemarkers = ' -P';
-+ }
-+
- if ($^O eq 'VMS') {
-- my $cpp = "$Config{cppstdin} $Config{cppflags} $Config{cppminus}";
-+ my $cpp = "$Config{cppstdin} $Config{cppflags}" .
-+ $inhibit_linemarkers . " $Config{cppminus}";
- $cpp =~ s/sys\$input//i;
- open(CPPO,"$cpp errno.c |") or
- die "Cannot exec $Config{cppstdin}";
- } elsif ($IsMSWin32 || $^O eq 'NetWare') {
-- open(CPPO,"$Config{cpprun} $Config{cppflags} errno.c |") or
-- die "Cannot run '$Config{cpprun} $Config{cppflags} errno.c'";
-+ my $cpp = "$Config{cpprun} $Config{cppflags}" .
-+ $inhibit_linemarkers;
-+ open(CPPO,"$cpp errno.c |") or
-+ die "Cannot run '$cpp errno.c'";
- } elsif ($IsSymbian) {
-- my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc -";
-+ my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc" .
-+ $inhibit_linemarkers ." -";
- open(CPPO,"$cpp < errno.c |")
- or die "Cannot exec $cpp";
- } else {
-- my $cpp = default_cpp();
-+ my $cpp = default_cpp() . $inhibit_linemarkers;
- open(CPPO,"$cpp < errno.c |")
- or die "Cannot exec $cpp";
- }
-
-commit 3bea78d24634e630b610f59957e7a019205a67b2
-Author: Tony Cook <tony AT develop-help.com>
-Date: Mon Feb 16 15:57:00 2015 +1100
-
- h2ph: correct handling of hex constants for the preamble
-
- Previously they were treated as identifiers resulting in code
- generated like C< &0xFFF >.
-
- We also try to prevent compile-time warnings from large hex integers,
- the user isn't responsible for the generated code, so we delay those
- warnings to run-time.
-
-diff --git a/utils/h2ph.PL b/utils/h2ph.PL
-index 9a8b14d..d082f22 100644
---- a/utils/h2ph.PL
-+++ b/utils/h2ph.PL
-@@ -769,7 +769,7 @@ sub inc_dirs
- sub build_preamble_if_necessary
- {
- # Increment $VERSION every time this function is modified:
-- my $VERSION = 3;
-+ my $VERSION = 4;
- my $preamble = "$Dest_dir/_h2ph_pre.ph";
-
- # Can we skip building the preamble file?
-@@ -788,6 +788,11 @@ sub build_preamble_if_necessary
-
- open PREAMBLE, ">$preamble" or die "Cannot open $preamble: $!";
- print PREAMBLE "# This file was created by h2ph version $VERSION\n";
-+ # Prevent non-portable hex constants from warning.
-+ #
-+ # We still produce an overflow warning if we can't represent
-+ # a hex constant as an integer.
-+ print PREAMBLE "no warnings qw(portable);\n";
-
- foreach (sort keys %define) {
- if ($opt_D) {
-@@ -814,6 +819,18 @@ DEFINE
- # integer:
- print PREAMBLE
- "unless (defined &$_) { sub $_() { $1 } }\n\n";
-+ } elsif ($define{$_} =~ /^([+-]?0x[\da-f]+)U?L{0,2}$/i) {
-+ # hex integer
-+ # Special cased, since perl warns on hex integers
-+ # that can't be represented in a UV.
-+ #
-+ # This way we get the warning at time of use, so the user
-+ # only gets the warning if they happen to use this
-+ # platform-specific definition.
-+ my $code = $1;
-+ $code = "hex('$code')" if length $code > 10;
-+ print PREAMBLE
-+ "unless (defined &$_) { sub $_() { $code } }\n\n";
- } elsif ($define{$_} =~ /^\w+$/) {
- my $def = $define{$_};
- if ($isatype{$def}) {
diff --git a/libs/tzdata/DETAILS b/libs/tzdata/DETAILS
index 7584466..467b4c0 100755
--- a/libs/tzdata/DETAILS
+++ b/libs/tzdata/DETAILS
@@ -1,5 +1,5 @@
SPELL=tzdata
- VERSION=2015a
+ VERSION=2015d
SOURCE="${SPELL}${VERSION}.tar.gz"
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=ftp://ftp.iana.org/tz/releases/${SOURCE}
diff --git a/libs/tzdata/HISTORY b/libs/tzdata/HISTORY
index f11ac9e..b5c2bb1 100644
--- a/libs/tzdata/HISTORY
+++ b/libs/tzdata/HISTORY
@@ -1,3 +1,6 @@
+2015-06-02 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2015d
+
2015-03-09 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2015a
* hard_linked_files: updated, generated with:



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (5636d3a143c0f364f18959b40a730dbfd7651ed8), Treeve Jelbert, 06/03/2015

Archive powered by MHonArc 2.6.24.

Top of Page