Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 762C9780D9B for <~alpine/aports@lists.alpinelinux.org>; Fri, 10 Dec 2021 12:47:31 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dhruvin.dev; s=key1; t=1639140082; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4pO32j+J8ZFAkPwr/YACq7EATFIG5t7AhXPu6UBdRcw=; b=o78c1qQ267hSf50kgZalgU52QMRbzyAGuToMB6vO8yNiA31Kr7KifEBDFKTs3s4xhp3BYI MJRN61vKFVA07YMovpH+avOId3PPwS88iITi0brghD4alaPR0cZGUcYzPIWBNP3qitmqGu 53Uvksuws85ikMWIc5gf9mChirvegDs= From: Dhruvin Gandhi To: ~alpine/aports@lists.alpinelinux.org Cc: Dhruvin Gandhi Subject: [PATCH 1/3] testing/py3-sphinx-autorun: add aport Date: Fri, 10 Dec 2021 18:11:09 +0530 Message-Id: <20211210124111.488-2-contact@dhruvin.dev> In-Reply-To: <20211210124111.488-1-contact@dhruvin.dev> References: <20211210124111.488-1-contact@dhruvin.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: contact@dhruvin.dev --- testing/py3-sphinx-autorun/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/py3-sphinx-autorun/APKBUILD diff --git a/testing/py3-sphinx-autorun/APKBUILD b/testing/py3-sphinx-autorun/APKBUILD new file mode 100644 index 0000000000..d19ac7cce3 --- /dev/null +++ b/testing/py3-sphinx-autorun/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Dhruvin Gandhi +# Maintainer: Dhruvin Gandhi +pkgname=py3-sphinx-autorun +_pyname=sphinx-autorun +pkgver=1.1.1 +pkgrel=0 +pkgdesc="Sphinx extension to attach the output of runblock directive to the document" +url="https://github.com/WhyNotHugo/sphinx-autorun" +arch="noarch" +license="BSD-2-Clause" +depends="python3 py3-sphinx" +makedepends="py3-setuptools py3-setuptools_scm" +options="!check" # no tests +source="https://files.pythonhosted.org/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums=" +cfe99a9cd249d142fa52986964bca7fa392d15036e69f504b3ea0fdabd37a7c43329101df7cb5d02ff614b9da9cbef15a39f519bf416daa0589829fb7b21a482 sphinx-autorun-1.1.1.tar.gz +" -- 2.34.1