[arch-commits] Commit in letsencrypt/repos (2 files)

Felix Yan fyan at archlinux.org
Wed Dec 2 05:35:55 UTC 2015


    Date: Wednesday, December 2, 2015 @ 06:35:55
  Author: fyan
Revision: 148095

archrelease: copy trunk to community-staging-any

Added:
  letsencrypt/repos/community-staging-any/
  letsencrypt/repos/community-staging-any/PKGBUILD
    (from rev 148094, letsencrypt/trunk/PKGBUILD)

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

Copied: letsencrypt/repos/community-staging-any/PKGBUILD (from rev 148094, letsencrypt/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2015-12-02 05:35:55 UTC (rev 148095)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de>
+
+pkgname=letsencrypt
+pkgver=0.0.0.dev20151201
+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://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')
+optdepends=("letsencrypt-apache: Apache plugin for Let’s Encrypt client"
+            "letsencrypt-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})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+              '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD')
+md5sums=('7faee02c89c9d7a732d8e6a7911a7f67'
+         'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python2 setup.py test
+}
+
+package() {
+  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
+}



More information about the arch-commits mailing list