commit: 7af30c2625fe89a685921817f37aadadf04bee3a Author: Lukas Schmelting <lschmelting <AT> posteo <DOT> com> AuthorDate: Fri Feb 6 21:48:15 2026 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Feb 8 12:34:16 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af30c26
app-editors/gnome-text-editor: add 49.1 Signed-off-by: Lukas Schmelting <lschmelting <AT> posteo.com> Part-of: https://github.com/gentoo/gentoo/pull/45677 Closes: https://github.com/gentoo/gentoo/pull/45677 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> app-editors/gnome-text-editor/Manifest | 1 + .../gnome-text-editor-49.1.ebuild | 53 ++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/app-editors/gnome-text-editor/Manifest b/app-editors/gnome-text-editor/Manifest index 5d3d9af53d9c..2931418cc259 100644 --- a/app-editors/gnome-text-editor/Manifest +++ b/app-editors/gnome-text-editor/Manifest @@ -1,2 +1,3 @@ DIST gnome-text-editor-48.3.tar.xz 667388 BLAKE2B 9bc249e757d5e26eac8c7479ed9ef03dec91a7e5b5d72dccbac018f2222cbdaa5a5dd4a9cb3bc2cf2e085b287619e16c685a7d3703dfd4a7b74d4a4d0f36dc70 SHA512 0c084f96df3572c8de21560ef23ed2dcd273db3d1646a94f417e265ee9e03201dbbf62df16478712d20cb02d028b8d9e11e912009dda85268c49ef7ab66f0996 DIST gnome-text-editor-49.0.tar.xz 677176 BLAKE2B 728bb688191c14f8869a9ab0900c109b5c9c048116f94f5b5e39ecca31e60d461e7803ccf165299ebbad59496643bbd4d9dcf8f5fa3dd74bc8b4d9533ae79a6d SHA512 de543a7283ecca59cd473735299692dafe4b53dcd7e11f15cdda5e28781c558c7104f9aba18a2d396692fa322716049d279cadbb3e2cef0465f70c5b19e07399 +DIST gnome-text-editor-49.1.tar.xz 695364 BLAKE2B 52f3ec17c8176228f61bede5ccf819bb4febeb67252e0382397293470d6dccfa6093764baf9b9c22a3bbabda89f635b54096d0db761c3b3a9626a475638e0544 SHA512 8097a591ca7c2c6807f973b639913afd592bc47faf80ae2fa8560b73ee6794f2e68933125dc8985eaa8742a3c436bc7beefb1df7d66d7c52cb45259978427edb diff --git a/app-editors/gnome-text-editor/gnome-text-editor-49.1.ebuild b/app-editors/gnome-text-editor/gnome-text-editor-49.1.ebuild new file mode 100644 index 000000000000..88fe3115fc0c --- /dev/null +++ b/app-editors/gnome-text-editor/gnome-text-editor-49.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A simple text editor for the GNOME desktop" +HOMEPAGE="https://apps.gnome.org/TextEditor/" +S="${WORKDIR}/gnome-text-editor-${PV/_/.}" + +LICENSE="GPL-3+ CC-BY-SA-3.0" +SLOT="0" + +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + +IUSE="+editorconfig" + +DEPEND=" + >=dev-libs/glib-2.80.0:2 + >=gui-libs/gtk-4.19.4:4 + >=gui-libs/gtksourceview-5.15.0:5 + >=gui-libs/libadwaita-1.8_alpha:1 + app-text/editorconfig-core-c + >=app-text/libspelling-0.4.0 +" +RDEPEND="${DEPEND} + gnome-base/gsettings-desktop-schemas +" +BDEPEND=" + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.21 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_feature editorconfig) + -Dbugreport_url="https://bugs.gentoo.org" + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}
