summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pcr/perl-net-sftp-foreign/Changes25
-rw-r--r--pcr/perl-net-sftp-foreign/PKGBUILD30
2 files changed, 43 insertions, 12 deletions
diff --git a/pcr/perl-net-sftp-foreign/Changes b/pcr/perl-net-sftp-foreign/Changes
index f730a8973..80126616f 100644
--- a/pcr/perl-net-sftp-foreign/Changes
+++ b/pcr/perl-net-sftp-foreign/Changes
@@ -1,5 +1,30 @@
Revision history for Net::SFTP::Foreign
+1.77 Nov 5, 2013
+ - release as stable
+ - fix misspellings in error message
+
+1.76_04 Oct 2, 2013
+ - fix 'Use of "goto" to jump into a construct is deprecated'
+ warning (bug report by Brent Bates)
+ - don't force permissions from rput when copy_perm is unset
+
+1.76_03 Aug 26, 2013
+ - fix several spelling errors
+ - add spell checking test
+ - remove pod test from MANIFEST
+ - ensure that pty is not destroyed before main object (bug
+ report by Stephen Wylie) during global destruction
+
+1.76_02 Apr 29, 2013
+ - remove warning happening when best_effort was set, specially
+ visible from Compat module (bug report by emerlyn at
+ PerlMonks)
+
+1.76_01 Apr 26, 2013
+ - protect against callbacks setting $\ (bug report by Thomas
+ Wadley)
+
1.75 Apr 2, 2013
- release as stable
diff --git a/pcr/perl-net-sftp-foreign/PKGBUILD b/pcr/perl-net-sftp-foreign/PKGBUILD
index 95641b8d9..0ac370040 100644
--- a/pcr/perl-net-sftp-foreign/PKGBUILD
+++ b/pcr/perl-net-sftp-foreign/PKGBUILD
@@ -1,22 +1,26 @@
-# Contributor (Arch): Alessandro Sagratini <ale_sagra at hotmail dot com>
+# Maintainer (AUR): "Jameson Pugh <imntreal@gmail.com>"
+# Contributor (AUR): Alessandro Sagratini <ale_sagra at hotmail dot com>
# Contributor: Márcio Silva <coadde@hyperbola.info>
+# parabola changes and rationale:
+# no changes.
+
pkgname=perl-net-sftp-foreign
-pkgver=1.81
+pkgver=1.87
pkgrel=1
pkgdesc="Perl SFTP client using the native SSH client application"
-arch=(any)
-url=http://search.cpan.org/~salva/Net-SFTP-Foreign
-license=('GPL2')
+arch=('any')
+url='http://search.cpan.org/~salva/Net-SFTP-Foreign'
+license=('GPL' 'PerlArtistic')
depends=('perl>=5.10.0')
optdepends=('perl-file-which' 'perl-sort-key')
-options=(!emptydirs)
+options=('!emptydirs')
changelog=Changes
-source=(http://search.cpan.org/CPAN/authors/id/S/SA/SALVA/Net-SFTP-Foreign-$pkgver.tar.gz)
-md5sums=('74c8c84cd41236db730715b79cd82219')
+source=("http://search.cpan.org/CPAN/authors/id/S/SA/SALVA/Net-SFTP-Foreign-${pkgver}.tar.gz")
+sha256sums=('cd175f8dee7efcadf17675b7d4ae8d8ad59d329862171f458d88bf6fc4f5c5ec')
build() {
- cd "$srcdir/Net-SFTP-Foreign-$pkgver"
+ cd "${srcdir}/Net-SFTP-Foreign-${pkgver}"
# install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
@@ -24,9 +28,11 @@ build() {
}
package() {
- cd "$srcdir/Net-SFTP-Foreign-$pkgver"
+ cd "${srcdir}/Net-SFTP-Foreign-${pkgver}"
make install DESTDIR=${pkgdir} || return 1
# remove perllocal.pod and .packlist
- find "$pkgdir" -name perllocal.pod -delete
- find "$pkgdir" -name .packlist -delete
+ find "${pkgdir}" -name perllocal.pod -delete
+ find "${pkgdir}" -name .packlist -delete
}
+
+# vim:set ts=2 sw=2 et: