Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
@ 2020-10-03 10:09 kartikynwa
  2020-10-03 10:22 ` [PR PATCH] [Updated] " kartikynwa
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 10:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 505 bytes --]

There is a new pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3582 bytes --]

From 6e3d3d9a5cd8b3654ce1522839aaa75916876e04 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..161d8a9f883
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+makedepends="augeas-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 75c11203a000fe6e54cc26d0995475f66d9007dd Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From 84a3805bacf9b9b4c126764a6ef3cdac5c17c45d Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
@ 2020-10-03 10:22 ` kartikynwa
  2020-10-03 10:39 ` kartikynwa
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 10:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 510 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3566 bytes --]

From d73144de8004241981cabb576bb3f9b0b8199f03 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..8279fd806d9
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 62ea424a0927eddf4e03d1a78aa566084f236173 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From b75e2fbf8e45f077edaf57cc2df4b4b17f103958 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
  2020-10-03 10:22 ` [PR PATCH] [Updated] " kartikynwa
@ 2020-10-03 10:39 ` kartikynwa
  2020-10-03 12:21 ` kartikynwa
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 10:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 510 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3580 bytes --]

From e244ec3738a4a4962eb516af6e3d678a81c9ab78 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..74b47522d7c
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel python3-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 87feb646b5e48974967a91bee46a7c4bdf49d2ae Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From adc5cbb9d1f6331cab0867ef2bf5afe0b5512f97 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
  2020-10-03 10:22 ` [PR PATCH] [Updated] " kartikynwa
  2020-10-03 10:39 ` kartikynwa
@ 2020-10-03 12:21 ` kartikynwa
  2020-10-03 12:22 ` kartikynwa
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 12:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0

EDIT: The build for `python3-augeas` keeps failing on `*-musl` archs on account of missing dependencies. I don't know the reason behind it so if someone could help I'd appreciate it. I crossbuilt for `x86_64-musl` on `x86_64` and it went well.

---
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3609 bytes --]

From d241312cc04cb3095bbd83796f715a5789c1e9a3 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..aca8cfac46e
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel python3-cffi"
+makedepends="python3-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 20da3ebce4ecd81fea8ab81bf121836723e4ff13 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From d364c23e1ca8ceb9d9e030960f20e1b01306d9b6 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (2 preceding siblings ...)
  2020-10-03 12:21 ` kartikynwa
@ 2020-10-03 12:22 ` kartikynwa
  2020-10-03 18:40 ` kartikynwa
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 12:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0

EDIT: The build for `python3-augeas` keeps failing on `*-musl` archs on account of missing dependencies. I don't know the reason behind it so if someone could help I'd appreciate it. I crossbuilt for `x86_64-musl` on `x86_64` and it went well.

---
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3609 bytes --]

From 9a3614984a283b0b73b1864b0562a3be38e4dc6f Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..9106605777f
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-cffi"
+makedepends="python3-devel augeas-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 654a7ca920dc748077754c71778bf4be4012ddc0 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From ffc53964c0c7099389b5acaeb2a06020b348e80b Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (3 preceding siblings ...)
  2020-10-03 12:22 ` kartikynwa
@ 2020-10-03 18:40 ` kartikynwa
  2020-10-03 18:47 ` kartikynwa
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 18:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0

EDIT: The build for `python3-augeas` keeps failing on `*-musl` archs on account of missing dependencies. I don't know the reason behind it so if someone could help I'd appreciate it. I crossbuilt for `x86_64-musl` on `x86_64` and it went well.

---
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3609 bytes --]

From 674bb208c5a2ad5f0f129b95f9800093d4a3f105 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..aca8cfac46e
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel python3-cffi"
+makedepends="python3-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From f13cf97ed4845023b1524f70c4e8ca2a6d17686e Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 2/3] New package: certbot-apache-1.8.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..a438b87421b
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=a93c3a7ad929fe0ba5e0868e29ee2d0fe10aea2d4c638a902c4613a5c12c59b6

From 9f77abf4bf579e3fc913abd014cac678ddbc492d Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 3/3] New package: certbot-nginx-1.8.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..43a3e74391b
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.8.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=fdb96c74fe42d90bbaf11a00314444ac5544ba87292a1b8b1d707f7561a3eacc

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (4 preceding siblings ...)
  2020-10-03 18:40 ` kartikynwa
@ 2020-10-03 18:47 ` kartikynwa
  2020-10-18  0:58 ` ahesford
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-03 18:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 175 bytes --]

New comment by kartikynwa on void-packages repository

https://github.com/void-linux/void-packages/pull/25310#issuecomment-703148155

Comment:
alright seems to build fine now

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (5 preceding siblings ...)
  2020-10-03 18:47 ` kartikynwa
@ 2020-10-18  0:58 ` ahesford
  2020-10-18  6:08 ` [PR PATCH] [Updated] " kartikynwa
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ahesford @ 2020-10-18  0:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 160 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/25310#issuecomment-711100656

Comment:
cf. #24638, #24639

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (6 preceding siblings ...)
  2020-10-18  0:58 ` ahesford
@ 2020-10-18  6:08 ` kartikynwa
  2020-10-18  6:21 ` [PR PATCH] [Updated] New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0 kartikynwa
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-18  6:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 510 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3609 bytes --]

From 676066a7396daa81c712abdb46dc69623f7343aa Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..aca8cfac46e
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel python3-cffi"
+makedepends="python3-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 63205fa1913b7af79b2f1c7093e2e01bb293939c Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 2/3] New package: certbot-nginx-1.9.0

---
 srcpkgs/certbot-nginx/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..c82b15c5e62
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.9.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-openssl python3-parsing
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=ab26a4f49d53b0e8bf0f903e58e2a840cda233fe1cbbc54c36ff17f973e57d65

From e6a1529892f60b8db93252b74e81ad870ed7411b Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 3/3] New package: certbot-apache-1.9.0

---
 srcpkgs/certbot-apache/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..1cd78c7dfc3
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,14 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.9.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot python3-acme python3-mock python3-augeas python3-zope.component
+ python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=f47fb3f4a9bd927f4812121a0beefe56b163475a28f4db34c64dc838688d9e9e

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (7 preceding siblings ...)
  2020-10-18  6:08 ` [PR PATCH] [Updated] " kartikynwa
@ 2020-10-18  6:21 ` kartikynwa
  2020-10-18  7:40 ` kartikynwa
  2020-10-20 16:15 ` [PR PATCH] [Closed]: " ahesford
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-18  6:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 510 bytes --]

There is an updated pull request by kartikynwa against master on the void-packages repository

https://github.com/kartikynwa/void-packages certbot-plugins
https://github.com/void-linux/void-packages/pull/25310

New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

A patch file from https://github.com/void-linux/void-packages/pull/25310.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-certbot-plugins-25310.patch --]
[-- Type: text/x-diff, Size: 3562 bytes --]

From 676066a7396daa81c712abdb46dc69623f7343aa Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 13:31:23 +0530
Subject: [PATCH 1/3] New package: python3-augeas-1.1.0

---
 srcpkgs/python3-augeas/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-augeas/template

diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template
new file mode 100644
index 00000000000..aca8cfac46e
--- /dev/null
+++ b/srcpkgs/python3-augeas/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-augeas'
+pkgname=python3-augeas
+version=1.1.0
+revision=1
+wrksrc="python-augeas-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools augeas-devel python3-cffi"
+makedepends="python3-devel"
+depends="augeas python3-cffi"
+checkdepends="python3-cffi"
+short_desc="Python 3 bindings for Augeas"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/hercules-team/python-augeas"
+distfiles="${PYPI_SITE}/p/python-augeas/python-augeas-${version}.tar.gz"
+checksum=5194a49e86b40ffc57055f73d833f87e39dce6fce934683e7d0d5bbb8eff3b8c
+
+do_check() {
+	cd test
+	python3 test_augeas.py
+}
+
+post_install() {
+	rm -rf ${DESTDIR}/${py3_sitelib}/test
+}

From 4ddd012ebca946837dc5969b04fb989fcc788d4f Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:30 +0530
Subject: [PATCH 2/3] New package: certbot-nginx-1.9.0

---
 srcpkgs/certbot-nginx/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/certbot-nginx/template

diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template
new file mode 100644
index 00000000000..db0c2cd2b66
--- /dev/null
+++ b/srcpkgs/certbot-nginx/template
@@ -0,0 +1,13 @@
+# Template file for 'certbot-nginx'
+pkgname=certbot-nginx
+version=1.9.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot>=${version} python3-acme python3-parsing python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - nginx plugin"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-nginx/certbot-nginx-${version}.tar.gz"
+checksum=ab26a4f49d53b0e8bf0f903e58e2a840cda233fe1cbbc54c36ff17f973e57d65

From 97c6a2e962e1bc55aaa56dae6aebea62a519068c Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Sat, 3 Oct 2020 15:03:22 +0530
Subject: [PATCH 3/3] New package: certbot-apache-1.9.0

---
 srcpkgs/certbot-apache/template | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 srcpkgs/certbot-apache/template

diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template
new file mode 100644
index 00000000000..ce4e0bc6ad2
--- /dev/null
+++ b/srcpkgs/certbot-apache/template
@@ -0,0 +1,13 @@
+# Template file for 'certbot-apache'
+pkgname=certbot-apache
+version=1.9.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="certbot>=${version} python3-acme python3-augeas python3-zope.interface"
+short_desc="Let's Encrypt certificate renewal automation utility - Apache plugin"
+maintainer="Kartik S. <kartik.ynwa@gmail.com>"
+license="Apache-2.0"
+homepage="https://certbot.eff.org/"
+distfiles="${PYPI_SITE}/c/certbot-apache/certbot-apache-${version}.tar.gz"
+checksum=f47fb3f4a9bd927f4812121a0beefe56b163475a28f4db34c64dc838688d9e9e

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (8 preceding siblings ...)
  2020-10-18  6:21 ` [PR PATCH] [Updated] New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0 kartikynwa
@ 2020-10-18  7:40 ` kartikynwa
  2020-10-20 16:15 ` [PR PATCH] [Closed]: " ahesford
  10 siblings, 0 replies; 12+ messages in thread
From: kartikynwa @ 2020-10-18  7:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New comment by kartikynwa on void-packages repository

https://github.com/void-linux/void-packages/pull/25310#issuecomment-711129951

Comment:
Trimmed down the makedepends based on #24638 and #24639 .

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Closed]: New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0
  2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
                   ` (9 preceding siblings ...)
  2020-10-18  7:40 ` kartikynwa
@ 2020-10-20 16:15 ` ahesford
  10 siblings, 0 replies; 12+ messages in thread
From: ahesford @ 2020-10-20 16:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

There's a closed pull request on the void-packages repository

New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0
https://github.com/void-linux/void-packages/pull/25310

Description:
I have only tested `certbot-nginx` and it worked on my vps. If someone wants to test the other one it would be nice. Will add the dns plugins later on.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-10-20 16:15 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-03 10:09 [PR PATCH] New packages: certbot-apache-1.8.0, certbot-nginx-1.8.0 kartikynwa
2020-10-03 10:22 ` [PR PATCH] [Updated] " kartikynwa
2020-10-03 10:39 ` kartikynwa
2020-10-03 12:21 ` kartikynwa
2020-10-03 12:22 ` kartikynwa
2020-10-03 18:40 ` kartikynwa
2020-10-03 18:47 ` kartikynwa
2020-10-18  0:58 ` ahesford
2020-10-18  6:08 ` [PR PATCH] [Updated] " kartikynwa
2020-10-18  6:21 ` [PR PATCH] [Updated] New packages: certbot-apache-1.9.0, certbot-nginx-1.9.0 kartikynwa
2020-10-18  7:40 ` kartikynwa
2020-10-20 16:15 ` [PR PATCH] [Closed]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).