[arch-commits] Commit in letsencrypt-nginx/repos (2 files)
Felix Yan
fyan at archlinux.org
Sat Nov 14 06:17:53 UTC 2015
Date: Saturday, November 14, 2015 @ 07:17:53
Author: fyan
Revision: 146774
archrelease: copy trunk to community-any
Added:
letsencrypt-nginx/repos/community-any/
letsencrypt-nginx/repos/community-any/PKGBUILD
(from rev 146773, letsencrypt-nginx/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: letsencrypt-nginx/repos/community-any/PKGBUILD (from rev 146773, letsencrypt-nginx/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD (rev 0)
+++ community-any/PKGBUILD 2015-11-14 06:17:53 UTC (rev 146774)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de>
+
+pkgname=letsencrypt-nginx
+pkgver=0.0.0.dev20151108
+pkgrel=1
+pkgdesc="Nginx plugin for Let’s Encrypt client"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/${pkgname}"
+depends=('letsencrypt' 'python2-acme' 'python2-pyopenssl' 'python2-pyparsing'
+ 'python2-setuptools' 'python2-mock' 'python2-zope-interface')
+checkdepends=('python2-nose')
+# To be precise: This package, letsencrypt and python2-acme shell all be at the same version,
+# though for easier package management, it is omitted in this PKGBUILD
+source=("https://pypi.python.org/packages/source/l/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C')
+md5sums=('08eaed5e4bf857f25b57e3703ec9a649'
+ 'SKIP')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ python2 setup.py build
+}
+
+check() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ nosetests2
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ python2 setup.py install --root="${pkgdir}"
+}
More information about the arch-commits
mailing list