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 2BFA6158089 for ; Mon, 30 Oct 2023 16:49:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64BA22BC033; Mon, 30 Oct 2023 16:49:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 47F9A2BC033 for ; Mon, 30 Oct 2023 16:49:54 +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 4EE4A335C52 for ; Mon, 30 Oct 2023 16:49:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D8DE922 for ; Mon, 30 Oct 2023 16:49:51 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1698684585.a6ebe3c0f83aa3824f8eba15b999c7dc295a0aa8.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udiskie/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udiskie/udiskie-2.4.2-r2.ebuild sys-fs/udiskie/udiskie-2.5.0-r1.ebuild X-VCS-Directories: sys-fs/udiskie/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: a6ebe3c0f83aa3824f8eba15b999c7dc295a0aa8 X-VCS-Branch: master Date: Mon, 30 Oct 2023 16:49:51 +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: 238697a9-12dd-4c96-9061-07bde529bd30 X-Archives-Hash: 2f14bd568a9abbedb399040a7c45481d commit: a6ebe3c0f83aa3824f8eba15b999c7dc295a0aa8 Author: Ben Kohler gentoo org> AuthorDate: Mon Oct 30 16:45:46 2023 +0000 Commit: Ben Kohler gentoo org> CommitDate: Mon Oct 30 16:49:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ebe3c0 sys-fs/udiskie: require libnotify for notifications Closes: https://bugs.gentoo.org/916453 Signed-off-by: Ben Kohler gentoo.org> sys-fs/udiskie/udiskie-2.4.2-r2.ebuild | 51 ++++++++++++++++++++++++++++++++++ sys-fs/udiskie/udiskie-2.5.0-r1.ebuild | 51 ++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) diff --git a/sys-fs/udiskie/udiskie-2.4.2-r2.ebuild b/sys-fs/udiskie/udiskie-2.4.2-r2.ebuild new file mode 100644 index 000000000000..fd9626a54410 --- /dev/null +++ b/sys-fs/udiskie/udiskie-2.4.2-r2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +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}] )" + +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 +} diff --git a/sys-fs/udiskie/udiskie-2.5.0-r1.ebuild b/sys-fs/udiskie/udiskie-2.5.0-r1.ebuild new file mode 100644 index 000000000000..127a7ed4850d --- /dev/null +++ b/sys-fs/udiskie/udiskie-2.5.0-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +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}] )" + +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 +}