[arch-commits] Commit in (libfetch)

2012-03-27 Thread Dan McGee
Date: Tuesday, March 27, 2012 @ 19:27:18
  Author: dan
Revision: 154408

Remove libfetch

Deleted:
  libfetch/



[arch-commits] Commit in libfetch/repos (core-x86_64)

2012-03-27 Thread Dan McGee
Date: Tuesday, March 27, 2012 @ 19:25:58
  Author: dan
Revision: 154407

db-remove: libfetch removed by dan

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686)

2012-03-27 Thread Dan McGee
Date: Tuesday, March 27, 2012 @ 19:25:51
  Author: dan
Revision: 154406

db-remove: libfetch removed by dan

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2011-04-23 Thread Dan McGee
Date: Saturday, April 23, 2011 @ 19:52:56
  Author: dan
Revision: 120473

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64)

2011-04-23 Thread Dan McGee
Date: Saturday, April 23, 2011 @ 19:52:56
  Author: dan
Revision: 120472

db-move: libfetch removed by dan for move to [core] (x86_64)

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2011-04-23 Thread Dan McGee
Date: Saturday, April 23, 2011 @ 19:52:55
  Author: dan
Revision: 120471

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (core-i686)

2011-04-23 Thread Dan McGee
Date: Saturday, April 23, 2011 @ 19:52:54
  Author: dan
Revision: 120470

db-move: libfetch removed by dan for move to [core] (i686)

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (testing-i686)

2011-04-22 Thread Dan McGee
Date: Friday, April 22, 2011 @ 19:37:14
  Author: dan
Revision: 120373

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2011-04-22 Thread Dan McGee
Date: Friday, April 22, 2011 @ 19:35:47
  Author: dan
Revision: 120372

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/trunk (PKGBUILD fetch-handle-temp-redirect.patch)

2011-04-22 Thread Dan McGee
Date: Friday, April 22, 2011 @ 19:35:40
  Author: dan
Revision: 120371

upgpkg: libfetch 2.33-3
fix 307 redirect being handled incorrectly

Added:
  libfetch/trunk/fetch-handle-temp-redirect.patch
Modified:
  libfetch/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 fetch-handle-temp-redirect.patch |   15 +++
 2 files changed, 21 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-22 22:02:15 UTC (rev 120370)
+++ PKGBUILD2011-04-22 23:35:40 UTC (rev 120371)
@@ -1,19 +1,21 @@
-# $Id$
+# $Id:$
 # Maintainer: Aaron Griffin 
 # Contributor: Xavier Chantry 
 
 pkgname=libfetch
 pkgver=2.33
-pkgrel=2
+pkgrel=3
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
 depends=('openssl>=1.0.0')
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
-ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
+ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz
+fetch-handle-temp-redirect.patch)
 md5sums=('7dffdd5a81bb32084a2f45e61f70dcf9'
- 'a176b94f7f30344ef8a71c047ca2136b')
+ 'a176b94f7f30344ef8a71c047ca2136b'
+ '2ee40d7e7d76c39ae5500d89075ef8a6')
 
 # keep an upgrade path for older installations
 PKGEXT='.pkg.tar.gz'

Added: fetch-handle-temp-redirect.patch
===
--- fetch-handle-temp-redirect.patch(rev 0)
+++ fetch-handle-temp-redirect.patch2011-04-22 23:35:40 UTC (rev 120371)
@@ -0,0 +1,15 @@
+Index: http.c
+===
+RCS file: /cvsroot/pkgsrc/net/libfetch/files/http.c,v
+retrieving revision 1.29
+diff -u -r1.29 http.c
+--- http.c 24 Jan 2010 19:10:35 -  1.29
 http.c 19 Apr 2011 13:29:04 -
+@@ -974,6 +974,7 @@
+   case HTTP_MOVED_PERM:
+   case HTTP_MOVED_TEMP:
+   case HTTP_SEE_OTHER:
++  case HTTP_TEMP_REDIRECT:
+   /*
+* Not so fine, but we still have to read the
+* headers to get the new location.



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

2011-01-05 Thread Dan McGee
Date: Wednesday, January 5, 2011 @ 11:07:05
  Author: dan
Revision: 104943

FS#22293 make Makefile honor CFLAGS/LDFLAGS, general cleanup

Modified:
  libfetch/trunk/Makefile
  libfetch/trunk/PKGBUILD

--+
 Makefile |   71 +
 PKGBUILD |4 +--
 2 files changed, 27 insertions(+), 48 deletions(-)

Modified: Makefile
===
--- Makefile2011-01-05 16:03:00 UTC (rev 104942)
+++ Makefile2011-01-05 16:07:05 UTC (rev 104943)
@@ -5,31 +5,23 @@
 FETCH_WITH_OPENSSL = true
 
 WARNINGS = -Wall -Wstrict-prototypes -Wsign-compare -Wchar-subscripts \
-  -Wpointer-arith -Wcast-align
-CFLAGS   = -O2 -pipe -I. -fPIC $(WARNINGS) \
-  -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES
+   -Wpointer-arith -Wcast-align
 
-CFLAGS += -DFTP_COMBINE_CWDS -DNETBSD
+CFLAGS  ?= -O2 -pipe
 
+CFLAGS  += -fPIC $(WARNINGS)
+CFLAGS  += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES
+CFLAGS  += -DFTP_COMBINE_CWDS -DNETBSD
+
 ifeq ($(strip $(FETCH_WITH_INET6)), true)
-CFLAGS+=   -DINET6
+CFLAGS  += -DINET6
 endif
 
 ifeq ($(strip $(FETCH_WITH_OPENSSL)), true)
-CFLAGS+=   -DWITH_SSL
-LDFLAGS=   -lssl -lcrypto
+CFLAGS  += -DWITH_SSL
+LDADD   += -Wl,-lssl -Wl,-lcrypto
 endif
 
-ifeq ($(strip $(DEBUG)), true)
-CFLAGS += -g -DDEBUG
-else
-CFLAGS += -UDEBUG
-endif
-
-CC = gcc
-LD = gcc
-AR = ar
-RANLIB = ranlib
 INSTALL = install -c -D
 
 OBJS= fetch.o common.o ftp.o http.o file.o
@@ -37,53 +29,40 @@
 GEN = ftperr.h httperr.h
 MAN = libdownload.3
 
-#pretty print!
-E = @/bin/echo
-Q = @
-
 all: libfetch.so libfetch.a
 .PHONY: all
 
 %.o: %.c $(INCS) $(GEN)
-   $(E) "  compile   " $@
-   $(Q) $(CC) $(CFLAGS) -c $<
+   $(CC) $(CFLAGS) -c $<
 
 ftperr.h: ftp.errors Makefile errlist.sh
-   $(E) "  generate  " $@
-   $(Q) ./errlist.sh ftp_errlist FTP ftp.errors > $@
+   ./errlist.sh ftp_errlist FTP ftp.errors > $@
 
 httperr.h: http.errors Makefile errlist.sh
-   $(E) "  generate  " $@
-   $(Q) ./errlist.sh http_errlist HTTP http.errors > $@
+   ./errlist.sh http_errlist HTTP http.errors > $@
 
 libfetch.so: $(GEN) $(INCS) $(OBJS)
-   $(E) "  build " $@
-   $(Q) rm -f $@
-   $(Q) $(LD) $(LDFLAGS) *.o -shared -o $@
-   $(E) "  built with:  " $(CFLAGS)
+   rm -f $@
+   $(CC) $(LDFLAGS) $(OBJS) $(LDADD) -shared -fPIC -o $@
 
 libfetch.a: $(GEN) $(INCS) $(OBJS)
-   $(E) "  build " $@
-   $(Q) rm -f $@
-   $(Q) $(AR) rcs $@ *.o
-   $(Q) $(RANLIB) $@
-   $(E) "  built with:  " $(CFLAGS)
+   rm -f $@
+   $(AR) rcs $@ $(OBJS)
 
 clean:
-   $(E) "  clean "
-   $(Q) rm -f libfetch.so libfetch.a *.o $(GEN)
+   rm -f libfetch.so libfetch.a *.o $(GEN)
 .PHONY: clean
 
 install: all
-   $(Q) $(INSTALL) -m 755 libfetch.so $(DESTDIR)$(prefix)/lib/libfetch.so
-   $(Q) $(INSTALL) -m 644 libfetch.a $(DESTDIR)$(prefix)/lib/libfetch.a
-   $(Q) $(INSTALL) -m 644 fetch.h $(DESTDIR)$(prefix)/include/fetch.h
-   $(Q) $(INSTALL) -m 644 fetch.3 
$(DESTDIR)$(prefix)/share/man/man3/fetch.3
+   $(INSTALL) -m 755 libfetch.so $(DESTDIR)$(prefix)/lib/libfetch.so
+   $(INSTALL) -m 644 libfetch.a $(DESTDIR)$(prefix)/lib/libfetch.a
+   $(INSTALL) -m 644 fetch.h $(DESTDIR)$(prefix)/include/fetch.h
+   $(INSTALL) -m 644 fetch.3 $(DESTDIR)$(prefix)/share/man/man3/fetch.3
 .PHONY: install
 
 uninstall:
-   $(Q) rm -f $(DESTDIR)$(prefix)/lib/libfetch.so
-   $(Q) rm -f $(DESTDIR)$(prefix)/lib/libfetch.a
-   $(Q) rm -f $(DESTDIR)$(prefix)/include/fetch.h
-   $(Q) rm -f $(DESTDIR)$(prefix)/share/man/man3/fetch.3
+   rm -f $(DESTDIR)$(prefix)/lib/libfetch.so
+   rm -f $(DESTDIR)$(prefix)/lib/libfetch.a
+   rm -f $(DESTDIR)$(prefix)/include/fetch.h
+   rm -f $(DESTDIR)$(prefix)/share/man/man3/fetch.3
 .PHONY: uninstall

Modified: PKGBUILD
===
--- PKGBUILD2011-01-05 16:03:00 UTC (rev 104942)
+++ PKGBUILD2011-01-05 16:07:05 UTC (rev 104943)
@@ -4,7 +4,7 @@
 
 pkgname=libfetch
 pkgver=2.33
-pkgrel=1
+pkgrel=2
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -12,7 +12,7 @@
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5167d18db7660228e75290fc7d25fe56'
+md5sums=('7dffdd5a81bb32084a2f45e61f70dcf9'
  'a176b94f7f30344ef8a71c047ca2136b')
 
 # keep an upgrade path for older installations



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2010-08-25 Thread Dan McGee
Date: Wednesday, August 25, 2010 @ 08:43:17
  Author: dan
Revision: 88872

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64)

2010-08-25 Thread Dan McGee
Date: Wednesday, August 25, 2010 @ 08:43:15
  Author: dan
Revision: 88871

db-move: libfetch removed by dan for move to [core] (x86_64)

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2010-08-25 Thread Dan McGee
Date: Wednesday, August 25, 2010 @ 08:43:13
  Author: dan
Revision: 88870

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (core-i686)

2010-08-25 Thread Dan McGee
Date: Wednesday, August 25, 2010 @ 08:43:12
  Author: dan
Revision: 88869

db-move: libfetch removed by dan for move to [core] (i686)

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-08-23 Thread Dan McGee
Date: Monday, August 23, 2010 @ 18:46:39
  Author: dan
Revision: 88478

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-08-23 Thread Dan McGee
Date: Monday, August 23, 2010 @ 17:41:37
  Author: dan
Revision: 88466

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



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

2010-08-23 Thread Dan McGee
Date: Monday, August 23, 2010 @ 17:41:23
  Author: dan
Revision: 88465

verbump, upstream fixed FS#20371

Modified:
  libfetch/trunk/Makefile
  libfetch/trunk/PKGBUILD

--+
 Makefile |7 ---
 PKGBUILD |6 +++---
 2 files changed, 7 insertions(+), 6 deletions(-)

Modified: Makefile
===
--- Makefile2010-08-23 18:58:46 UTC (rev 88464)
+++ Makefile2010-08-23 21:41:23 UTC (rev 88465)
@@ -42,18 +42,17 @@
 Q = @
 
 all: libfetch.so libfetch.a
-   $(E) "  built with:  " $(CFLAGS)
 .PHONY: all
 
 %.o: %.c $(INCS) $(GEN)
$(E) "  compile   " $@
$(Q) $(CC) $(CFLAGS) -c $<
 
-ftperr.h: ftp.errors
+ftperr.h: ftp.errors Makefile errlist.sh
$(E) "  generate  " $@
$(Q) ./errlist.sh ftp_errlist FTP ftp.errors > $@
 
-httperr.h: http.errors
+httperr.h: http.errors Makefile errlist.sh
$(E) "  generate  " $@
$(Q) ./errlist.sh http_errlist HTTP http.errors > $@
 
@@ -61,12 +60,14 @@
$(E) "  build " $@
$(Q) rm -f $@
$(Q) $(LD) $(LDFLAGS) *.o -shared -o $@
+   $(E) "  built with:  " $(CFLAGS)
 
 libfetch.a: $(GEN) $(INCS) $(OBJS)
$(E) "  build " $@
$(Q) rm -f $@
$(Q) $(AR) rcs $@ *.o
$(Q) $(RANLIB) $@
+   $(E) "  built with:  " $(CFLAGS)
 
 clean:
$(E) "  clean "

Modified: PKGBUILD
===
--- PKGBUILD2010-08-23 18:58:46 UTC (rev 88464)
+++ PKGBUILD2010-08-23 21:41:23 UTC (rev 88465)
@@ -3,7 +3,7 @@
 # Contributor: Xavier Chantry 
 
 pkgname=libfetch
-pkgver=2.32
+pkgver=2.33
 pkgrel=1
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('bb6c1fb99633ff3bea83cab0c3fdb394'
- '8959b76cfda4d5cc4fa463e05cddeb25')
+md5sums=('5167d18db7660228e75290fc7d25fe56'
+ 'a176b94f7f30344ef8a71c047ca2136b')
 
 # keep an upgrade path for older installations
 PKGEXT='.pkg.tar.gz'



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2010-06-21 Thread Dan McGee
Date: Monday, June 21, 2010 @ 08:31:11
  Author: dan
Revision: 83357

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64)

2010-06-21 Thread Dan McGee
Date: Monday, June 21, 2010 @ 08:31:09
  Author: dan
Revision: 83356

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2010-06-21 Thread Dan McGee
Date: Monday, June 21, 2010 @ 08:31:02
  Author: dan
Revision: 83355

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (core-i686)

2010-06-21 Thread Dan McGee
Date: Monday, June 21, 2010 @ 08:31:00
  Author: dan
Revision: 83354

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-06-20 Thread Dan McGee
Date: Sunday, June 20, 2010 @ 12:52:45
  Author: dan
Revision: 83014

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-06-20 Thread Dan McGee
Date: Sunday, June 20, 2010 @ 12:48:26
  Author: dan
Revision: 83009

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



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

2010-06-20 Thread Dan McGee
Date: Sunday, June 20, 2010 @ 12:48:14
  Author: dan
Revision: 83008

upgpkg: libfetch 2.32-1
verbump 2.32, add license file, add package()

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-20 15:44:10 UTC (rev 83007)
+++ PKGBUILD2010-06-20 16:48:14 UTC (rev 83008)
@@ -3,7 +3,7 @@
 # Contributor: Xavier Chantry 
 
 pkgname=libfetch
-pkgver=2.31
+pkgver=2.32
 pkgrel=1
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('bb6c1fb99633ff3bea83cab0c3fdb394'
- '4c1bd75daeaf014cd79da097a2d794b1')
+ '8959b76cfda4d5cc4fa463e05cddeb25')
 
 # keep an upgrade path for older installations
 PKGEXT='.pkg.tar.gz'
@@ -32,8 +32,15 @@
 }
 
 build() {
-  cd $srcdir/${pkgname}-${pkgver}
+  cd $srcdir/$pkgname-$pkgver
   cp $srcdir/Makefile .
   make || return 1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
+  licdir=$pkgdir/usr/share/licenses/libfetch/
+  mkdir -p $licdir
+  sed -n -e '/Copyright (c)/,/SUCH DAMAGE\./p' common.c | cut -c '4-' > 
$licdir/LICENSE
 }



[arch-commits] Commit in libfetch/repos (core-x86_64)

2010-06-03 Thread Dan McGee
Date: Thursday, June 3, 2010 @ 08:56:35
  Author: dan
Revision: 81787

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2010-06-03 Thread Dan McGee
Date: Thursday, June 3, 2010 @ 08:56:36
  Author: dan
Revision: 81788

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2010-06-03 Thread Dan McGee
Date: Thursday, June 3, 2010 @ 08:56:27
  Author: dan
Revision: 81786

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (core-i686)

2010-06-03 Thread Dan McGee
Date: Thursday, June 3, 2010 @ 08:56:27
  Author: dan
Revision: 81785

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-06-02 Thread Dan McGee
Date: Wednesday, June 2, 2010 @ 09:20:35
  Author: dan
Revision: 81731

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



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

2010-06-02 Thread Dan McGee
Date: Wednesday, June 2, 2010 @ 09:20:17
  Author: dan
Revision: 81730

upgpkg: libfetch 2.31-1
verbump

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-02 13:16:46 UTC (rev 81729)
+++ PKGBUILD2010-06-02 13:20:17 UTC (rev 81730)
@@ -33,7 +33,7 @@
 
 build() {
   cd $srcdir/${pkgname}-${pkgver}
-  cp ../Makefile .
+  cp $srcdir/Makefile .
   make || return 1
   make DESTDIR=$pkgdir install
 }



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

2010-06-01 Thread Pierre Schmitz
Date: Tuesday, June 1, 2010 @ 20:15:35
  Author: pierre
Revision: 81605

revert last commit

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-01 22:47:58 UTC (rev 81604)
+++ PKGBUILD2010-06-02 00:15:35 UTC (rev 81605)
@@ -4,11 +4,11 @@
 
 pkgname=libfetch
 pkgver=2.31
-pkgrel=2
+pkgrel=1
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
-depends=('openssl>=1.0.0a')
+depends=('openssl>=1.0.0')
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)



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

2010-06-01 Thread Pierre Schmitz
Date: Tuesday, June 1, 2010 @ 14:44:28
  Author: pierre
Revision: 81597

prepare openssl 1.0.0a rebuild

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-01 18:32:43 UTC (rev 81596)
+++ PKGBUILD2010-06-01 18:44:28 UTC (rev 81597)
@@ -4,11 +4,11 @@
 
 pkgname=libfetch
 pkgver=2.31
-pkgrel=1
+pkgrel=2
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
-depends=('openssl>=1.0.0')
+depends=('openssl>=1.0.0a')
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-05-31 Thread Dan McGee
Date: Monday, May 31, 2010 @ 12:09:28
  Author: dan
Revision: 81523

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



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

2010-05-31 Thread Dan McGee
Date: Monday, May 31, 2010 @ 12:09:15
  Author: dan
Revision: 81522

upgpkg: libfetch 2.31-1
verbump 2.31

Modified:
  libfetch/trunk/Makefile
  libfetch/trunk/PKGBUILD

--+
 Makefile |2 +-
 PKGBUILD |8 
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: Makefile
===
--- Makefile2010-05-31 12:22:59 UTC (rev 81521)
+++ Makefile2010-05-31 16:09:15 UTC (rev 81522)
@@ -5,7 +5,7 @@
 FETCH_WITH_OPENSSL = true
 
 WARNINGS = -Wall -Wstrict-prototypes -Wsign-compare -Wchar-subscripts \
-  -Wpointer-arith -Wcast-align -Wsign-compare
+  -Wpointer-arith -Wcast-align
 CFLAGS   = -O2 -pipe -I. -fPIC $(WARNINGS) \
   -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES
 

Modified: PKGBUILD
===
--- PKGBUILD2010-05-31 12:22:59 UTC (rev 81521)
+++ PKGBUILD2010-05-31 16:09:15 UTC (rev 81522)
@@ -3,8 +3,8 @@
 # Contributor: Xavier Chantry 
 
 pkgname=libfetch
-pkgver=2.30
-pkgrel=3
+pkgver=2.31
+pkgrel=1
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -12,8 +12,8 @@
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('cea609a8d6fd97761e364f7203e6d609'
- 'ffa85bc269144d5e86ca6f81c5dc5ca5')
+md5sums=('bb6c1fb99633ff3bea83cab0c3fdb394'
+ '4c1bd75daeaf014cd79da097a2d794b1')
 
 # keep an upgrade path for older installations
 PKGEXT='.pkg.tar.gz'



[arch-commits] Commit in libfetch/repos (core-x86_64)

2010-04-08 Thread Pierre Schmitz
Date: Thursday, April 8, 2010 @ 16:29:22
  Author: pierre
Revision: 76215

db-move: libfetch removed by pierre for move to core

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2010-04-08 Thread Pierre Schmitz
Date: Thursday, April 8, 2010 @ 16:29:23
  Author: pierre
Revision: 76216

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2010-04-08 Thread Pierre Schmitz
Date: Thursday, April 8, 2010 @ 16:27:51
  Author: pierre
Revision: 76184

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (core-i686)

2010-04-08 Thread Pierre Schmitz
Date: Thursday, April 8, 2010 @ 16:27:50
  Author: pierre
Revision: 76183

db-move: libfetch removed by pierre for move to core

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-03-31 Thread Allan McRae
Date: Wednesday, March 31, 2010 @ 23:34:17
  Author: allan
Revision: 75232

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-03-31 Thread Allan McRae
Date: Wednesday, March 31, 2010 @ 23:33:50
  Author: allan
Revision: 75231

archrelease: remove testing-x86_64

Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-03-31 Thread Allan McRae
Date: Wednesday, March 31, 2010 @ 23:33:38
  Author: allan
Revision: 75230

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-03-31 Thread Allan McRae
Date: Wednesday, March 31, 2010 @ 23:33:11
  Author: allan
Revision: 75229

archrelease: remove testing-i686

Deleted:
  libfetch/repos/testing-i686/



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

2010-03-31 Thread Allan McRae
Date: Wednesday, March 31, 2010 @ 23:32:58
  Author: allan
Revision: 75228

upgpkg: libfetch 2.30-3
version dep openssl

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 03:19:33 UTC (rev 75227)
+++ PKGBUILD2010-04-01 03:32:58 UTC (rev 75228)
@@ -4,11 +4,11 @@
 
 pkgname=libfetch
 pkgver=2.30
-pkgrel=2
+pkgrel=3
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
-depends=('openssl')
+depends=('openssl>=1.0.0')
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-03-31 Thread Pierre Schmitz
Date: Wednesday, March 31, 2010 @ 21:35:35
  Author: pierre
Revision: 75174

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-03-31 Thread Pierre Schmitz
Date: Wednesday, March 31, 2010 @ 21:35:11
  Author: pierre
Revision: 75173

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



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

2010-03-31 Thread Pierre Schmitz
Date: Wednesday, March 31, 2010 @ 21:34:51
  Author: pierre
Revision: 75172

upgpkg: libfetch 2.30-2
openssl/heimdal rebuild

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-01 01:34:04 UTC (rev 75171)
+++ PKGBUILD2010-04-01 01:34:51 UTC (rev 75172)
@@ -4,7 +4,7 @@
 
 pkgname=libfetch
 pkgver=2.30
-pkgrel=1
+pkgrel=2
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -12,6 +12,8 @@
 url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/";
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('cea609a8d6fd97761e364f7203e6d609'
+ 'ffa85bc269144d5e86ca6f81c5dc5ca5')
 
 # keep an upgrade path for older installations
 PKGEXT='.pkg.tar.gz'
@@ -35,6 +37,3 @@
   make || return 1
   make DESTDIR=$pkgdir install
 }
-
-md5sums=('cea609a8d6fd97761e364f7203e6d609'
- 'ffa85bc269144d5e86ca6f81c5dc5ca5')



[arch-commits] Commit in libfetch/repos (core-x86_64 testing-x86_64)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:10:41
  Author: dan
Revision: 70783

db-move: moved libfetch from [testing] to [core] (x86_64)

Added:
  libfetch/repos/core-x86_64/
Deleted:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (core-x86_64)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:10:41
  Author: dan
Revision: 70782

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-x86_64/



[arch-commits] Commit in libfetch/repos (core-i686)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:09:57
  Author: dan
Revision: 70780

db-move: libfetch removed by dan for move to core

Deleted:
  libfetch/repos/core-i686/



[arch-commits] Commit in libfetch/repos (core-i686 testing-i686)

2010-02-28 Thread Dan McGee
Date: Sunday, February 28, 2010 @ 20:09:58
  Author: dan
Revision: 70781

db-move: moved libfetch from [testing] to [core] (i686)

Added:
  libfetch/repos/core-i686/
Deleted:
  libfetch/repos/testing-i686/



[arch-commits] Commit in libfetch/repos (testing-x86_64)

2010-02-26 Thread Dan McGee
Date: Friday, February 26, 2010 @ 23:55:07
  Author: dan
Revision: 70517

archrelease: copy trunk to testing-x86_64

Added:
  libfetch/repos/testing-x86_64/



[arch-commits] Commit in libfetch/repos (testing-i686)

2010-02-26 Thread Dan McGee
Date: Friday, February 26, 2010 @ 20:16:04
  Author: dan
Revision: 70498

archrelease: copy trunk to testing-i686

Added:
  libfetch/repos/testing-i686/



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

2010-02-26 Thread Dan McGee
Date: Friday, February 26, 2010 @ 20:15:53
  Author: dan
Revision: 70497

upgpkg: libfetch 2.30-1
version bump to 2.30

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-27 00:41:56 UTC (rev 70496)
+++ PKGBUILD2010-02-27 01:15:53 UTC (rev 70497)
@@ -3,7 +3,7 @@
 # Contributor: Xavier Chantry 
 
 pkgname=libfetch
-pkgver=2.26
+pkgver=2.30
 pkgrel=1
 pkgdesc="URL based download library"
 arch=('i686' 'x86_64')
@@ -38,4 +38,4 @@
 }
 
 md5sums=('cea609a8d6fd97761e364f7203e6d609'
- '2dc53c0b5480d3dd5157482379820806')
+ 'ffa85bc269144d5e86ca6f81c5dc5ca5')



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

2010-02-21 Thread Pierre Schmitz
Date: Sunday, February 21, 2010 @ 21:24:53
  Author: pierre
Revision: 69710

keep .pkg.tar.gz for a while

Modified:
  libfetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-22 02:24:37 UTC (rev 69709)
+++ PKGBUILD2010-02-22 02:24:53 UTC (rev 69710)
@@ -14,6 +14,9 @@
 source=(Makefile
 ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
 
+# keep an upgrade path for older installations
+PKGEXT='.pkg.tar.gz'
+
 # source PKGBUILD && mksource
 mksource() {
   export CVSROOT=:pserver:anon...@anoncvs.netbsd.org:/cvsroot