summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2014-09-15 21:27:35 +0000
committerschmonz <schmonz@pkgsrc.org>2014-09-15 21:27:35 +0000
commit727779157e491ad79bda3111d93437aa2e0763f0 (patch)
tree3536dd5b9c06d1c6e33ceb6afe6daef714c00e1e
parentc658fc6564d0b66b780e045d6a3184b08a7dddc0 (diff)
downloadpkgsrc-727779157e491ad79bda3111d93437aa2e0763f0.tar.gz
Update to 1.12. From the changelog:
* Merge pull request from Chris Williams (bingos) to fix "redefinition of typedef" errors with v5.19.4 and above Updating during the freeze, even though this isn't a leaf, because the only change is our local patch having been merged upstream (and the freeze only just started). FWIW, mosh still works.
-rw-r--r--devel/p5-IO-Tty/Makefile5
-rw-r--r--devel/p5-IO-Tty/distinfo9
-rw-r--r--devel/p5-IO-Tty/patches/patch-Tty.xs19
3 files changed, 7 insertions, 26 deletions
diff --git a/devel/p5-IO-Tty/Makefile b/devel/p5-IO-Tty/Makefile
index e13855d4845..e37227e5035 100644
--- a/devel/p5-IO-Tty/Makefile
+++ b/devel/p5-IO-Tty/Makefile
@@ -1,13 +1,14 @@
-# $NetBSD: Makefile,v 1.30 2014/06/02 02:14:10 schmonz Exp $
+# $NetBSD: Makefile,v 1.31 2014/09/15 21:27:35 schmonz Exp $
#
-DISTNAME= IO-Tty-1.11
+DISTNAME= IO-Tty-1.12
PKGNAME= p5-${DISTNAME:C/T/t/}
SVR4_PKGNAME= p5itt
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/}
MAINTAINER= rhaen@NetBSD.org
+HOMEPAGE= http://search.cpan.org/dist/IO-Tty/
COMMENT= Another Perl class for I/O on tty and pseudo-tty devices
LICENSE= ${PERL5_LICENSE}
diff --git a/devel/p5-IO-Tty/distinfo b/devel/p5-IO-Tty/distinfo
index 622ba188c82..13e45ac5a61 100644
--- a/devel/p5-IO-Tty/distinfo
+++ b/devel/p5-IO-Tty/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.11 2014/06/02 02:14:10 schmonz Exp $
+$NetBSD: distinfo,v 1.12 2014/09/15 21:27:35 schmonz Exp $
-SHA1 (IO-Tty-1.11.tar.gz) = 0704a100ae87eae1837df8a872dcd202961af8ce
-RMD160 (IO-Tty-1.11.tar.gz) = e9b2083d34cb5939adda9e355b96c1f8255e7c88
-Size (IO-Tty-1.11.tar.gz) = 24206 bytes
-SHA1 (patch-Tty.xs) = a79de78989fc36af51c425b354b1355f462226f9
+SHA1 (IO-Tty-1.12.tar.gz) = a8227d3648fcb41e8bb2dfbedfd5c2327d2dae58
+RMD160 (IO-Tty-1.12.tar.gz) = 5988cb385311d5ae2ac66c8a915457a2f40fb784
+Size (IO-Tty-1.12.tar.gz) = 24564 bytes
diff --git a/devel/p5-IO-Tty/patches/patch-Tty.xs b/devel/p5-IO-Tty/patches/patch-Tty.xs
deleted file mode 100644
index 84fb0d65908..00000000000
--- a/devel/p5-IO-Tty/patches/patch-Tty.xs
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-Tty.xs,v 1.1 2014/06/02 02:14:10 schmonz Exp $
-
-Fix perl5.20 build on some versions of OS X, NetBSD, OpenBSD.
-
-From <https://github.com/toddr/IO-Tty/pull/3/commits>.
-
---- Tty.xs.orig 2012-01-14 06:34:50.000000000 +0000
-+++ Tty.xs
-@@ -58,7 +58,9 @@ typedef FILE * InOutStream;
- #endif /* HAVE_UTIL_H */
-
- #ifdef HAVE_UTIL_H
--# include <util.h>
-+# if ((PATCHLEVEL < 19) && (SUBVERSION < 4))
-+# include <util.h>
-+# endif
- #endif /* HAVE_UTIL_H */
-
- #ifdef HAVE_PTY_H