* [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/
@ 2018-04-20 20:01 David Seifert
0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2018-04-20 20:01 UTC (permalink / raw
To: gentoo-commits
commit: 15c1627d6beed77de7213991cfc047a2a73b9468
Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Apr 20 09:27:50 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Apr 20 20:01:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c1627d
sys-apps/udevil: epatch->PATCHES=()
Also dropped unneeded eutils, in favor of epatch in the -r1 ebuild and
nothing in the -r2 -r3 ebuilds.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
sys-apps/udevil/files/udevil-0.4.3-flags.patch | 4 ++--
sys-apps/udevil/files/udevil-0.4.4-stat.patch | 4 ++--
sys-apps/udevil/udevil-0.4.4-r1.ebuild | 6 +++---
sys-apps/udevil/udevil-0.4.4-r2.ebuild | 17 ++++++++++-------
sys-apps/udevil/udevil-0.4.4-r3.ebuild | 17 ++++++++++-------
5 files changed, 27 insertions(+), 21 deletions(-)
diff --git a/sys-apps/udevil/files/udevil-0.4.3-flags.patch b/sys-apps/udevil/files/udevil-0.4.3-flags.patch
index 166a4357e9f..524cdfff990 100644
--- a/sys-apps/udevil/files/udevil-0.4.3-flags.patch
+++ b/sys-apps/udevil/files/udevil-0.4.3-flags.patch
@@ -4,8 +4,8 @@ Subject: build system
respect flags where possible
---- configure.ac
-+++ configure.ac
+--- a/configure.ac
++++ b/configure.ac
@@ -18,26 +18,6 @@
diff --git a/sys-apps/udevil/files/udevil-0.4.4-stat.patch b/sys-apps/udevil/files/udevil-0.4.4-stat.patch
index 22e41d46782..427a6f1f670 100644
--- a/sys-apps/udevil/files/udevil-0.4.4-stat.patch
+++ b/sys-apps/udevil/files/udevil-0.4.4-stat.patch
@@ -1,6 +1,6 @@
Fixes bug #552072. Thanks Helmut Jarausch.
---- src/device-info.h
-+++ src/device-info.h
+--- a/src/device-info.h
++++ b/src/device-info.h
@@ -14,6 +14,7 @@
#include <libudev.h>
#include <fcntl.h>
diff --git a/sys-apps/udevil/udevil-0.4.4-r1.ebuild b/sys-apps/udevil/udevil-0.4.4-r1.ebuild
index 9f3cd58b0b1..73596bdd436 100644
--- a/sys-apps/udevil/udevil-0.4.4-r1.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-inherit eutils autotools user
+inherit autotools epatch user
DESCRIPTION="mount and unmount removable devices without a password"
HOMEPAGE="https://ignorantguru.github.com/udevil/"
@@ -31,7 +31,7 @@ pkg_setup(){
src_prepare() {
# This works for 0.4.4 too, no sense copying the patch
epatch "${FILESDIR}"/${PN}-0.4.3-flags.patch
- epatch "${FILESDIR}"/${P}-stat.patch
+ epatch "${FILESDIR}"/${PN}-0.4.4-stat.patch
eautoreconf
}
diff --git a/sys-apps/udevil/udevil-0.4.4-r2.ebuild b/sys-apps/udevil/udevil-0.4.4-r2.ebuild
index c93bc7b9dcc..a75cf290506 100644
--- a/sys-apps/udevil/udevil-0.4.4-r2.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils autotools user
+inherit autotools user
DESCRIPTION="mount and unmount removable devices without a password"
HOMEPAGE="https://ignorantguru.github.com/udevil/"
@@ -28,12 +28,15 @@ pkg_setup(){
enewgroup plugdev
}
-src_prepare() {
+PATCHES=(
# This works for 0.4.4 too, no sense copying the patch
- epatch "${FILESDIR}"/${PN}-0.4.3-flags.patch
- epatch "${FILESDIR}"/${P}-stat.patch
- epatch "${FILESDIR}"/${P}-include-sysmacros.patch
- eapply_user
+ "${FILESDIR}"/${PN}-0.4.3-flags.patch
+ "${FILESDIR}"/${PN}-0.4.4-stat.patch
+ "${FILESDIR}"/${PN}-0.4.4-include-sysmacros.patch
+)
+
+src_prepare() {
+ default
eautoreconf
}
diff --git a/sys-apps/udevil/udevil-0.4.4-r3.ebuild b/sys-apps/udevil/udevil-0.4.4-r3.ebuild
index fc14c467724..0dede83db0e 100644
--- a/sys-apps/udevil/udevil-0.4.4-r3.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils autotools user
+inherit autotools user
DESCRIPTION="mount and unmount removable devices without a password"
HOMEPAGE="https://ignorantguru.github.com/udevil/"
@@ -28,12 +28,15 @@ pkg_setup(){
enewgroup plugdev
}
-src_prepare() {
+PATCHES=(
# This works for 0.4.4 too, no sense copying the patch
- epatch "${FILESDIR}"/${PN}-0.4.3-flags.patch
- epatch "${FILESDIR}"/${P}-stat.patch
- epatch "${FILESDIR}"/${P}-include-sysmacros-r1.patch
- eapply_user
+ "${FILESDIR}"/${PN}-0.4.3-flags.patch
+ "${FILESDIR}"/${PN}-0.4.4-stat.patch
+ "${FILESDIR}"/${PN}-0.4.4-include-sysmacros.patch
+)
+
+src_prepare() {
+ default
eautoreconf
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/
@ 2021-01-15 20:51 Ben Kohler
0 siblings, 0 replies; 5+ messages in thread
From: Ben Kohler @ 2021-01-15 20:51 UTC (permalink / raw
To: gentoo-commits
commit: 3b4b017b8db2de84936f692b809e79ae0b109fc3
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 15 20:51:25 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 15 20:51:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b4b017b
sys-apps/udevil: drop libtool
Thanks to Ørjan Malde (red <AT> foxi.me) for patch
Closes: https://github.com/gentoo/gentoo/pull/19062
Closes: https://bugs.gentoo.org/765568
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
.../udevil/files/udevil-0.4.4-no-libtool.patch | 10 +++
sys-apps/udevil/udevil-0.4.4-r4.ebuild | 76 ++++++++++++++++++++++
2 files changed, 86 insertions(+)
diff --git a/sys-apps/udevil/files/udevil-0.4.4-no-libtool.patch b/sys-apps/udevil/files/udevil-0.4.4-no-libtool.patch
new file mode 100644
index 00000000000..ba01e94f15f
--- /dev/null
+++ b/sys-apps/udevil/files/udevil-0.4.4-no-libtool.patch
@@ -0,0 +1,10 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -11,7 +11,6 @@ AM_MAINTAINER_MODE
+ AC_ISC_POSIX
+ AM_PROG_CC_C_O
+ AC_HEADER_STDC
+-AM_PROG_LIBTOOL
+ AC_PROG_INSTALL
+
+ AC_DEFINE_UNQUOTED(UDEVIL_VERSION, "$VERSION", [udevil version])
diff --git a/sys-apps/udevil/udevil-0.4.4-r4.ebuild b/sys-apps/udevil/udevil-0.4.4-r4.ebuild
new file mode 100644
index 00000000000..c65d66c45e0
--- /dev/null
+++ b/sys-apps/udevil/udevil-0.4.4-r4.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="mount and unmount removable devices without a password"
+HOMEPAGE="https://ignorantguru.github.com/udevil/"
+SRC_URI="https://github.com/IgnorantGuru/udevil/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+ acct-group/plugdev
+ >=app-shells/bash-4.0:*
+ dev-libs/glib:2
+ sys-apps/util-linux
+ virtual/acl
+ >=virtual/udev-143"
+DEPEND="${RDEPEND}
+ dev-util/intltool
+ sys-devel/gettext
+ virtual/pkgconfig"
+
+PATCHES=(
+ # This works for 0.4.4 too, no sense copying the patch
+ "${FILESDIR}"/${PN}-0.4.3-flags.patch
+ "${FILESDIR}"/${PN}-0.4.4-stat.patch
+ "${FILESDIR}"/${PN}-0.4.4-include-sysmacros.patch
+ "${FILESDIR}"/${PN}-0.4.4-no-libtool.patch
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --with-setfacl-prog="$(type -P setfacl)" \
+ --enable-systemd
+}
+
+src_install() {
+ default
+ fowners root:plugdev /usr/bin/udevil
+ fperms 4754 /usr/bin/udevil
+}
+
+pkg_postinst() {
+ einfo
+ elog "Please add your user to the plugdev group"
+ elog "to be able to use ${PN} as a user"
+ elog
+ elog "Optional dependencies:"
+ elog " gnome-extra/zenity (devmon popups)"
+ elog " net-fs/davfs2 (mount WebDAV resources)"
+ elog " net-fs/cifs-utils (mounting samba shares)"
+ elog " net-fs/curlftpfs (mounting ftp shares)"
+ elog " net-fs/nfs-utils (mounting nfs shares)"
+ elog " net-fs/sshfs (mounting sftp shares)"
+ elog " virtual/eject (eject via devmon)"
+ if ! has_version 'sys-fs/udisks' ; then
+ elog
+ elog "When using ${PN} without udisks, and without the udisks-daemon running,"
+ elog "you may need to enable kernel polling for device media changes to be detected."
+ elog "See https://ignorantguru.github.com/${PN}/#polling"
+ has_version '<virtual/udev-173' && ewarn "You need at least udev-173"
+ kernel_is lt 2 6 38 && ewarn "You need at least kernel 2.6.38"
+ einfo
+ fi
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/
@ 2025-06-12 12:25 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2025-06-12 12:25 UTC (permalink / raw
To: gentoo-commits
commit: b9e139ebe68cde32d1c4e5d099d2345f88b0dba5
Author: Hoël Bézier <hoelbezier <AT> riseup <DOT> net>
AuthorDate: Sat May 17 20:29:44 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 12 12:22:02 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e139eb
sys-apps/udevil: do not install /etc/conf.d/devmon, bug #832907
Do not install the /etc/conf.d/devmon configuration file. It was only
used to set arguments to the devmon@.service systemd unit and defaulted
to no arguments.
Closes: https://bugs.gentoo.org/832907
Signed-off-by: Hoël Bézier <hoelbezier <AT> riseup.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/udevil/files/udevil-0.4.4-no-conf.d.patch | 63 ++++++++++++++++++++++
sys-apps/udevil/udevil-0.4.4-r5.ebuild | 3 +-
2 files changed, 65 insertions(+), 1 deletion(-)
diff --git a/sys-apps/udevil/files/udevil-0.4.4-no-conf.d.patch b/sys-apps/udevil/files/udevil-0.4.4-no-conf.d.patch
new file mode 100644
index 000000000000..0c99b662c4d4
--- /dev/null
+++ b/sys-apps/udevil/files/udevil-0.4.4-no-conf.d.patch
@@ -0,0 +1,63 @@
+diff --git a/etc/Makefile.am b/etc/Makefile.am
+index 9b6e752..a33ce8e 100644
+--- a/etc/Makefile.am
++++ b/etc/Makefile.am
+@@ -1,5 +1,5 @@
+ if ADD_SYSTEMD
+-EXTRA_DIST = udevil.conf devmon devmon@.service
++EXTRA_DIST = udevil.conf devmon@.service
+ else
+ EXTRA_DIST = udevil.conf
+ endif
+@@ -11,11 +11,6 @@ install-data-hook:
+ $(srcdir)/udevil.conf \
+ $(DESTDIR)/$(sysconfdir)/udevil/udevil.conf
+ if ADD_SYSTEMD
+- test -d $(DESTDIR)/$(sysconfdir)/conf.d || mkdir -p -- \
+- $(DESTDIR)/$(sysconfdir)/conf.d
+- test -f $(DESTDIR)/$(sysconfdir)/conf.d/devmon || $(INSTALL_DATA) \
+- $(srcdir)/systemd/devmon \
+- $(DESTDIR)/$(sysconfdir)/conf.d/devmon
+ test -d $(DESTDIR)/$(libdir)/systemd/system || \
+ mkdir -p -- $(DESTDIR)/$(libdir)/systemd/system
+ $(INSTALL_DATA) $(srcdir)/systemd/devmon@.service \
+diff --git a/etc/Makefile.in b/etc/Makefile.in
+index bf2b19b..4489e30 100644
+--- a/etc/Makefile.in
++++ b/etc/Makefile.in
+@@ -262,7 +262,7 @@ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ @ADD_SYSTEMD_FALSE@EXTRA_DIST = udevil.conf
+-@ADD_SYSTEMD_TRUE@EXTRA_DIST = udevil.conf devmon devmon@.service
++@ADD_SYSTEMD_TRUE@EXTRA_DIST = udevil.conf devmon@.service
+ all: all-am
+
+ .SUFFIXES:
+@@ -462,11 +462,6 @@ install-data-hook:
+ test -f $(DESTDIR)/$(sysconfdir)/udevil/udevil.conf || $(INSTALL_DATA) \
+ $(srcdir)/udevil.conf \
+ $(DESTDIR)/$(sysconfdir)/udevil/udevil.conf
+-@ADD_SYSTEMD_TRUE@ test -d $(DESTDIR)/$(sysconfdir)/conf.d || mkdir -p -- \
+-@ADD_SYSTEMD_TRUE@ $(DESTDIR)/$(sysconfdir)/conf.d
+-@ADD_SYSTEMD_TRUE@ test -f $(DESTDIR)/$(sysconfdir)/conf.d/devmon || $(INSTALL_DATA) \
+-@ADD_SYSTEMD_TRUE@ $(srcdir)/systemd/devmon \
+-@ADD_SYSTEMD_TRUE@ $(DESTDIR)/$(sysconfdir)/conf.d/devmon
+ @ADD_SYSTEMD_TRUE@ test -d $(DESTDIR)/$(libdir)/systemd/system || \
+ @ADD_SYSTEMD_TRUE@ mkdir -p -- $(DESTDIR)/$(libdir)/systemd/system
+ @ADD_SYSTEMD_TRUE@ $(INSTALL_DATA) $(srcdir)/systemd/devmon@.service \
+diff --git a/etc/systemd/devmon@.service b/etc/systemd/devmon@.service
+index 23ccf87..1d707ce 100644
+--- a/etc/systemd/devmon@.service
++++ b/etc/systemd/devmon@.service
+@@ -6,8 +6,7 @@ Type=simple
+ User=%i
+ # Set DISPLAY for popup dialogs
+ Environment=DISPLAY=:0
+-EnvironmentFile=/etc/conf.d/devmon
+-ExecStart=/usr/bin/devmon $ARGS
++ExecStart=/usr/bin/devmon
+
+ [Install]
+ WantedBy=multi-user.target
+
diff --git a/sys-apps/udevil/udevil-0.4.4-r5.ebuild b/sys-apps/udevil/udevil-0.4.4-r5.ebuild
index 165c04be6453..49f609e4e6d2 100644
--- a/sys-apps/udevil/udevil-0.4.4-r5.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -31,6 +31,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-0.4.4-stat.patch
"${FILESDIR}"/${PN}-0.4.4-include-sysmacros.patch
"${FILESDIR}"/${PN}-0.4.4-no-libtool.patch
+ "${FILESDIR}"/${PN}-0.4.4-no-conf.d.patch
)
src_prepare() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/
@ 2025-06-12 12:25 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2025-06-12 12:25 UTC (permalink / raw
To: gentoo-commits
commit: 83d563de55a465698415667f1f393679d72926b1
Author: Hoël Bézier <hoelbezier <AT> riseup <DOT> net>
AuthorDate: Sat May 17 20:29:46 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 12 12:22:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d563de
sys-apps/udevil: remove invalid exfat mount options
The default /etc/udevil/udevil.conf file provided by upstream is quite
old and references exfat mount options used by the fuse driver. This
fuse driver has since been replaced by a kernel driver which do not
exactly accept the same options.
* nonempty has been removed from the kernel driver
* namecase is marked as deprecated
They are removed from the configuration file, for both allowed and
default mount options.
Signed-off-by: Hoël Bézier <hoelbezier <AT> riseup.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../files/udevil-0.4.4-remove-exfat-options.patch | 23 ++++++++++++++++++++++
sys-apps/udevil/udevil-0.4.4-r5.ebuild | 1 +
2 files changed, 24 insertions(+)
diff --git a/sys-apps/udevil/files/udevil-0.4.4-remove-exfat-options.patch b/sys-apps/udevil/files/udevil-0.4.4-remove-exfat-options.patch
new file mode 100644
index 000000000000..6c53b84b01e8
--- /dev/null
+++ b/sys-apps/udevil/files/udevil-0.4.4-remove-exfat-options.patch
@@ -0,0 +1,23 @@
+diff --git a/etc/udevil.conf b/etc/udevil.conf
+index 75a4c0d..f0dd102 100644
+--- a/etc/udevil.conf
++++ b/etc/udevil.conf
+@@ -221,7 +221,7 @@ default_options_file = nosuid, noexec, nodev, noatime, uid=$UID, gid=$GID,
+ default_options_iso9660 = nosuid, noexec, nodev, noatime, uid=$UID, gid=$GID, ro, utf8
+ default_options_udf = nosuid, noexec, nodev, noatime, uid=$UID, gid=$GID
+ default_options_vfat = nosuid, noexec, nodev, noatime, fmask=0133, dmask=0022, uid=$UID, gid=$GID, utf8
+-default_options_exfat = nosuid, noexec, nodev, noatime, umask=0077, uid=$UID, gid=$GID, iocharset=utf8, namecase=0, nonempty
++default_options_exfat = nosuid, noexec, nodev, noatime, umask=0077, uid=$UID, gid=$GID, iocharset=utf8
+ default_options_msdos = nosuid, noexec, nodev, noatime, fmask=0133, dmask=0022, uid=$UID, gid=$GID
+ default_options_umsdos = nosuid, noexec, nodev, noatime, fmask=0133, dmask=0022, uid=$UID, gid=$GID
+ default_options_ntfs = nosuid, noexec, nodev, noatime, fmask=0133, uid=$UID, gid=$GID, utf8
+@@ -252,7 +252,7 @@ allowed_options_smbfs = nosuid, noexec, nodev, ro, rw, remount, port=*, user
+ allowed_options_sshfs = nosuid, noexec, nodev, noatime, ro, rw, uid=$UID, gid=$GID, nonempty, allow_other, idmap=user, BatchMode=yes, port=*
+ allowed_options_curlftpfs = nosuid, noexec, nodev, noatime, ro, rw, uid=$UID, gid=$GID, nonempty, allow_other, user=*
+ allowed_options_ftpfs = nosuid, noexec, nodev, noatime, ro, rw, port=*, user=*, pass=*, root=*, uid=$UID, gid=$GID
+-allowed_options_exfat = nosuid, noexec, nodev, noatime, fmask=0133, dmask=0022, uid=$UID, gid=$GID, umask=0077, namecase=*, ro, rw, sync, flush, iocharset=*, remount, nonempty
++allowed_options_exfat = nosuid, noexec, nodev, noatime, fmask=0133, dmask=0022, uid=$UID, gid=$GID, umask=0077, ro, rw, sync, flush, iocharset=*, remount
+
+
+ # mount_point_mode, if present and set to a non-empty value, will cause udevil
+
diff --git a/sys-apps/udevil/udevil-0.4.4-r5.ebuild b/sys-apps/udevil/udevil-0.4.4-r5.ebuild
index cf36585e097f..cf5250bfad0f 100644
--- a/sys-apps/udevil/udevil-0.4.4-r5.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r5.ebuild
@@ -33,6 +33,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-0.4.4-no-libtool.patch
"${FILESDIR}"/${PN}-0.4.4-no-conf.d.patch
"${FILESDIR}"/${PN}-0.4.4-include-sysstat.patch
+ "${FILESDIR}"/${PN}-0.4.4-remove-exfat-options.patch
)
src_prepare() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/
@ 2025-09-24 1:29 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2025-09-24 1:29 UTC (permalink / raw
To: gentoo-commits
commit: a4bde19557cba840f7733b802008059730c4d1ba
Author: Hoël Bézier <hoelbezier <AT> riseup <DOT> net>
AuthorDate: Sat Sep 13 12:22:34 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 24 01:26:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4bde195
sys-apps/udevil: Remove unneeded patch
It is totally redundant with udevil-0.4.4-stat.patch.
Signed-off-by: Hoël Bézier <hoelbezier <AT> riseup.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/udevil/files/udevil-0.4.4-include-sysstat.patch | 15 ---------------
sys-apps/udevil/udevil-0.4.4-r6.ebuild | 1 -
2 files changed, 16 deletions(-)
diff --git a/sys-apps/udevil/files/udevil-0.4.4-include-sysstat.patch b/sys-apps/udevil/files/udevil-0.4.4-include-sysstat.patch
deleted file mode 100644
index 517efa254492..000000000000
--- a/sys-apps/udevil/files/udevil-0.4.4-include-sysstat.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-# Fixes #945124
-diff --git a/src/device-info.h b/src/device-info.h
-index 6cb3683..f3e6c8a 100644
---- a/src/device-info.h
-+++ b/src/device-info.h
-@@ -10,6 +10,9 @@
- // glib
- #include <glib.h>
-
-+// POSIX
-+#include <sys/stat.h>
-+
- // udev
- #include <libudev.h>
- #include <fcntl.h>
diff --git a/sys-apps/udevil/udevil-0.4.4-r6.ebuild b/sys-apps/udevil/udevil-0.4.4-r6.ebuild
index cf5250bfad0f..1cf66f6ccac0 100644
--- a/sys-apps/udevil/udevil-0.4.4-r6.ebuild
+++ b/sys-apps/udevil/udevil-0.4.4-r6.ebuild
@@ -32,7 +32,6 @@ PATCHES=(
"${FILESDIR}"/${PN}-0.4.4-include-sysmacros.patch
"${FILESDIR}"/${PN}-0.4.4-no-libtool.patch
"${FILESDIR}"/${PN}-0.4.4-no-conf.d.patch
- "${FILESDIR}"/${PN}-0.4.4-include-sysstat.patch
"${FILESDIR}"/${PN}-0.4.4-remove-exfat-options.patch
)
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-09-24 1:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-24 1:29 [gentoo-commits] repo/gentoo:master commit in: sys-apps/udevil/files/, sys-apps/udevil/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-06-12 12:25 Sam James
2025-06-12 12:25 Sam James
2021-01-15 20:51 Ben Kohler
2018-04-20 20:01 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox