summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGordian Edenhofer2020-01-11 13:27:08 +0100
committerGordian Edenhofer2020-01-11 13:28:43 +0100
commitac1ec596568a6f65af7afcadf9bf99eed6806f1b (patch)
tree5367b0ea32b9dbd8c2555e7a4f6544c289444d9e
parent00833e653e5afcf4f035243de0f046237ef6b30d (diff)
downloadaur-ac1ec596568a6f65af7afcadf9bf99eed6806f1b.tar.gz
upgpkg: certbot-git 1.0.0.r23.gceea41c1e-1
Drop the python2 versions as the language has reached its EOL. upgpkg: certbot-plugins-git 1.0.0.r23.gceea41c1e-1 upgpkg: letshelp-certbot-git 1.0.0.r23.gceea41c1e-1 upgpkg: python-acme-git 1.0.0.r23.gceea41c1e-1
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD12
2 files changed, 9 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0c9537511377..ef562fdaad2a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = certbot-git
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.
- pkgver = 0.40.0.r4.g9b848b1d6
+ pkgver = 1.0.0.r23.gceea41c1e
pkgrel = 1
url = https://certbot.eff.org/
arch = any
@@ -26,8 +26,8 @@ pkgbase = certbot-git
optdepends = certbot-apache-git: Apache plugin for Let’s Encrypt client
optdepends = certbot-nginx-git: Nginx plugin for Let’s Encrypt client
optdepends = letshelp-certbot-git: Let's help Certbot client
- provides = certbot=0.40.0.r4.g9b848b1d6
- provides = letsencrypt=0.40.0.r4.g9b848b1d6
+ provides = certbot=1.0.0.r23.gceea41c1e
+ provides = letsencrypt=1.0.0.r23.gceea41c1e
conflicts = certbot
conflicts = letsencrypt
replaces = letsencrypt-git
diff --git a/PKGBUILD b/PKGBUILD
index 20ab598ba43d..4e507ae36c1d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=certbot-git
_reponame="certbot"
-pkgver=0.40.0.r4.g9b848b1d6
+pkgver=1.0.0.r23.gceea41c1e
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')
@@ -34,7 +34,7 @@ pkgver() {
build() {
# Enter the directory with the build files
- cd "${srcdir}/${_reponame}"
+ cd "${srcdir}/${_reponame}/certbot"
# Clean up build environment
python setup.py clean
@@ -46,13 +46,13 @@ build() {
package() {
# Enter the directory with the build files
- cd "${srcdir}/${_reponame}"
+ cd "${srcdir}/${_reponame}/certbot"
# Install files
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
# Create configuration, log and lib directories
- install -d "${pkgdir}"/etc/letsencrypt # TODO: someday this will probably change
- install -d -m700 "${pkgdir}"/var/log/letsencrypt # TODO: someday this will probably change
- install -d "${pkgdir}"/var/lib/letsencrypt # TODO: someday this will probably change
+ install -d "${pkgdir}"/etc/letsencrypt
+ install -d -m700 "${pkgdir}"/var/log/letsencrypt
+ install -d "${pkgdir}"/var/lib/letsencrypt
}