X-Original-To: alpine-aports@lists.alpinelinux.org Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by lists.alpinelinux.org (Postfix) with ESMTP id 5F47D5C4263 for ; Mon, 29 Aug 2016 21:28:51 +0000 (GMT) Received: by vps892.directvps.nl (Postfix, from userid 182) id 4731A4400BF; Mon, 29 Aug 2016 23:28:50 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on ikke.info X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=disabled version=3.4.1 Received: from localhost.localdomain (unknown [172.17.0.3]) by vps892.directvps.nl (Postfix) with ESMTP id C97D64400AE; Mon, 29 Aug 2016 23:28:49 +0200 (CEST) From: Kevin Daudt To: alpine-aports@lists.alpinelinux.org Cc: Kevin Daudt Subject: [alpine-aports] [PATCH] markdown: move to community Date: Mon, 29 Aug 2016 21:28:45 +0000 Message-Id: <20160829212845.11642-1-me@ikke.info> X-Mailer: git-send-email 2.8.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- Fixed the package and compiled it and tested that it runs. community/markdown/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ unmaintained/markdown/APKBUILD | 34 ---------------------------------- 2 files changed, 34 insertions(+), 34 deletions(-) create mode 100644 community/markdown/APKBUILD delete mode 100644 unmaintained/markdown/APKBUILD diff --git a/community/markdown/APKBUILD b/community/markdown/APKBUILD new file mode 100644 index 0000000..21bf53c --- /dev/null +++ b/community/markdown/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: z3bra +# Maintainer: Kevin Daudt +pkgname=markdown +_pkgreal=Markdown +pkgver=1.0.1 +pkgrel=0 +pkgdesc="Text-to-HTML conversion tool for web writers" +url="http://daringfireball.net/projects/markdown/" +arch="noarch" +license="custom:BSD" +depends="perl" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip" + +_builddir=$srcdir/${_pkgreal}_${pkgver} + +build() { + cd "$_builddir" + pod2man "Markdown.pl" > "$_builddir/$pkgname.1" +} + +package() { + cd "$_builddir" + install -Dm755 "Markdown.pl" "${pkgdir}/usr/bin/${pkgname}" + install -Dm644 "License.text" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 "$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1" +} + +md5sums="f17b3c2b2830c6fd2fe0098226e59a2f Markdown_1.0.1.zip" +sha256sums="6520e9b6a58c5555e381b6223d66feddee67f675ed312ec19e9cee1b92bc0137 Markdown_1.0.1.zip" +sha512sums="962df356e641326fbf29cdedc36dafb5f04683f0b3f5eb1efb8e15994e1e000b5a6882c84f09db4a6f8f948811ebbe76759e27871c644e690884db31705eab1f Markdown_1.0.1.zip" diff --git a/unmaintained/markdown/APKBUILD b/unmaintained/markdown/APKBUILD deleted file mode 100644 index 7140e07..0000000 --- a/unmaintained/markdown/APKBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Contributor: z3bra -# Maintainer: -pkgname=markdown -_pkgreal=Markdown -pkgver=1.0.1 -pkgrel=0 -pkgdesc="Text-to-HTML conversion tool for web writers" -url="http://daringfireball.net/projects/markdown/" -arch="noarch" -license="custom:BSD" -depends="perl" -depends_dev="" -makedepends="$depends_dev" -install="" -subpackages= -source="http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip" - -_builddir=$srcdir/${_pkgreal}_${pkgver} - -build() { - cd "$_builddir" - pod2man "Markdown.pl" > "$_builddir/$pkgname.1" -} - -package() { - cd "$_builddir" - install -Dm755 "Markdown.pl" "${pkgdir}/usr/bin/${pkgname}" - install -Dm644 "License.text" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm644 "$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1" -} - -md5sums="f17b3c2b2830c6fd2fe0098226e59a2f Markdown_1.0.1.zip" -sha256sums="6520e9b6a58c5555e381b6223d66feddee67f675ed312ec19e9cee1b92bc0137 Markdown_1.0.1.zip" -sha512sums="962df356e641326fbf29cdedc36dafb5f04683f0b3f5eb1efb8e15994e1e000b5a6882c84f09db4a6f8f948811ebbe76759e27871c644e690884db31705eab1f Markdown_1.0.1.zip" -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---