diff options
author | jadawin <jadawin@FreeBSD.org> | 2009-07-15 19:44:01 +0800 |
---|---|---|
committer | jadawin <jadawin@FreeBSD.org> | 2009-07-15 19:44:01 +0800 |
commit | 45166cc9a8987f2c1daa6e49c132d8eb00804a7b (patch) | |
tree | b71745575ad6ee61a41c02bc818f7b1c2f3afa13 | |
parent | 7a705e0d12c15349deffe19ae62c2d203904a98d (diff) | |
download | freebsd-ports-gnome-45166cc9a8987f2c1daa6e49c132d8eb00804a7b.tar.gz freebsd-ports-gnome-45166cc9a8987f2c1daa6e49c132d8eb00804a7b.tar.zst freebsd-ports-gnome-45166cc9a8987f2c1daa6e49c132d8eb00804a7b.zip |
- Update to 1.04
-rw-r--r-- | textproc/p5-PDF-Create/Makefile | 2 | ||||
-rw-r--r-- | textproc/p5-PDF-Create/distinfo | 6 | ||||
-rw-r--r-- | textproc/p5-PDF-Create/files/patch-Changes.PL | 45 |
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 /) { |