commit: 9369380ddb70d5707507f2a1a6f883e0bc48f8c3 Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org> AuthorDate: Thu May 22 07:29:55 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 22 22:20:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9369380d
x11-terms/terminator: add 2.1.5 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/42199 Closes: https://github.com/gentoo/gentoo/pull/42199 Signed-off-by: Sam James <sam <AT> gentoo.org> x11-terms/terminator/Manifest | 2 + x11-terms/terminator/terminator-2.1.5.ebuild | 59 ++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/x11-terms/terminator/Manifest b/x11-terms/terminator/Manifest index 64ea2ebb924a..0c5ddd2794fd 100644 --- a/x11-terms/terminator/Manifest +++ b/x11-terms/terminator/Manifest @@ -1,2 +1,4 @@ DIST terminator-2.1.4.tar.gz 1065856 BLAKE2B 6ac6393ddd694ad2a981ad5d225a28831d792f117b6cad30961fc77142ba945312d8ad762270860a86e9a6ee8104822c1b2b3f27ce97a405f45dab90c976f5b1 SHA512 8bc4445f19d67f968422f482ee93d01229c38f41747e48fced88b083da2a38b2176d679bca5391c5a7ea7e89537bd9ecf5ee79dd01f138f41db50afab1dbed6a DIST terminator-2.1.4.tar.gz.asc 866 BLAKE2B 9aa976faad2067de357990bd097ec42879603f0e313613b8e2bba78aaa10c5761f66715221c0fb38e92e0a4bff1a9a993777100a12ee21dc05004add4f624fbd SHA512 2b14b2d2d2bbd9c5380fdc8612868a752cd6eb2c3b9b1e5adc2846deaa16983992e383be602cf729ba1b6af3427c9bb5ba26f9794272fbf7fa0f4d50b933df37 +DIST terminator-2.1.5.tar.gz 1076263 BLAKE2B 0a1fd90ac06a61b584cbc621a85413dea4ea29ba8d3fc217e80f394f77cd6a8ce65ae8b9bdbabbf1ea96b390f3b0d4986bde691088fa85bc18701cd6f89fb72c SHA512 27dc3e9cbe7074e3236b6a0fda9460f4b13492010ad37500c0e68bf08cc1949d44347089671259313853014f708cde4be1321b33edf6b5494256b75386616e56 +DIST terminator-2.1.5.tar.gz.asc 833 BLAKE2B b975dc015b43f33e3166dd0d07b839990141b6625b721b429f5fed488edb481bd15dc117a64b9168acb2fe8533b21a946c079553e525b1d9e7ee03165c783d06 SHA512 d19bae2c9b2a05f1b1e42d79b47dbf020c1a29e4839af72ec59faa4a80e2fc120d72844b4ef66edf02b40d53905d034533cc802070477fc61556df348e82b84d diff --git a/x11-terms/terminator/terminator-2.1.5.ebuild b/x11-terms/terminator/terminator-2.1.5.ebuild new file mode 100644 index 000000000000..21b9909185c9 --- /dev/null +++ b/x11-terms/terminator/terminator-2.1.5.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 optfeature verify-sig virtualx xdg + +DESCRIPTION="Multiple GNOME terminals in one window" +HOMEPAGE="https://github.com/gnome-terminator/terminator" +SRC_URI=" + https://github.com/gnome-terminator/terminator/releases/download/v${PV}/${P}.tar.gz + verify-sig? ( https://github.com/gnome-terminator/terminator/releases/download/v${PV}/${P}.tar.gz.asc ) +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~riscv ~x86" +IUSE="test" + +RDEPEND=" + dev-libs/glib:2 + dev-python/configobj[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + gnome-base/gsettings-desktop-schemas[introspection] + x11-libs/gtk+:3 + x11-libs/vte:2.91[introspection] +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + test? ( + dev-python/dbus-python[${PYTHON_USEDEP}] + x11-libs/libnotify[introspection] + ) + verify-sig? ( sec-keys/openpgp-keys-terminator ) +" +distutils_enable_tests pytest + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/terminator.asc + +PATCHES=( + "${FILESDIR}"/terminator-1.91-desktop.patch +) + +src_test() { + virtx distutils-r1_src_test +} + +pkg_postinst() { + xdg_pkg_postinst + + optfeature "D-Bus" dev-python/dbus-python + optfeature "desktop notifications" "x11-libs/libnotify[introspection]" + optfeature "global keyboard shortcuts" "dev-libs/keybinder:3[introspection]" +}
