diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-11-08 21:23:02 -0500 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-11-08 21:23:02 -0500 |
| commit | 8aeda755323b9bd2270daa4e9ae98d3956256d1c (patch) | |
| tree | face56dc383a2e7396c880b7920405699a535c22 | |
| parent | 1031162aca2f086d9710a262e5ed6e933c0c07eb (diff) | |
Add dev-scheme/guile-commonmark
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | dev-scheme/guile-commonmark/Manifest | 2 | ||||
| -rw-r--r-- | dev-scheme/guile-commonmark/guile-commonmark-0.1.2.ebuild | 27 |
3 files changed, 30 insertions, 0 deletions
@@ -11,6 +11,7 @@ other overlays, or modifying less-than-ideals in the upstream ebuild repository. - [crispy-doom](https://github.com/fabiangreffrath/crispy-doom) as games-fps/crispy-doom - [Doom64EX](https://doom64ex.wordpress.com/) as games-fps/doom64ex - [dosbox-x](https://github.com/joncampbell123/dosbox-x) as games-emulation/dosbox-x +- [guile-commonmark](https://github.com/OrangeShark/guile-commonmark) as dev-scheme/guile-commonmark - [guile-email](https://guile-email.systemreboot.net/) as dev-scheme/guile-email - [GoatTracker 2](http://covertbitops.c64.org/) as media-sound/goattracker - [MilkyTracker](https://milkytracker.titandemo.org/) as media-sound/milkytracker 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 +} |