public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/
Date: Mon, 21 Oct 2024 12:36:28 +0000 (UTC)	[thread overview]
Message-ID: <1729514182.54086bbd4ac7987e8bb587a0c412c9bede960a62.juippis@gentoo> (raw)

commit:     54086bbd4ac7987e8bb587a0c412c9bede960a62
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Tue Sep  3 13:18:35 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 12:36:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54086bbd

app-text/zathura: add 0.5.8

* Enable building manpages by default

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-text/zathura/Manifest             |  1 +
 app-text/zathura/zathura-0.5.8.ebuild | 71 +++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/app-text/zathura/Manifest b/app-text/zathura/Manifest
index 942803becaa7..aa627544c1de 100644
--- a/app-text/zathura/Manifest
+++ b/app-text/zathura/Manifest
@@ -3,3 +3,4 @@ DIST zathura-0.5.2.tar.gz 208606 BLAKE2B fc7e8042a373a3fd66973fd5d6c7c3e7d6da884
 DIST zathura-0.5.4-manpages.tar.xz 10060 BLAKE2B 103d2b5ed4ab71bc096305e70addbf94f11539cc989fc867766a1366ec18ca30379ce8f5b9f2b4a4a67507f79bbf6c6136c46f47161d1b74457c04488aa3dcea SHA512 a8251740a8e24e1c37093bec58b0169f04bd318878d743c72f07505a722c58da4f84a2dad5d46ded7789e1b4c5f2a7bab9cc6d023cd0935e49fe4388c9c28bd9
 DIST zathura-0.5.4.tar.gz 216719 BLAKE2B 94219e1feb22dc5cf3c072ed7d53b984c58e1f5c2d86b7e2b9e67c2d1cde92e9972aa18583930d3af3bc7d9c2afe367221ed3c2141fee682cc7ea54aae603ec4 SHA512 16f7291c3742cffe9ba5c6a3137781b2dd0b0bfcd61747e45a3c4b14df97781b49d526a298d2be9f564c84e616f1adef2ff4f5442d539fd42ab5e862baa00922
 DIST zathura-0.5.6.tar.gz 215311 BLAKE2B 4609fbd38b92aeee55e2f89f0abc15d90a3086ff2e19d497f51fb708016d51d714d3c8a31e6d0574fa01a7f3b4b7b9f758a3296784fc1fa66e6730bac21a0f3b SHA512 df518865bc559b97d7abebde2dae17cbd7bde6b9f8219338bd3a455a5d71b42f62299591b9c12c75a9a6f007b1179cb163722eaaf43ee86e6a6d9e2e25f63465
+DIST zathura-0.5.8.tar.gz 219371 BLAKE2B c7c163e0c1cd5e344ae566ab71ad66d51b89cacd11ef9b335589c0fa705e7a300adab680b7c13a197da3c10b5161656fbb9c8449667eb05e64f0506bf254e675 SHA512 6954f8bf8c76526e86a4e335c18c3c68f509fbbe1081f7c74d333f8a9ba83bc5da971ad744f91408f8b0fb8f0b647ae07f02601b5efa97961155ba193c8777f6

diff --git a/app-text/zathura/zathura-0.5.8.ebuild b/app-text/zathura/zathura-0.5.8.ebuild
new file mode 100644
index 000000000000..cec45e525bb4
--- /dev/null
+++ b/app-text/zathura/zathura-0.5.8.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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
+	"
+	KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="ZLIB"
+SLOT="0/6.7"
+IUSE="+man seccomp synctex test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/json-glib
+	man? ( dev-python/sphinx )
+	seccomp? ( sys-libs/libseccomp )
+	synctex? ( app-text/texlive-core )
+	sys-apps/file
+	x11-libs/cairo
+	x11-libs/pango
+	>=dev-db/sqlite-3.6.23:3
+	>=dev-libs/girara-0.4.3:=
+	>=dev-libs/glib-2.72:2
+	>=x11-libs/gtk+-3.24:3
+"
+DEPEND="
+	${RDEPEND}
+	>=sys-kernel/linux-headers-5.13
+	test? (
+		dev-libs/check
+		>=x11-libs/gtk+-3.24:3[X]
+	)
+"
+BDEPEND="
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dconvert-icon=disabled
+		-Dlandlock=enabled
+		-Dmanpages=$(usex man enabled disabled)
+		-Dseccomp=$(usex seccomp enabled disabled)
+		-Dsynctex=$(usex synctex enabled disabled)
+		)
+	meson_src_configure
+}
+
+src_test() {
+	virtx meson_src_test
+}
+
+src_install() {
+	meson_src_install
+}


             reply	other threads:[~2024-10-21 12:36 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-21 12:36 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-02  8:21 [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/ Sam James
2025-02-04 14:17 Sam James
2024-10-21 12:36 Joonas Niilola
2024-10-21 12:36 Joonas Niilola
2024-08-29 13:19 Joonas Niilola
2024-03-13 10:11 Jakov Smolić
2024-03-13  7:57 Arthur Zamarin
2024-03-13  7:57 Arthur Zamarin
2024-01-21  4:36 Sam James
2024-01-21  4:02 Sam James
2023-08-29  1:51 Sam James
2023-08-29  1:31 Sam James
2023-08-29  1:31 Sam James
2023-08-29  1:31 Sam James
2023-03-07 11:42 Sam James
2023-03-06 13:04 Arthur Zamarin
2023-03-05 16:35 Arthur Zamarin
2023-01-23  0:56 Sam James
2023-01-21 15:38 Piotr Karbowski
2023-01-08 21:14 Piotr Karbowski
2023-01-08 15:34 Piotr Karbowski
2023-01-08 15:34 Piotr Karbowski
2022-10-17 23:56 Sam James
2022-06-02 12:02 Jakov Smolić
2022-05-05  3:54 Sam James
2022-05-05  3:54 Sam James
2022-03-27 23:20 Piotr Karbowski
2022-03-27 23:20 Piotr Karbowski
2022-01-23 15:22 Sam James
2022-01-21 12:42 Sam James
2022-01-21 12:40 Sam James
2021-10-16 20:54 Piotr Karbowski
2021-08-05 14:02 Yixun Lan
2020-09-20 13:51 David Seifert
2020-09-16 19:46 Piotr Karbowski
2020-08-28 21:41 Piotr Karbowski
2020-08-24 11:58 Mikle Kolyada
2020-01-08 13:25 Mikle Kolyada
2019-10-27 18:09 Mikle Kolyada
2019-09-13 11:22 Mikle Kolyada
2019-09-13 11:22 Mikle Kolyada
2019-04-28 18:15 Mikle Kolyada
2019-02-10  7:17 Mikle Kolyada
2019-01-16 13:22 Mikle Kolyada
2018-12-23  9:24 Mikle Kolyada
2018-12-23  8:13 Mikle Kolyada
2018-12-23  8:13 Mikle Kolyada
2018-12-11  9:58 Mikle Kolyada
2018-12-09 23:51 Thomas Deutschmann
2018-11-25 15:54 Mikle Kolyada
2018-11-25 15:53 Mikle Kolyada
2018-11-25 15:53 Mikle Kolyada
2018-11-25 10:47 Mikle Kolyada
2018-11-17 14:02 Mikle Kolyada
2018-11-10 23:14 Mikle Kolyada
2018-10-10 18:36 Mikle Kolyada
2018-10-08 19:03 Mikle Kolyada
2018-10-08 16:57 Mikle Kolyada
2018-07-22 16:28 Mikle Kolyada
2018-04-14 17:24 Aaron Bauman
2018-04-12  0:54 Thomas Deutschmann
2018-01-28 16:19 Michael Weber
2018-01-28 16:19 Michael Weber
2017-12-25 19:17 David Seifert
2017-11-25 19:55 David Seifert
2017-08-20 19:16 Thomas Deutschmann
2017-07-15 15:17 Tobias Klausmann
2017-02-23 13:27 Michael Weber
2017-01-29 19:19 Michael Weber
2017-01-29 19:16 Michael Weber
2017-01-23  2:00 Michael Weber
2016-08-03  8:06 Michael Weber
2016-07-31 16:58 Maxim Koltsov
2016-02-26 23:27 Michael Weber
2016-02-26 23:27 Michael Weber
2016-02-04 18:54 Patrice Clement
2016-01-12 21:32 Michael Weber
2016-01-09  1:33 Michael Weber
2016-01-09  1:04 Michael Weber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1729514182.54086bbd4ac7987e8bb587a0c412c9bede960a62.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox