Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 625720 - =sys-apps/systemd-234-r2 and =sys-apps/udev-234: broken s/GROUP="dialout"/GROUP="uucp"/
Summary: =sys-apps/systemd-234-r2 and =sys-apps/udev-234: broken s/GROUP="dialout"/GRO...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo systemd Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-07-20 10:55 UTC by Hans Vercammen
Modified: 2017-08-13 23:36 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Hans Vercammen 2017-07-20 10:55:45 UTC
Some udev rules files have changed to .rules.in templates for configure [1]

sed -i -e 's/GROUP="dialout"/GROUP="uucp"/' rules/*.rules needs to be adjusted to include those.

[1] https://github.com/systemd/systemd/commit/5a664ca10f38dbf66c07961707dafed66382caec
Comment 1 Steve Arnold archtester gentoo-dev 2017-08-13 22:08:56 UTC
Broke my serial terminal access - can we get a quick ebuild fix?
Comment 2 Mike Gilbert gentoo-dev 2017-08-13 23:09:52 UTC
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc7faaaefdb480c904faa827ee2917a3e3472c4e

commit cc7faaaefdb480c904faa827ee2917a3e3472c4e
Author: Mike Gilbert <floppym@gentoo.org>
Date:   Sun Aug 13 19:07:04 2017 -0400

    sys-fs/udev: replace uucp sed with a patch
    
    Bug: https://bugs.gentoo.org/625720
    Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12

 .../udev}/files/234-uucp-group.patch                |  0
 sys-fs/udev/{udev-234.ebuild => udev-234-r1.ebuild} | 19 ++++---------------
 sys-fs/udev/udev-9999.ebuild                        | 21 +++++----------------
 3 files changed, 9 insertions(+), 31 deletions(-)

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1a0a2241cc8e2874ff3d85333136fc491b06ec

commit 3a1a0a2241cc8e2874ff3d85333136fc491b06ec
Author: Mike Gilbert <floppym@gentoo.org>
Date:   Sun Aug 13 19:02:17 2017 -0400

    sys-apps/systemd: replace uucp sed with a patch
    
    Bug: https://bugs.gentoo.org/625720
    Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12

 sys-apps/systemd/files/234-uucp-group.patch | 11 +++++++++++
 sys-apps/systemd/systemd-234-r2.ebuild      |  4 +---
 sys-apps/systemd/systemd-9999.ebuild        |  4 +---
 3 files changed, 13 insertions(+), 6 deletions(-)
Comment 3 Steve Arnold archtester gentoo-dev 2017-08-13 23:36:12 UTC
Heh, I tried a default rules patch that apparently gets overridden anyway; a manual workaround that works is the usual /etc/udev/rules.d override:

# cat /etc/udev/rules.d/50-usb-serial.rules
KERNEL=="ttyUSB[0-9]*",MODE="0660",GROUP="uucp"
KERNEL=="ttyACM[0-9]*",MODE="0660",GROUP="uucp"

Thanks for the quick fix update...