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

2020-12-03 Thread Felix Yan via arch-commits
Date: Thursday, December 3, 2020 @ 20:38:43
  Author: felixonmars
Revision: 769773

upgpkg: certbot 1.10.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-03 20:38:35 UTC (rev 769772)
+++ PKGBUILD2020-12-03 20:38:43 UTC (rev 769773)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.10.0
+pkgver=1.10.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('74c884225df781dc12a0168585404acff97eb76383fc741f36eaae2e1b4446b66d7dd7ede72c6fe4cf343e4fbcf8489d514d545df31dc8cef6f37f0a66e0199a'
+sha512sums=('3d7018343282f927f2a4c8953f23b3f9ec302cf231784ea7fb102ded3e7eafb2cdeb8e26b108c6194097d9cee6901229432f192334989b800cfd21cf87222f5f'
 'SKIP')
 
 build() {


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

2020-12-02 Thread Felix Yan via arch-commits
Date: Wednesday, December 2, 2020 @ 20:58:47
  Author: felixonmars
Revision: 769270

upgpkg: certbot 1.10.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-02 20:54:22 UTC (rev 769269)
+++ PKGBUILD2020-12-02 20:58:47 UTC (rev 769270)
@@ -2,8 +2,8 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.9.0
-pkgrel=3
+pkgver=1.10.0
+pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('cc241db9877fa53ab658def2fd9b869a2e3deba2b65f4ba0c4eb7695d7daee32360c5f850c387557b81273956f886ff259db330d31af4913170ddb89e0a82f2e'
+sha512sums=('74c884225df781dc12a0168585404acff97eb76383fc741f36eaae2e1b4446b66d7dd7ede72c6fe4cf343e4fbcf8489d514d545df31dc8cef6f37f0a66e0199a'
 'SKIP')
 
 build() {


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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 16:08:16
  Author: foutrelis
Revision: 752058

upgpkg: certbot 1.9.0-3: Python 3.9 rebuild

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 16:08:16 UTC (rev 752057)
+++ PKGBUILD2020-11-12 16:08:16 UTC (rev 752058)
@@ -3,7 +3,7 @@
 
 pkgname=certbot
 pkgver=1.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')


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

2020-10-06 Thread Felix Yan via arch-commits
Date: Tuesday, October 6, 2020 @ 20:55:48
  Author: felixonmars
Revision: 719553

don't use pytest-runner when possible

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-06 20:54:30 UTC (rev 719552)
+++ PKGBUILD2020-10-06 20:55:48 UTC (rev 719553)
@@ -12,7 +12,7 @@
  'python-cryptography' 'python-distro' 'python-mock' 
'python-parsedatetime'
  'python-pyrfc3339' 'python-pytz' 'python-setuptools' 
'python-zope-component'
  'python-zope-interface')
-checkdepends=('python-pytest-runner')
+checkdepends=('python-pytest')
 optdepends=('certbot-apache: Apache plugin for Let’s Encrypt client'
 'certbot-nginx: Nginx plugin for Let’s Encrypt client')
 replaces=("letsencrypt")
@@ -30,7 +30,7 @@
 
 check() {
   cd "$srcdir"/$pkgname-$pkgver
-  python setup.py pytest
+  python -m pytest
 }
 
 package() {


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

2020-10-06 Thread Felix Yan via arch-commits
Date: Tuesday, October 6, 2020 @ 20:45:57
  Author: felixonmars
Revision: 719522

upgpkg: certbot 1.9.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-06 20:45:08 UTC (rev 719521)
+++ PKGBUILD2020-10-06 20:45:57 UTC (rev 719522)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.8.0
+pkgver=1.9.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('9eea08cb0ade7c29e566a2495659f57d013f677baf7f8b057160cb73871d99970933e7da54aab97865833e24bffc9b76d1af2c654dd5117f81eac239bce7b4c7'
+sha512sums=('cc241db9877fa53ab658def2fd9b869a2e3deba2b65f4ba0c4eb7695d7daee32360c5f850c387557b81273956f886ff259db330d31af4913170ddb89e0a82f2e'
 'SKIP')
 
 build() {


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

2020-09-08 Thread Felix Yan via arch-commits
Date: Tuesday, September 8, 2020 @ 21:18:34
  Author: felixonmars
Revision: 701332

upgpkg: certbot 1.8.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-08 21:15:03 UTC (rev 701331)
+++ PKGBUILD2020-09-08 21:18:34 UTC (rev 701332)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.7.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('987ceb63130dc98df0e4866a25c5d8ee4dc27b79650e5c8e149d45fec4709cf7c5f980de38e83d354e313df904c3830075ef04b8394f71998f06f9fa75bfb7fe'
+sha512sums=('9eea08cb0ade7c29e566a2495659f57d013f677baf7f8b057160cb73871d99970933e7da54aab97865833e24bffc9b76d1af2c654dd5117f81eac239bce7b4c7'
 'SKIP')
 
 build() {


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

2020-08-05 Thread Felix Yan via arch-commits
Date: Wednesday, August 5, 2020 @ 09:45:51
  Author: felixonmars
Revision: 669223

upgpkg: certbot 1.7.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-05 09:45:42 UTC (rev 669222)
+++ PKGBUILD2020-08-05 09:45:51 UTC (rev 669223)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('1b41381dd098746d5dc94b38f9c8473279282f810c97b9491277b6e25be98019144d498080c0759797efa0cb38a9004582819f6b6fac26f8a95da17dfb780a4e'
+sha512sums=('987ceb63130dc98df0e4866a25c5d8ee4dc27b79650e5c8e149d45fec4709cf7c5f980de38e83d354e313df904c3830075ef04b8394f71998f06f9fa75bfb7fe'
 'SKIP')
 
 build() {


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

2020-07-08 Thread Felix Yan via arch-commits
Date: Wednesday, July 8, 2020 @ 09:11:20
  Author: felixonmars
Revision: 661663

upgpkg: certbot 1.6.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-08 09:10:36 UTC (rev 661662)
+++ PKGBUILD2020-07-08 09:11:20 UTC (rev 661663)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.5.0
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('00cdb734771c7a274f75359928d1ce3fff03c4e9b6dfcce06f6b4ace5c3fd2980a1823c601f90147ab08018ecf5ee7d2a064bd1127ee0f300c5c1db894723c06'
+sha512sums=('1b41381dd098746d5dc94b38f9c8473279282f810c97b9491277b6e25be98019144d498080c0759797efa0cb38a9004582819f6b6fac26f8a95da17dfb780a4e'
 'SKIP')
 
 build() {


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

2020-06-03 Thread Felix Yan via arch-commits
Date: Wednesday, June 3, 2020 @ 07:51:15
  Author: felixonmars
Revision: 638184

upgpkg: certbot 1.5.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-03 07:49:13 UTC (rev 638183)
+++ PKGBUILD2020-06-03 07:51:15 UTC (rev 638184)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e8aa3c412bec0b10d6e8f119b8f23c17db0e761c1b476503a141c734f379a4e5322a37a8d16af837e9538932423c0161ea06f66928634c2c2c7dc556423e4f42'
+sha512sums=('00cdb734771c7a274f75359928d1ce3fff03c4e9b6dfcce06f6b4ace5c3fd2980a1823c601f90147ab08018ecf5ee7d2a064bd1127ee0f300c5c1db894723c06'
 'SKIP')
 
 build() {


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

2020-05-06 Thread Felix Yan via arch-commits
Date: Wednesday, May 6, 2020 @ 17:11:05
  Author: felixonmars
Revision: 625077

upgpkg: certbot 1.4.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-06 17:10:36 UTC (rev 625076)
+++ PKGBUILD2020-05-06 17:11:05 UTC (rev 625077)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.3.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('6bbab5e6e44548931a48980fb580c5b8f30bbc04eccd1315e71414ad2a762251451166d9de7dd506b9f96ae71293e2b2dd78e33a799b04456f2c48225d68db0e'
+sha512sums=('e8aa3c412bec0b10d6e8f119b8f23c17db0e761c1b476503a141c734f379a4e5322a37a8d16af837e9538932423c0161ea06f66928634c2c2c7dc556423e4f42'
 'SKIP')
 
 build() {


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

2020-03-04 Thread Felix Yan via arch-commits
Date: Wednesday, March 4, 2020 @ 10:33:45
  Author: felixonmars
Revision: 589963

upgpkg: certbot 1.3.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-04 10:33:16 UTC (rev 589962)
+++ PKGBUILD2020-03-04 10:33:45 UTC (rev 589963)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.2.0
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e4e3855c8f3dde27554932a4db226c93b16588d91eed07415a7161776b93d1d006313ccaf10a05c5dc369843f4141dec2b0f98201967995b83ea3a036837cda7'
+sha512sums=('6bbab5e6e44548931a48980fb580c5b8f30bbc04eccd1315e71414ad2a762251451166d9de7dd506b9f96ae71293e2b2dd78e33a799b04456f2c48225d68db0e'
 'SKIP')
 
 build() {


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

2020-02-05 Thread Felix Yan via arch-commits
Date: Wednesday, February 5, 2020 @ 14:10:35
  Author: felixonmars
Revision: 563247

upgpkg: certbot 1.2.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-05 14:10:06 UTC (rev 563246)
+++ PKGBUILD2020-02-05 14:10:35 UTC (rev 563247)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.1.0
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('b13a965bc89f8e5310d1580de8866935d53924a398b8f374c32feac761232c13c848b19d7a91e9a61cb56e9e0bf7ff79cc7468bb5fadbf3c9eef63b2ab501e04'
+sha512sums=('e4e3855c8f3dde27554932a4db226c93b16588d91eed07415a7161776b93d1d006313ccaf10a05c5dc369843f4141dec2b0f98201967995b83ea3a036837cda7'
 'SKIP')
 
 build() {


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

2020-01-21 Thread Felix Yan via arch-commits
Date: Wednesday, January 22, 2020 @ 07:17:07
  Author: felixonmars
Revision: 553405

upgpkg: certbot 1.1.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-22 07:16:54 UTC (rev 553404)
+++ PKGBUILD2020-01-22 07:17:07 UTC (rev 553405)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('ab432f3986b28d88857a550016b21240f5af85f145e12c291c9b99060c22d1d313b1eadb132ae0297f238096b7754ce37d409e5c83d8d67564058c657307'
+sha512sums=('b13a965bc89f8e5310d1580de8866935d53924a398b8f374c32feac761232c13c848b19d7a91e9a61cb56e9e0bf7ff79cc7468bb5fadbf3c9eef63b2ab501e04'
 'SKIP')
 
 build() {


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

2019-12-04 Thread Felix Yan via arch-commits
Date: Wednesday, December 4, 2019 @ 21:09:52
  Author: felixonmars
Revision: 535268

upgpkg: certbot 1.0.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-04 21:08:41 UTC (rev 535267)
+++ PKGBUILD2019-12-04 21:09:52 UTC (rev 535268)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.40.1
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('a6f1de41c0d182a184fc0a27bd0256291c1bc76cfd51007b0c057aa4230f4cebf8dc4a393d71dba21a5b833d4728c038a5a7ebd84b4b84d17907589bfa1e0858'
+sha512sums=('ab432f3986b28d88857a550016b21240f5af85f145e12c291c9b99060c22d1d313b1eadb132ae0297f238096b7754ce37d409e5c83d8d67564058c657307'
 'SKIP')
 
 build() {


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

2019-11-20 Thread Felix Yan via arch-commits
Date: Wednesday, November 20, 2019 @ 19:15:33
  Author: felixonmars
Revision: 530774

upgpkg: certbot 0.40.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-20 19:14:26 UTC (rev 530773)
+++ PKGBUILD2019-11-20 19:15:33 UTC (rev 530774)
@@ -2,8 +2,8 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.39.0
-pkgrel=3
+pkgver=0.40.1
+pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('463083a7d5d086c823372e2e810c905aa13f1a24eb1d8fa55cdfc06b0ba9358d90f400ae5d1bb5d89e0a3137702719a552b6de1f75da0014ec9602897db372d3'
+sha512sums=('a6f1de41c0d182a184fc0a27bd0256291c1bc76cfd51007b0c057aa4230f4cebf8dc4a393d71dba21a5b833d4728c038a5a7ebd84b4b84d17907589bfa1e0858'
 'SKIP')
 
 build() {


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

2019-11-03 Thread Evangelos Foutras via arch-commits
Date: Sunday, November 3, 2019 @ 22:02:31
  Author: foutrelis
Revision: 522741

Python 3.8 rebuild

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-03 22:02:30 UTC (rev 522740)
+++ PKGBUILD2019-11-03 22:02:31 UTC (rev 522741)
@@ -3,7 +3,7 @@
 
 pkgname=certbot
 pkgver=0.39.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')


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

2019-10-26 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 26, 2019 @ 15:05:01
  Author: foutrelis
Revision: 520394

Python 3.8 rebuild

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-26 15:04:12 UTC (rev 520393)
+++ PKGBUILD2019-10-26 15:05:01 UTC (rev 520394)
@@ -3,7 +3,7 @@
 
 pkgname=certbot
 pkgver=0.39.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 09:06:58
  Author: felixonmars
Revision: 512897

upgpkg: certbot 0.39.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 09:06:32 UTC (rev 512896)
+++ PKGBUILD2019-10-05 09:06:58 UTC (rev 512897)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('93b577efa1f3aaee880d6d3deeec3a902e55788e9c723534e7a1c325e5d48bc9c4aec71d8eb9855ddf2fc9220d028eb4b248d8936cb2fcdce9edcb06c0bb6745'
+sha512sums=('463083a7d5d086c823372e2e810c905aa13f1a24eb1d8fa55cdfc06b0ba9358d90f400ae5d1bb5d89e0a3137702719a552b6de1f75da0014ec9602897db372d3'
 'SKIP')
 
 build() {


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

2019-09-04 Thread Felix Yan via arch-commits
Date: Wednesday, September 4, 2019 @ 16:40:11
  Author: felixonmars
Revision: 508045

upgpkg: certbot 0.38.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-04 16:35:09 UTC (rev 508044)
+++ PKGBUILD2019-09-04 16:40:11 UTC (rev 508045)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.37.2
+pkgver=0.38.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -9,8 +9,9 @@
 license=('Apache')
 url="https://certbot.eff.org;
 depends=('ca-certificates' 'python-acme' 'python-configargparse' 
'python-configobj'
- 'python-cryptography' 'python-mock' 'python-parsedatetime' 
'python-pyrfc3339'
- 'python-pytz' 'python-setuptools' 'python-zope-component' 
'python-zope-interface')
+ 'python-cryptography' 'python-distro' 'python-mock' 
'python-parsedatetime'
+ 'python-pyrfc3339' 'python-pytz' 'python-setuptools' 
'python-zope-component'
+ 'python-zope-interface')
 checkdepends=('python-pytest-runner')
 optdepends=('certbot-apache: Apache plugin for Let’s Encrypt client'
 'certbot-nginx: Nginx plugin for Let’s Encrypt client')
@@ -19,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('752c37ec513477e9143d1037591dcba49d532e8e2def569ab19270494ad756d89d2e279c7f9b003e814dc51393cedceb4214bae6ce6297f8951f558dc5d3bfb9'
+sha512sums=('93b577efa1f3aaee880d6d3deeec3a902e55788e9c723534e7a1c325e5d48bc9c4aec71d8eb9855ddf2fc9220d028eb4b248d8936cb2fcdce9edcb06c0bb6745'
 'SKIP')
 
 build() {


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

2019-08-22 Thread Felix Yan via arch-commits
Date: Thursday, August 22, 2019 @ 16:28:31
  Author: felixonmars
Revision: 500525

upgpkg: certbot 0.37.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-22 16:23:32 UTC (rev 500524)
+++ PKGBUILD2019-08-22 16:28:31 UTC (rev 500525)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.37.0
+pkgver=0.37.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('3d744c72a9480e643f0ff64853e1b1dd099ccd330cfb9e10d4612b47bfff2496a326e78e914c27fc77b51f1a6350ba0011ba293ef88bca5619483baed8c005f0'
+sha512sums=('752c37ec513477e9143d1037591dcba49d532e8e2def569ab19270494ad756d89d2e279c7f9b003e814dc51393cedceb4214bae6ce6297f8951f558dc5d3bfb9'
 'SKIP')
 
 build() {


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

2019-08-09 Thread Felix Yan via arch-commits
Date: Friday, August 9, 2019 @ 08:43:47
  Author: felixonmars
Revision: 498409

upgpkg: certbot 0.37.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-09 08:36:27 UTC (rev 498408)
+++ PKGBUILD2019-08-09 08:43:47 UTC (rev 498409)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.36.0
+pkgver=0.37.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('13f2daa997c2d56e0d9caf544e29e5c50e43572e7ebe7d15b4957cbeec6774afefb87693e37c04709219934681f12fef72b0c6be09e0c44ef924c81927d252f4'
+sha512sums=('3d744c72a9480e643f0ff64853e1b1dd099ccd330cfb9e10d4612b47bfff2496a326e78e914c27fc77b51f1a6350ba0011ba293ef88bca5619483baed8c005f0'
 'SKIP')
 
 build() {


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

2019-07-12 Thread Felix Yan via arch-commits
Date: Friday, July 12, 2019 @ 10:18:30
  Author: felixonmars
Revision: 489024

upgpkg: certbot 0.36.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-12 10:18:28 UTC (rev 489023)
+++ PKGBUILD2019-07-12 10:18:30 UTC (rev 489024)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.35.1
+pkgver=0.36.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('5449319916379e122d8ea075eb85d9129577440ff0d9dc8fd0406c9a37b0e72432be07296eda8a9541e12719b9be68ce2f5540707083ef88cddf6c3233daef3c'
+sha512sums=('13f2daa997c2d56e0d9caf544e29e5c50e43572e7ebe7d15b4957cbeec6774afefb87693e37c04709219934681f12fef72b0c6be09e0c44ef924c81927d252f4'
 'SKIP')
 
 build() {


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

2019-06-12 Thread Felix Yan via arch-commits
Date: Wednesday, June 12, 2019 @ 10:32:41
  Author: felixonmars
Revision: 480641

upgpkg: certbot 0.35.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-12 10:31:51 UTC (rev 480640)
+++ PKGBUILD2019-06-12 10:32:41 UTC (rev 480641)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.35.0
+pkgver=0.35.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('1f135df0b5d43a021b10d0c2e78aea2ed21ad07ee59bb7ed7c3c4e9efcd6288801f86b03f2bc8e18b1367e27f2c9ba53f3de8cdf0128ef93c243c79002c99839'
+sha512sums=('5449319916379e122d8ea075eb85d9129577440ff0d9dc8fd0406c9a37b0e72432be07296eda8a9541e12719b9be68ce2f5540707083ef88cddf6c3233daef3c'
 'SKIP')
 
 build() {


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

2019-06-06 Thread Felix Yan via arch-commits
Date: Thursday, June 6, 2019 @ 14:08:02
  Author: felixonmars
Revision: 477461

upgpkg: certbot 0.35.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-06 14:03:27 UTC (rev 477460)
+++ PKGBUILD2019-06-06 14:08:02 UTC (rev 477461)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.34.2
+pkgver=0.35.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('a780f0f1bbc9186274047d867eb57a4d7cd37f9801877827bc0e97f0dba9676927d44cb7c671e8ecd7cc7bc07496b45fb18195e696f667b60d075bae45a8baf0'
+sha512sums=('1f135df0b5d43a021b10d0c2e78aea2ed21ad07ee59bb7ed7c3c4e9efcd6288801f86b03f2bc8e18b1367e27f2c9ba53f3de8cdf0128ef93c243c79002c99839'
 'SKIP')
 
 build() {


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

2019-05-08 Thread Felix Yan via arch-commits
Date: Wednesday, May 8, 2019 @ 08:19:31
  Author: felixonmars
Revision: 462703

upgpkg: certbot 0.34.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-08 08:19:26 UTC (rev 462702)
+++ PKGBUILD2019-05-08 08:19:31 UTC (rev 462703)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.34.1
+pkgver=0.34.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('7c30451018a70be191809cacd8390b6a49242f5cda3548582b7204c73c029e263ddae87da3274a935d68c618a25f89d199f9d289aba30ac910debf47cdb20d6c'
+sha512sums=('a780f0f1bbc9186274047d867eb57a4d7cd37f9801877827bc0e97f0dba9676927d44cb7c671e8ecd7cc7bc07496b45fb18195e696f667b60d075bae45a8baf0'
 'SKIP')
 
 build() {


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

2019-05-07 Thread Felix Yan via arch-commits
Date: Tuesday, May 7, 2019 @ 10:00:40
  Author: felixonmars
Revision: 461984

upgpkg: certbot 0.34.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-07 09:59:38 UTC (rev 461983)
+++ PKGBUILD2019-05-07 10:00:40 UTC (rev 461984)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.34.0
+pkgver=0.34.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('312fd27b03e2cbab9dc108f62c61884608ddd0b933d827d5ff152a6258751b1f0383024a308778b363b1af9341e1e70e2b8271b19f15808a4febc2b911635dec'
+sha512sums=('7c30451018a70be191809cacd8390b6a49242f5cda3548582b7204c73c029e263ddae87da3274a935d68c618a25f89d199f9d289aba30ac910debf47cdb20d6c'
 'SKIP')
 
 build() {


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

2019-05-02 Thread Felix Yan via arch-commits
Date: Thursday, May 2, 2019 @ 22:26:26
  Author: felixonmars
Revision: 457841

upgpkg: certbot 0.34.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-02 22:26:20 UTC (rev 457840)
+++ PKGBUILD2019-05-02 22:26:26 UTC (rev 457841)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.33.1
+pkgver=0.34.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('49e7e0b8a77f81620d54bd003fc6f83b54eac7d28e4784970651d499aa124ab92f3d61232fc48b9c06d596a388d13bf0504e8d8a5de985d08318a844e497be23'
+sha512sums=('312fd27b03e2cbab9dc108f62c61884608ddd0b933d827d5ff152a6258751b1f0383024a308778b363b1af9341e1e70e2b8271b19f15808a4febc2b911635dec'
 'SKIP')
 
 build() {


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

2019-04-06 Thread Felix Yan via arch-commits
Date: Saturday, April 6, 2019 @ 21:05:34
  Author: felixonmars
Revision: 450091

upgpkg: certbot 0.33.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-06 20:58:21 UTC (rev 450090)
+++ PKGBUILD2019-04-06 21:05:34 UTC (rev 450091)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.33.0
+pkgver=0.33.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('63486d6b88ec398e402fa50bf4681842fb1a84d7c7f353778ada869548193dbf1a2248a2ae51536907f18ca05d148844ca676764ca199d1ffd10a565734ca90d'
+sha512sums=('49e7e0b8a77f81620d54bd003fc6f83b54eac7d28e4784970651d499aa124ab92f3d61232fc48b9c06d596a388d13bf0504e8d8a5de985d08318a844e497be23'
 'SKIP')
 
 build() {


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

2019-04-03 Thread Felix Yan via arch-commits
Date: Wednesday, April 3, 2019 @ 22:17:01
  Author: felixonmars
Revision: 448513

upgpkg: certbot 0.33.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-03 22:16:54 UTC (rev 448512)
+++ PKGBUILD2019-04-03 22:17:01 UTC (rev 448513)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.32.0
+pkgver=0.33.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('bd5c7748c3fd801f8bd531f4545eb83cd3d75a6d93c7dc0d0975a7d2236250d4773ddfcb38e1f1a65d3bbb56333517b9f30628a92edfa4d10ba044eb0f9e1809'
+sha512sums=('63486d6b88ec398e402fa50bf4681842fb1a84d7c7f353778ada869548193dbf1a2248a2ae51536907f18ca05d148844ca676764ca199d1ffd10a565734ca90d'
 'SKIP')
 
 build() {


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

2019-03-07 Thread Felix Yan via arch-commits
Date: Thursday, March 7, 2019 @ 13:31:20
  Author: felixonmars
Revision: 437998

upgpkg: certbot 0.32.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-07 13:30:39 UTC (rev 437997)
+++ PKGBUILD2019-03-07 13:31:20 UTC (rev 437998)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.31.0
+pkgver=0.32.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('a9bc84b54a071b15acc9db2801745b0b275f60a6037140d2fb074f0fb03c66363e63fc9ebe7e2e9770c6bd7802d0994108e2c0edb07bd376f7dcfb31daac8491'
+sha512sums=('bd5c7748c3fd801f8bd531f4545eb83cd3d75a6d93c7dc0d0975a7d2236250d4773ddfcb38e1f1a65d3bbb56333517b9f30628a92edfa4d10ba044eb0f9e1809'
 'SKIP')
 
 build() {


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

2019-02-08 Thread Felix Yan via arch-commits
Date: Friday, February 8, 2019 @ 09:54:19
  Author: felixonmars
Revision: 430513

upgpkg: certbot 0.31.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-08 09:54:17 UTC (rev 430512)
+++ PKGBUILD2019-02-08 09:54:19 UTC (rev 430513)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.30.2
+pkgver=0.31.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('31d98776411903d9a73473aff6901b5c2f63582701bdf3b6adb9a961274d04b628e7dd8d7549cecf99b720c18215a45fb29fa9b6f401eccf8134f1b6f072cc9a'
+sha512sums=('a9bc84b54a071b15acc9db2801745b0b275f60a6037140d2fb074f0fb03c66363e63fc9ebe7e2e9770c6bd7802d0994108e2c0edb07bd376f7dcfb31daac8491'
 'SKIP')
 
 build() {


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

2019-01-26 Thread Felix Yan via arch-commits
Date: Saturday, January 26, 2019 @ 08:51:34
  Author: felixonmars
Revision: 427949

upgpkg: certbot 0.30.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-26 08:50:26 UTC (rev 427948)
+++ PKGBUILD2019-01-26 08:51:34 UTC (rev 427949)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.30.1
+pkgver=0.30.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('76dcdb30a8e7a1350ecfee21d00bfde8f02f2ab85c44bd1b1a577c65b9deca804b501d7b5a283164ccfa495691a89407ac7826289f19a66140bad7c2ff7e2c8e'
+sha512sums=('31d98776411903d9a73473aff6901b5c2f63582701bdf3b6adb9a961274d04b628e7dd8d7549cecf99b720c18215a45fb29fa9b6f401eccf8134f1b6f072cc9a'
 'SKIP')
 
 build() {


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

2019-01-25 Thread Felix Yan via arch-commits
Date: Friday, January 25, 2019 @ 14:47:01
  Author: felixonmars
Revision: 427757

upgpkg: certbot 0.30.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-25 14:46:37 UTC (rev 427756)
+++ PKGBUILD2019-01-25 14:47:01 UTC (rev 427757)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.30.0
+pkgver=0.30.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('ecd6629ec9086b91aa0be36a81a8ecb6f6ef5438b369f5f4e87e2aa7e8acb03682042b43e4ee6976dbc17e2ae08a5c7f61a87978af66b06ebd7de526d84638e6'
+sha512sums=('76dcdb30a8e7a1350ecfee21d00bfde8f02f2ab85c44bd1b1a577c65b9deca804b501d7b5a283164ccfa495691a89407ac7826289f19a66140bad7c2ff7e2c8e'
 'SKIP')
 
 build() {


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

2019-01-03 Thread Felix Yan via arch-commits
Date: Thursday, January 3, 2019 @ 20:49:20
  Author: felixonmars
Revision: 420373

upgpkg: certbot 0.30.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-03 20:48:06 UTC (rev 420372)
+++ PKGBUILD2019-01-03 20:49:20 UTC (rev 420373)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.29.1
+pkgver=0.30.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e0ca85a75f3669d0e18a6ab00779a266d958a0831b3bd86e01abd8bd9a968c20c5562839f1e60bc1a7d3704c471ab77e0b588c70cc3b5ed3d81733b55454cd83'
+sha512sums=('ecd6629ec9086b91aa0be36a81a8ecb6f6ef5438b369f5f4e87e2aa7e8acb03682042b43e4ee6976dbc17e2ae08a5c7f61a87978af66b06ebd7de526d84638e6'
 'SKIP')
 
 build() {


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

2018-12-06 Thread Felix Yan via arch-commits
Date: Thursday, December 6, 2018 @ 16:27:26
  Author: felixonmars
Revision: 411792

upgpkg: certbot 0.29.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-06 16:26:15 UTC (rev 411791)
+++ PKGBUILD2018-12-06 16:27:26 UTC (rev 411792)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.29.0
+pkgver=0.29.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('2c862ff31703cbdb490bd55b2ad3c329d8c479054b04fad8bc17c1f50591e01ffceb90861fd4687a255ef5736bf2ea20a61c3e79a15c17e27dc98245368545b9'
+sha512sums=('e0ca85a75f3669d0e18a6ab00779a266d958a0831b3bd86e01abd8bd9a968c20c5562839f1e60bc1a7d3704c471ab77e0b588c70cc3b5ed3d81733b55454cd83'
 'SKIP')
 
 build() {


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

2018-12-06 Thread Felix Yan via arch-commits
Date: Thursday, December 6, 2018 @ 08:01:37
  Author: felixonmars
Revision: 411629

upgpkg: certbot 0.29.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-06 07:59:39 UTC (rev 411628)
+++ PKGBUILD2018-12-06 08:01:37 UTC (rev 411629)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.28.0
+pkgver=0.29.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('c6390190e2017d16eb518f2ae2920bb43a6b88ae70dfba6a18c52156652aac5bd0eedc62b04b270b91fb4753e5c30f072f211b184171b21f6a3fbe77f90e9d06'
+sha512sums=('2c862ff31703cbdb490bd55b2ad3c329d8c479054b04fad8bc17c1f50591e01ffceb90861fd4687a255ef5736bf2ea20a61c3e79a15c17e27dc98245368545b9'
 'SKIP')
 
 build() {


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

2018-11-08 Thread Felix Yan via arch-commits
Date: Thursday, November 8, 2018 @ 10:38:11
  Author: felixonmars
Revision: 403927

upgpkg: certbot 0.28.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-08 10:27:13 UTC (rev 403926)
+++ PKGBUILD2018-11-08 10:38:11 UTC (rev 403927)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.27.1
+pkgver=0.28.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -19,7 +19,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('3750cf7a7c5249b35e288a541474babd2addc027482f960b6e720d8eaff4675179d19764bacc62dea425678665c33541e4fba75f451f93ec0e56c3b12640db52'
+sha512sums=('c6390190e2017d16eb518f2ae2920bb43a6b88ae70dfba6a18c52156652aac5bd0eedc62b04b270b91fb4753e5c30f072f211b184171b21f6a3fbe77f90e9d06'
 'SKIP')
 
 build() {


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

2018-09-07 Thread Felix Yan via arch-commits
Date: Friday, September 7, 2018 @ 09:01:37
  Author: felixonmars
Revision: 378513

upgpkg: certbot 0.27.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-07 08:56:40 UTC (rev 378512)
+++ PKGBUILD2018-09-07 09:01:37 UTC (rev 378513)
@@ -3,24 +3,24 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.27.0
+pkgver=0.27.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
 url="https://certbot.eff.org;
-depends=('ca-certificates' "python-acme" 'python-configargparse' 
'python-configobj'
+depends=('ca-certificates' 'python-acme' 'python-configargparse' 
'python-configobj'
  'python-cryptography' 'python-mock' 'python-parsedatetime' 
'python-pyrfc3339'
  'python-pytz' 'python-setuptools' 'python-zope-component' 
'python-zope-interface')
 checkdepends=('python-pytest-runner')
-optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
-"certbot-nginx: Nginx plugin for Let’s Encrypt client")
+optdepends=('certbot-apache: Apache plugin for Let’s Encrypt client'
+'certbot-nginx: Nginx plugin for Let’s Encrypt client')
 replaces=("letsencrypt")
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('fd504a128a3f8c485f43570c2ffae52831bef951d765cf8e0386972eb979f6bd8d3e1897434359a592d20833a5773eef600c98a46502d88bd9cb752f30d05058'
+sha512sums=('3750cf7a7c5249b35e288a541474babd2addc027482f960b6e720d8eaff4675179d19764bacc62dea425678665c33541e4fba75f451f93ec0e56c3b12640db52'
 'SKIP')
 
 build() {


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

2018-09-06 Thread Felix Yan via arch-commits
Date: Thursday, September 6, 2018 @ 07:26:28
  Author: felixonmars
Revision: 377234

upgpkg: certbot 0.27.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-06 07:26:16 UTC (rev 377233)
+++ PKGBUILD2018-09-06 07:26:28 UTC (rev 377234)
@@ -3,13 +3,13 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.26.1
+pkgver=0.27.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
 url="https://certbot.eff.org;
-depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
+depends=('ca-certificates' "python-acme" 'python-configargparse' 
'python-configobj'
  'python-cryptography' 'python-mock' 'python-parsedatetime' 
'python-pyrfc3339'
  'python-pytz' 'python-setuptools' 'python-zope-component' 
'python-zope-interface')
 checkdepends=('python-pytest-runner')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('367b7224b65dd4a1af9ee8c853e76bb151b075c77cd59c4e2d822b306a0025e61fbc56fa0a2f3ca7a47640e9a51d245da1722b18e7779787e5f54911545e6011'
+sha512sums=('fd504a128a3f8c485f43570c2ffae52831bef951d765cf8e0386972eb979f6bd8d3e1897434359a592d20833a5773eef600c98a46502d88bd9cb752f30d05058'
 'SKIP')
 
 build() {


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

2018-07-22 Thread Felix Yan via arch-commits
Date: Sunday, July 22, 2018 @ 07:35:56
  Author: felixonmars
Revision: 362788

upgpkg: certbot 0.26.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-22 07:31:51 UTC (rev 362787)
+++ PKGBUILD2018-07-22 07:35:56 UTC (rev 362788)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.26.0
+pkgver=0.26.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('6068288585ecf3bc9bc558452260234d3ec79379f582aef9f78e8c5181f165720e410679124e94ba3d149277a55b07922a115abda0b61c61ab537b50695b6b10'
+sha512sums=('367b7224b65dd4a1af9ee8c853e76bb151b075c77cd59c4e2d822b306a0025e61fbc56fa0a2f3ca7a47640e9a51d245da1722b18e7779787e5f54911545e6011'
 'SKIP')
 
 build() {


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

2018-07-12 Thread Felix Yan via arch-commits
Date: Thursday, July 12, 2018 @ 20:34:02
  Author: felixonmars
Revision: 358187

upgpkg: certbot 0.26.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-12 20:33:45 UTC (rev 358186)
+++ PKGBUILD2018-07-12 20:34:02 UTC (rev 358187)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.25.1
+pkgver=0.26.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('150116df198ef19f822c91c4345f7c64907c0b5e6d7ecb5ded40068a3cfb24d972c267f88452b6623a16ebaa64c9db1a5cfd6c3aa0afb0d7906c1eedc78eef31'
+sha512sums=('6068288585ecf3bc9bc558452260234d3ec79379f582aef9f78e8c5181f165720e410679124e94ba3d149277a55b07922a115abda0b61c61ab537b50695b6b10'
 'SKIP')
 
 build() {


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

2018-06-13 Thread Felix Yan via arch-commits
Date: Thursday, June 14, 2018 @ 00:45:55
  Author: felixonmars
Revision: 342981

upgpkg: certbot 0.25.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-14 00:44:46 UTC (rev 342980)
+++ PKGBUILD2018-06-14 00:45:55 UTC (rev 342981)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.25.0
+pkgver=0.25.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('d1c4b8322d0b332c2e87f0f5a3d362f90020b59e57494dba2640f4a65e90cacb6884df838947c18460a6e17abe8eadb3c227c83752125111af5b44f2eecc36ec'
+sha512sums=('150116df198ef19f822c91c4345f7c64907c0b5e6d7ecb5ded40068a3cfb24d972c267f88452b6623a16ebaa64c9db1a5cfd6c3aa0afb0d7906c1eedc78eef31'
 'SKIP')
 
 build() {


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

2018-06-06 Thread Felix Yan via arch-commits
Date: Thursday, June 7, 2018 @ 04:27:45
  Author: felixonmars
Revision: 341577

upgpkg: certbot 0.25.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-07 04:26:19 UTC (rev 341576)
+++ PKGBUILD2018-06-07 04:27:45 UTC (rev 341577)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.24.0
+pkgver=0.25.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('70ed6fc0d6aa0da1ce163e338984b7828f8e0688c184de0b4be774baaff9294c512b00e90082f814e4ea87bba9607dd5e666ca077331e635a566ecd4f3452787'
+sha512sums=('d1c4b8322d0b332c2e87f0f5a3d362f90020b59e57494dba2640f4a65e90cacb6884df838947c18460a6e17abe8eadb3c227c83752125111af5b44f2eecc36ec'
 'SKIP')
 
 build() {


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

2018-05-22 Thread Felix Yan via arch-commits
Date: Tuesday, May 22, 2018 @ 06:11:58
  Author: felixonmars
Revision: 326865

remove redundant checkdepends

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-22 06:11:37 UTC (rev 326864)
+++ PKGBUILD2018-05-22 06:11:58 UTC (rev 326865)
@@ -12,7 +12,7 @@
 depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
  'python-cryptography' 'python-mock' 'python-parsedatetime' 
'python-pyrfc3339'
  'python-pytz' 'python-setuptools' 'python-zope-component' 
'python-zope-interface')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+checkdepends=('python-pytest-runner')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
 replaces=("letsencrypt")


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

2018-05-02 Thread Felix Yan via arch-commits
Date: Thursday, May 3, 2018 @ 01:53:53
  Author: felixonmars
Revision: 318763

upgpkg: certbot 0.24.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-03 01:52:47 UTC (rev 318762)
+++ PKGBUILD2018-05-03 01:53:53 UTC (rev 318763)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.23.0
+pkgver=0.24.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('efe98e967963db0e003565ad08b769f6c1e77207febcd363a29cfe9d6290d36be69488665fddefda64e54980b6f236f74b796e20a57f8d5c4b993ff0b0472404'
+sha512sums=('70ed6fc0d6aa0da1ce163e338984b7828f8e0688c184de0b4be774baaff9294c512b00e90082f814e4ea87bba9607dd5e666ca077331e635a566ecd4f3452787'
 'SKIP')
 
 build() {


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

2018-04-04 Thread Felix Yan via arch-commits
Date: Thursday, April 5, 2018 @ 05:35:22
  Author: felixonmars
Revision: 314345

upgpkg: certbot 0.23.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-05 05:33:48 UTC (rev 314344)
+++ PKGBUILD2018-04-05 05:35:22 UTC (rev 314345)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.22.2
+pkgver=0.23.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('dc04054917448f542e725e3f3e196020f1847773cb26cbf3ceade47f66561a95364ba8b28b8f278a3906a71113cd7f3b20d879882c2bb1a1aae5007585a6f865'
+sha512sums=('efe98e967963db0e003565ad08b769f6c1e77207febcd363a29cfe9d6290d36be69488665fddefda64e54980b6f236f74b796e20a57f8d5c4b993ff0b0472404'
 'SKIP')
 
 build() {


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

2018-03-19 Thread Felix Yan via arch-commits
Date: Tuesday, March 20, 2018 @ 03:57:15
  Author: felixonmars
Revision: 309229

upgpkg: certbot 0.22.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-20 03:56:43 UTC (rev 309228)
+++ PKGBUILD2018-03-20 03:57:15 UTC (rev 309229)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.22.0
+pkgver=0.22.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e6c724b277a9343e08b309c15d9023dc5959845197974a08c1642c4c24e40900cf273686e7aaf411407af68962faf5f08ea42aa5f3a3628c01683a159b089a62'
+sha512sums=('dc04054917448f542e725e3f3e196020f1847773cb26cbf3ceade47f66561a95364ba8b28b8f278a3906a71113cd7f3b20d879882c2bb1a1aae5007585a6f865'
 'SKIP')
 
 build() {


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

2018-03-07 Thread Felix Yan via arch-commits
Date: Thursday, March 8, 2018 @ 01:57:51
  Author: felixonmars
Revision: 304168

upgpkg: certbot 0.22.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-08 01:56:15 UTC (rev 304167)
+++ PKGBUILD2018-03-08 01:57:51 UTC (rev 304168)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.21.1
+pkgver=0.22.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('5ba07e8576aaeafe8e1cb1c62f1695a80f21e0ef0db0753ee8fde1513e5d520f36103dd842ab1a5ce9df9166cf4755ca3bd9f46fe37a8e0c08a5f4a72b7008ef'
+sha512sums=('e6c724b277a9343e08b309c15d9023dc5959845197974a08c1642c4c24e40900cf273686e7aaf411407af68962faf5f08ea42aa5f3a3628c01683a159b089a62'
 'SKIP')
 
 build() {


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

2018-01-27 Thread Felix Yan via arch-commits
Date: Saturday, January 27, 2018 @ 09:14:31
  Author: felixonmars
Revision: 287386

upgpkg: certbot 0.21.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-27 09:11:12 UTC (rev 287385)
+++ PKGBUILD2018-01-27 09:14:31 UTC (rev 287386)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.21.0
+pkgver=0.21.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('8d25619347a07a6e7475984b9e23eb0f9a259cc5968aee5c5953049f91e2a9b21d21cf51799458c1a8998298b1402caf2b063269ed2a3147265367a125840e23'
+sha512sums=('5ba07e8576aaeafe8e1cb1c62f1695a80f21e0ef0db0753ee8fde1513e5d520f36103dd842ab1a5ce9df9166cf4755ca3bd9f46fe37a8e0c08a5f4a72b7008ef'
 'SKIP')
 
 build() {


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

2018-01-17 Thread Felix Yan via arch-commits
Date: Thursday, January 18, 2018 @ 05:09:58
  Author: felixonmars
Revision: 283816

upgpkg: certbot 0.21.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-18 05:09:49 UTC (rev 283815)
+++ PKGBUILD2018-01-18 05:09:58 UTC (rev 283816)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.20.0
+pkgver=0.21.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -10,9 +10,9 @@
 license=('Apache')
 url="https://certbot.eff.org;
 depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
- 'python-cryptography' 'python-pyopenssl' 'python-mock' 
'python-parsedatetime'
- 'python-pytz' 'python-setuptools' 'python-six' 'python-zope-component'
- 'python-zope-interface')
+ 'python-cryptography' 'python-mock' 'python-parsedatetime' 
'python-pyrfc3339'
+ 'python-pytz' 'python-setuptools' 'python-zope-component' 
'python-zope-interface')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
 replaces=("letsencrypt")
@@ -20,13 +20,9 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('574ddb93b4bccbd379135c03c94c9acb10136e8bc8a1458d30e169a9bccd22ddc8ea4a9106dc85469459dbd98c6787452c539e593e13ddd2d7235aac7f96'
+sha512sums=('8d25619347a07a6e7475984b9e23eb0f9a259cc5968aee5c5953049f91e2a9b21d21cf51799458c1a8998298b1402caf2b063269ed2a3147265367a125840e23'
 'SKIP')
 
-prepare() {
-  sed -i "/'argparse',/d" $pkgname-$pkgver/setup.py
-}
-
 build() {
   cd "$srcdir"/$pkgname-$pkgver
   python setup.py build
@@ -34,7 +30,7 @@
 
 check() {
   cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
+  python setup.py pytest
 }
 
 package() {


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

2017-12-06 Thread Felix Yan via arch-commits
Date: Thursday, December 7, 2017 @ 06:07:46
  Author: felixonmars
Revision: 272696

upgpkg: certbot 0.20.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-07 06:05:28 UTC (rev 272695)
+++ PKGBUILD2017-12-07 06:07:46 UTC (rev 272696)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.19.0
+pkgver=0.20.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('a4d5d0007e623b98d8fbff8b246e292320deaa315284074ee466daddee0d47076c7e3f3c2eddfce94e6d05ecadaa2c2814b515be7e325d17d407708cda76c507'
+sha512sums=('574ddb93b4bccbd379135c03c94c9acb10136e8bc8a1458d30e169a9bccd22ddc8ea4a9106dc85469459dbd98c6787452c539e593e13ddd2d7235aac7f96'
 'SKIP')
 
 prepare() {


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

2017-10-05 Thread Felix Yan
Date: Thursday, October 5, 2017 @ 13:45:53
  Author: felixonmars
Revision: 261697

upgpkg: certbot 0.19.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-05 13:44:33 UTC (rev 261696)
+++ PKGBUILD2017-10-05 13:45:53 UTC (rev 261697)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.18.2
+pkgver=0.19.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('a59b485fffd88ae0f7b6419b9563c081ebde4aea290c42bc7c3e768e70723e7ea3035d5eebfdca0907387f8139d8b2eab4cbd46af776902265146d05531345a2'
+sha512sums=('a4d5d0007e623b98d8fbff8b246e292320deaa315284074ee466daddee0d47076c7e3f3c2eddfce94e6d05ecadaa2c2814b515be7e325d17d407708cda76c507'
 'SKIP')
 
 prepare() {


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

2017-09-20 Thread Felix Yan
Date: Thursday, September 21, 2017 @ 05:50:37
  Author: felixonmars
Revision: 258932

upgpkg: certbot 0.18.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-21 05:49:29 UTC (rev 258931)
+++ PKGBUILD2017-09-21 05:50:37 UTC (rev 258932)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('8c17538d7bf78ee019e8b3d8e94d118f8079bfa9864b057ae0482f4b962779cd6b91acea11386901be54205143ef0778dddaa0e07581f8b77971362a263d63c2'
+sha512sums=('a59b485fffd88ae0f7b6419b9563c081ebde4aea290c42bc7c3e768e70723e7ea3035d5eebfdca0907387f8139d8b2eab4cbd46af776902265146d05531345a2'
 'SKIP')
 
 prepare() {


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

2017-09-08 Thread Felix Yan
Date: Saturday, September 9, 2017 @ 05:46:02
  Author: felixonmars
Revision: 256493

upgpkg: certbot 0.18.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-09 05:45:22 UTC (rev 256492)
+++ PKGBUILD2017-09-09 05:46:02 UTC (rev 256493)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.18.0
+pkgver=0.18.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e2218feb8a3788de5d137ac0ce38a2a0a59f98075da9109471685786376906cec6c8adb1e8c16271dbe0c1ca18fc3a0521954ddb8685d0667272bbd318452523'
+sha512sums=('8c17538d7bf78ee019e8b3d8e94d118f8079bfa9864b057ae0482f4b962779cd6b91acea11386901be54205143ef0778dddaa0e07581f8b77971362a263d63c2'
 'SKIP')
 
 prepare() {


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

2017-09-08 Thread Felix Yan
Date: Friday, September 8, 2017 @ 10:35:16
  Author: felixonmars
Revision: 256164

upgpkg: certbot 0.18.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-08 10:33:50 UTC (rev 256163)
+++ PKGBUILD2017-09-08 10:35:16 UTC (rev 256164)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.17.0
+pkgver=0.18.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('f4087cdb3c1fe29b38fb1b2459848f258cba6b91caa53ab68cb78906a6f2fd019ab837d8786cda4ae9ed47b70b05c526e9c38c31e05cb12a5fe9ad770200d243'
+sha512sums=('e2218feb8a3788de5d137ac0ce38a2a0a59f98075da9109471685786376906cec6c8adb1e8c16271dbe0c1ca18fc3a0521954ddb8685d0667272bbd318452523'
 'SKIP')
 
 prepare() {


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

2017-08-03 Thread Felix Yan
Date: Thursday, August 3, 2017 @ 06:58:54
  Author: felixonmars
Revision: 247684

upgpkg: certbot 0.17.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-03 06:56:17 UTC (rev 247683)
+++ PKGBUILD2017-08-03 06:58:54 UTC (rev 247684)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.16.0
+pkgver=0.17.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('05765a3dff9ae39eb9a0499265e1b81e2aba7a863c97ebc3a42b16ea1200352a77a582261d5ae4d86911280b5efa6caeca39687f37b8909c496cb3cd3185e791'
+sha512sums=('f4087cdb3c1fe29b38fb1b2459848f258cba6b91caa53ab68cb78906a6f2fd019ab837d8786cda4ae9ed47b70b05c526e9c38c31e05cb12a5fe9ad770200d243'
 'SKIP')
 
 prepare() {


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

2017-07-06 Thread Felix Yan
Date: Friday, July 7, 2017 @ 05:44:30
  Author: felixonmars
Revision: 242616

upgpkg: certbot 0.16.0-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-07 05:44:08 UTC (rev 242615)
+++ PKGBUILD2017-07-07 05:44:30 UTC (rev 242616)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.15.0
+pkgver=0.16.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('e17b5c10a88abdceef2ef7902604a6003b39cb8bae9a774e0fb4292ecd9332e381e29133869f2616a6018d1dd699e22830c534bd135cc431389db912e1ee827f'
+sha512sums=('05765a3dff9ae39eb9a0499265e1b81e2aba7a863c97ebc3a42b16ea1200352a77a582261d5ae4d86911280b5efa6caeca39687f37b8909c496cb3cd3185e791'
 'SKIP')
 
 prepare() {


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

2017-06-27 Thread Felix Yan
Date: Tuesday, June 27, 2017 @ 16:17:53
  Author: felixonmars
Revision: 241251

Fix upstream url

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-27 16:07:45 UTC (rev 241250)
+++ PKGBUILD2017-06-27 16:17:53 UTC (rev 241251)
@@ -8,7 +8,7 @@
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
-url="https://letsencrypt.org/;
+url="https://certbot.eff.org;
 depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
  'python-cryptography' 'python-pyopenssl' 'python-mock' 
'python-parsedatetime'
  'python-pytz' 'python-setuptools' 'python-six' 'python-zope-component'


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

2017-06-09 Thread Felix Yan
Date: Friday, June 9, 2017 @ 16:04:53
  Author: felixonmars
Revision: 235594

upgpkg: certbot 0.15.0-1

Upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-09 16:03:52 UTC (rev 235593)
+++ PKGBUILD2017-06-09 16:04:53 UTC (rev 235594)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.14.2
+pkgver=0.15.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('971977e60a544c0836876a6ee0509f581519a6edc9a0358ef6d80e079ffa0f29cf58cb9be1913787f6728edaf1aaafd8459a7728964919f1584cfc86ac8b5ae2'
+sha512sums=('e17b5c10a88abdceef2ef7902604a6003b39cb8bae9a774e0fb4292ecd9332e381e29133869f2616a6018d1dd699e22830c534bd135cc431389db912e1ee827f'
 'SKIP')
 
 prepare() {


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

2017-05-25 Thread Felix Yan
Date: Friday, May 26, 2017 @ 02:10:48
  Author: felixonmars
Revision: 230389

upgpkg: certbot 0.14.2-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-26 02:10:18 UTC (rev 230388)
+++ PKGBUILD2017-05-26 02:10:48 UTC (rev 230389)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.14.1
+pkgver=0.14.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -20,7 +20,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('f2091f581eaaae19b5250129f3fd1f29aa7d3a0da90fbae2d98a552f297431014c541663aa039b4184eab9179594c76de4a1182cf02ed3c7c4abe1279a762547'
+sha512sums=('971977e60a544c0836876a6ee0509f581519a6edc9a0358ef6d80e079ffa0f29cf58cb9be1913787f6728edaf1aaafd8459a7728964919f1584cfc86ac8b5ae2'
 'SKIP')
 
 prepare() {


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

2017-05-17 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 05:16:03
  Author: felixonmars
Revision: 228421

upgpkg: certbot 0.14.1-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 05:15:04 UTC (rev 228420)
+++ PKGBUILD2017-05-18 05:16:03 UTC (rev 228421)
@@ -3,8 +3,8 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.14.0
-pkgrel=2
+pkgver=0.14.1
+pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -15,13 +15,12 @@
  'python-zope-interface')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
-checkdepends=('python-nose')
 replaces=("letsencrypt")
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('0b11e24cee48a354e11c322c669585f953957b0776050647e9e477c642900ca6c2876192f903c91782a5d11a2129c60916fa6090f9aaac45f0b6045ad4eb'
+sha512sums=('f2091f581eaaae19b5250129f3fd1f29aa7d3a0da90fbae2d98a552f297431014c541663aa039b4184eab9179594c76de4a1182cf02ed3c7c4abe1279a762547'
 'SKIP')
 
 prepare() {


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:14:57
  Author: felixonmars
Revision: 227971

upgpkg: certbot 0.14.0-2

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 12:51:04 UTC (rev 227970)
+++ PKGBUILD2017-05-14 14:14:57 UTC (rev 227971)
@@ -4,18 +4,18 @@
 
 pkgname=certbot
 pkgver=0.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
 url="https://letsencrypt.org/;
-depends=('ca-certificates' "python2-acme=$pkgver" 'python2-configargparse' 
'python2-configobj'
- 'python2-cryptography' 'python2-pyopenssl' 'python2-mock' 
'python2-parsedatetime'
- 'python2-psutil' 'python2-pyrfc3339' 'python2-pytz' 
'python2-requests' 'python2-setuptools'
- 'python2-six' 'python2-zope-component' 'python2-zope-interface')
+depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
+ 'python-cryptography' 'python-pyopenssl' 'python-mock' 
'python-parsedatetime'
+ 'python-pytz' 'python-setuptools' 'python-six' 'python-zope-component'
+ 'python-zope-interface')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
-checkdepends=('python2-nose')
+checkdepends=('python-nose')
 replaces=("letsencrypt")
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
@@ -30,17 +30,17 @@
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py build
+  python setup.py build
 }
 
 check() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py test
+  python setup.py test
 }
 
 package() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir"
+  python setup.py install --root="$pkgdir"
 
   mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
   chmod 700 "$pkgdir"/var/log/letsencrypt


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

2017-05-05 Thread Felix Yan
Date: Friday, May 5, 2017 @ 10:18:24
  Author: felixonmars
Revision: 227126

upgpkg: certbot 0.14.0-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-05 10:17:16 UTC (rev 227125)
+++ PKGBUILD2017-05-05 10:18:24 UTC (rev 227126)
@@ -3,8 +3,8 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.13.0
-pkgrel=2
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -21,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('0d0e36ee19482bf69f3dacd07fe6741ae7b639faae006c0411f1f8a3ac1d69036e6e5408eef4305b5bad5fcddf3a00dfe537684e25fd0960b43da6917e8734d3'
+sha512sums=('0b11e24cee48a354e11c322c669585f953957b0776050647e9e477c642900ca6c2876192f903c91782a5d11a2129c60916fa6090f9aaac45f0b6045ad4eb'
 'SKIP')
 
 prepare() {


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

2017-04-07 Thread Felix Yan
Date: Friday, April 7, 2017 @ 16:28:57
  Author: felixonmars
Revision: 221251

upgpkg: certbot 0.13.0-2

don't depend on argparse

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-07 16:10:53 UTC (rev 221250)
+++ PKGBUILD2017-04-07 16:28:57 UTC (rev 221251)
@@ -4,7 +4,7 @@
 
 pkgname=certbot
 pkgver=0.13.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -24,6 +24,10 @@
 
sha512sums=('0d0e36ee19482bf69f3dacd07fe6741ae7b639faae006c0411f1f8a3ac1d69036e6e5408eef4305b5bad5fcddf3a00dfe537684e25fd0960b43da6917e8734d3'
 'SKIP')
 
+prepare() {
+  sed -i "/'argparse',/d" $pkgname-$pkgver/setup.py
+}
+
 build() {
   cd "$srcdir"/$pkgname-$pkgver
   python2 setup.py build


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

2017-04-06 Thread Felix Yan
Date: Friday, April 7, 2017 @ 05:01:17
  Author: felixonmars
Revision: 221144

upgpkg: certbot 0.13.0-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-07 05:00:11 UTC (rev 221143)
+++ PKGBUILD2017-04-07 05:01:17 UTC (rev 221144)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.12.0
+pkgver=0.13.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -21,8 +21,8 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('8464e00b59613a3b7ee866cb4c9f13e4'
- 'SKIP')
+sha512sums=('0d0e36ee19482bf69f3dacd07fe6741ae7b639faae006c0411f1f8a3ac1d69036e6e5408eef4305b5bad5fcddf3a00dfe537684e25fd0960b43da6917e8734d3'
+'SKIP')
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver


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

2017-03-03 Thread Felix Yan
Date: Saturday, March 4, 2017 @ 03:45:22
  Author: felixonmars
Revision: 214764

upgpkg: certbot 0.12.0-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-04 03:43:46 UTC (rev 214763)
+++ PKGBUILD2017-03-04 03:45:22 UTC (rev 214764)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.11.1
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -21,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('bdc5827f78380fcd2769361a0f834e27'
+md5sums=('8464e00b59613a3b7ee866cb4c9f13e4'
  'SKIP')
 
 build() {


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

2017-02-04 Thread Felix Yan
Date: Saturday, February 4, 2017 @ 08:06:37
  Author: felixonmars
Revision: 209840

upgpkg: certbot 0.11.1-1

upstream new version

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-02-04 08:05:33 UTC (rev 209839)
+++ PKGBUILD2017-02-04 08:06:37 UTC (rev 209840)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.10.2
+pkgver=0.11.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -21,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('0b8d65abb69511b1ce6ffc43bd6148d0'
+md5sums=('bdc5827f78380fcd2769361a0f834e27'
  'SKIP')
 
 build() {


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

2017-01-28 Thread Felix Yan
Date: Sunday, January 29, 2017 @ 02:57:53
  Author: felixonmars
Revision: 209328

upgpkg: certbot 0.10.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-29 02:56:48 UTC (rev 209327)
+++ PKGBUILD2017-01-29 02:57:53 UTC (rev 209328)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.10.1
+pkgver=0.10.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -21,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('a62fe276a779b0cccf284ac0cefb05ad'
+md5sums=('0b8d65abb69511b1ce6ffc43bd6148d0'
  'SKIP')
 
 build() {


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

2017-01-15 Thread Felix Yan
Date: Sunday, January 15, 2017 @ 15:10:08
  Author: felixonmars
Revision: 207455

upgpkg: certbot 0.10.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-15 15:05:32 UTC (rev 207454)
+++ PKGBUILD2017-01-15 15:10:08 UTC (rev 207455)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -21,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('7b86b9c7d4bcff18187fc384d331b140'
+md5sums=('a62fe276a779b0cccf284ac0cefb05ad'
  'SKIP')
 
 build() {


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

2017-01-11 Thread Felix Yan
Date: Thursday, January 12, 2017 @ 03:06:03
  Author: felixonmars
Revision: 206871

upgpkg: certbot 0.10.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-12 03:01:16 UTC (rev 206870)
+++ PKGBUILD2017-01-12 03:06:03 UTC (rev 206871)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.9.3
+pkgver=0.10.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -11,9 +11,8 @@
 url="https://letsencrypt.org/;
 depends=('ca-certificates' "python2-acme=$pkgver" 'python2-configargparse' 
'python2-configobj'
  'python2-cryptography' 'python2-pyopenssl' 'python2-mock' 
'python2-parsedatetime'
- 'python2-psutil' 'python2-pyrfc3339' 'python2-pythondialog' 
'python2-pytz'
- 'python2-requests' 'python2-setuptools' 'python2-six' 
'python2-zope-component'
- 'python2-zope-interface')
+ 'python2-psutil' 'python2-pyrfc3339' 'python2-pytz' 
'python2-requests' 'python2-setuptools'
+ 'python2-six' 'python2-zope-component' 'python2-zope-interface')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
 checkdepends=('python2-nose')
@@ -22,7 +21,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('df58b67f37d3c4ef5126de4ed45c1cea'
+md5sums=('7b86b9c7d4bcff18187fc384d331b140'
  'SKIP')
 
 build() {


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

2016-10-13 Thread Felix Yan
Date: Friday, October 14, 2016 @ 02:32:38
  Author: felixonmars
Revision: 19

upgpkg: certbot 0.9.3-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-14 02:23:22 UTC (rev 192221)
+++ PKGBUILD2016-10-14 02:32:38 UTC (rev 19)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.9.2
+pkgver=0.9.3
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -22,7 +22,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('a4601e0d82ae3997fca079c971b7be4c'
+md5sums=('df58b67f37d3c4ef5126de4ed45c1cea'
  'SKIP')
 
 build() {


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

2016-10-13 Thread Felix Yan
Date: Thursday, October 13, 2016 @ 09:05:31
  Author: felixonmars
Revision: 192150

upgpkg: certbot 0.9.2-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-13 09:02:58 UTC (rev 192149)
+++ PKGBUILD2016-10-13 09:05:31 UTC (rev 192150)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.9.1
+pkgver=0.9.2
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -22,16 +22,9 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('b2442a8c09da8f61feca31a8a235f751'
+md5sums=('a4601e0d82ae3997fca079c971b7be4c'
  'SKIP')
 
-prepare() {
-  # Fix test data
-  for filename in cert chain fullchain privkey; do
-ln -sf ../../archive/sample-renewal/${filename}1.pem 
certbot-$pkgver/certbot/tests/testdata/live/sample-renewal/$filename.pem
-  done
-}
-
 build() {
   cd "$srcdir"/$pkgname-$pkgver
   python2 setup.py build


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

2016-10-07 Thread Felix Yan
Date: Friday, October 7, 2016 @ 06:40:37
  Author: felixonmars
Revision: 191522

upgpkg: certbot 0.9.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-07 06:38:22 UTC (rev 191521)
+++ PKGBUILD2016-10-07 06:40:37 UTC (rev 191522)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.9.0
+pkgver=0.9.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -22,7 +22,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('55ef0b49b7f7733f067918194de25b08'
+md5sums=('b2442a8c09da8f61feca31a8a235f751'
  'SKIP')
 
 prepare() {


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

2016-10-05 Thread Felix Yan
Date: Thursday, October 6, 2016 @ 04:28:46
  Author: felixonmars
Revision: 191444

upgpkg: certbot 0.9.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-06 02:52:00 UTC (rev 191443)
+++ PKGBUILD2016-10-06 04:28:46 UTC (rev 191444)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.8.1
+pkgver=0.9.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -22,9 +22,16 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('df6d44d2144939810093283179baa899'
+md5sums=('55ef0b49b7f7733f067918194de25b08'
  'SKIP')
 
+prepare() {
+  # Fix test data
+  for filename in cert chain fullchain privkey; do
+ln -sf ../../archive/sample-renewal/${filename}1.pem 
certbot-$pkgver/certbot/tests/testdata/live/sample-renewal/$filename.pem
+  done
+}
+
 build() {
   cd "$srcdir"/$pkgname-$pkgver
   python2 setup.py build


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

2016-06-14 Thread Felix Yan
Date: Wednesday, June 15, 2016 @ 02:50:26
  Author: felixonmars
Revision: 180127

upgpkg: certbot 0.8.1-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-15 02:48:23 UTC (rev 180126)
+++ PKGBUILD2016-06-15 02:50:26 UTC (rev 180127)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -22,7 +22,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('23b2152ae1ae14dd5f5ece522e95bf97'
+md5sums=('df6d44d2144939810093283179baa899'
  'SKIP')
 
 build() {


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

2016-06-02 Thread Felix Yan
Date: Friday, June 3, 2016 @ 05:15:14
  Author: fyan
Revision: 177786

upgpkg: certbot 0.8.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 03:12:52 UTC (rev 177785)
+++ PKGBUILD2016-06-03 03:15:14 UTC (rev 177786)
@@ -3,8 +3,8 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=0.7.0
-pkgrel=2
+pkgver=0.8.0
+pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -22,7 +22,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('39a52c74352649341c97c0406d5fb97f'
+md5sums=('23b2152ae1ae14dd5f5ece522e95bf97'
  'SKIP')
 
 build() {


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

2016-06-02 Thread Felix Yan
Date: Thursday, June 2, 2016 @ 10:50:55
  Author: fyan
Revision: 177717

upgpkg: certbot 0.7.0-2

revert the path change

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-02 08:44:35 UTC (rev 177716)
+++ PKGBUILD2016-06-02 08:50:55 UTC (rev 177717)
@@ -4,7 +4,7 @@
 
 pkgname=certbot
 pkgver=0.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -39,6 +39,6 @@
   cd "$srcdir"/$pkgname-$pkgver
   python2 setup.py install --root="$pkgdir"
 
-  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/certbot
-  chmod 700 "$pkgdir"/var/log/certbot
+  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
+  chmod 700 "$pkgdir"/var/log/letsencrypt
 }


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

2016-06-02 Thread Felix Yan
Date: Thursday, June 2, 2016 @ 10:35:04
  Author: fyan
Revision: 177697

upgpkg: certbot 0.7.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-02 08:30:55 UTC (rev 177696)
+++ PKGBUILD2016-06-02 08:35:04 UTC (rev 177697)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 # Contributor: Gordian Edenhofer 
 
-pkgname=letsencrypt
-pkgver=0.5.0
+pkgname=certbot
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
@@ -14,14 +14,15 @@
  'python2-psutil' 'python2-pyrfc3339' 'python2-pythondialog' 
'python2-pytz'
  'python2-requests' 'python2-setuptools' 'python2-six' 
'python2-zope-component'
  'python2-zope-interface')
-optdepends=("letsencrypt-apache: Apache plugin for Let’s Encrypt client"
-"letsencrypt-nginx: Nginx plugin for Let’s Encrypt client")
+optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
+"certbot-nginx: Nginx plugin for Let’s Encrypt client")
 checkdepends=('python2-nose')
-source=("https://pypi.python.org/packages/source/l/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+replaces=("letsencrypt")
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-md5sums=('2ea39dca4c2fc601c7ce07705a069d25'
+md5sums=('39a52c74352649341c97c0406d5fb97f'
  'SKIP')
 
 build() {
@@ -38,6 +39,6 @@
   cd "$srcdir"/$pkgname-$pkgver
   python2 setup.py install --root="$pkgdir"
 
-  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
-  chmod 700 "$pkgdir"/var/log/letsencrypt
+  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/certbot
+  chmod 700 "$pkgdir"/var/log/certbot
 }