From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QvX1n-0002fA-K6 for garchives@archives.gentoo.org; Mon, 22 Aug 2011 16:07:07 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC55E21C2F0; Mon, 22 Aug 2011 16:06:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9BBCC21C2F0 for ; Mon, 22 Aug 2011 16:06:59 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FAFF1B401C for ; Mon, 22 Aug 2011 16:06:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7435980040 for ; Mon, 22 Aug 2011 16:06:58 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <05b3e2b245630505fa5f581fbdf0531d00cb0b93.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild-helpers/dosym X-VCS-Directories: bin/ebuild-helpers/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 05b3e2b245630505fa5f581fbdf0531d00cb0b93 Date: Mon, 22 Aug 2011 16:06: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 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7551a0a23dc16f6e12c1cecf2564ac11 commit: 05b3e2b245630505fa5f581fbdf0531d00cb0b93 Author: Zac Medico gentoo org> AuthorDate: Mon Aug 22 16:06:13 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 22 16:06:13 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D05b3e2b2 dosym: QA warn if basename omitted (bug #379899) --- bin/ebuild-helpers/dosym | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/bin/ebuild-helpers/dosym b/bin/ebuild-helpers/dosym index 500dad0..3bec2b8 100755 --- a/bin/ebuild-helpers/dosym +++ b/bin/ebuild-helpers/dosym @@ -9,6 +9,11 @@ if [[ $# -ne 2 ]] ; then exit 1 fi =20 +if [[ ${2} =3D=3D */ ]] ; then + # implicit basename not allowed by PMS (bug #379899) + eqawarn "QA Notice: dosym target omits basename: '${2}'" +fi + destdir=3D${2%/*} [[ ! -d ${D}${destdir} ]] && dodir "${destdir}" =20