[arch-commits] Commit in perl-term-readline-gnu/repos (3 files)
Evangelos Foutras
foutrelis at archlinux.org
Wed Aug 1 09:04:06 UTC 2018
Date: Wednesday, August 1, 2018 @ 09:04:06
Author: foutrelis
Revision: 366227
archrelease: copy trunk to community-staging-x86_64
Added:
perl-term-readline-gnu/repos/community-staging-x86_64/
perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD
(from rev 366225, perl-term-readline-gnu/trunk/PKGBUILD)
perl-term-readline-gnu/repos/community-staging-x86_64/termcap-bad-ncurses-good.patch
(from rev 366226, perl-term-readline-gnu/trunk/termcap-bad-ncurses-good.patch)
--------------------------------+
PKGBUILD | 46 +++++++++++++++++++++++++++++++++++++++
termcap-bad-ncurses-good.patch | 18 +++++++++++++++
2 files changed, 64 insertions(+)
Copied: perl-term-readline-gnu/repos/community-staging-x86_64/PKGBUILD (from rev 366225, perl-term-readline-gnu/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-08-01 09:04:06 UTC (rev 366227)
@@ -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.35
+pkgrel=5
+pkgdesc="GNU Readline XS library wrapper"
+arch=('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=('514619d68bda1618da61b19d04b5cefe'
+ '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 366226, 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 2018-08-01 09:04:06 UTC (rev 366227)
@@ -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