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

2020-08-22 Thread Andreas Radke via arch-commits
Date: Saturday, August 22, 2020 @ 19:05:50
  Author: andyrtr
Revision: 394549

upgpkg: lftp 4.9.2-1: upstream update 4.9.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-22 07:36:38 UTC (rev 394548)
+++ PKGBUILD2020-08-22 19:05:50 UTC (rev 394549)
@@ -2,7 +2,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.9.1
+pkgver=4.9.2
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('5969fcaefd102955dd882f3bcd8962198bc537224749ed92f206f415207a024b'
+sha256sums=('c517c4f4f9c39bd415d7313088a2b1e313b2d386867fe40b7692b83a20f0670d'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2020-01-18 Thread Andreas Radke via arch-commits
Date: Saturday, January 18, 2020 @ 16:29:41
  Author: andyrtr
Revision: 373681

upgpkg: lftp 4.9.1-1: upstream update 4.9.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-18 16:18:13 UTC (rev 373680)
+++ PKGBUILD2020-01-18 16:29:41 UTC (rev 373681)
@@ -2,7 +2,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.9.0
+pkgver=4.9.1
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('0b3b659e1969a31827a25861c01ccf71ac6d3f20ee256bdf6999d653e031a24e'
+sha256sums=('5969fcaefd102955dd882f3bcd8962198bc537224749ed92f206f415207a024b'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2019-12-22 Thread Andreas Radke via arch-commits
Date: Sunday, December 22, 2019 @ 11:01:56
  Author: andyrtr
Revision: 372068

upgpkg: lftp 4.9.0-1: upstream update 4.9.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-22 03:46:10 UTC (rev 372067)
+++ PKGBUILD2019-12-22 11:01:56 UTC (rev 372068)
@@ -2,8 +2,8 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.8.4
-pkgrel=5
+pkgver=4.9.0
+pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
 license=('GPL3')
@@ -12,7 +12,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('4ebc271e9e5cea84a683375a0f7e91086e5dac90c5d51bb3f169f75386107a62'
+sha256sums=('0b3b659e1969a31827a25861c01ccf71ac6d3f20ee256bdf6999d653e031a24e'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2019-09-23 Thread Andreas Radke via arch-commits
Date: Monday, September 23, 2019 @ 19:38:40
  Author: andyrtr
Revision: 363305

fix quoting

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-23 19:37:21 UTC (rev 363304)
+++ PKGBUILD2019-09-23 19:38:40 UTC (rev 363305)
@@ -17,7 +17,7 @@
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}"-${pkgver}
   ./configure --prefix=/usr \
 --with-gnutls \
 --without-openssl \
@@ -27,7 +27,7 @@
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/lib
+  cd "${pkgname}"-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/lib
 }


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

2019-02-09 Thread Felix Yan via arch-commits
Date: Sunday, February 10, 2019 @ 02:55:55
  Author: felixonmars
Revision: 345807

libidn2 2.1.1 rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-10 02:55:09 UTC (rev 345806)
+++ PKGBUILD2019-02-10 02:55:55 UTC (rev 345807)
@@ -3,7 +3,7 @@
 
 pkgname=lftp
 pkgver=4.8.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
 license=('GPL3')


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

2019-01-13 Thread Evangelos Foutras via arch-commits
Date: Sunday, January 13, 2019 @ 21:15:48
  Author: foutrelis
Revision: 344015

libidn2 2.1.0 rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-13 21:15:04 UTC (rev 344014)
+++ PKGBUILD2019-01-13 21:15:48 UTC (rev 344015)
@@ -3,7 +3,7 @@
 
 pkgname=lftp
 pkgver=4.8.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
 license=('GPL3')


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

2019-01-11 Thread Felix Yan via arch-commits
Date: Friday, January 11, 2019 @ 08:13:43
  Author: felixonmars
Revision: 343587

Readline 8.0 rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 08:10:03 UTC (rev 343586)
+++ PKGBUILD2019-01-11 08:13:43 UTC (rev 343587)
@@ -3,7 +3,7 @@
 
 pkgname=lftp
 pkgver=4.8.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
 license=('GPL3')


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

2018-09-19 Thread Andreas Radke via arch-commits
Date: Wednesday, September 19, 2018 @ 19:32:30
  Author: andyrtr
Revision: 335022

upgpkg: lftp 4.8.4-2

drop unneeded libidn dependency, it actually links to libidn2 - FS#60085

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-19 19:26:45 UTC (rev 335021)
+++ PKGBUILD2018-09-19 19:32:30 UTC (rev 335022)
@@ -3,11 +3,11 @@
 
 pkgname=lftp
 pkgver=4.8.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline' 'gnutls' 'libidn' 'expat' 'sh' 
'hicolor-icon-theme')
+depends=('gcc-libs' 'readline' 'gnutls' 'expat' 'sh' 'hicolor-icon-theme')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')


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

2018-08-05 Thread Andreas Radke via arch-commits
Date: Sunday, August 5, 2018 @ 18:21:09
  Author: andyrtr
Revision: 330620

upgpkg: lftp 4.8.4-1

upstream update 4.8.4

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-05 18:16:42 UTC (rev 330619)
+++ PKGBUILD2018-08-05 18:21:09 UTC (rev 330620)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.8.3
+pkgver=4.8.4
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('de7aee451afaa1aa391f7076b5f602922c2da0e05524a8d8fea413eda83cc78b'
+sha256sums=('4ebc271e9e5cea84a683375a0f7e91086e5dac90c5d51bb3f169f75386107a62'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-10-09 Thread Andreas Radke
Date: Monday, October 9, 2017 @ 19:12:11
  Author: andyrtr
Revision: 307233

upgpkg: lftp 4.8.3-1

upstream update 4.8.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-09 19:04:34 UTC (rev 307232)
+++ PKGBUILD2017-10-09 19:12:11 UTC (rev 307233)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.8.2
+pkgver=4.8.3
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('5c875b8476e05e856ebc8eec458e43317b2bebd6ed5f7725a733d4591548cd9c'
+sha256sums=('de7aee451afaa1aa391f7076b5f602922c2da0e05524a8d8fea413eda83cc78b'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-09-25 Thread Andreas Radke
Date: Tuesday, September 26, 2017 @ 05:09:09
  Author: andyrtr
Revision: 306232

upgpkg: lftp 4.8.2-1

upstream update 4.8.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-25 21:27:36 UTC (rev 306231)
+++ PKGBUILD2017-09-26 05:09:09 UTC (rev 306232)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.8.1
+pkgver=4.8.2
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('e770daa5592ad21bd0b8a8915a0f4fdc2e15dec6c69e754a870ad9c18be57b27'
+sha256sums=('5c875b8476e05e856ebc8eec458e43317b2bebd6ed5f7725a733d4591548cd9c'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-09-13 Thread Andreas Radke
Date: Wednesday, September 13, 2017 @ 16:45:52
  Author: andyrtr
Revision: 305419

upgpkg: lftp 4.8.1-1

upstream update 4.8.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 16:38:40 UTC (rev 305418)
+++ PKGBUILD2017-09-13 16:45:52 UTC (rev 305419)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.8.0
+pkgver=4.8.1
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -10,10 +10,10 @@
 license=('GPL3')
 depends=('gcc-libs' 'readline' 'gnutls' 'libidn' 'expat' 'sh' 
'hicolor-icon-theme')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
-url="http://lftp.yar.ru/;
+url="https://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('7a2880968088b4aeec43b6b6680fef0e065e1dddcce9b409390157e9766b690f'
+sha256sums=('e770daa5592ad21bd0b8a8915a0f4fdc2e15dec6c69e754a870ad9c18be57b27'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-07-28 Thread Andreas Radke
Date: Saturday, July 29, 2017 @ 05:44:10
  Author: andyrtr
Revision: 301358

upgpkg: lftp 4.8.0-1

upstream update 4.8.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-29 05:35:27 UTC (rev 301357)
+++ PKGBUILD2017-07-29 05:44:10 UTC (rev 301358)
@@ -3,17 +3,17 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.7
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline' 'gnutls' 'libidn' 'expat' 'sh')
+depends=('gcc-libs' 'readline' 'gnutls' 'libidn' 'expat' 'sh' 
'hicolor-icon-theme')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('4483df04502660dcc65a11cf09d530e31bea99483d69328c1c5cbaa41d6619b4'
+sha256sums=('7a2880968088b4aeec43b6b6680fef0e065e1dddcce9b409390157e9766b690f'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-03-09 Thread Andreas Radke
Date: Thursday, March 9, 2017 @ 12:26:47
  Author: andyrtr
Revision: 290201

upgpkg: lftp 4.7.7-1

upstream update 4.7.7

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 12:25:59 UTC (rev 290200)
+++ PKGBUILD2017-03-09 12:26:47 UTC (rev 290201)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.6
+pkgver=4.7.7
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('6e26254fdc7e1b92ceb31116a2c7bdcd891a07c72a7823144aaaf147a1841b7b'
+sha256sums=('4483df04502660dcc65a11cf09d530e31bea99483d69328c1c5cbaa41d6619b4'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-02-15 Thread Andreas Radke
Date: Wednesday, February 15, 2017 @ 20:35:54
  Author: andyrtr
Revision: 289021

upgpkg: lftp 4.7.6-1

upstream update 4.7.6

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-02-15 19:32:52 UTC (rev 289020)
+++ PKGBUILD2017-02-15 20:35:54 UTC (rev 289021)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.5
+pkgver=4.7.6
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha256sums=('53b5c5eba2e38b418bcf451776f2df596050dff4db90ab4ea73d872f8b1fd0d8'
+sha256sums=('6e26254fdc7e1b92ceb31116a2c7bdcd891a07c72a7823144aaaf147a1841b7b'
 'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2017-01-02 Thread Andreas Radke
Date: Monday, January 2, 2017 @ 19:16:14
  Author: andyrtr
Revision: 285214

upgpkg: lftp 4.7.5-1

upstream update 4.7.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-02 17:43:31 UTC (rev 285213)
+++ PKGBUILD2017-01-02 19:16:14 UTC (rev 285214)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.4
+pkgver=4.7.5
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('74965c798b1806d0a2659d8a606ea47f'
- 'SKIP')
+sha256sums=('53b5c5eba2e38b418bcf451776f2df596050dff4db90ab4ea73d872f8b1fd0d8'
+'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 
 build() {


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

2016-11-22 Thread Andreas Radke
Date: Tuesday, November 22, 2016 @ 20:59:06
  Author: andyrtr
Revision: 281937

upgpkg: lftp 4.7.4-1

upstream update 4.7.4

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-22 20:53:48 UTC (rev 281936)
+++ PKGBUILD2016-11-22 20:59:06 UTC (rev 281937)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.3
-pkgrel=2
+pkgver=4.7.4
+pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -12,8 +12,8 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('23deda16014412c802f095fbaa0bebee'
+source=(https://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
+md5sums=('74965c798b1806d0a2659d8a606ea47f'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2016-11-06 Thread Evangelos Foutras
Date: Sunday, November 6, 2016 @ 20:25:49
  Author: foutrelis
Revision: 279970

readline 7.0 rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-06 20:24:27 UTC (rev 279969)
+++ PKGBUILD2016-11-06 20:25:49 UTC (rev 279970)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')


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

2016-05-19 Thread Andreas Radke
Date: Thursday, May 19, 2016 @ 21:52:28
  Author: andyrtr
Revision: 268328

upgpkg: lftp 4.7.2-1

upstream update 4.7.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-19 19:41:31 UTC (rev 268327)
+++ PKGBUILD2016-05-19 19:52:28 UTC (rev 268328)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.1
+pkgver=4.7.2
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('7dfb03c6544efeef633bc28ba7df8b77'
+md5sums=('24b64dcd74426803eb1e9bf75a5a590a'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2016-04-04 Thread Andreas Radke
Date: Monday, April 4, 2016 @ 19:13:56
  Author: andyrtr
Revision: 263865

upgpkg: lftp 4.7.1-1

upstream update 4.7.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-04 16:55:05 UTC (rev 263864)
+++ PKGBUILD2016-04-04 17:13:56 UTC (rev 263865)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.7.0
+pkgver=4.7.1
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('090595bc34b88f32e7914afe3ac923f7'
+md5sums=('7dfb03c6544efeef633bc28ba7df8b77'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2016-03-28 Thread Andreas Radke
Date: Monday, March 28, 2016 @ 15:02:39
  Author: andyrtr
Revision: 263210

upgpkg: lftp 4.7.0-1

upstream update 4.7.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-28 12:52:49 UTC (rev 263209)
+++ PKGBUILD2016-03-28 13:02:39 UTC (rev 263210)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.6.5
+pkgver=4.7.0
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('39507c331a987e0534acf75a4c3824a0'
+md5sums=('090595bc34b88f32e7914afe3ac923f7'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2015-12-10 Thread Andreas Radke
Date: Thursday, December 10, 2015 @ 22:10:38
  Author: andyrtr
Revision: 255770

upgpkg: lftp 4.6.5-1

upstream update 4.6.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-10 21:02:49 UTC (rev 255769)
+++ PKGBUILD2015-12-10 21:10:38 UTC (rev 255770)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.6.4
-pkgrel=3
+pkgver=4.6.5
+pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('84987c1095df84bfb5ac9c95c6aba6be'
+md5sums=('39507c331a987e0534acf75a4c3824a0'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # "Alexander V. 
Lukyanov "
 


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

2015-12-05 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 04:18:15
  Author: foutrelis
Revision: 252575

C++11 ABI rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 03:17:26 UTC (rev 252574)
+++ PKGBUILD2015-12-06 03:18:15 UTC (rev 252575)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.6.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')


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

2015-09-07 Thread Evangelos Foutras
Date: Monday, September 7, 2015 @ 11:26:54
  Author: foutrelis
Revision: 245438

ncurses 6.0 rebuild.

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-07 09:16:37 UTC (rev 245437)
+++ PKGBUILD2015-09-07 09:26:54 UTC (rev 245438)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
 license=('GPL3')


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

2015-08-22 Thread Andreas Radke
Date: Saturday, August 22, 2015 @ 13:42:34
  Author: andyrtr
Revision: 244487

upgpkg: lftp 4.6.4-1

upstream update 4.6.4

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-08-22 06:05:12 UTC (rev 244486)
+++ PKGBUILD2015-08-22 11:42:34 UTC (rev 244487)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.6.3a
+pkgver=4.6.4
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('b469ccc40d624aa4fdc66c1674b916d0'
+md5sums=('84987c1095df84bfb5ac9c95c6aba6be'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # Alexander V. 
Lukyanov l...@yars.free.net
 


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

2015-06-17 Thread Andreas Radke
Date: Wednesday, June 17, 2015 @ 21:45:41
  Author: andyrtr
Revision: 240996

upgpkg: lftp 4.6.3a-1

upstream update 4.6.3a

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-17 19:44:51 UTC (rev 240995)
+++ PKGBUILD2015-06-17 19:45:41 UTC (rev 240996)
@@ -3,17 +3,17 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.6.2
+pkgver=4.6.3a
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline' 'gnutls' 'expat' 'sh')
+depends=('gcc-libs' 'readline' 'gnutls' 'libidn' 'expat' 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('487c064ee1bd732e5f95928e530435a8'
+md5sums=('b469ccc40d624aa4fdc66c1674b916d0'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # Alexander V. 
Lukyanov l...@yars.free.net
 


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

2015-04-16 Thread Andreas Radke
Date: Thursday, April 16, 2015 @ 20:29:33
  Author: andyrtr
Revision: 237248

upgpkg: lftp 4.6.2-1

gnutls rebuild, upstream update 4.6.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-16 18:23:20 UTC (rev 237247)
+++ PKGBUILD2015-04-16 18:29:33 UTC (rev 237248)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.6.1
-pkgrel=2
+pkgver=4.6.2
+pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('e204e68ee2438da67644cc239de7c465'
+md5sums=('487c064ee1bd732e5f95928e530435a8'
  'SKIP')
 validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # Alexander V. 
Lukyanov l...@yars.free.net
 


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

2015-04-09 Thread Andreas Radke
Date: Thursday, April 9, 2015 @ 23:05:49
  Author: andyrtr
Revision: 235999

upgpkg: lftp 4.6.1-2

gnutls rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-09 21:05:40 UTC (rev 235998)
+++ PKGBUILD2015-04-09 21:05:49 UTC (rev 235999)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')


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

2014-12-30 Thread Andreas Radke
Date: Tuesday, December 30, 2014 @ 13:21:13
  Author: andyrtr
Revision: 228168

upgpkg: lftp 4.6.1-1

upstream update 4.6.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-30 02:18:25 UTC (rev 228167)
+++ PKGBUILD2014-12-30 12:21:13 UTC (rev 228168)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.6.0
+pkgver=4.6.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,8 +13,9 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('fc5f4e3b45c9011a193eb8c0c12eb2eb'
+md5sums=('e204e68ee2438da67644cc239de7c465'
  'SKIP')
+validpgpkeys=('C027FA3148652A5513036413A824BB69F2A99A18') # Alexander V. 
Lukyanov l...@yars.free.net
 
 build() {
   cd ${pkgname}-${pkgver}


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

2014-10-13 Thread Andreas Radke
Date: Monday, October 13, 2014 @ 19:53:48
  Author: andyrtr
Revision: 224291

upgpkg: lftp 4.6.0-1

upstream update 4.6.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-13 17:49:23 UTC (rev 224290)
+++ PKGBUILD2014-10-13 17:53:48 UTC (rev 224291)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.5
+pkgver=4.6.0
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('e58fc886e3d7c6d994de5ce51de46087'
+md5sums=('fc5f4e3b45c9011a193eb8c0c12eb2eb'
  'SKIP')
 
 build() {


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

2014-09-09 Thread Andreas Radke
Date: Tuesday, September 9, 2014 @ 16:15:14
  Author: andyrtr
Revision: 221341

upgpkg: lftp 4.5.5-1

upstream update 4.5.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-09 14:12:28 UTC (rev 221340)
+++ PKGBUILD2014-09-09 14:15:14 UTC (rev 221341)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.4
+pkgver=4.5.5
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('48668bdb22e47d1fdc7b4ede770de616'
+md5sums=('e58fc886e3d7c6d994de5ce51de46087'
  'SKIP')
 
 build() {



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

2014-08-07 Thread Evangelos Foutras
Date: Thursday, August 7, 2014 @ 11:36:47
  Author: foutrelis
Revision: 219391

upgpkg: lftp 4.5.4-1

New upstream release.

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-07 09:26:02 UTC (rev 219390)
+++ PKGBUILD2014-08-07 09:36:47 UTC (rev 219391)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.3
+pkgver=4.5.4
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('dcc20675777a4931116491534463bf46'
+md5sums=('48668bdb22e47d1fdc7b4ede770de616'
  'SKIP')
 
 build() {



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

2014-07-07 Thread Andreas Radke
Date: Monday, July 7, 2014 @ 21:32:33
  Author: andyrtr
Revision: 216621

upgpkg: lftp 4.5.3-1

upstream update 4.5.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-07-07 18:51:07 UTC (rev 216620)
+++ PKGBUILD2014-07-07 19:32:33 UTC (rev 216621)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.2
+pkgver=4.5.3
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('d26ab59a7402048d4b382e720748aac6'
+md5sums=('dcc20675777a4931116491534463bf46'
  'SKIP')
 
 build() {



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

2014-06-11 Thread Andreas Radke
Date: Wednesday, June 11, 2014 @ 21:51:37
  Author: andyrtr
Revision: 215036

upgpkg: lftp 4.5.2-1

upstream update 4.5.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-11 18:18:40 UTC (rev 215035)
+++ PKGBUILD2014-06-11 19:51:37 UTC (rev 215036)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.1
+pkgver=4.5.2
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('1a43302f5bc3552741c329c6afe86c9a'
+md5sums=('d26ab59a7402048d4b382e720748aac6'
  'SKIP')
 
 build() {



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

2014-06-02 Thread Andreas Radke
Date: Monday, June 2, 2014 @ 21:37:28
  Author: andyrtr
Revision: 214043

upgpkg: lftp 4.5.1-1

upstream update 4.5.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-02 18:11:08 UTC (rev 214042)
+++ PKGBUILD2014-06-02 19:37:28 UTC (rev 214043)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.5.0
+pkgver=4.5.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('cddbbf3f958047f7ce5a2e4386b36fc8'
+md5sums=('1a43302f5bc3552741c329c6afe86c9a'
  'SKIP')
 
 build() {



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

2014-05-23 Thread Andreas Radke
Date: Friday, May 23, 2014 @ 19:14:36
  Author: andyrtr
Revision: 213417

upgpkg: lftp 4.5.0-1

upstream update 4.5.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-23 17:10:18 UTC (rev 213416)
+++ PKGBUILD2014-05-23 17:14:36 UTC (rev 213417)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.16
+pkgver=4.5.0
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('73e9084731e4ba9bd886a86fdccec519'
+md5sums=('cddbbf3f958047f7ce5a2e4386b36fc8'
  'SKIP')
 
 build() {



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

2014-05-07 Thread Andreas Radke
Date: Wednesday, May 7, 2014 @ 19:52:03
  Author: andyrtr
Revision: 212114

upgpkg: lftp 4.4.16-1

upstream update 4.4.16

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-07 17:45:06 UTC (rev 212113)
+++ PKGBUILD2014-05-07 17:52:03 UTC (rev 212114)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.15
+pkgver=4.4.16
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('f19cc0cea1d427aa2a952b27661b91e5'
+md5sums=('73e9084731e4ba9bd886a86fdccec519'
  'SKIP')
 
 build() {



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

2014-01-24 Thread Andreas Radke
Date: Friday, January 24, 2014 @ 14:26:30
  Author: andyrtr
Revision: 204638

upgpkg: lftp 4.4.15-1

upstream update 4.4.15

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-24 13:14:32 UTC (rev 204637)
+++ PKGBUILD2014-01-24 13:26:30 UTC (rev 204638)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.14
+pkgver=4.4.15
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('809544255f668a6d3af867f643cc321f'
+md5sums=('f19cc0cea1d427aa2a952b27661b91e5'
  'SKIP')
 
 build() {



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

2013-12-14 Thread Andreas Radke
Date: Saturday, December 14, 2013 @ 09:33:48
  Author: andyrtr
Revision: 201536

upgpkg: lftp 4.4.14-1

upstream update 4.4.14

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-14 08:16:37 UTC (rev 201535)
+++ PKGBUILD2013-12-14 08:33:48 UTC (rev 201536)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.13
+pkgver=4.4.14
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('46aa97b33886230c26be1a0037625496'
+md5sums=('809544255f668a6d3af867f643cc321f'
  'SKIP')
 
 build() {



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

2013-11-29 Thread Andreas Radke
Date: Friday, November 29, 2013 @ 17:23:52
  Author: andyrtr
Revision: 200595

upgpkg: lftp 4.4.13-1

upstream update 4.4.13

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-29 15:56:20 UTC (rev 200594)
+++ PKGBUILD2013-11-29 16:23:52 UTC (rev 200595)
@@ -3,21 +3,21 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.11
+pkgver=4.4.13
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline=6.2' gnutls expat=2.0.1-4 'sh')
+depends=('gcc-libs' 'readline' 'gnutls' 'expat' 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('8a77bd831050edf90f5a032d85415532'
+md5sums=('46aa97b33886230c26be1a0037625496'
  'SKIP')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \
 --with-gnutls \
 --without-openssl \
@@ -27,7 +27,7 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
   rm -rf ${pkgdir}/usr/lib
 }



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

2013-11-12 Thread Andreas Radke
Date: Tuesday, November 12, 2013 @ 17:29:50
  Author: andyrtr
Revision: 199425

upgpkg: lftp 4.4.11-1

upstream update 4.4.11

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-12 16:24:13 UTC (rev 199424)
+++ PKGBUILD2013-11-12 16:29:50 UTC (rev 199425)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.10
+pkgver=4.4.11
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('1b8d77f1a5a9cfe4e48e45636b775101'
+md5sums=('8a77bd831050edf90f5a032d85415532'
  'SKIP')
 
 build() {



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

2013-10-11 Thread Andreas Radke
Date: Friday, October 11, 2013 @ 18:33:19
  Author: andyrtr
Revision: 196340

upgpkg: lftp 4.4.10-1

upstream update 4.4.10

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-11 16:12:33 UTC (rev 196339)
+++ PKGBUILD2013-10-11 16:33:19 UTC (rev 196340)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.9
+pkgver=4.4.10
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -12,8 +12,9 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
-md5sums=('f942d632d71b7bf35dca2e75a8432b83')
+source=(http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.xz{,.asc})
+md5sums=('1b8d77f1a5a9cfe4e48e45636b775101'
+ 'SKIP')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 10:11:52
  Author: andyrtr
Revision: 193565

upgpkg: lftp 4.4.9-1

upstream update 4.4.9

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 05:33:50 UTC (rev 193564)
+++ PKGBUILD2013-08-24 08:11:52 UTC (rev 193565)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.8
+pkgver=4.4.9
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
-md5sums=('7140263fbe12f17f74183cf065a7d381')
+md5sums=('f942d632d71b7bf35dca2e75a8432b83')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in lftp/trunk (PKGBUILD f8ee088.diff)

2013-05-29 Thread Andreas Radke
Date: Wednesday, May 29, 2013 @ 17:12:46
  Author: andyrtr
Revision: 186571

upgpkg: lftp 4.4.8-1

upstream update 4.4.8

Modified:
  lftp/trunk/PKGBUILD
Deleted:
  lftp/trunk/f8ee088.diff

--+
 PKGBUILD |   15 ---
 f8ee088.diff |   11 ---
 2 files changed, 4 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-29 14:28:53 UTC (rev 186570)
+++ PKGBUILD2013-05-29 15:12:46 UTC (rev 186571)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.7
-pkgrel=2
+pkgver=4.4.8
+pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -12,18 +12,11 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 
-f8ee088.diff)
-md5sums=('a4e7b88d6b7aca389010ce6d6dca8099'
- 'a8f1c1bb3f5ab60b48507c9722c64d1c')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
+md5sums=('7140263fbe12f17f74183cf065a7d381')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-
-  # fix sftp transfer - FS#35456
-  # upstream: https://github.com/lavv17/lftp/issues/39
-  patch -Np0 -i ${srcdir}/f8ee088.diff
-
   ./configure --prefix=/usr \
 --with-gnutls \
 --without-openssl \

Deleted: f8ee088.diff
===
--- f8ee088.diff2013-05-29 14:28:53 UTC (rev 186570)
+++ f8ee088.diff2013-05-29 15:12:46 UTC (rev 186571)
@@ -1,11 +0,0 @@
 src/SFtp.cc2013-04-18 09:24:36.0 +0200
-+++ src/SFtp.cc.new2013-05-27 15:06:40.998423663 +0200
-@@ -2256,7 +2256,7 @@
-return MOVED;
-   }
-   if(b)
--   return MOVED;
-+   return m;
-   // eof
-   if(!result  session-IsOpen())
-result=session.CastSFtp()-GetFileSet();



[arch-commits] Commit in lftp/trunk (PKGBUILD f8ee088.diff)

2013-05-27 Thread Andreas Radke
Date: Monday, May 27, 2013 @ 15:11:11
  Author: andyrtr
Revision: 186479

upgpkg: lftp 4.4.7-2

fix sftp use - FS#35456

Added:
  lftp/trunk/f8ee088.diff
Modified:
  lftp/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 f8ee088.diff |   11 +++
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-27 12:00:13 UTC (rev 186478)
+++ PKGBUILD2013-05-27 13:11:11 UTC (rev 186479)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.4.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -12,11 +12,18 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('a4e7b88d6b7aca389010ce6d6dca8099')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 
+f8ee088.diff)
+md5sums=('a4e7b88d6b7aca389010ce6d6dca8099'
+ 'a8f1c1bb3f5ab60b48507c9722c64d1c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
+  # fix sftp transfer - FS#35456
+  # upstream: https://github.com/lavv17/lftp/issues/39
+  patch -Np0 -i ${srcdir}/f8ee088.diff
+
   ./configure --prefix=/usr \
 --with-gnutls \
 --without-openssl \

Added: f8ee088.diff
===
--- f8ee088.diff(rev 0)
+++ f8ee088.diff2013-05-27 13:11:11 UTC (rev 186479)
@@ -0,0 +1,11 @@
+--- src/SFtp.cc2013-04-18 09:24:36.0 +0200
 src/SFtp.cc.new2013-05-27 15:06:40.998423663 +0200
+@@ -2256,7 +2256,7 @@
+return MOVED;
+   }
+   if(b)
+-   return MOVED;
++   return m;
+   // eof
+   if(!result  session-IsOpen())
+result=session.CastSFtp()-GetFileSet();



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

2013-05-23 Thread Andreas Radke
Date: Thursday, May 23, 2013 @ 17:26:24
  Author: andyrtr
Revision: 186269

upgpkg: lftp 4.4.7-1

upstream update 4.4.7

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-23 10:09:04 UTC (rev 186268)
+++ PKGBUILD2013-05-23 15:26:24 UTC (rev 186269)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.6
+pkgver=4.4.7
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('377cc2caa2fc92755160270768e51604')
+md5sums=('a4e7b88d6b7aca389010ce6d6dca8099')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-05-18 Thread Andreas Radke
Date: Saturday, May 18, 2013 @ 16:48:55
  Author: andyrtr
Revision: 185763

upgpkg: lftp 4.4.6-1

upstream update 4.4.6

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-18 14:39:05 UTC (rev 185762)
+++ PKGBUILD2013-05-18 14:48:55 UTC (rev 185763)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.5
+pkgver=4.4.6
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('a8abdc87a00174571908ffaf5cdffd45')
+md5sums=('377cc2caa2fc92755160270768e51604')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-03-18 Thread Andreas Radke
Date: Monday, March 18, 2013 @ 17:46:52
  Author: andyrtr
Revision: 180225

upgpkg: lftp 4.4.5-1

upstream update 4.4.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-18 16:10:38 UTC (rev 180224)
+++ PKGBUILD2013-03-18 16:46:52 UTC (rev 180225)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.4
+pkgver=4.4.5
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f1fa7aec113219952d18e4dd87d531ca')
+md5sums=('a8abdc87a00174571908ffaf5cdffd45')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-02-27 Thread Andreas Radke
Date: Wednesday, February 27, 2013 @ 17:20:08
  Author: andyrtr
Revision: 178841

upgpkg: lftp 4.4.4-1

upstream update 4.4.4

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-27 15:05:46 UTC (rev 178840)
+++ PKGBUILD2013-02-27 16:20:08 UTC (rev 178841)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.3
-pkgrel=2
+pkgver=4.4.4
+pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('b877c1f82b2d4dc503f40dcce4978ff4')
+md5sums=('f1fa7aec113219952d18e4dd87d531ca')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-02-12 Thread Andreas Radke
Date: Tuesday, February 12, 2013 @ 20:24:16
  Author: andyrtr
Revision: 177981

upgpkg: lftp 4.4.3-2

upstream seems to have changed the source fixing a bug; FS#33770

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-12 19:15:26 UTC (rev 177980)
+++ PKGBUILD2013-02-12 19:24:16 UTC (rev 177981)
@@ -4,7 +4,7 @@
 
 pkgname=lftp
 pkgver=4.4.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('59351bc6fd71e65485cb0b5dd6dbf07a')
+md5sums=('b877c1f82b2d4dc503f40dcce4978ff4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-02-07 Thread Andreas Radke
Date: Thursday, February 7, 2013 @ 17:26:58
  Author: andyrtr
Revision: 177575

upgpkg: lftp 4.4.3-1

upstream update 4.4.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-07 16:13:20 UTC (rev 177574)
+++ PKGBUILD2013-02-07 16:26:58 UTC (rev 177575)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.2
+pkgver=4.4.3
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('8e974cd87c9d4362031f61351cfe742e')
+md5sums=('59351bc6fd71e65485cb0b5dd6dbf07a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in lftp/trunk (PKGBUILD lftp-4.3.8-gets.patch)

2013-02-03 Thread Andreas Radke
Date: Sunday, February 3, 2013 @ 17:13:25
  Author: andyrtr
Revision: 176997

upgpkg: lftp 4.4.2-1

upstream update 4.4.2

Modified:
  lftp/trunk/PKGBUILD
Deleted:
  lftp/trunk/lftp-4.3.8-gets.patch

---+
 PKGBUILD  |   16 
 lftp-4.3.8-gets.patch |   16 
 2 files changed, 8 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-03 16:01:07 UTC (rev 176996)
+++ PKGBUILD2013-02-03 16:13:25 UTC (rev 176997)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.1
+pkgver=4.4.2
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -12,16 +12,16 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2
-   lftp-4.3.8-gets.patch)
-md5sums=('1a6de8e3922ffb51ec21642e51744b02'
- '77168a7f368b07eec7e079b55496fa97')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('8e974cd87c9d4362031f61351cfe742e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/lftp-4.3.8-gets.patch
-  ./configure --prefix=/usr --with-gnutls \
-   --without-openssl --disable-static
+  ./configure --prefix=/usr \
+--with-gnutls \
+--without-openssl \
+--without-included-regex \
+--disable-static
   make
 }
 

Deleted: lftp-4.3.8-gets.patch
===
--- lftp-4.3.8-gets.patch   2013-02-03 16:01:07 UTC (rev 176996)
+++ lftp-4.3.8-gets.patch   2013-02-03 16:13:25 UTC (rev 176997)
@@ -1,16 +0,0 @@
-diff -up lftp-4.3.8/lib/stdio.in.h.gets lftp-4.3.8/lib/stdio.in.h
 lftp-4.3.8/lib/stdio.in.h.gets 2012-07-22 15:07:15.101115146 -0400
-+++ lftp-4.3.8/lib/stdio.in.h  2012-07-22 15:08:09.777098512 -0400
-@@ -702,10 +702,12 @@ _GL_WARN_ON_USE (getline, getline is un
- /* It is very rare that the developer ever has full control of stdin,
-so any use of gets warrants an unconditional warning; besides, C11
-removed it.  */
-+#if defined gets
- #undef gets
- #if HAVE_RAW_DECL_GETS
- _GL_WARN_ON_USE (gets, gets is a security hole - use fgets instead);
- #endif
-+#endif // if defined gets
- 
- 
- #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@



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

2013-01-29 Thread Andreas Radke
Date: Tuesday, January 29, 2013 @ 16:38:55
  Author: andyrtr
Revision: 176313

upgpkg: lftp 4.4.1-1

upstream update 4.4.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-29 13:46:57 UTC (rev 176312)
+++ PKGBUILD2013-01-29 15:38:55 UTC (rev 176313)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.4.0
+pkgver=4.4.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2
lftp-4.3.8-gets.patch)
-md5sums=('9d6a048bb6be9bc3baecfea53b0d8330'
+md5sums=('1a6de8e3922ffb51ec21642e51744b02'
  '77168a7f368b07eec7e079b55496fa97')
 
 build() {



[arch-commits] Commit in lftp/trunk (PKGBUILD lftp-4.3.8-gets.patch)

2012-09-28 Thread andyrtr
Date: Friday, September 28, 2012 @ 16:05:53
  Author: andyrtr
Revision: 167230

upgpkg: lftp 4.4.0-1

upstream update 4.4.0

Added:
  lftp/trunk/lftp-4.3.8-gets.patch
Modified:
  lftp/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 lftp-4.3.8-gets.patch |   16 
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-09-28 19:51:26 UTC (rev 167229)
+++ PKGBUILD2012-09-28 20:05:53 UTC (rev 167230)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.8
+pkgver=4.4.0
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -12,11 +12,14 @@
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('adced9c3e0f6b96821811dc87c0a1eeb')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2
+   lftp-4.3.8-gets.patch)
+md5sums=('9d6a048bb6be9bc3baecfea53b0d8330'
+ '77168a7f368b07eec7e079b55496fa97')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/lftp-4.3.8-gets.patch
   ./configure --prefix=/usr --with-gnutls \
--without-openssl --disable-static
   make

Added: lftp-4.3.8-gets.patch
===
--- lftp-4.3.8-gets.patch   (rev 0)
+++ lftp-4.3.8-gets.patch   2012-09-28 20:05:53 UTC (rev 167230)
@@ -0,0 +1,16 @@
+diff -up lftp-4.3.8/lib/stdio.in.h.gets lftp-4.3.8/lib/stdio.in.h
+--- lftp-4.3.8/lib/stdio.in.h.gets 2012-07-22 15:07:15.101115146 -0400
 lftp-4.3.8/lib/stdio.in.h  2012-07-22 15:08:09.777098512 -0400
+@@ -702,10 +702,12 @@ _GL_WARN_ON_USE (getline, getline is un
+ /* It is very rare that the developer ever has full control of stdin,
+so any use of gets warrants an unconditional warning; besides, C11
+removed it.  */
++#if defined gets
+ #undef gets
+ #if HAVE_RAW_DECL_GETS
+ _GL_WARN_ON_USE (gets, gets is a security hole - use fgets instead);
+ #endif
++#endif // if defined gets
+ 
+ 
+ #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@



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

2012-07-04 Thread andyrtr
Date: Wednesday, July 4, 2012 @ 09:55:39
  Author: andyrtr
Revision: 162977

upgpkg: lftp 4.3.8-1

upstream update 4.3.8

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-04 13:28:12 UTC (rev 162976)
+++ PKGBUILD2012-07-04 13:55:39 UTC (rev 162977)
@@ -3,18 +3,17 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.7
+pkgver=4.3.8
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('gcc-libs' 'readline=6.2' gnutls expat=2.0.1-4 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
-#makedepends=('autoconf')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('7216925813c7b09d22b54340b98daf7f')
+md5sums=('adced9c3e0f6b96821811dc87c0a1eeb')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-05-30 Thread andyrtr
Date: Wednesday, May 30, 2012 @ 14:58:11
  Author: andyrtr
Revision: 160200

upgpkg: lftp 4.3.7-1

upstream update 4.3.7

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-30 18:30:33 UTC (rev 160199)
+++ PKGBUILD2012-05-30 18:58:11 UTC (rev 160200)
@@ -3,18 +3,18 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.6
+pkgver=4.3.7
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('gcc-libs' 'readline=6.2' gnutls expat=2.0.1-4 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
-makedepends=('autoconf')
+#makedepends=('autoconf')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('1b04a191817ce6c582dc66b3dff09943')
+md5sums=('7216925813c7b09d22b54340b98daf7f')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-04-06 Thread andyrtr
Date: Friday, April 6, 2012 @ 05:27:51
  Author: andyrtr
Revision: 155768

upgpkg: lftp 4.3.6-1

upstream update 4.3.6

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-04-06 09:23:08 UTC (rev 155767)
+++ PKGBUILD2012-04-06 09:27:51 UTC (rev 155768)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.5
+pkgver=4.3.6
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9802867df48fb7c69d92dadf8fa86af6')
+md5sums=('1b04a191817ce6c582dc66b3dff09943')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-01-29 Thread andyrtr
Date: Sunday, January 29, 2012 @ 10:50:55
  Author: andyrtr
Revision: 147994

upgpkg: lftp 4.3.5-1

upstream update 4.3.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-01-29 15:45:06 UTC (rev 147993)
+++ PKGBUILD2012-01-29 15:50:55 UTC (rev 147994)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.4
+pkgver=4.3.5
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('4840d0d20fafff3792b0b8ac305ab01e')
+md5sums=('9802867df48fb7c69d92dadf8fa86af6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-12-31 Thread andyrtr
Date: Saturday, December 31, 2011 @ 04:09:47
  Author: andyrtr
Revision: 145776

upgpkg: lftp 4.3.4-1

upstream update 4.3.4

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-12-31 08:59:37 UTC (rev 145775)
+++ PKGBUILD2011-12-31 09:09:47 UTC (rev 145776)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.3
+pkgver=4.3.4
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('91757a201c1030714ac1996f27437cc7')
+md5sums=('4840d0d20fafff3792b0b8ac305ab01e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-10-22 Thread andyrtr
Date: Saturday, October 22, 2011 @ 04:17:37
  Author: andyrtr
Revision: 141034

upgpkg: lftp 4.3.3-1

upstream update 4.3.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-22 07:52:40 UTC (rev 141033)
+++ PKGBUILD2011-10-22 08:17:37 UTC (rev 141034)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.2
+pkgver=4.3.3
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('18f5c5b351cfad0a0ab069592effd664')
+md5sums=('91757a201c1030714ac1996f27437cc7')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -27,4 +27,4 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
   rm -rf ${pkgdir}/usr/lib
-}
\ No newline at end of file
+}



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

2011-09-16 Thread Allan McRae
Date: Friday, September 16, 2011 @ 22:02:11
  Author: allan
Revision: 138120

upgpkg: lftp 4.3.2-1

upstream update

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-09-17 01:22:30 UTC (rev 138119)
+++ PKGBUILD2011-09-17 02:02:11 UTC (rev 138120)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.1
-pkgrel=2
+pkgver=4.3.2
+pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ea45acfb47b5590d4675c50dc0c6e13c')
+md5sums=('18f5c5b351cfad0a0ab069592effd664')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-08-09 Thread andyrtr
Date: Tuesday, August 9, 2011 @ 11:13:13
  Author: andyrtr
Revision: 134943

upgpkg: lftp 4.3.1-2
gnutls rebuild

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-09 15:04:06 UTC (rev 134942)
+++ PKGBUILD2011-08-09 15:13:13 UTC (rev 134943)
@@ -4,11 +4,11 @@
 
 pkgname=lftp
 pkgver=4.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline=6.2' gnutls=2.12 expat=2.0.1-4 'sh')
+depends=('gcc-libs' 'readline=6.2' gnutls expat=2.0.1-4 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 makedepends=('autoconf')
 url=http://lftp.yar.ru/;



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

2011-06-28 Thread andyrtr
Date: Tuesday, June 28, 2011 @ 11:35:00
  Author: andyrtr
Revision: 129514

upgpkg: lftp 4.3.1-1
upstream update 4.3.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-06-28 15:27:46 UTC (rev 129513)
+++ PKGBUILD2011-06-28 15:35:00 UTC (rev 129514)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.3.0
+pkgver=4.3.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('3c6ff88f8c6e93ff90d8e3b054f3b086')
+md5sums=('ea45acfb47b5590d4675c50dc0c6e13c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-06-18 Thread andyrtr
Date: Saturday, June 18, 2011 @ 06:02:24
  Author: andyrtr
Revision: 127768

upgpkg: lftp 4.3.0-1
upstream update 4.3.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-06-18 08:13:17 UTC (rev 127767)
+++ PKGBUILD2011-06-18 10:02:24 UTC (rev 127768)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.2.3
+pkgver=4.3.0
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('4957f40d55e1bc6985e11244364b8938')
+md5sums=('3c6ff88f8c6e93ff90d8e3b054f3b086')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-04-29 Thread andyrtr
Date: Friday, April 29, 2011 @ 11:00:49
  Author: andyrtr
Revision: 121220

upgpkg: lftp 4.2.3-1
upstream update 4.2.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-29 14:26:14 UTC (rev 121219)
+++ PKGBUILD2011-04-29 15:00:49 UTC (rev 121220)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.2.2
+pkgver=4.2.3
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('801d90de9def7fc0f88817bcc71295b7')
+md5sums=('4957f40d55e1bc6985e11244364b8938')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-04-11 Thread andyrtr
Date: Monday, April 11, 2011 @ 15:32:01
  Author: andyrtr
Revision: 119500

upgpkg: lftp 4.2.2-1
upstream update 4.2.2

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-11 19:26:56 UTC (rev 119499)
+++ PKGBUILD2011-04-11 19:32:01 UTC (rev 119500)
@@ -3,18 +3,18 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.2.1
+pkgver=4.2.2
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline=6.0' gnutls=2.8.6 expat=2.0.1-4 'sh')
+depends=('gcc-libs' 'readline=6.2' gnutls=2.12 expat=2.0.1-4 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 makedepends=('autoconf')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('244c52690afbc2bdb6ec6af9496434b3')
+md5sums=('801d90de9def7fc0f88817bcc71295b7')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-03-30 Thread andyrtr
Date: Wednesday, March 30, 2011 @ 12:49:02
  Author: andyrtr
Revision: 117281

upgpkg: lftp 4.2.1-1
upstream update 4.2.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-03-30 16:35:20 UTC (rev 117280)
+++ PKGBUILD2011-03-30 16:49:02 UTC (rev 117281)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('ce17c8b96a65975928a5c964a771d6f8')
+md5sums=('244c52690afbc2bdb6ec6af9496434b3')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-03-05 Thread andyrtr
Date: Saturday, March 5, 2011 @ 07:50:25
  Author: andyrtr
Revision: 112613

upgpkg: lftp 4.2.0-1
upstream update 4.2.0

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-03-05 12:43:28 UTC (rev 112612)
+++ PKGBUILD2011-03-05 12:50:25 UTC (rev 112613)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.1.3
+pkgver=4.2.0
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('dd769dcef10296271bff05d283680f9a')
+md5sums=('ce17c8b96a65975928a5c964a771d6f8')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-01-19 Thread andyrtr
Date: Wednesday, January 19, 2011 @ 16:36:10
  Author: andyrtr
Revision: 106964

upgpkg: lftp 4.1.3-1
upstream update 4.1.3

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-01-19 21:32:05 UTC (rev 106963)
+++ PKGBUILD2011-01-19 21:36:10 UTC (rev 106964)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.1.2
+pkgver=4.1.3
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('03cf7ebb6c89839fb8a6084e438c49b9')
+md5sums=('dd769dcef10296271bff05d283680f9a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-01-06 Thread andyrtr
Date: Thursday, January 6, 2011 @ 13:00:46
  Author: andyrtr
Revision: 105129

upgpkg: lftp 4.1.2-1
new upstream release

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-01-06 17:20:45 UTC (rev 105128)
+++ PKGBUILD2011-01-06 18:00:46 UTC (rev 105129)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.1.1
+pkgver=4.1.2
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('87717c30869a626cc53817c1c0a585ef')
+md5sums=('03cf7ebb6c89839fb8a6084e438c49b9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-11-29 Thread andyrtr
Date: Monday, November 29, 2010 @ 14:12:51
  Author: andyrtr
Revision: 101593

upgpkg: lftp 4.1.1-1
new version 4.1.1

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-11-29 18:34:07 UTC (rev 101592)
+++ PKGBUILD2010-11-29 19:12:51 UTC (rev 101593)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.0.10
+pkgver=4.1.1
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,17 +14,17 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('028f14ef845403e6f76acb41f51e908c')
+md5sums=('87717c30869a626cc53817c1c0a585ef')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --with-gnutls \
--without-openssl --disable-static
-  make || return 1
+  make
 }
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install || return 1
+  make DESTDIR=${pkgdir} install
   rm -rf ${pkgdir}/usr/lib
 }
\ No newline at end of file



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

2010-06-12 Thread andyrtr
Date: Saturday, June 12, 2010 @ 17:02:21
  Author: andyrtr
Revision: 82537

upgpkg: lftp 4.0.9-1
new version 4.0.9

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-12 20:33:02 UTC (rev 82536)
+++ PKGBUILD2010-06-12 21:02:21 UTC (rev 82537)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.0.8
+pkgver=4.0.9
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('02db04d2dd93596d45a0dde1470c2292')
+md5sums=('d3f0cd7569e31e50370208dd77a7c41b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-06-06 Thread andyrtr
Date: Sunday, June 6, 2010 @ 07:15:01
  Author: andyrtr
Revision: 81849

upgpkg: lftp 4.0.8-1
new version 4.0.8

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-06-05 21:06:46 UTC (rev 81848)
+++ PKGBUILD2010-06-06 11:15:01 UTC (rev 81849)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.0.7
+pkgver=4.0.8
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,13 +14,17 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('a40e4518fc477c82ffcc5b04d9ff64ff')
+md5sums=('02db04d2dd93596d45a0dde1470c2292')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --with-gnutls \
--without-openssl --disable-static
   make || return 1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install || return 1
   rm -rf ${pkgdir}/usr/lib
-}
+}
\ No newline at end of file



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

2010-05-02 Thread andyrtr
Date: Sunday, May 2, 2010 @ 05:34:37
  Author: andyrtr
Revision: 79229

upgpkg: lftp 4.0.7-1
new version 4.0.7

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-02 09:26:01 UTC (rev 79228)
+++ PKGBUILD2010-05-02 09:34:37 UTC (rev 79229)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.0.6
+pkgver=4.0.7
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('7cd4f6f7d3b5d9baab4e090ebced9c91')
+md5sums=('a40e4518fc477c82ffcc5b04d9ff64ff')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2009-12-27 Thread andyrtr
Date: Sunday, December 27, 2009 @ 14:34:12
  Author: andyrtr
Revision: 61903

upgpkg: lftp 4.0.5-1
new version 4.0.5

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2009-12-27 19:29:01 UTC (rev 61902)
+++ PKGBUILD2009-12-27 19:34:12 UTC (rev 61903)
@@ -3,18 +3,18 @@
 # Contributor: Aaron Griffin aa...@archlinux.org
 
 pkgname=lftp
-pkgver=4.0.4
+pkgver=4.0.5
 pkgrel=1
 pkgdesc=Sophisticated command line based FTP client
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('gcc-libs' 'readline=6.0' gnutls=2.8.3 expat=2.0.1-2 'sh')
+depends=('gcc-libs' 'readline=6.0' gnutls=2.8.5 expat=2.0.1-4 'sh')
 optdepends=('perl: needed for convert-netscape-cookies and verify-file')
 makedepends=('autoconf')
 url=http://lftp.yar.ru/;
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('2fce67be564213a9193162033439e81b')
+md5sums=('5400cad5f91e131ac2ded7c24aea594c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}