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 4561F13829C for ; Sat, 4 Jun 2016 03:22:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF390E0801; Sat, 4 Jun 2016 03:22:08 +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 E1985E0801 for ; Sat, 4 Jun 2016 03:22:07 +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 BD0143408EA for ; Sat, 4 Jun 2016 03:22:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E921CFE for ; Sat, 4 Jun 2016 03:21:58 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1465010514.1dc1195271f1723ea1708dd29133106a57c11258.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/udev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/udev/udev-225-r1.ebuild sys-fs/udev/udev-225.ebuild sys-fs/udev/udev-230-r1.ebuild sys-fs/udev/udev-230.ebuild sys-fs/udev/udev-9999.ebuild X-VCS-Directories: sys-fs/udev/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 1dc1195271f1723ea1708dd29133106a57c11258 X-VCS-Branch: master Date: Sat, 4 Jun 2016 03:21:58 +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: 40fd2998-84b6-4cb1-943d-d23e34557fdc X-Archives-Hash: 5bb0e6607651cf5b93b6229640faf3f6 commit: 1dc1195271f1723ea1708dd29133106a57c11258 Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 4 03:20:36 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 4 03:21:54 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc11952 sys-fs/udev: eliminate pointless backslashes Overuse of backslash escapes led to a weird directory named ' ' being installed in the root directory. Thanks to Coacher for spotting the weird directory. Bug: https://bugs.gentoo.org/584256 Package-Manager: portage-2.3.0_rc1_p14 sys-fs/udev/{udev-225.ebuild => udev-225-r1.ebuild} | 19 ++++++++----------- sys-fs/udev/{udev-230.ebuild => udev-230-r1.ebuild} | 19 ++++++++----------- sys-fs/udev/udev-9999.ebuild | 19 ++++++++----------- 3 files changed, 24 insertions(+), 33 deletions(-) diff --git a/sys-fs/udev/udev-225.ebuild b/sys-fs/udev/udev-225-r1.ebuild similarity index 96% rename from sys-fs/udev/udev-225.ebuild rename to sys-fs/udev/udev-225-r1.ebuild index 3a1d0ba..18bfd8c 100644 --- a/sys-fs/udev/udev-225.ebuild +++ b/sys-fs/udev/udev-225-r1.ebuild @@ -250,8 +250,8 @@ multilib_src_compile() { multilib_src_install() { if multilib_is_native_abi; then - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" local targets=( install-libLTLIBRARIES @@ -277,18 +277,16 @@ multilib_src_install() { lib_LTLIBRARIES="${lib_LTLIBRARIES}" pkgconfiglib_DATA="${pkgconfiglib_DATA}" pkgconfigdata_DATA="src/udev/udev.pc" - INSTALL_DIRS='$(sysconfdir)/udev/rules.d \ - $(sysconfdir)/udev/hwdb.d \ - $(sysconfdir)/systemd/network' + INSTALL_DIRS='$(sysconfdir)/udev/rules.d $(sysconfdir)/udev/hwdb.d $(sysconfdir)/systemd/network' dist_bashcompletion_DATA="shell-completion/bash/udevadm" dist_network_DATA="network/99-default.link" ) emake -j1 DESTDIR="${D}" "${targets[@]}" doman man/{udev.conf.5,systemd.link.5,udev.7,systemd-udevd.service.8,udevadm.8} else - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" \ - include_HEADERS="src/libudev/libudev.h" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" + local include_HEADERS="src/libudev/libudev.h" local targets=( install-libLTLIBRARIES @@ -309,9 +307,8 @@ multilib_src_install_all() { dodoc TODO prune_libtool_files --all - rm -f \ - "${D}"/lib/udev/rules.d/99-systemd.rules \ - "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} + rm -f "${D}"/lib/udev/rules.d/99-systemd.rules + rm -f "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} # see src_prepare() for content of 40-gentoo.rules insinto /lib/udev/rules.d diff --git a/sys-fs/udev/udev-230.ebuild b/sys-fs/udev/udev-230-r1.ebuild similarity index 96% rename from sys-fs/udev/udev-230.ebuild rename to sys-fs/udev/udev-230-r1.ebuild index 08f87f6..ef0b093 100644 --- a/sys-fs/udev/udev-230.ebuild +++ b/sys-fs/udev/udev-230-r1.ebuild @@ -251,8 +251,8 @@ multilib_src_compile() { multilib_src_install() { if multilib_is_native_abi; then - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" local targets=( install-libLTLIBRARIES @@ -278,18 +278,16 @@ multilib_src_install() { lib_LTLIBRARIES="${lib_LTLIBRARIES}" pkgconfiglib_DATA="${pkgconfiglib_DATA}" pkgconfigdata_DATA="src/udev/udev.pc" - INSTALL_DIRS='$(sysconfdir)/udev/rules.d \ - $(sysconfdir)/udev/hwdb.d \ - $(sysconfdir)/systemd/network' + INSTALL_DIRS='$(sysconfdir)/udev/rules.d $(sysconfdir)/udev/hwdb.d $(sysconfdir)/systemd/network' dist_bashcompletion_DATA="shell-completion/bash/udevadm" dist_network_DATA="network/99-default.link" ) emake -j1 DESTDIR="${D}" "${targets[@]}" doman man/{udev.conf.5,systemd.link.5,udev.7,systemd-udevd.service.8,udevadm.8} else - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" \ - include_HEADERS="src/libudev/libudev.h" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" + local include_HEADERS="src/libudev/libudev.h" local targets=( install-libLTLIBRARIES @@ -310,9 +308,8 @@ multilib_src_install_all() { dodoc TODO prune_libtool_files --all - rm -f \ - "${D}"/lib/udev/rules.d/99-systemd.rules \ - "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} + rm -f "${D}"/lib/udev/rules.d/99-systemd.rules + rm -f "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} # see src_prepare() for content of 40-gentoo.rules insinto /lib/udev/rules.d diff --git a/sys-fs/udev/udev-9999.ebuild b/sys-fs/udev/udev-9999.ebuild index 8779e43..6f25076 100644 --- a/sys-fs/udev/udev-9999.ebuild +++ b/sys-fs/udev/udev-9999.ebuild @@ -251,8 +251,8 @@ multilib_src_compile() { multilib_src_install() { if multilib_is_native_abi; then - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" local targets=( install-libLTLIBRARIES @@ -278,18 +278,16 @@ multilib_src_install() { lib_LTLIBRARIES="${lib_LTLIBRARIES}" pkgconfiglib_DATA="${pkgconfiglib_DATA}" pkgconfigdata_DATA="src/udev/udev.pc" - INSTALL_DIRS='$(sysconfdir)/udev/rules.d \ - $(sysconfdir)/udev/hwdb.d \ - $(sysconfdir)/systemd/network' + INSTALL_DIRS='$(sysconfdir)/udev/rules.d $(sysconfdir)/udev/hwdb.d $(sysconfdir)/systemd/network' dist_bashcompletion_DATA="shell-completion/bash/udevadm" dist_network_DATA="network/99-default.link" ) emake -j1 DESTDIR="${D}" "${targets[@]}" doman man/{udev.conf.5,systemd.link.5,udev.7,systemd-udevd.service.8,udevadm.8} else - local lib_LTLIBRARIES="libudev.la" \ - pkgconfiglib_DATA="src/libudev/libudev.pc" \ - include_HEADERS="src/libudev/libudev.h" + local lib_LTLIBRARIES="libudev.la" + local pkgconfiglib_DATA="src/libudev/libudev.pc" + local include_HEADERS="src/libudev/libudev.h" local targets=( install-libLTLIBRARIES @@ -310,9 +308,8 @@ multilib_src_install_all() { dodoc TODO prune_libtool_files --all - rm -f \ - "${D}"/lib/udev/rules.d/99-systemd.rules \ - "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} + rm -f "${D}"/lib/udev/rules.d/99-systemd.rules + rm -f "${D}"/usr/share/doc/${PF}/{LICENSE.*,GVARIANT-SERIALIZATION,DIFFERENCES,PORTING-DBUS1,sd-shutdown.h} # see src_prepare() for content of 40-gentoo.rules insinto /lib/udev/rules.d