diff --git a/app-text/pandoc-bin/Manifest b/app-text/pandoc-bin/Manifest deleted file mode 100644 index 8cbca68..0000000 --- a/app-text/pandoc-bin/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST pandoc-2.11.0.2-linux-amd64.tar.gz 16461694 BLAKE2B 28c318d4afdc3e320772c5b7048868b4d94fae40d9237e030eeefc104344f9669796c1828a9e3bffe311708235b0d637886606a56cde9480f2dc60c3647d0148 SHA512 fa3ffaba6e1686840d91e0b6c37d34734d4b11664cd0a898d1338f2379f0fa09b02989432b3bdaa9df08ea4baee092b1ec6b98ecb48f8680f0a2f4ebba104a11 -DIST pandoc-2.13-linux-amd64.tar.gz 15019808 BLAKE2B 93ae77777f70be0b79544ecb8fc5df3687465bd399b5a6532fae5a115d7235934bd39989aeb014025c0cd285542cc59410eb6575cd495a0302e358f13e81a2f3 SHA512 0b20327ac530cbcd00d27b84e8c2bce98977e1eaea378e4325e780a7285de998c33117470b23f96d917d04c0aed85f2387734408c52efa00a8b6bec7541b8927 -DIST pandoc-2.13-linux-arm64.tar.gz 17044478 BLAKE2B 3a5c57bc0a01f07f0570cc5f4960746523bc4100ec7ae07f98741fab6e9655f3c73ba56a5c8031e4ce1aef3dbdf0644a3e4afe6eae72b568c168e7beb89df97f SHA512 771eafe2deb034e6c9efb9d8cd1241879d12a07f9a5b76579e581dc835737aa6bc61acfe239302f7b64ad4e57444f933083ef9852786d6c7122535f61ed01997 diff --git a/app-text/pandoc-bin/metadata.xml b/app-text/pandoc-bin/metadata.xml deleted file mode 100644 index 0e026d7..0000000 --- a/app-text/pandoc-bin/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - xgqt@protonmail.com - Maciej Barć - - - jgm/pandoc - - diff --git a/app-text/pandoc-bin/pandoc-bin-2.11.0.2.ebuild b/app-text/pandoc-bin/pandoc-bin-2.11.0.2.ebuild deleted file mode 100644 index 956c277..0000000 --- a/app-text/pandoc-bin/pandoc-bin-2.11.0.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN//-bin/}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Universal markup converter" -HOMEPAGE="https://pandoc.org" - -SRC_URI="https://github.com/jgm/${MY_PN}/releases/download/${PV}/${MY_P}-linux-amd64.tar.gz" - -RESTRICT="mirror bindist" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64" - -RDEPEND=" - !app-text/${MY_PN} -" - -S="${WORKDIR}/${MY_P}" - -QA_PRESTRIPPED=" - usr/bin/${MY_PN} -" - -src_unpack() { - default - - # manpages are gzipped - find . -name "*.gz" | xargs gunzip -} - -src_install() { - cd "${S}/bin" || die - dobin "${MY_PN}" - - cd "${S}/share/man/man1" || die - doman "${MY_PN}.1" -} diff --git a/app-text/pandoc-bin/pandoc-bin-2.13.ebuild b/app-text/pandoc-bin/pandoc-bin-2.13.ebuild deleted file mode 100644 index 5ef6022..0000000 --- a/app-text/pandoc-bin/pandoc-bin-2.13.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN//-bin/}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Universal markup converter" -HOMEPAGE="https://pandoc.org" - -BASE_URI="https://github.com/jgm/${MY_PN}/releases/download" - -SRC_URI="amd64? ( ${BASE_URI}/${PV}/${MY_P}-linux-amd64.tar.gz ) - arm64? ( ${BASE_URI}/${PV}/${MY_P}-linux-arm64.tar.gz )" - #https://github.com/jgm/pandoc/releases/download/2.13/pandoc-2.13-linux-arm64.tar.gz - -RESTRICT="mirror bindist" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64" - -RDEPEND=" - !app-text/${MY_PN} -" - -S="${WORKDIR}/${MY_P}" - -QA_PRESTRIPPED=" - usr/bin/${MY_PN} -" - -src_unpack() { - default - - # manpages are gzipped - find . -name "*.gz" | xargs gunzip -} - -src_install() { - cd "${S}/bin" || die - dobin "${MY_PN}" - - cd "${S}/share/man/man1" || die - doman "${MY_PN}.1" -}