From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udisks/
Date: Tue, 18 Jul 2023 07:34:31 +0000 (UTC) [thread overview]
Message-ID: <1689665660.02f474e2173d278f44a8289540e1bb3b7107068f.pacho@gentoo> (raw)
commit: 02f474e2173d278f44a8289540e1bb3b7107068f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 07:30:52 2023 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 07:34:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f474e2
sys-fs/udisks: add 2.10.0
Closes: https://bugs.gentoo.org/907900
Closes: https://bugs.gentoo.org/871609
Closes: https://bugs.gentoo.org/910078
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-fs/udisks/Manifest | 1 +
sys-fs/udisks/udisks-2.10.0.ebuild | 141 +++++++++++++++++++++++++++++++++++++
2 files changed, 142 insertions(+)
diff --git a/sys-fs/udisks/Manifest b/sys-fs/udisks/Manifest
index a888522f131f..0965324cdc21 100644
--- a/sys-fs/udisks/Manifest
+++ b/sys-fs/udisks/Manifest
@@ -1 +1,2 @@
+DIST udisks-2.10.0.tar.bz2 1784010 BLAKE2B a3923433408ab87448ea0b6dcafcf329b1392f5810ca6d1bcb52da90aad02578f9e533041a5ad62258c485e43b834a60b28fc66ade0aa241c1cdfafdb130bf65 SHA512 3c9dc18dd5f6d61442205f4df2592ebf79211d12d71168f96e6814c2ce16f7a46cda7c0a5ccf47b7dc8b655d8af654d5a62e54b04e5b600af0b15558442cf3ed
DIST udisks-2.9.4.tar.bz2 1699288 BLAKE2B 913f6dd02988c0bded13ae15a5f05e5b3c6404f0b0d58a493601a0762c7534403f89e9fb46ec6a536b85d5f9ca1f788c7a308f5563a897b324d212da0e7bab4b SHA512 35f5429bc2a7092aa659cba9296837d127e2b17c23ab23111d0d9b230d15ef5a6965e112b1f3829748a69a52fb5b09722153f86f1ef70977b3ad7b7a4ec40ec5
diff --git a/sys-fs/udisks/udisks-2.10.0.ebuild b/sys-fs/udisks/udisks-2.10.0.ebuild
new file mode 100644
index 000000000000..b42b82eab9dd
--- /dev/null
+++ b/sys-fs/udisks/udisks-2.10.0.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit autotools bash-completion-r1 linux-info systemd tmpfiles udev xdg-utils
+
+DESCRIPTION="Daemon providing interfaces to work with storage devices"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/udisks"
+SRC_URI="https://github.com/storaged-project/udisks/releases/download/${P}/${P}.tar.bz2"
+
+LICENSE="LGPL-2+ GPL-2+"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc64 ~riscv ~x86"
+IUSE="acl +daemon debug elogind +introspection lvm nls selinux systemd"
+
+REQUIRED_USE="
+ ?? ( elogind systemd )
+ elogind? ( daemon )
+ systemd? ( daemon )
+"
+
+# See configure.ac file for the required min version
+BLOCKDEV_MIN_VER="3.0"
+
+COMMON_DEPEND="
+ >=sys-auth/polkit-0.114[daemon]
+ >=sys-libs/libblockdev-${BLOCKDEV_MIN_VER}:=[cryptsetup,lvm?]
+ virtual/udev
+ acl? ( virtual/acl )
+ daemon? (
+ >=dev-libs/glib-2.68:2
+ >=dev-libs/libatasmart-0.19
+ >=dev-libs/libgudev-165:=
+ )
+ elogind? ( >=sys-auth/elogind-219 )
+ introspection? ( >=dev-libs/gobject-introspection-1.30:= )
+ lvm? ( sys-fs/lvm2 )
+ systemd? ( >=sys-apps/systemd-209 )
+"
+# util-linux -> mount, umount, swapon, swapoff (see also #403073)
+RDEPEND="${COMMON_DEPEND}
+ >=sys-block/parted-3
+ >=sys-apps/util-linux-2.30
+ selinux? ( sec-policy/selinux-devicekit )
+"
+DEPEND="${COMMON_DEPEND}
+ >=sys-kernel/linux-headers-3.1
+"
+BDEPEND="
+ app-text/docbook-xsl-stylesheets
+ >=dev-util/gdbus-codegen-2.32
+ >=dev-util/gtk-doc-am-1.3
+ virtual/pkgconfig
+ nls? ( >=sys-devel/gettext-0.19.8 )
+ dev-libs/gobject-introspection-common
+ sys-devel/autoconf-archive
+"
+# If adding a eautoreconf, then these might be needed at buildtime:
+# dev-libs/gobject-introspection-common
+# sys-devel/autoconf-archive
+
+DOCS=( AUTHORS HACKING NEWS README.md )
+
+pkg_setup() {
+ # Listing only major arch's here to avoid tracking kernel's defconfig
+ if use amd64 || use arm || use ppc || use ppc64 || use x86; then
+ CONFIG_CHECK="~!IDE" #319829
+ CONFIG_CHECK+=" ~TMPFS_POSIX_ACL" #412377
+ CONFIG_CHECK+=" ~NLS_UTF8" #425562
+ kernel_is lt 3 10 && CONFIG_CHECK+=" ~USB_SUSPEND" #331065, #477278
+ linux-info_pkg_setup
+ fi
+}
+
+src_prepare() {
+ xdg_environment_reset
+ default
+
+ if ! use systemd ; then
+ sed -i -e 's:libsystemd-login:&disable:' configure || die
+ fi
+
+ # Added for bug # 782061
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --enable-btrfs
+ --disable-gtk-doc
+ --disable-static
+ --localstatedir="${EPREFIX}"/var
+ --with-html-dir="${EPREFIX}"/usr/share/gtk-doc/html
+ --with-modprobedir="${EPREFIX}"/lib/modprobe.d
+ --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+ --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d
+ --with-udevdir="${EPREFIX}$(get_udevdir)"
+ $(use_enable acl)
+ $(use_enable daemon)
+ $(use_enable debug)
+ $(use_enable introspection)
+ $(use_enable lvm lvm2)
+ $(use_enable nls)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -type f -name "*.la" -delete || die
+ keepdir /var/lib/udisks2 #383091
+
+ rm -rf "${ED}"/usr/share/bash-completion
+ dobashcomp data/completions/udisksctl
+}
+
+pkg_preinst() {
+ # Remove gtk-doc symlink, #597628
+ if [[ -L "${EROOT}"/usr/share/gtk-doc/html/udisks2 ]]; then
+ rm "${EROOT}"/usr/share/gtk-doc/html/udisks2 || die
+ fi
+}
+
+pkg_postinst() {
+ udev_reload
+
+ # TODO: obsolete with tmpfiles_process?
+ # mkdir -p "${EROOT}"/run #415987
+
+ tmpfiles_process udisks2.conf
+
+ # See pkg_postinst() of >=sys-apps/baselayout-2.1-r1. Keep in sync?
+ if ! grep -qs "^tmpfs.*/run " "${EROOT}"/proc/mounts ; then
+ echo
+ ewarn "You should reboot the system now to get /run mounted with tmpfs!"
+ fi
+}
+
+pkg_postrm() {
+ udev_reload
+}
next reply other threads:[~2023-07-18 7:34 UTC|newest]
Thread overview: 165+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-18 7:34 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-07-12 5:17 [gentoo-commits] repo/gentoo:master commit in: sys-fs/udisks/ Sam James
2025-07-04 18:12 Arthur Zamarin
2025-06-30 18:08 Andreas Sturmlechner
2025-06-22 13:10 Sam James
2025-06-21 2:38 Sam James
2025-06-21 2:38 Sam James
2025-06-20 13:24 Arthur Zamarin
2025-06-20 13:24 Arthur Zamarin
2025-04-24 8:16 Sam James
2025-03-10 17:11 Andreas Sturmlechner
2024-11-17 21:03 Michał Górny
2024-11-17 15:48 Michał Górny
2024-11-17 14:05 Sam James
2024-11-17 14:05 Sam James
2024-11-17 13:59 Sam James
2024-09-15 12:25 Pacho Ramos
2024-04-24 14:43 Marek Szuba
2024-04-20 13:20 Sam James
2024-04-20 13:20 Sam James
2024-04-20 13:20 Sam James
2024-04-20 13:20 Sam James
2024-04-20 13:20 Sam James
2023-12-10 1:38 Ionen Wolkens
2023-12-09 7:54 Arthur Zamarin
2023-09-10 8:59 Pacho Ramos
2023-07-20 19:49 Pacho Ramos
2023-07-09 2:52 Sam James
2023-07-09 2:20 Sam James
2023-03-25 3:37 Mike Gilbert
2022-09-01 1:00 Sam James
2022-08-19 3:38 Sam James
2022-07-20 13:59 Pacho Ramos
2022-05-26 4:45 WANG Xuerui
2022-05-20 18:27 Pacho Ramos
2022-05-20 18:27 Pacho Ramos
2022-05-11 2:11 Sam James
2021-12-06 15:23 Sam James
2021-12-06 15:20 Sam James
2021-12-06 8:05 Agostino Sarubbo
2021-12-06 8:03 Agostino Sarubbo
2021-12-06 7:13 Agostino Sarubbo
2021-12-06 7:13 Agostino Sarubbo
2021-12-05 18:29 Sam James
2021-09-29 20:49 Lars Wendler
2021-09-29 20:49 Lars Wendler
2021-09-09 7:39 Agostino Sarubbo
2021-09-09 7:17 Agostino Sarubbo
2021-09-08 16:19 Sam James
2021-09-08 0:46 Sam James
2021-09-08 0:46 Sam James
2021-09-08 0:42 Sam James
2021-09-07 17:00 Sam James
2021-09-04 23:53 Mike Frysinger
2021-08-04 18:18 Lars Wendler
2021-07-31 22:17 Sam James
2021-05-27 14:34 Yixun Lan
2021-05-14 17:57 David Seifert
2021-02-04 16:11 Lars Wendler
2021-02-04 16:11 Lars Wendler
2021-01-08 0:53 Sam James
2021-01-03 19:40 Sam James
2021-01-03 19:40 Sam James
2021-01-03 11:51 Sergei Trofimovich
2021-01-03 9:15 Sam James
2021-01-03 1:18 Sam James
2020-08-12 16:54 Lars Wendler
2020-08-12 16:54 Lars Wendler
2020-08-04 23:51 Sam James
2020-08-04 15:11 Sam James
2020-08-01 9:01 Sergei Trofimovich
2020-08-01 8:53 Sergei Trofimovich
2020-07-31 17:53 Sergei Trofimovich
2020-07-31 11:22 Lars Wendler
2020-06-15 12:08 Lars Wendler
2020-02-15 10:03 David Seifert
2020-02-08 16:25 David Seifert
2020-01-26 20:42 Andreas Sturmlechner
2019-12-21 10:28 Sergei Trofimovich
2019-12-10 19:47 Sergei Trofimovich
2019-12-01 14:01 Sergei Trofimovich
2019-12-01 13:56 Sergei Trofimovich
2019-11-26 0:58 Thomas Deutschmann
2019-11-24 3:37 Aaron Bauman
2019-11-22 9:42 Mikle Kolyada
2019-11-20 11:16 Agostino Sarubbo
2019-07-28 21:21 Andreas Sturmlechner
2019-07-28 13:57 Mikle Kolyada
2019-07-28 13:57 Mikle Kolyada
2019-07-28 13:57 Mikle Kolyada
2019-07-23 7:55 Lars Wendler
2019-07-22 18:35 Aaron Bauman
2019-06-20 9:04 Mikle Kolyada
2019-06-17 9:27 Lars Wendler
2019-06-10 19:50 Thomas Deutschmann
2019-06-09 19:25 Sergei Trofimovich
2019-06-06 21:31 Sergei Trofimovich
2019-06-06 21:00 Sergei Trofimovich
2019-05-22 21:20 Aaron Bauman
2019-04-18 14:20 Thomas Deutschmann
2019-04-09 11:46 Mart Raudsepp
2019-03-08 15:15 Lars Wendler
2019-03-08 15:15 Lars Wendler
2019-02-16 10:21 Markus Meier
2019-02-09 18:36 Thomas Deutschmann
2019-02-06 11:57 Mikle Kolyada
2019-02-02 20:44 Sergei Trofimovich
2019-02-02 12:53 Sergei Trofimovich
2019-02-01 20:00 Tobias Klausmann
2018-09-27 8:41 Lars Wendler
2018-09-23 14:18 Pacho Ramos
2018-08-14 13:03 Lars Wendler
2018-08-14 13:03 Lars Wendler
2018-07-09 16:21 Lars Wendler
2018-07-09 16:21 Lars Wendler
2018-04-02 13:33 Mart Raudsepp
2018-03-27 23:47 Matt Turner
2018-02-21 15:12 Lars Wendler
2018-02-12 10:07 Lars Wendler
2018-01-27 18:00 Mike Gilbert
2018-01-24 17:54 Mike Gilbert
2018-01-22 18:20 Mikle Kolyada
2018-01-22 16:00 Mikle Kolyada
2018-01-21 6:28 Zac Medico
2018-01-19 18:49 Mikle Kolyada
2018-01-18 19:03 Markus Meier
2018-01-18 18:05 Mikle Kolyada
2018-01-17 18:08 Markus Meier
2017-12-28 11:58 Sergei Trofimovich
2017-12-24 12:05 Markus Meier
2017-12-21 22:34 Sergei Trofimovich
2017-12-21 21:16 Patrice Clement
2017-12-21 5:45 Markus Meier
2017-12-19 23:16 Sergei Trofimovich
2017-12-19 19:32 Mart Raudsepp
2017-12-19 17:29 Mart Raudsepp
2017-12-13 13:34 Lars Wendler
2017-12-09 2:39 Anthony G. Basile
2017-12-05 17:52 Lars Wendler
2017-12-05 17:52 Lars Wendler
2017-11-07 9:30 Lars Wendler
2017-11-07 9:30 Lars Wendler
2017-09-05 22:03 Lars Wendler
2017-09-01 20:54 Lars Wendler
2017-08-10 6:03 Lars Wendler
2017-08-10 6:03 Lars Wendler
2017-08-07 8:00 Lars Wendler
2017-07-06 9:49 Lars Wendler
2017-05-27 10:02 Andreas Sturmlechner
2017-05-19 11:34 Lars Wendler
2017-05-04 10:05 Lars Wendler
2017-05-04 7:39 Lars Wendler
2017-02-18 19:00 Markus Meier
2017-01-16 19:56 Tobias Klausmann
2017-01-12 11:13 Aaron Bauman
2016-11-26 21:50 Lars Wendler
2016-11-26 21:50 Lars Wendler
2016-11-12 12:23 Gilles Dartiguelongue
2016-10-23 0:45 Mike Gilbert
2016-05-30 17:08 Tobias Klausmann
2016-04-06 19:59 Markus Meier
2016-04-06 12:26 Agostino Sarubbo
2016-03-20 23:10 Stephen Klimaszewski
2016-03-05 10:40 Manuel Rüger
2015-12-16 8:28 Gilles Dartiguelongue
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=1689665660.02f474e2173d278f44a8289540e1bb3b7107068f.pacho@gentoo \
--to=pacho@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