From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-text/komikku/
Date: Thu, 07 Aug 2025 21:24:40 +0000 (UTC) [thread overview]
Message-ID: <1754220616.d742891bff299ee4ef1b960a1bba34380177d615.davidroman@gentoo> (raw)
commit: d742891bff299ee4ef1b960a1bba34380177d615
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Aug 3 05:55:58 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Aug 3 11:30:16 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d742891b
app-text/komikku: add 1.84.0
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
app-text/komikku/Manifest | 1 +
app-text/komikku/komikku-1.84.0.ebuild | 89 ++++++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+)
diff --git a/app-text/komikku/Manifest b/app-text/komikku/Manifest
index 468b326737..08aa9ec08c 100644
--- a/app-text/komikku/Manifest
+++ b/app-text/komikku/Manifest
@@ -1 +1,2 @@
DIST komikku-1.78.0.tar.gz 4435738 BLAKE2B b5b489b2c8adf7f49d405d4ca61245b974992559c4de4bf60bfed2e62396b80ddf43b3a7a2f33cd0fe9050dfc0c1257bd5348f24d18bb51bbdbe688ed929cf7f SHA512 07b1a5888f105e36636ed5c2b9ba4518d0beb1464e35c5706e145d1f0c2eaebd43c4af4aa39f632db2d85ec52389a747a90eb6ef42ad955115684e6651db9e84
+DIST komikku-1.84.0.tar.gz 4488581 BLAKE2B b76b3e3271eda7663527fc16ab1f5ffe078ea64c1d93c92cf07853cd94d7e2e6b55638bc600de25c0bedcfa0b4854e6531d3d34238282897b8a12f9a4deee893 SHA512 ecfb305eafda5295ad345428b6192dc0f60e88b9a9fc33efa73d415f65b74f0ee9d01dd9a45130bd47708148234843ab09e36e94afa82d2a61723257995f288b
diff --git a/app-text/komikku/komikku-1.84.0.ebuild b/app-text/komikku/komikku-1.84.0.ebuild
new file mode 100644
index 0000000000..e982c4e040
--- /dev/null
+++ b/app-text/komikku/komikku-1.84.0.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+PYTHON_REQ_USE="sqlite(+),ssl(+)"
+DISTUTILS_USE_PEP517=no
+DISTUTILS_SINGLE_IMPL=1
+inherit distutils-r1 meson gnome2-utils xdg
+
+DESCRIPTION="Manga reader for GNOME"
+HOMEPAGE="https://apps.gnome.org/Komikku/"
+SRC_URI="https://codeberg.org/valos/Komikku/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}"
+
+LICENSE="CC0-1.0 CC-BY-4.0 GPL-3+ OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RESTRICT="test"
+# Depend on a random server that may or may not be accessible.
+#PROPERTIES="test_network"
+
+DEPEND="
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ >=gui-libs/gtk-4.12:4
+ >=gui-libs/libadwaita-1.7:1[introspection]
+ net-libs/webkit-gtk:6[introspection]
+"
+RDEPEND="
+ ${DEPEND}
+ x11-libs/libnotify[introspection]
+ $(python_gen_cond_dep '
+ app-arch/brotli[python,${PYTHON_USEDEP}]
+ dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+ dev-python/modern-colorthief[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/dateparser[${PYTHON_USEDEP}]
+ dev-python/emoji[${PYTHON_USEDEP}]
+ dev-python/keyring[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/natsort[${PYTHON_USEDEP}]
+ dev-python/piexif[${PYTHON_USEDEP}]
+ >=dev-python/pillow-11.3.0[${PYTHON_USEDEP}]
+ dev-python/pygobject[${PYTHON_USEDEP}]
+ dev-python/python-magic[${PYTHON_USEDEP}]
+ dev-python/rarfile[compressed,${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/unidecode[${PYTHON_USEDEP}]
+ ')
+"
+BDEPEND="
+ dev-util/blueprint-compiler
+ sys-devel/gettext
+"
+
+EPYTEST_PLUGINS=( pytest-steps )
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # fix broken shebang
+ sed "s|py_installation.full_path()|'${PYTHON}'|" -i bin/meson.build || die
+}
+
+src_test() {
+ emake setup
+ emake develop
+ emake test
+}
+
+src_install() {
+ meson_src_install
+ python_optimize
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
next reply other threads:[~2025-08-07 21:25 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-07 21:24 David Roman [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-08-27 14:02 [gentoo-commits] repo/proj/guru:master commit in: app-text/komikku/ David Roman
2025-08-27 14:02 David Roman
2025-08-07 21:24 David Roman
2025-04-16 12:45 David Roman
2025-04-16 12:45 David Roman
2025-03-20 9:22 David Roman
2025-02-17 9:49 David Roman
2025-02-17 9:49 David Roman
2025-02-03 11:38 David Roman
2025-02-03 11:38 David Roman
2025-01-07 15:14 Julien Roy
2024-09-07 9:22 David Roman
2024-09-07 9:22 David Roman
2024-07-14 0:34 David Roman
2024-07-14 0:34 David Roman
2024-07-04 11:19 David Roman
2024-07-04 11:19 David Roman
2024-06-27 8:41 David Roman
2024-06-27 8:41 David Roman
2024-06-01 22:03 Julien Roy
2024-06-01 22:03 Julien Roy
2024-03-07 11:34 Andrew Ammerlaan
2024-03-07 11:34 Andrew Ammerlaan
2024-02-23 13:10 David Roman
2024-02-23 13:10 David Roman
2024-02-09 14:26 David Roman
2024-02-09 14:26 David Roman
2023-05-21 7:23 Viorel Munteanu
2023-04-28 17:52 Arthur Zamarin
2023-04-13 19:52 Florian Schmaus
2023-03-25 7:40 Viorel Munteanu
2023-03-13 8:29 Viorel Munteanu
2023-03-08 9:08 Florian Schmaus
2023-02-25 7:17 Viorel Munteanu
2023-02-16 12:47 Haelwenn Monnier
2023-01-06 8:51 Florian Schmaus
2022-07-03 12:03 Andrew Ammerlaan
2022-03-08 13:39 Andrew Ammerlaan
2022-02-24 11:10 Ronny Gutbrod
2021-12-08 11:38 Andrew Ammerlaan
2021-09-20 9:17 Andrew Ammerlaan
2021-08-27 16:10 Haelwenn Monnier
2021-06-29 6:59 Florian Schmaus
2021-06-17 5:55 Theo Anderson
2021-06-17 5:55 Theo Anderson
2021-06-04 7:59 Andrew Ammerlaan
2021-05-24 7:31 Andrew Ammerlaan
2021-05-17 19:11 Andrew Ammerlaan
2021-05-17 19:11 Andrew Ammerlaan
2021-05-17 19:11 Andrew Ammerlaan
2021-04-16 7:36 Andrew Ammerlaan
2021-02-27 21:23 Andrew Ammerlaan
2021-02-24 18:50 Andrew Ammerlaan
2021-02-24 18:50 Andrew Ammerlaan
2021-02-24 18:50 Andrew Ammerlaan
2021-02-09 14:46 Andrew Ammerlaan
2021-02-09 14:46 Andrew Ammerlaan
2020-12-19 19:52 Andrew Ammerlaan
2020-12-19 19:52 Andrew Ammerlaan
2020-09-28 21:12 Andrew Ammerlaan
2020-06-18 12:20 Andrew Ammerlaan
2020-05-03 9:33 Andrew Ammerlaan
2020-05-03 9:33 Andrew Ammerlaan
2020-05-03 9:26 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-05-03 9:33 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
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=1754220616.d742891bff299ee4ef1b960a1bba34380177d615.davidroman@gentoo \
--to=davidroman96@gmail.com \
--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