[arch-commits] Commit in perl-term-readline-gnu/repos (6 files)

Felix Yan fyan at nymeria.archlinux.org
Sun Jun 1 04:17:25 UTC 2014


    Date: Sunday, June 1, 2014 @ 06:17:25
  Author: fyan
Revision: 112351

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-term-readline-gnu/repos/community-staging-i686/
  perl-term-readline-gnu/repos/community-staging-i686/PKGBUILD
    (from rev 112350, perl-term-readline-gnu/trunk/PKGBUILD)
  perl-term-readline-gnu/repos/community-staging-i686/termcap-bad-ncurses-good.patch
    (from rev 112350, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
  perl-term-readline-gnu/repos/community-staging-x86_64/
  perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD
    (from rev 112350, perl-term-readline-gnu/trunk/PKGBUILD)
  perl-term-readline-gnu/repos/community-staging-x86_64/termcap-bad-ncurses-good.patch
    (from rev 112350, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)

---------------------------------------------------------+
 community-staging-i686/PKGBUILD                         |   46 ++++++++++++++
 community-staging-i686/termcap-bad-ncurses-good.patch   |   18 +++++
 community-staging-x86_64/PKGBUILD                       |   46 ++++++++++++++
 community-staging-x86_64/termcap-bad-ncurses-good.patch |   18 +++++
 4 files changed, 128 insertions(+)

Copied: perl-term-readline-gnu/repos/community-staging-i686/PKGBUILD (from rev 112350, perl-term-readline-gnu/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2014-06-01 04:17:25 UTC (rev 112351)
@@ -0,0 +1,46 @@
+# $Id$
+# CPAN Name  : Term-ReadLine-Gnu
+# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: jason ryan <jasonwryan at gmail.com>
+# Contributor: AUR Perl <aurperl at juster.info>
+# Generator  : CPANPLUS::Dist::Arch 1.15
+
+pkgname=perl-term-readline-gnu
+pkgver=1.24
+pkgrel=2
+pkgdesc="GNU Readline XS library wrapper"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl>=5.7')
+url='http://search.cpan.org/dist/Term-ReadLine-Gnu'
+source=("http://search.cpan.org/CPAN/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-${pkgver}.tar.gz"
+        'termcap-bad-ncurses-good.patch')
+md5sums=('43db7380970a0674a601c042e9486a9a'
+         'a000706b89792f822b5ec20baa370910')
+
+build() {
+   export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
+      PERL_AUTOINSTALL=--skipdeps                            \
+      PERL_MM_OPT="INSTALLDIRS=vendor"     \
+      PERL_MB_OPT="--installdirs vendor" \
+      MODULEBUILDRC=/dev/null
+
+    cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+    patch --forward -p1 < "${srcdir}/termcap-bad-ncurses-good.patch"
+    /usr/bin/perl Makefile.PL
+    make
+}
+
+check() {
+  cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+    make test
+}
+
+package() {
+  cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+  make pure_install PERL_INSTALL_ROOT="$pkgdir"
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+

Copied: perl-term-readline-gnu/repos/community-staging-i686/termcap-bad-ncurses-good.patch (from rev 112350, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
===================================================================
--- community-staging-i686/termcap-bad-ncurses-good.patch	                        (rev 0)
+++ community-staging-i686/termcap-bad-ncurses-good.patch	2014-06-01 04:17:25 UTC (rev 112351)
@@ -0,0 +1,18 @@
+--- Term-ReadLine-Gnu-1.20/Makefile.PL	2010-05-02 06:37:55.000000000 -0400
++++ Term-ReadLine-Gnu-1.20-patched/Makefile.PL	2011-07-30 16:16:54.000000000 -0400
+@@ -58,8 +58,13 @@
+     # know why AIX prefers curses.
+     # libtermcap.a on HPUX cannot be used for dynamically linked binary.
+     # Old Cygwin may require setting false (0).
+-    my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux'
+-			|| $Config{osname} eq 'cygwin';
++    # my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux'
++	# 		|| $Config{osname} eq 'cygwin';
++
++    # Hack for ArchLinux by Justin Davis <aurperl at juster.us>
++    # Don't use termcap! readline is linked with ncurses so I know it's
++    # available. termcap causes this module to crash for some people.
++    my $PREFER_CURSES = 1;
+     my $TERMCAP_LIB = (! $PREFER_CURSES && &search_lib('-ltermcap'))
+ 	|| &search_lib('-lncurses')
+ 	    || &search_lib('-lcurses');

Copied: perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD (from rev 112350, perl-term-readline-gnu/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2014-06-01 04:17:25 UTC (rev 112351)
@@ -0,0 +1,46 @@
+# $Id$
+# CPAN Name  : Term-ReadLine-Gnu
+# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: jason ryan <jasonwryan at gmail.com>
+# Contributor: AUR Perl <aurperl at juster.info>
+# Generator  : CPANPLUS::Dist::Arch 1.15
+
+pkgname=perl-term-readline-gnu
+pkgver=1.24
+pkgrel=2
+pkgdesc="GNU Readline XS library wrapper"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl>=5.7')
+url='http://search.cpan.org/dist/Term-ReadLine-Gnu'
+source=("http://search.cpan.org/CPAN/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-${pkgver}.tar.gz"
+        'termcap-bad-ncurses-good.patch')
+md5sums=('43db7380970a0674a601c042e9486a9a'
+         'a000706b89792f822b5ec20baa370910')
+
+build() {
+   export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
+      PERL_AUTOINSTALL=--skipdeps                            \
+      PERL_MM_OPT="INSTALLDIRS=vendor"     \
+      PERL_MB_OPT="--installdirs vendor" \
+      MODULEBUILDRC=/dev/null
+
+    cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+    patch --forward -p1 < "${srcdir}/termcap-bad-ncurses-good.patch"
+    /usr/bin/perl Makefile.PL
+    make
+}
+
+check() {
+  cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+    make test
+}
+
+package() {
+  cd "${srcdir}/Term-ReadLine-Gnu-$pkgver"
+  make pure_install PERL_INSTALL_ROOT="$pkgdir"
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+

Copied: perl-term-readline-gnu/repos/community-staging-x86_64/termcap-bad-ncurses-good.patch (from rev 112350, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
===================================================================
--- community-staging-x86_64/termcap-bad-ncurses-good.patch	                        (rev 0)
+++ community-staging-x86_64/termcap-bad-ncurses-good.patch	2014-06-01 04:17:25 UTC (rev 112351)
@@ -0,0 +1,18 @@
+--- Term-ReadLine-Gnu-1.20/Makefile.PL	2010-05-02 06:37:55.000000000 -0400
++++ Term-ReadLine-Gnu-1.20-patched/Makefile.PL	2011-07-30 16:16:54.000000000 -0400
+@@ -58,8 +58,13 @@
+     # know why AIX prefers curses.
+     # libtermcap.a on HPUX cannot be used for dynamically linked binary.
+     # Old Cygwin may require setting false (0).
+-    my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux'
+-			|| $Config{osname} eq 'cygwin';
++    # my $PREFER_CURSES = $Config{osname} eq 'aix' || $Config{osname} eq 'hpux'
++	# 		|| $Config{osname} eq 'cygwin';
++
++    # Hack for ArchLinux by Justin Davis <aurperl at juster.us>
++    # Don't use termcap! readline is linked with ncurses so I know it's
++    # available. termcap causes this module to crash for some people.
++    my $PREFER_CURSES = 1;
+     my $TERMCAP_LIB = (! $PREFER_CURSES && &search_lib('-ltermcap'))
+ 	|| &search_lib('-lncurses')
+ 	    || &search_lib('-lcurses');




More information about the arch-commits mailing list