From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6FDFE158043 for ; Sat, 13 Apr 2024 23:04:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 455D6E2A41; Sat, 13 Apr 2024 23:04:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2CAFEE2A49 for ; Sat, 13 Apr 2024 23:04:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B3343433B8 for ; Sat, 13 Apr 2024 23:04:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91A9116EA for ; Sat, 13 Apr 2024 23:04:29 +0000 (UTC) From: "Horodniceanu Andrei" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horodniceanu Andrei" Message-ID: <1713049218.1c286cff62006d4d995153a0d01a16e860309474.a.horodniceanu@gentoo> Subject: [gentoo-commits] repo/user/dlang:master commit in: x11-terms/tilix/ X-VCS-Repository: repo/user/dlang X-VCS-Files: x11-terms/tilix/tilix-1.9.6-r1.ebuild X-VCS-Directories: x11-terms/tilix/ X-VCS-Committer: a.horodniceanu X-VCS-Committer-Name: Horodniceanu Andrei X-VCS-Revision: 1c286cff62006d4d995153a0d01a16e860309474 X-VCS-Branch: master Date: Sat, 13 Apr 2024 23:04:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e29b12f6-c167-4dc3-89ed-7a01680190fd X-Archives-Hash: bdc7c360baf87e86074bdd00fd9e4e57 commit: 1c286cff62006d4d995153a0d01a16e860309474 Author: Andrei Horodniceanu proton me> AuthorDate: Sat Mar 9 19:00:06 2024 +0000 Commit: Horodniceanu Andrei proton me> CommitDate: Sat Apr 13 23:00:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=1c286cff x11-terms/tilix: port to dlang-single.eclass Closes: https://github.com/gentoo/dlang/pull/130 Signed-off-by: Andrei Horodniceanu proton.me> x11-terms/tilix/tilix-1.9.6-r1.ebuild | 57 +++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/x11-terms/tilix/tilix-1.9.6-r1.ebuild b/x11-terms/tilix/tilix-1.9.6-r1.ebuild new file mode 100644 index 0000000..234e17a --- /dev/null +++ b/x11-terms/tilix/tilix-1.9.6-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A tiling terminal emulator for Linux using GTK+ 3" +HOMEPAGE="https://gnunn1.github.io/tilix-web/" +LICENSE="MPL-2.0" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +GITHUB_URI="https://codeload.github.com/gnunn1" +SRC_URI="${GITHUB_URI}/${PN}/tar.gz/${PV} -> ${PN}-${PV}.tar.gz" +IUSE="test" +RESTRICT="!test? ( test )" + +DLANG_COMPAT=( ldc2-1_{35..36} ) + +inherit dlang-single gnome2-utils meson optfeature + +REQUIRED_USE=${DLANG_REQUIRED_USE} +RDEPEND=" + ${DLANG_DEPS} + >=sys-devel/gettext-0.19.8.1 + $(dlang_gen_cond_dep ' + >=dev-libs/gtkd-3.10.0-r2:3[vte,${DLANG_USEDEP}] + ') + sys-libs/libunwind + gnome-base/gsettings-desktop-schemas +" +DEPEND=${RDEPEND} +BDEPEND=" + ${DLANG_DEPS} + app-text/po4a + dev-libs/appstream + test? ( dev-util/desktop-file-utils ) +" + +src_configure() { + DFLAGS="${DCFLAGS}" meson_src_configure -Dd_link_args="${DCFLAGS} ${DLANG_LDFLAGS}" +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + gnome2_schemas_update + + optfeature "Nautilus integration" "dev-python/nautilus-python" + optfeature "Password support" "app-crypt/libsecret gnome-base/gnome-keyring" +} + +pkg_postrm() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +}