From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1550255-garchives=archives.gentoo.org@lists.gentoo.org> 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 C1EB115800A for <garchives@archives.gentoo.org>; Tue, 29 Aug 2023 01:51:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAF782BC014; Tue, 29 Aug 2023 01:51:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D13282BC014 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 01:51:47 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 099F0335D00 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 01:51:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B585B84 for <gentoo-commits@lists.gentoo.org>; Tue, 29 Aug 2023 01:51:45 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1693273883.0e339ea8075fb1ff87ba1c619a19e2ac159e40c6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/zathura/zathura-0.5.2-r4.ebuild X-VCS-Directories: app-text/zathura/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0e339ea8075fb1ff87ba1c619a19e2ac159e40c6 X-VCS-Branch: master Date: Tue, 29 Aug 2023 01:51:45 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 802f6ed2-c3cb-46ce-a820-186084193069 X-Archives-Hash: c2c706e0bec3c6196b9de835ef802cf4 commit: 0e339ea8075fb1ff87ba1c619a19e2ac159e40c6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Aug 29 01:51:14 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Aug 29 01:51:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e339ea8 app-text/zathura: restore stable 0.5.2 Needed for app-text/zathura-pdf-mupdf. Sorry, I got distracted by the git merge conflict stuff in gentoolkit. Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/zathura/zathura-0.5.2-r4.ebuild | 68 ++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/app-text/zathura/zathura-0.5.2-r4.ebuild b/app-text/zathura/zathura-0.5.2-r4.ebuild new file mode 100644 index 000000000000..249ff0cbb654 --- /dev/null +++ b/app-text/zathura/zathura-0.5.2-r4.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson virtualx xdg + +DESCRIPTION="A highly customizable and functional document viewer" +HOMEPAGE="https://pwmt.org/projects/zathura/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" + EGIT_BRANCH="develop" +else + SRC_URI=" + https://github.com/pwmt/zathura/archive/${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-manpages.tar.xz + " + KEYWORDS="amd64 arm ~riscv x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="ZLIB" +SLOT="0/$(ver_cut 1-2)" +IUSE="seccomp sqlite synctex test" + +RESTRICT="!test? ( test )" + +DEPEND=">=dev-libs/girara-0.3.7 + >=dev-libs/glib-2.50:2 + >=sys-devel/gettext-0.19.8 + x11-libs/cairo + >=x11-libs/gtk+-3.22:3 + sys-apps/file + seccomp? ( sys-libs/libseccomp ) + sqlite? ( >=dev-db/sqlite-3.5.9:3 ) + synctex? ( app-text/texlive-core )" + +RDEPEND="${DEPEND}" + +BDEPEND=" + test? ( dev-libs/appstream-glib + dev-libs/check ) + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/zathura-disable-seccomp-tests.patch +) + +src_configure() { + local emesonargs=( + -Dconvert-icon=disabled + -Dmanpages=disabled + -Dseccomp=$(usex seccomp enabled disabled) + -Dsqlite=$(usex sqlite enabled disabled) + -Dsynctex=$(usex synctex enabled disabled) + ) + meson_src_configure +} + +src_install() { + meson_src_install + doman "${WORKDIR}"/man/zathura* +} + +src_test() { + virtx meson_src_test +}