X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id EB009DC0268 for ; Tue, 19 Jan 2016 21:40:50 +0000 (UTC) Received: from apollo.thewebhostserver.com (unknown [46.28.50.181]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id AB5AADC0189 for ; Tue, 19 Jan 2016 21:40:49 +0000 (UTC) Received: from [81.4.121.188] (port=59749 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.86) (envelope-from ) id 1aLe17-003HB7-U7 for alpine-aports@lists.alpinelinux.org; Tue, 19 Jan 2016 21:40:46 +0000 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/letsencrypt-nosudo: new aport Date: Tue, 19 Jan 2016 21:40:48 +0000 Message-Id: <1453239648-1403-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.7.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/letsencrypt-nosudo/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/letsencrypt-nosudo/APKBUILD diff --git a/testing/letsencrypt-nosudo/APKBUILD b/testing/letsencrypt-nosudo/APKBUILD new file mode 100644 index 0000000..a602cf0 --- /dev/null +++ b/testing/letsencrypt-nosudo/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=letsencrypt-nosudo +pkgver=0.0.1 +pkgrel=0 +pkgdesc="Free HTTPS certificates without having to trust the letsencrypt cli with sudo/root" +url="https://github.com/diafygi/letsencrypt-nosudo" +arch="noarch" +license="GPL3" +depends="python" +depends_dev="" +makedepends="$depends_dev" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/itoffshore/$pkgname/archive/$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver + +build() { + return 0 +} + +package() { + cd "$_builddir" + mkdir -p "$pkgdir"/usr/bin + mkdir -p "$pkgdir"/usr/share/doc/$pkgname + install -Dm755 *.py "$pkgdir"/usr/bin/ || return 1 + install -Dm644 README.md "$pkgdir"/usr/share/doc/$pkgname/ || return 1 +} + +md5sums="c95fde63fe3d357ebf54ace79b412d2c letsencrypt-nosudo-0.0.1.tar.gz" +sha256sums="19f8a5b316c06afd258b101eaad7e28dd2ddf1b1809d5559c683f7412247c690 letsencrypt-nosudo-0.0.1.tar.gz" +sha512sums="1d496a2dc74892f2f359562961547aad71c940fc372e2895d618cdf2a7b44b116ae039608e3589de74658ec9140ffbe1fcb51728805d215a4a6aa0c053c21672 letsencrypt-nosudo-0.0.1.tar.gz" -- 2.7.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---