Package Details: perl-rest-client 281-1

Git Clone URL: https://aur.archlinux.org/perl-rest-client.git (read-only, click to copy)
Package Base: perl-rest-client
Description: A simple client for interacting with RESTful http/https resources
Upstream URL: https://metacpan.org/release/REST-Client
Licenses: GPL, PerlArtistic
Submitter: jnbek
Maintainer: Erroneous
Last Packager: Erroneous
Votes: 3
Popularity: 0.000001
First Submitted: 2015-09-16 18:00 (UTC)
Last Updated: 2022-06-21 14:08 (UTC)

Latest Comments

bidulock commented on 2021-07-06 02:02 (UTC)

I needed to make these changes:

diff --git a/PKGBUILD b/PKGBUILD
index 61fb8a2..5171156 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@

 pkgname='perl-rest-client'
 pkgver='273'
-pkgrel='1'
+pkgrel='1.1'
 pkgdesc="A simple client for interacting with RESTful http/https resources"
 arch=('any')
 license=('PerlArtistic' 'GPL')
 options=('!emptydirs')
 depends=('perl-lwp-protocol-https' 'perl-uri' 'perl-libwww' 'perl>=5.8.0')
-makedepends=('perl-cgi')
+makedepends=('perl-cgi' 'perl-module-install')
 url='https://metacpan.org/release/REST-Client'
 source=('http://search.cpan.org/CPAN/authors/id/K/KK/KKANE/REST-Client-273.tar.gz')
 md5sums=('776f74d063253b9e5d74b01adf97f060')
@@ -40,7 +40,7 @@ package() {
   cd "$srcdir/$_distdir"
   make install

-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+  find "$pkgdir" \( -name .packlist -o -name perllocal.pod \) -delete
 }

tuxayo commented on 2020-07-21 23:43 (UTC)

Rebuild needed after upgrade from perl 5.30 to 5.32

mikky commented on 2017-10-24 22:00 (UTC)

missing dependency: perl-module-install

jnbek commented on 2015-09-17 16:53 (UTC)

k

twouters commented on 2015-09-17 07:52 (UTC)

`make test` seems to fail when perl-cgi isn't installed. Can you add it as a build dependency?