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 1RvBPF-0003IU-Hq for garchives@archives.gentoo.org; Wed, 08 Feb 2012 17:34:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F36BE02DF; Wed, 8 Feb 2012 17:34:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 66311E02DF for ; Wed, 8 Feb 2012 17:34:01 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 988CB1B4036 for ; Wed, 8 Feb 2012 17:34:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 51B72E5401 for ; Wed, 8 Feb 2012 17:33:59 +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: <4d4b444be9e89ac25f6919e95b3d7c775e1af212.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4d4b444be9e89ac25f6919e95b3d7c775e1af212 Date: Wed, 8 Feb 2012 17:33:59 +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: e2b32fc3-e4d3-4e40-bb89-cecd485ecf4b X-Archives-Hash: da56d51fce7c69fe5c0f31495d1f291a commit: 4d4b444be9e89ac25f6919e95b3d7c775e1af212 Author: Zac Medico gentoo org> AuthorDate: Wed Feb 8 16:35:50 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Feb 8 16:35:50 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4d4b444b repoman: normalize thirdpartymirrors trailing / --- bin/repoman | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index bee6661..e54967d 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1171,7 +1171,10 @@ check_ebuild_notadded =3D not \ # Build a regex from thirdpartymirrors for the SRC_URI.mirror check. thirdpartymirrors =3D [] for v in repoman_settings.thirdpartymirrors().values(): - thirdpartymirrors.extend(v) + for v in v: + if not v.endswith("/"): + v +=3D "/" + thirdpartymirrors.append(v) =20 class _MetadataTreeBuilder(xml.etree.ElementTree.TreeBuilder): """