[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2020-05-18 Thread Thore Bödecker via arch-commits
Date: Monday, May 18, 2020 @ 15:18:38
  Author: foxxx0
Revision: 629555

upgpkg: perl-io-stringy 2.113-1

update to upstream release 2.113
buildinfo format 1 (re)build

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-18 15:18:13 UTC (rev 629554)
+++ PKGBUILD2020-05-18 15:18:38 UTC (rev 629555)
@@ -3,8 +3,9 @@
 # Contributor: François Charette 
 
 pkgname=perl-io-stringy
-pkgver=2.111
-pkgrel=3
+_pkgname='IO-Stringy'
+pkgver=2.113
+pkgrel=1
 pkgdesc="I/O on in-core objects like strings/arrays"
 arch=('any')
 url="https://metacpan.org/pod/IO::Stringy;
@@ -11,22 +12,22 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl')
 options=('!emptydirs')
-source=("https://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-${pkgver}.tar.gz;)
 
-sha512sums=('9da8fb03945bc4a59cea3b3b2e22b15d56b133470e581d1cb03920bda2b4953e3c9e4a25d095ed8a384efb5a4c58db437c92cca6a81d583791191f1a37691a4a')
+source=("https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5af104766c20b4336649dc4a19554ad204506c2476b4bf7d8ad7c2cfab15f0296efadb9019cd57e770a2a3c5f5686f7f010bddbd6efd51d300c54ca36286f094')
 
 build() {
-  cd  "${srcdir}/IO-stringy-${pkgver}"
+  cd  "${srcdir}/${_pkgname}-${pkgver}"
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 check() {
-  cd  "${srcdir}/IO-stringy-${pkgver}"
+  cd  "${srcdir}/${_pkgname}-${pkgver}"
   make test
 }
 
 package() {
-  cd  "${srcdir}/IO-stringy-${pkgver}"
+  cd  "${srcdir}/${_pkgname}-${pkgver}"
   make install DESTDIR="${pkgdir}"
 
   find "${pkgdir}" -name '.packlist' -delete


[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2019-09-24 Thread Thore Bödecker via arch-commits
Date: Tuesday, September 24, 2019 @ 10:31:06
  Author: foxxx0
Revision: 511643

fix unquoted variables

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-24 09:28:50 UTC (rev 511642)
+++ PKGBUILD2019-09-24 10:31:06 UTC (rev 511643)
@@ -29,6 +29,6 @@
   cd  "${srcdir}/IO-stringy-${pkgver}"
   make install DESTDIR="${pkgdir}"
 
-  find ${pkgdir} -name '.packlist' -delete
-  find ${pkgdir} -name '*.pod' -delete
+  find "${pkgdir}" -name '.packlist' -delete
+  find "${pkgdir}" -name '*.pod' -delete
 }


[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2018-01-08 Thread Thore Bödecker via arch-commits
Date: Monday, January 8, 2018 @ 15:17:32
  Author: foxxx0
Revision: 280538

upgpkg: perl-io-stringy 2.111-3

use https

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-08 15:14:04 UTC (rev 280537)
+++ PKGBUILD2018-01-08 15:17:32 UTC (rev 280538)
@@ -1,18 +1,19 @@
 # $Id$
-# Maintainer: Giovanni Scafora 
+# Maintainer: Thore Bödecker 
+# Contributor: Giovanni Scafora 
 # Contributor: François Charette 
 
 pkgname=perl-io-stringy
 pkgver=2.111
-pkgrel=2
+pkgrel=3
 pkgdesc="I/O on in-core objects like strings/arrays"
 arch=('any')
-url="http://search.cpan.org/dist/IO-stringy;
+url="https://metacpan.org/pod/IO::Stringy;
 license=('GPL' 'PerlArtistic')
 depends=('perl')
 options=('!emptydirs')
-source=("http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-$pkgver.tar.gz;)
 
-md5sums=('e91acf0a800b190d13585a47de775bdd')
+source=("https://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-${pkgver}.tar.gz;)
 
+sha512sums=('9da8fb03945bc4a59cea3b3b2e22b15d56b133470e581d1cb03920bda2b4953e3c9e4a25d095ed8a384efb5a4c58db437c92cca6a81d583791191f1a37691a4a')
 
 build() {
   cd  "${srcdir}/IO-stringy-${pkgver}"


[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2017-06-01 Thread Florian Pritz
Date: Thursday, June 1, 2017 @ 09:10:42
  Author: bluewind
Revision: 297143

Perl 5.26 rebuild

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-01 09:10:39 UTC (rev 297142)
+++ PKGBUILD2017-06-01 09:10:42 UTC (rev 297143)
@@ -4,7 +4,7 @@
 
 pkgname=perl-io-stringy
 pkgver=2.111
-pkgrel=1
+pkgrel=2
 pkgdesc="I/O on in-core objects like strings/arrays"
 arch=('any')
 url="http://search.cpan.org/dist/IO-stringy;


[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2015-08-04 Thread Giovanni Scafora
Date: Tuesday, August 4, 2015 @ 09:07:38
  Author: giovanni
Revision: 243013

upgpkg: perl-io-stringy 2.111-1

upstream release

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-04 07:02:23 UTC (rev 243012)
+++ PKGBUILD2015-08-04 07:07:38 UTC (rev 243013)
@@ -3,8 +3,8 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-io-stringy
-pkgver=2.110
-pkgrel=10
+pkgver=2.111
+pkgrel=1
 pkgdesc=I/O on in-core objects like strings/arrays
 arch=('any')
 url=http://search.cpan.org/dist/IO-stringy;
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-$pkgver.tar.gz;) 
-md5sums=('2e6a976cfa5521e815c1fdf4006982de')
+md5sums=('e91acf0a800b190d13585a47de775bdd')
 
 build() {
   cd  ${srcdir}/IO-stringy-${pkgver}


[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2014-07-03 Thread Felix Yan
Date: Friday, July 4, 2014 @ 06:13:44
  Author: fyan
Revision: 216461

upgpkg: perl-io-stringy 2.110-10

mtree rebuild

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-04 04:12:10 UTC (rev 216460)
+++ PKGBUILD2014-07-04 04:13:44 UTC (rev 216461)
@@ -4,7 +4,7 @@
 
 pkgname=perl-io-stringy
 pkgver=2.110
-pkgrel=9
+pkgrel=10
 pkgdesc=I/O on in-core objects like strings/arrays
 arch=('any')
 url=http://search.cpan.org/dist/IO-stringy;



[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2011-11-30 Thread Giovanni Scafora
Date: Wednesday, November 30, 2011 @ 16:28:59
  Author: giovanni
Revision: 143930

upgpkg: perl-io-stringy 2.110-9

rebuild

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-30 21:23:50 UTC (rev 143929)
+++ PKGBUILD2011-11-30 21:28:59 UTC (rev 143930)
@@ -4,20 +4,24 @@
 
 pkgname=perl-io-stringy
 pkgver=2.110
-pkgrel=8
+pkgrel=9
 pkgdesc=I/O on in-core objects like strings/arrays
 arch=('any')
 url=http://search.cpan.org/dist/IO-stringy;
 license=('GPL' 'PerlArtistic')
 depends=('perl')
 options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-$pkgver.tar.gz) 
+source=(http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-$pkgver.tar.gz;)
 
 md5sums=('2e6a976cfa5521e815c1fdf4006982de')
 
 build() {
   cd  ${srcdir}/IO-stringy-${pkgver}
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
+}
+
+check() {
+  cd  ${srcdir}/IO-stringy-${pkgver}
   make test
 }
 



[arch-commits] Commit in perl-io-stringy/trunk (PKGBUILD)

2010-12-24 Thread Kevin Piché
Date: Friday, December 24, 2010 @ 15:47:14
  Author: kevin
Revision: 103980

upgpkg: perl-io-stringy 2.110-8
Rebuilt for perl 5.12.2 and changed arch to any

Modified:
  perl-io-stringy/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-24 20:42:11 UTC (rev 103979)
+++ PKGBUILD2010-12-24 20:47:14 UTC (rev 103980)
@@ -4,9 +4,9 @@
 
 pkgname=perl-io-stringy
 pkgver=2.110
-pkgrel=7
+pkgrel=8
 pkgdesc=I/O on in-core objects like strings/arrays
-arch=('i686' 'x86_64')
+arch=('any')
 url=http://search.cpan.org/dist/IO-stringy;
 license=('GPL' 'PerlArtistic')
 depends=('perl')
@@ -16,10 +16,14 @@
 
 build() {
   cd  ${srcdir}/IO-stringy-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+  make test
+}
 
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 
-  make || return 1
-  make install DESTDIR=${pkgdir} || return 1
+package() {
+  cd  ${srcdir}/IO-stringy-${pkgver}
+  make install DESTDIR=${pkgdir}
 
   find ${pkgdir} -name '.packlist' -delete
   find ${pkgdir} -name '*.pod' -delete