From: "Ronny Gutbrod" <gentoo@tastytea.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-libs/text-engine/
Date: Fri, 25 Mar 2022 11:24:09 +0000 (UTC) [thread overview]
Message-ID: <1647835942.6a9257cdfd005ea19647f870cc521c6090fe7f76.tastytea@gentoo> (raw)
commit: 6a9257cdfd005ea19647f870cc521c6090fe7f76
Author: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
AuthorDate: Mon Mar 21 03:46:02 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Mar 21 04:12:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6a9257cd
gui-libs/text-engine: Initial import
Signed-off-by: Yuan Liao <liaoyuan <AT> gmail.com>
gui-libs/text-engine/Manifest | 1 +
gui-libs/text-engine/metadata.xml | 11 +++++++
gui-libs/text-engine/text-engine-0.1.0.ebuild | 46 +++++++++++++++++++++++++++
gui-libs/text-engine/text-engine-9999.ebuild | 46 +++++++++++++++++++++++++++
4 files changed, 104 insertions(+)
diff --git a/gui-libs/text-engine/Manifest b/gui-libs/text-engine/Manifest
new file mode 100644
index 000000000..d43363127
--- /dev/null
+++ b/gui-libs/text-engine/Manifest
@@ -0,0 +1 @@
+DIST text-engine-0.1.0.tar.gz 15728 BLAKE2B 41a5b4bb0347eca29268cf089a7ea127a0a467fa123384bc1d92cbb215ca98f9963742ba5f93972d163c7f6708ac428762a92023d98ad130b56657b6eccb7956 SHA512 36be3e913187dfbba96945891a64cb2b3efde8324cdb3457a64c2fdfd19e2c1289d48a92ca60c957c52e18a6cabbcc13f178c34687f183f60557e41db5c36418
diff --git a/gui-libs/text-engine/metadata.xml b/gui-libs/text-engine/metadata.xml
new file mode 100644
index 000000000..20643c52a
--- /dev/null
+++ b/gui-libs/text-engine/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>liaoyuan@gmail.com</email>
+ <name>Yuan Liao</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">mjakeman/text-engine</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/gui-libs/text-engine/text-engine-0.1.0.ebuild b/gui-libs/text-engine/text-engine-0.1.0.ebuild
new file mode 100644
index 000000000..fef9b5c38
--- /dev/null
+++ b/gui-libs/text-engine/text-engine-0.1.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/mjakeman/text-engine.git"
+else
+ SRC_URI="https://github.com/mjakeman/text-engine/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="A lightweight rich-text framework for GTK 4"
+HOMEPAGE="https://github.com/mjakeman/text-engine"
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+
+COMMON_DEPEND="
+ dev-libs/glib:2
+ dev-libs/libxml2:2
+ gui-libs/gtk:4
+"
+
+DEPEND="
+ ${COMMON_DEPEND}
+ dev-libs/json-glib
+"
+
+RDEPEND="
+ ${COMMON_DEPEND}
+ x11-libs/pango
+"
+
+src_prepare() {
+ default
+ sed -i -e "/subdir('demo')/d" meson.build ||
+ die "Failed to modify meson.ebuild to exclude the demo program"
+}
diff --git a/gui-libs/text-engine/text-engine-9999.ebuild b/gui-libs/text-engine/text-engine-9999.ebuild
new file mode 100644
index 000000000..fef9b5c38
--- /dev/null
+++ b/gui-libs/text-engine/text-engine-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/mjakeman/text-engine.git"
+else
+ SRC_URI="https://github.com/mjakeman/text-engine/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="A lightweight rich-text framework for GTK 4"
+HOMEPAGE="https://github.com/mjakeman/text-engine"
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+
+COMMON_DEPEND="
+ dev-libs/glib:2
+ dev-libs/libxml2:2
+ gui-libs/gtk:4
+"
+
+DEPEND="
+ ${COMMON_DEPEND}
+ dev-libs/json-glib
+"
+
+RDEPEND="
+ ${COMMON_DEPEND}
+ x11-libs/pango
+"
+
+src_prepare() {
+ default
+ sed -i -e "/subdir('demo')/d" meson.build ||
+ die "Failed to modify meson.ebuild to exclude the demo program"
+}
next reply other threads:[~2022-03-25 11:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-25 11:24 Ronny Gutbrod [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-09-26 10:13 [gentoo-commits] repo/proj/guru:dev commit in: gui-libs/text-engine/ Andrew Ammerlaan
2022-09-26 10:13 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2022-07-03 10:58 Andrew Ammerlaan
2022-04-23 17:49 Haelwenn Monnier
2022-04-23 17:49 Haelwenn Monnier
2022-04-09 3:30 Ronny Gutbrod
2022-03-25 11:24 Ronny Gutbrod
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1647835942.6a9257cdfd005ea19647f870cc521c6090fe7f76.tastytea@gentoo \
--to=gentoo@tastytea.de \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox