From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EEE631382C5 for ; Fri, 24 Jun 2016 13:45:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DF8A14120; Fri, 24 Jun 2016 13:45:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 300B314120 for ; Fri, 24 Jun 2016 13:45:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 984B534087E for ; Fri, 24 Jun 2016 13:44:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA1AB209C for ; Fri, 24 Jun 2016 13:44:55 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1466776046.5ad71de752224d90f6368bd20d030075a55f9fd6.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/eudev/eudev-4.9999.ebuild sys-fs/eudev/metadata.xml X-VCS-Directories: sys-fs/eudev/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5ad71de752224d90f6368bd20d030075a55f9fd6 X-VCS-Branch: master Date: Fri, 24 Jun 2016 13:44:55 +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-Archives-Salt: ff268e3f-7d23-4745-8259-ac2269c5ea3e X-Archives-Hash: 63556320e58a23954c3e513f96b964d7 commit: 5ad71de752224d90f6368bd20d030075a55f9fd6 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Jun 24 13:47:26 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Jun 24 13:47:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad71de7 sys-fs/eudev: add live ebuild for testing eudev-4 branch Package-Manager: portage-2.2.28 sys-fs/eudev/eudev-4.9999.ebuild | 226 +++++++++++++++++++++++++++++++++++++++ sys-fs/eudev/metadata.xml | 3 + 2 files changed, 229 insertions(+) diff --git a/sys-fs/eudev/eudev-4.9999.ebuild b/sys-fs/eudev/eudev-4.9999.ebuild new file mode 100644 index 0000000..fc9ab64 --- /dev/null +++ b/sys-fs/eudev/eudev-4.9999.ebuild @@ -0,0 +1,226 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +KV_min=2.6.39 + +inherit autotools eutils linux-info multilib multilib-minimal user + +if [[ ${PV} = 4.9999* ]]; then + EGIT_REPO_URI="git://github.com/gentoo/eudev.git" + EGIT_BRANCH="eudev-4" + inherit git-r3 +else + SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz" + #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" + KEYWORDS="" +fi + +DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace devfs)" +HOMEPAGE="https://github.com/gentoo/eudev" + +LICENSE="LGPL-2.1 GPL-2" +SLOT="0" +IUSE="+blkid efi +hwdb +kmod selinux smack test" + +COMMON_DEPEND=">=sys-apps/util-linux-2.20 + kmod? ( >=sys-apps/kmod-16 ) + selinux? ( >=sys-libs/libselinux-2.1.9 ) + !/dev/null + if [[ -d ${EROOT}dev/loop ]]; then + ewarn "Please make sure your remove /dev/loop," + ewarn "else losetup may be confused when looking for unused devices." + fi + + if use hwdb && has_version 'sys-apps/hwids[udev]'; then + udevadm hwdb --update --root="${ROOT%/}" + + # https://cgit.freedesktop.org/systemd/systemd/commit/?id=1fab57c209035f7e66198343074e9cee06718bda + # reload database after it has be rebuilt, but only if we are not upgrading + # also pass if we are -9999 since who knows what hwdb related changes there might be + if [[ ${REPLACING_VERSIONS%-r*} == ${PV} || -z ${REPLACING_VERSIONS} ]] && \ + [[ ${ROOT%/} == "" ]] && [[ ${PV} != "9999" ]]; then + udevadm control --reload + fi + fi + + ewarn + ewarn "You need to restart eudev as soon as possible to make the" + ewarn "upgrade go into effect:" + ewarn "\t/etc/init.d/udev --nodeps restart" + + elog + elog "For more information on eudev on Gentoo, writing udev rules, and" + elog "fixing known issues visit:" + elog " https://www.gentoo.org/doc/en/udev-guide.xml" + elog + + # https://cgit.freedesktop.org/systemd/systemd/commit/rules/50-udev-default.rules?id=3dff3e00e044e2d53c76fa842b9a4759d4a50e69 + # https://bugs.gentoo.org/246847 + # https://bugs.gentoo.org/514174 + enewgroup input + + # Update hwdb database in case the format is changed by udev version. + if has_version 'sys-apps/hwids[udev]'; then + udevadm hwdb --update --root="${ROOT%/}" + # Only reload when we are not upgrading to avoid potential race w/ incompatible hwdb.bin and the running udevd + if [[ -z ${REPLACING_VERSIONS} ]]; then + # https://cgit.freedesktop.org/systemd/systemd/commit/?id=1fab57c209035f7e66198343074e9cee06718bda + if [[ ${ROOT} != "" ]] && [[ ${ROOT} != "/" ]]; then + return 0 + fi + udevadm control --reload + fi + fi +} diff --git a/sys-fs/eudev/metadata.xml b/sys-fs/eudev/metadata.xml index 8bd5d67..334d6ee 100644 --- a/sys-fs/eudev/metadata.xml +++ b/sys-fs/eudev/metadata.xml @@ -5,12 +5,15 @@ eudev@gentoo.org + enable blkid support + enable EFI support enable libudev gobject interface read vendor/device string database and add it to udev database map custom hardware's multimedia keys enable module loading through libkmod enable module loading support - use modutils calls if kmod not enabled install the OpenRC init scripts + enable SMACK security model install legacy rule generator rules and support scripts - note that the functionality within was dropped from sys-fs/udev as it is not stable in all cases; use at your own risk