app-misc/gnote: add 49.4

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-04-30 22:59:37 +02:00
parent e932bb1f1e
commit dfe3b6c017
2 changed files with 49 additions and 0 deletions
+1
View File
@@ -1,2 +1,3 @@
DIST gnote-48.2.tar.xz 4354000 BLAKE2B 5264cba07079b10060de4ab4aaa75d76b69bbb00cba4ea5832ca43bf863609807d38e542a9a63a665f1b13cf1893e918995ce5977deafec733b488a326c47082 SHA512 a4500abb066c39aa0126ba9a922fe406b09cd06bad63519796d4adb2e88ae2461b964377134b042fb93fc549acf0ea1a7a2464cf81f61ae9a0d9c045285edb1a
DIST gnote-49.1.tar.xz 4359104 BLAKE2B bd3e8d0ce44b0df2213ee70dccd63e0a5e1d81371812839fdf95d22b40d1e3692f9793284635e93d2e92aaf03742da2e3a66b39d72cd53e702838ceca99fb18c SHA512 0b1f14bb9629c61b08d764c84fa932143d1128ed92e668be22dd7f4f7641582de345bac2355272ff754e3d59f2cefec08eec3f0eff21456c0c62c5a4e5ca2086
DIST gnote-49.4.tar.xz 4385944 BLAKE2B c78f374b0ca57a93b490022d6870c8765c0cb5eb0f3f9871b9609b9f6758623780104c7d5ef999f165cfb3df71f3a3bcca4ecd51e7e1e58577c47aaa936d2dd6 SHA512 b0ece287a8b44591981546f6de27d06a3fcf1800a46b81a9e39aa71eb24cd9b15a4077e50766633b5200ff9ed1ce201b083409e64c5c2a0e93fd80b8b5ca2db4
+48
View File
@@ -0,0 +1,48 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2 meson optfeature
DESCRIPTION="Desktop note-taking application"
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnote"
LICENSE="GPL-3+ FDL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
>=dev-libs/glib-2.74:2[dbus]
>=dev-cpp/glibmm-2.74:2.68
>=dev-cpp/gtkmm-4.10.0:4.0
>=gui-libs/libadwaita-1
>=app-crypt/libsecret-0.8
>=dev-libs/libxml2-2:2=
dev-libs/libxslt
>=sys-apps/util-linux-2.16
test? ( dev-libs/unittest++ )
"
RDEPEND="${DEPEND}
gnome-base/gsettings-desktop-schemas
"
BDEPEND="
dev-libs/appstream
dev-util/itstool
virtual/pkgconfig
"
src_prepare() {
default
if ! use test; then
sed -i -e "/unit_test_pp/ s/ = .*/ = disabler()/" meson.build || die
fi
}
pkg_postinst() {
gnome2_pkg_postinst
optfeature "notes synchronization" net-fs/wdfs
}