public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ben Kohler" <bkohler@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udiskie/
Date: Thu, 12 Dec 2024 19:55:12 +0000 (UTC)	[thread overview]
Message-ID: <1734033300.0686598a0dd18a0a47561bd1215c346e21ceef6e.bkohler@gentoo> (raw)

commit:     0686598a0dd18a0a47561bd1215c346e21ceef6e
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 17:50:48 2024 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 19:55:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0686598a

sys-fs/udiskie: add 2.5.7

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 sys-fs/udiskie/Manifest             |  1 +
 sys-fs/udiskie/udiskie-2.5.7.ebuild | 52 +++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/sys-fs/udiskie/Manifest b/sys-fs/udiskie/Manifest
index 194b8ce313c5..e151d58cb433 100644
--- a/sys-fs/udiskie/Manifest
+++ b/sys-fs/udiskie/Manifest
@@ -3,3 +3,4 @@ DIST udiskie-2.5.0.tar.gz 98570 BLAKE2B 0b07c4135a5ef199f6e84c7d341a355148926c27
 DIST udiskie-2.5.1.tar.gz 100289 BLAKE2B 4e1b3a2b6733cf0586039c362a3f2345b1b0563760267651ea9a1c888aaf252e3eb5ef5abffbdaa4ea03ccce5134a6b888709a0382715dad1cc91ec86f08d0b1 SHA512 f5f38de01ac02e92edc06f37a2c97bc0029fa439d0bd4b1a45584de62634fa9fde7ccdede06284230d6b5c8aa9ecfad20d029ebb432d07b6d23a5a887ba5de02
 DIST udiskie-2.5.2.tar.gz 100640 BLAKE2B b9160bd8f74e979ad3f19cabab6daf8fb61f0e7dfea32eb3d226b30df9a31ca014682e1c84e5111fffca7938f83857fa06611dede086ed62d75a06ce619ff5b3 SHA512 94dcbe22d41b2f5b2960d7f710f773aca19404108f7699248b4a0896e704aa1392d3e865cd4e0f52f9c21925d4bc4631cacb559e5b35035a247206132ba0f962
 DIST udiskie-2.5.3.tar.gz 101050 BLAKE2B c6a15a64ca294155a0ad3f1f5bc9fdec5f46b7461f91cd51f7863f87636996abbfbc4ca0a725474b651992e204f46d46eb3f53ce4175e7c97c01d1877613f91b SHA512 16de6f9a6eb3c780704f5030ae2d100db28bc77cce144cc0aa69b8d12ecc8bbf7b942dc57ecc53c6e3e44cb950f7f76b18cb1b78a19e156de43373b9070bf4da
+DIST udiskie-2.5.7.tar.gz 103275 BLAKE2B d709afa031a42c367e31a7ad54d7f4d8ad769d6232a93ce64b15ef2977326743e954a8f4dab60274f55db687add1e31c9cc83e81c9ab69dee6ffeeb445afe05b SHA512 62bc7ba78359c372d6cda9c33702864833b71f53df57e7433c3dcc8169b3f3bd7740d58ff6a4bcb1fcd8f5dd4eb5235bf87c8f1747de2a4a4fa20699d4242d35

diff --git a/sys-fs/udiskie/udiskie-2.5.7.ebuild b/sys-fs/udiskie/udiskie-2.5.7.ebuild
new file mode 100644
index 000000000000..64df129d091a
--- /dev/null
+++ b/sys-fs/udiskie/udiskie-2.5.7.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{9..12} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 pypi xdg-utils
+
+DESCRIPTION="An automatic disk mounting service using udisks"
+HOMEPAGE="https://pypi.org/project/udiskie/ https://github.com/coldfix/udiskie"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="libnotify"
+
+RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]
+	dev-python/pygobject:3[${PYTHON_USEDEP}]
+	dev-python/pyyaml[${PYTHON_USEDEP}]
+	sys-fs/udisks:2
+	libnotify? ( x11-libs/libnotify[introspection] )"
+DEPEND="app-text/asciidoc
+	test? ( dev-python/keyutils[${PYTHON_USEDEP}]
+		dev-python/pyyaml[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+	sed -i -e 's:gtk-update-icon-cache:true:' setup.py || die
+	sed -i -e 's: HACKING.rst, TRANSLATIONS.rst,::'	setup.cfg || die
+	default
+
+	distutils-r1_src_prepare
+}
+
+src_compile() {
+	distutils-r1_src_compile
+	emake -C doc
+}
+
+src_install() {
+	distutils-r1_src_install
+	doman doc/${PN}.8
+}
+
+pkg_postinst() {
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_icon_cache_update
+}


             reply	other threads:[~2024-12-12 19:55 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-12 19:55 Ben Kohler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-14 19:12 [gentoo-commits] repo/gentoo:master commit in: sys-fs/udiskie/ Ben Kohler
2024-12-12 19:55 Ben Kohler
2024-06-19  5:24 Arthur Zamarin
2024-06-04 18:23 Arthur Zamarin
2024-06-03  9:59 Ben Kohler
2024-05-16 15:06 Arthur Zamarin
2024-04-27  8:04 Arthur Zamarin
2024-04-26 14:31 Ben Kohler
2024-01-28 16:26 Joonas Niilola
2024-01-28 16:11 Ben Kohler
2023-11-27 13:35 Ben Kohler
2023-11-03 12:23 Ben Kohler
2023-10-30 16:49 Ben Kohler
2023-10-04 16:29 Ben Kohler
2023-07-08 18:43 Ben Kohler
2023-03-07 13:47 Ben Kohler
2022-07-25 14:26 Ben Kohler
2022-07-25 14:26 Ben Kohler
2022-04-14 19:36 Jakov Smolić
2022-04-14 19:36 Jakov Smolić
2022-03-05 19:48 Ben Kohler
2022-02-04 20:27 Ben Kohler
2022-01-07 19:30 Ben Kohler
2022-01-03  9:41 Jakov Smolić
2022-01-03  9:18 Sam James
2021-12-01 12:59 Ben Kohler
2021-08-30 10:28 Ben Kohler
2021-07-15 11:00 Ben Kohler
2021-07-14 18:23 Ben Kohler
2021-07-13 13:44 Ben Kohler
2021-04-19 17:52 Ben Kohler
2021-04-06 13:45 Ben Kohler
2021-03-05 17:19 Ben Kohler
2021-02-27 13:55 Ben Kohler
2021-02-26 14:54 Ben Kohler
2021-01-28  2:15 Ben Kohler
2021-01-22 13:50 Ben Kohler
2020-12-28 18:50 Ben Kohler
2020-05-08 14:47 Ben Kohler
2020-04-19 11:53 Ben Kohler
2020-04-19 11:53 Ben Kohler
2020-04-19 11:53 Ben Kohler
2020-02-07 16:55 Ben Kohler
2020-01-21 12:56 Ben Kohler
2020-01-20 13:07 Ben Kohler
2020-01-08 16:53 Ben Kohler
2019-12-31 13:18 Ben Kohler
2019-12-30 13:19 Ben Kohler
2019-12-30 13:03 Ben Kohler
2019-12-29 13:49 Ben Kohler
2019-12-27 15:57 Ben Kohler
2019-11-15 14:06 Agostino Sarubbo
2019-09-26 19:02 Thomas Deutschmann
2019-02-18 15:11 Ben Kohler
2018-11-28 14:14 Ben Kohler
2018-11-27 18:11 Ben Kohler
2018-02-07  8:51 Michael Palimaka
2018-02-06 16:24 Thomas Deutschmann
2017-12-15  8:54 Jason Zaman
2017-12-03  9:07 Jeroen Roovers

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=1734033300.0686598a0dd18a0a47561bd1215c346e21ceef6e.bkohler@gentoo \
    --to=bkohler@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