diff options
Diffstat (limited to 'dev-scheme/guile-commonmark')
| -rw-r--r-- | dev-scheme/guile-commonmark/Manifest | 2 | ||||
| -rw-r--r-- | dev-scheme/guile-commonmark/guile-commonmark-0.1.2.ebuild | 27 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-scheme/guile-commonmark/Manifest b/dev-scheme/guile-commonmark/Manifest new file mode 100644 index 0000000..1bf0fb5 --- /dev/null +++ b/dev-scheme/guile-commonmark/Manifest @@ -0,0 +1,2 @@ +DIST guile-commonmark-0.1.2.tar.gz 243029 BLAKE2B 1d2d38bfa6146ce98b8ac8627cc2cd825b4e3ea5ab4d04cea12355a1e474f9af888f54d20902d061e985317cf13de1cb7196bbe950bf024f1dd47a2a244c76f5 SHA512 a2ed34bb4bc5d7b33875beff7eb959c0119fa62950c8f9de2c5c59ef85301e47354af3d2b38990802389e6b9c94653b927d380c6918feaeb82099ad92a91bf07 +EBUILD guile-commonmark-0.1.2.ebuild 712 BLAKE2B b51cd2dbf3d02b4bc973ca1e51578a0dacdc33fe1d92f5b6d01d31dcfc2fde357a7f9b0b288b8c874418502803e6d01bc91328c22bd9f10f8bff34029a5be3d0 SHA512 4ea53916c6a1c5730b44a66117d82578c376e33e6ffc76545d7c2d0ebc3b6b690eeae6b233e1c28235463206b80640dc5f62f24f9270015a49dfedb2b48b317d diff --git a/dev-scheme/guile-commonmark/guile-commonmark-0.1.2.ebuild b/dev-scheme/guile-commonmark/guile-commonmark-0.1.2.ebuild new file mode 100644 index 0000000..8945137 --- /dev/null +++ b/dev-scheme/guile-commonmark/guile-commonmark-0.1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Implementation of CommonMark for Guile " +HOMEPAGE="https://github.com/OrangeShark/guile-commonmark" +SRC_URI="https://github.com/OrangeShark/guile-commonmark/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" + +RDEPEND=">=dev-scheme/guile-2.0.11:=" +DEPEND="${RDEPEND}" + +# guile generates ELF files without use of C or machine code +# It's a portage's false positive. bug #677600 +QA_PREBUILT='*[.]go' + +src_prepare() { + default + + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 + find "${S}" -name "*.scm" -exec touch {} + || die +} |