Received: from mx.galenabell.com (mx.galenabell.com [116.203.221.235]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 49FA4781F33 for ; Tue, 26 Nov 2019 16:48:06 +0000 (UTC) From: Galen Abell DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=galenabell.com; s=mail; t=1574786886; bh=MN/O3f1wDJWCGLBaLCLEiUGzsTrTqwoXp4enXMCBaA0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=rqsU+XWaYLQorzfNR2m/DmeFMS5IeBHTlzpRRM9l2Xq2H2nTuo6jJGyDrAxSKDhQR Oo+EZ4PhBaEQVnQqucGsy5MY24ap3gmYya+NbdkfFXFSAPtKOWlJ+6HVLW7/hyRLQR r8JcjCajSu6B4jQ9Rj7iJPdwwnr09KnlfyX9FJzA= To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH 2/2] testing/py3-rss2email: new aport Date: Tue, 26 Nov 2019 17:47:54 +0100 Message-Id: <20191126164754.19147-2-galen@galenabell.com> In-Reply-To: <20191126164754.19147-1-galen@galenabell.com> References: <20191126164754.19147-1-galen@galenabell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://github.com/rss2email/rss2email Forward RSS feeds to your email address, community maintained testing/ --- testing/py3-rss2email/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/py3-rss2email/APKBUILD diff --git a/testing/py3-rss2email/APKBUILD b/testing/py3-rss2email/APKBUILD new file mode 100644 index 0000000000..77d0499117 --- /dev/null +++ b/testing/py3-rss2email/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Galen Abell +# Maintainer: Galen Abell +pkgname="py3-rss2email" +_pyname="rss2email" +pkgver="3.11" +pkgrel=0 +pkgdesc="Forward RSS feeds to your email address, community maintained" +url="https://github.com/rss2email/rss2email" +arch="noarch" +license="GPL-2.0-only" +depends="python3 py3-feedparser py3-html2text" +makedepends="py3-setuptools" +checkdepends="py3-beautifulsoup4" +source="$_pyname-$pkgver.tar.gz::https://github.com/rss2email/rss2email/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +check() { + python3 setup.py test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} +sha512sums="2efdef703a4b4774d85926f500a37689aea3a324f63a13a686a2322c9f69ac7b940c5b953f417d9259e1493b3dafde4c2e1ddb3433d085fb2400cd06001141bb rss2email-3.11.tar.gz" -- 2.24.0