[gentoo-commits] repo/proj/guru:dev commit in: app-text/cmark-gfm/

2022-03-29 Thread Alessandro Barbieri
commit: f023bd1a5fd97926317c11b957ac93f5445027e0
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 29 21:04:33 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 29 21:04:33 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f023bd1a

app-text/cmark-gfm: add 0.29.0.3

Signed-off-by: Alessandro Barbieri  gmail.com>

 app-text/cmark-gfm/Manifest  |  1 +
 app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/app-text/cmark-gfm/Manifest b/app-text/cmark-gfm/Manifest
index d9c64..616409753 100644
--- a/app-text/cmark-gfm/Manifest
+++ b/app-text/cmark-gfm/Manifest
@@ -1 +1,2 @@
 DIST cmark-gfm-0.29.0.0.tar.gz 284071 BLAKE2B 
aeb831c899bb53934b8a84387d0e690174ce4083da047f7c7de890e04df0ca9b16660e9a67a5b337a24fa3075c809596478fad2bbfb5fd20b7cfeb021af997f6
 SHA512 
54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e
+DIST cmark-gfm-0.29.0.3.tar.gz 289222 BLAKE2B 
7df6031eb873bd52e92d35385666323b28f16c71196aadede07dbbf3edf951ff417e173c469454dfb57ada2b89febfae9e630aa6205aa11375f520258f54c1eb
 SHA512 
2d7d7160e477bee6050618145d20448604e36c8b3ac97c7c3ece19c1f7fe94087e1dee2396bdc8038d62e961dd63dfd08f63426320e2026dae9f1ae96558d336

diff --git a/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild 
b/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild
new file mode 100644
index 0..7bf713106
--- /dev/null
+++ b/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MYPV="$(ver_rs 3 '.gfm.')"
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit cmake python-any-r1
+
+DESCRIPTION="GitHub's fork of cmark"
+HOMEPAGE="https://github.com/github/cmark-gfm;
+SRC_URI="https://github.com/github/cmark-gfm/archive/${MYPV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MYPV}"
+
+LICENSE="BSD-2"
+SLOT="0/0.29.0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="test? ( ${PYTHON_DEPS} )"
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMARK_LIB_FUZZER=OFF
+   -DCMARK_SHARED=ON
+   -DCMARK_STATIC=OFF
+   -DCMARK_TESTS="$(usex test)"
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-text/cmark-gfm/

2021-06-30 Thread Alessandro Barbieri
commit: a5c1a762be7b13770644c1d3dc174e3f5cb177d8
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed Jun 30 00:02:15 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed Jun 30 12:30:15 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a5c1a762

app-text/cmark-gfm: initial import

Signed-off-by: Alessandro Barbieri  gmail.com>

 app-text/cmark-gfm/Manifest  |  1 +
 app-text/cmark-gfm/cmark-gfm-0.29.0.0.ebuild | 35 
 app-text/cmark-gfm/metadata.xml  | 11 +
 3 files changed, 47 insertions(+)

diff --git a/app-text/cmark-gfm/Manifest b/app-text/cmark-gfm/Manifest
new file mode 100644
index 0..d9c64
--- /dev/null
+++ b/app-text/cmark-gfm/Manifest
@@ -0,0 +1 @@
+DIST cmark-gfm-0.29.0.0.tar.gz 284071 BLAKE2B 
aeb831c899bb53934b8a84387d0e690174ce4083da047f7c7de890e04df0ca9b16660e9a67a5b337a24fa3075c809596478fad2bbfb5fd20b7cfeb021af997f6
 SHA512 
54e396e035a43e4d0c86fa7f1c48a6a1283c0caaabdbc56dfcecee92e89e69f6d2e016ae2d9cf4f40258a6455fba7b813c1c6e6d37e53d33a381088ccbc5673e

diff --git a/app-text/cmark-gfm/cmark-gfm-0.29.0.0.ebuild 
b/app-text/cmark-gfm/cmark-gfm-0.29.0.0.ebuild
new file mode 100644
index 0..386e2c8db
--- /dev/null
+++ b/app-text/cmark-gfm/cmark-gfm-0.29.0.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MYPV="$(ver_rs 3 '.gfm.')"
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit cmake python-any-r1
+
+DESCRIPTION="GitHub's fork of cmark"
+HOMEPAGE="https://github.com/github/cmark-gfm;
+SRC_URI="https://github.com/github/cmark-gfm/archive/${MYPV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MYPV}"
+LICENSE="BSD-2"
+SLOT="0/0.29.0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMARK_LIB_FUZZER=OFF
+   -DCMARK_SHARED=ON
+   -DCMARK_STATIC=OFF
+   -DCMARK_TESTS="$(usex test)"
+   )
+   cmake_src_configure
+}

diff --git a/app-text/cmark-gfm/metadata.xml b/app-text/cmark-gfm/metadata.xml
new file mode 100644
index 0..69854aee3
--- /dev/null
+++ b/app-text/cmark-gfm/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+lssndrbarbi...@gmail.com
+Alessandro Barbieri
+  
+  
+github/cmark-gfm
+  
+