diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2009-01-25 19:55:53 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2009-01-25 19:55:53 +0000 |
commit | 04f3e14ef086f187d16988a2a52b5e47c990f272 (patch) | |
tree | 0b916f0257fd944be398793886cf9f15cc78d570 /sys-fs/udev | |
parent | Real fix this time for bug #254795; thanks Javier (diff) | |
download | gentoo-2-04f3e14ef086f187d16988a2a52b5e47c990f272.tar.gz gentoo-2-04f3e14ef086f187d16988a2a52b5e47c990f272.tar.bz2 gentoo-2-04f3e14ef086f187d16988a2a52b5e47c990f272.zip |
Fix kernel version with which udev runs reliable. Also apply documentation udevinfo to udevadm info patch.
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'sys-fs/udev')
-rw-r--r-- | sys-fs/udev/ChangeLog | 6 | ||||
-rw-r--r-- | sys-fs/udev/udev-137.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-fs/udev/ChangeLog b/sys-fs/udev/ChangeLog index 916e55597adf..c4cfd6e40225 100644 --- a/sys-fs/udev/ChangeLog +++ b/sys-fs/udev/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/udev # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.443 2009/01/24 22:21:50 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.444 2009/01/25 19:55:53 zzam Exp $ + + 25 Jan 2009; Matthias Schwarzott <zzam@gentoo.org> udev-137.ebuild: + Fix kernel version with which udev runs reliable. Also apply documentation + udevinfo to udevadm info patch. 24 Jan 2009; Matthias Schwarzott <zzam@gentoo.org> +files/udev-137-rules-update.diff, udev-137.ebuild: diff --git a/sys-fs/udev/udev-137.ebuild b/sys-fs/udev/udev-137.ebuild index c6072245039b..c9aebf145821 100644 --- a/sys-fs/udev/udev-137.ebuild +++ b/sys-fs/udev/udev-137.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-137.ebuild,v 1.2 2009/01/24 22:21:51 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-137.ebuild,v 1.3 2009/01/25 19:55:53 zzam Exp $ inherit eutils flag-o-matic multilib toolchain-funcs versionator @@ -38,7 +38,7 @@ pkg_setup() { local KV_MINOR=$(get_version_component_range 2 ${KV}) local KV_MICRO=$(get_version_component_range 3 ${KV}) - local KV_min_micro=15 KV_min_micro_reliable=20 + local KV_min_micro=15 KV_min_micro_reliable=22 KV_min=2.6.${KV_min_micro} KV_min_reliable=2.6.${KV_min_micro_reliable} @@ -80,6 +80,7 @@ src_unpack() { # patches go here... epatch "${FILESDIR}/${P}-rules-update.diff" + epatch "${FILESDIR}/${PN}-fix-udevinfo-in-doc.diff" # change rules back to group uucp instead of dialout for now sed -e 's/GROUP="dialout"/GROUP="uucp"/' \ |