commit: cf97e54a603af43411b1eec3b05c986c1a11681e Author: Nguyen Dinh Dang Duong <dangduong31205 <AT> gmail <DOT> com> AuthorDate: Thu Nov 20 13:15:44 2025 +0000 Commit: Nguyen Dinh Dang Duong <dangduong31205 <AT> gmail <DOT> com> CommitDate: Thu Nov 20 13:15:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf97e54a
app-text/notekit: new package, add 0.2.0 Signed-off-by: Nguyen Dinh Dang Duong <dangduong31205 <AT> gmail.com> app-text/notekit/Manifest | 1 + app-text/notekit/metadata.xml | 11 +++++++++++ app-text/notekit/notekit-0.2.0.ebuild | 37 +++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/app-text/notekit/Manifest b/app-text/notekit/Manifest new file mode 100644 index 0000000000..3f1e2d894f --- /dev/null +++ b/app-text/notekit/Manifest @@ -0,0 +1 @@ +DIST v0.2.0.tar.gz 1906688 BLAKE2B 4d39e00997defcdf79cab3ce98d3b3f67390d43729b851d36b179a0f76b66b3577065ac22cbd83fda12130a93ecfa33a64c658d3926bc912ed3cebe752002ede SHA512 1f2c24ea9e7ff1e12bf8ff1a91a3910ebb24d1bb8d5312a39d5d4b89a6ab924af79b17efd0225f6afc033c3e3cb9369668e2a17cf49545b6ef1863c89e3dcce5 diff --git a/app-text/notekit/metadata.xml b/app-text/notekit/metadata.xml new file mode 100644 index 0000000000..7566dfb5c6 --- /dev/null +++ b/app-text/notekit/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>[email protected]</email> + <name>Nguyen Dinh Dang Duong</name> + </maintainer> + <upstream> + <remote-id type="github">blackhole89/notekit</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-text/notekit/notekit-0.2.0.ebuild b/app-text/notekit/notekit-0.2.0.ebuild new file mode 100644 index 0000000000..e2af57253f --- /dev/null +++ b/app-text/notekit/notekit-0.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Write your notes in instantly-formatted Markdown and +add hand-drawn notes by mouse, touchscreen or digitiser." +HOMEPAGE="https://github.com/blackhole89/notekit/" +SRC_URI="https://github.com/blackhole89/notekit/archive/refs/tags/v${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-cpp/gtkmm:3.0 + dev-cpp/gtksourceviewmm:3.0 + sys-libs/zlib + media-libs/fontconfig + dev-libs/jsoncpp + dev-libs/tinyxml2 +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-build/meson + dev-build/ninja +" + +src_configure() { + local emesonargs=( + "-Dclatexmath=false" + ) + meson_src_configure +} +
