aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--textproc/p5-PDF-Create/Makefile2
-rw-r--r--textproc/p5-PDF-Create/distinfo6
-rw-r--r--textproc/p5-PDF-Create/files/patch-Changes.PL45
3 files changed, 4 insertions, 49 deletions
diff --git a/textproc/p5-PDF-Create/Makefile b/textproc/p5-PDF-Create/Makefile
index f969ffdd2560..c810064f8fe4 100644
--- a/textproc/p5-PDF-Create/Makefile
+++ b/textproc/p5-PDF-Create/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= PDF-Create
-PORTVERSION= 1.03
+PORTVERSION= 1.04
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
diff --git a/textproc/p5-PDF-Create/distinfo b/textproc/p5-PDF-Create/distinfo
index 62bdaac30131..01598cbd6367 100644
--- a/textproc/p5-PDF-Create/distinfo
+++ b/textproc/p5-PDF-Create/distinfo
@@ -1,3 +1,3 @@
-MD5 (PDF-Create-1.03.tar.gz) = 19f6c51d7c473c59909241269e048696
-SHA256 (PDF-Create-1.03.tar.gz) = 55274a5fda1a40b23efffad6e2bddf769a240c417a13f6f003a22debae147eeb
-SIZE (PDF-Create-1.03.tar.gz) = 103334
+MD5 (PDF-Create-1.04.tar.gz) = 786a508cfb10a6e2cd6344fa70f99692
+SHA256 (PDF-Create-1.04.tar.gz) = c70c5e88d7707205f1d07b02e2bc2e4cba8b7586f166bfa2ac20f9714fe2fee7
+SIZE (PDF-Create-1.04.tar.gz) = 102642
diff --git a/textproc/p5-PDF-Create/files/patch-Changes.PL b/textproc/p5-PDF-Create/files/patch-Changes.PL
deleted file mode 100644
index f94222d63f51..000000000000
--- a/textproc/p5-PDF-Create/files/patch-Changes.PL
+++ /dev/null
@@ -1,45 +0,0 @@
---- Changes.PL.orig 2009-03-23 23:50:18.000000000 +0000
-+++ Changes.PL 2009-03-27 09:12:48.000000000 +0000
-@@ -3,12 +3,39 @@
- # Changes.PL
- #
- # Create the 'Changes' file automatically from git commit messages
--# and versioning tags in the repository
-+# and versioning tags in the repository.
-+#
-+# This script is designed to be run only on the PDF::Create maintainers
-+# workstation and is not needed to install PDF::Create.
-+#
-
- use strict;
-
--open(OUT, ">Changes") or die "Can not open 'Changes' for writing\n";
--open(IN,"git log --abbrev-commit --pretty |") or die "Can not run git\n";
-+#
-+# Bail out with non-alarming error message if git ot the correct repository
-+# is missing.
-+#
-+
-+my $user;
-+my $git=`which git`;
-+chomp $git;
-+if (! (-f $git)) {
-+ printf "Skipping... (git not found/installed)\n";
-+ exit (0);
-+}
-+
-+if (! ($user=`git config --get user.name 2>/dev/null`)) {
-+ printf "Skipping... (git not found/installed)\n";
-+ exit (0);
-+}
-+chop $user;
-+if ("$user" ne "Markus Baertschi") {
-+ printf "Skipping... (not on maintainers workstation)\n";
-+ exit (0);
-+}
-+
-+open(OUT,">Changes") or die "Can not open 'Changes' for writing\n";
-+open(IN,"git log --abbrev-commit --pretty |") or die "Problem running git log\n";
- while(<IN>){
- # read the change log
- if (/^commit /) {