[arch-commits] Commit in snarf/trunk (PKGBUILD)

2020-05-16 Thread Evangelos Foutras via arch-commits
Date: Saturday, May 16, 2020 @ 09:07:54
  Author: foutrelis
Revision: 383767

upgpkg: snarf 7.0-8: reproducibility rebuild

Modified:
  snarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-16 09:07:26 UTC (rev 383766)
+++ PKGBUILD2020-05-16 09:07:54 UTC (rev 383767)
@@ -2,7 +2,7 @@
 
 pkgname=snarf
 pkgver=7.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Command-line URL retrieval tool (http/ftp/gopher)"
 arch=('x86_64')
 url="https://www.xach.com/snarf/;


[arch-commits] Commit in snarf/trunk (PKGBUILD)

2019-09-15 Thread Antonio Rojas via arch-commits
Date: Sunday, September 15, 2019 @ 14:15:47
  Author: arojas
Revision: 362916

https

Modified:
  snarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 14:14:49 UTC (rev 362915)
+++ PKGBUILD2019-09-15 14:15:47 UTC (rev 362916)
@@ -8,7 +8,7 @@
 url="https://www.xach.com/snarf/;
 license=('GPL')
 depends=('glibc')
-source=(http://www.xach.com/snarf/download/source/${pkgname}-${pkgver}.tar.gz)
+source=(https://www.xach.com/snarf/download/source/${pkgname}-${pkgver}.tar.gz)
 md5sums=('7470d8457bc0d347b5cd8668c9e735c4')
 
 build() {


[arch-commits] Commit in snarf/trunk (PKGBUILD)

2019-04-12 Thread Antonio Rojas via arch-commits
Date: Friday, April 12, 2019 @ 18:35:00
  Author: arojas
Revision: 350654

https

Modified:
  snarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-12 18:33:59 UTC (rev 350653)
+++ PKGBUILD2019-04-12 18:35:00 UTC (rev 350654)
@@ -5,7 +5,7 @@
 pkgrel=7
 pkgdesc="Command-line URL retrieval tool (http/ftp/gopher)"
 arch=('x86_64')
-url="http://www.xach.com/snarf/;
+url="https://www.xach.com/snarf/;
 license=('GPL')
 depends=('glibc')
 source=(http://www.xach.com/snarf/download/source/${pkgname}-${pkgver}.tar.gz)


[arch-commits] Commit in snarf/trunk (PKGBUILD)

2018-05-30 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 30, 2018 @ 19:54:09
  Author: jelle
Revision: 325201

upgpkg: snarf 7.0-7

BUILDINFO rebuild

Modified:
  snarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-30 19:48:35 UTC (rev 325200)
+++ PKGBUILD2018-05-30 19:54:09 UTC (rev 325201)
@@ -3,7 +3,7 @@
 
 pkgname=snarf
 pkgver=7.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Command-line URL retrieval tool (http/ftp/gopher)"
 arch=('x86_64')
 url="http://www.xach.com/snarf/;
@@ -14,7 +14,7 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+  export CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
   ./configure --prefix=/usr --mandir=/usr/share/man
   make
 }


[arch-commits] Commit in snarf/trunk (PKGBUILD)

2014-03-27 Thread Eric BĂ©langer
Date: Thursday, March 27, 2014 @ 21:23:39
  Author: eric
Revision: 208879

upgpkg: snarf 7.0-6

Fix build issue (close FS#39159), Clean up PKGBUILD

Modified:
  snarf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-27 20:06:34 UTC (rev 208878)
+++ PKGBUILD2014-03-27 20:23:39 UTC (rev 208879)
@@ -1,24 +1,25 @@
 # $Id$
 # Maintainer:
-# Contributor: Judd Vinet jvi...@zeroflux.org
 
 pkgname=snarf
 pkgver=7.0
-pkgrel=5
+pkgrel=6
 pkgdesc=Command-line URL retrieval tool (http/ftp/gopher)
 arch=('i686' 'x86_64')
 url=http://www.xach.com/snarf/;
 license=('GPL')
+depends=('glibc')
 source=(http://www.xach.com/snarf/download/source/${pkgname}-${pkgver}.tar.gz)
 md5sums=('7470d8457bc0d347b5cd8668c9e735c4')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
   ./configure --prefix=/usr --mandir=/usr/share/man
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install || return 1
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in snarf/trunk (PKGBUILD)

2012-02-17 Thread Allan McRae
Date: Friday, February 17, 2012 @ 06:29:14
  Author: allan
Revision: 150393

upgpkg: snarf 7.0-5

signing rebuild

Modified:
  snarf/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-17 11:26:19 UTC (rev 150392)
+++ PKGBUILD2012-02-17 11:29:14 UTC (rev 150393)
@@ -1,20 +1,24 @@
 # $Id$
-# Maintainer: dorphell dorph...@archlinux.org
-# Committer: Judd Vinet jvi...@zeroflux.org
+# Maintainer:
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
 pkgname=snarf
 pkgver=7.0
-pkgrel=4
+pkgrel=5
 pkgdesc=Command-line URL retrieval tool (http/ftp/gopher)
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://www.xach.com/snarf/;
 license=('GPL')
-depends=('glibc')
 source=(http://www.xach.com/snarf/download/source/${pkgname}-${pkgver}.tar.gz)
 md5sums=('7470d8457bc0d347b5cd8668c9e735c4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man || return 1
-  make || return 1
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install || return 1
 }