[Reproducible-commits] [libextutils-depends-perl] 32/187: release 0.205: Disable the RPM-related postamble on win32 to avoid hanging.
Maria Valentina Marin Rodrigues
akira-guest at moszumanska.debian.org
Wed Jan 21 21:16:46 UTC 2015
This is an automated email from the git hooks/post-receive script.
akira-guest pushed a commit to branch pu/reproducible_builds
in repository libextutils-depends-perl.
commit e8c30f68a9148963eaa3c9b916e629b6a5012a93
Author: Scott Arrington <sarringt at src.gnome.org>
Date: Sun Jan 23 18:49:49 2005 +0000
release 0.205: Disable the RPM-related postamble on win32 to avoid hanging.
svn path=/trunk/; revision=47
---
Changes | 4 ++++
Makefile.PL | 4 ++++
lib/ExtUtils/Depends.pm | 2 +-
3 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/Changes b/Changes
index a3e665d..faa972f 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension ExtUtils::Depends.
+0.205 Sun Jan 23 13:20:14 EST 2005
+ - Disable the RPM-related postamble on Win32. The 'date' command
+ on windows is interactive, and caused Makefile.PL to hang.
+
0.204 Sun Sep 19 23:26:23 CEST 2004
- Use capitals at the start of everything that is printed out, to unify
Makefile.PL output.
diff --git a/Makefile.PL b/Makefile.PL
index a4afe37..aa0e455 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -14,6 +14,10 @@ package MY;
use Cwd;
sub postamble
{
+ # none of this rpm stuff is useful on win32, and actually it can cause
+ # nmake to barf.
+ return @_ if $^O eq 'MSWin32';
+
my @dirs = qw{$(RPMS_DIR) $(RPMS_DIR)/BUILD $(RPMS_DIR)/RPMS
$(RPMS_DIR)/SOURCES $(RPMS_DIR)/SPECS $(RPMS_DIR)/SRPMS};
my $cwd = getcwd();
diff --git a/lib/ExtUtils/Depends.pm b/lib/ExtUtils/Depends.pm
index f9f3004..b26b6e7 100644
--- a/lib/ExtUtils/Depends.pm
+++ b/lib/ExtUtils/Depends.pm
@@ -10,7 +10,7 @@ use Carp;
use File::Spec;
use Data::Dumper;
-our $VERSION = '0.204';
+our $VERSION = '0.205';
sub import {
my $class = shift;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/libextutils-depends-perl.git
More information about the Reproducible-commits
mailing list