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 1QTzGe-000518-GF for garchives@archives.gentoo.org; Tue, 07 Jun 2011 16:36:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8652F1C00A; Tue, 7 Jun 2011 16:36:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5646E1C00A for ; Tue, 7 Jun 2011 16:36:27 +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 E089A1B4039 for ; Tue, 7 Jun 2011 16:36:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1BA328003C for ; Tue, 7 Jun 2011 16:36:26 +0000 (UTC) From: "Nirbheek Chauhan" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" Message-ID: Subject: [gentoo-commits] proj/gentoo-bumpchecker:master commit in: modules/ X-VCS-Repository: proj/gentoo-bumpchecker X-VCS-Files: modules/package_module.py X-VCS-Directories: modules/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: a017173ac44fb95305a13b31f83907cb4068a966 Date: Tue, 7 Jun 2011 16:36:26 +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: ce2e6f0c74fe1f5d2f2cfee473997e0d commit: a017173ac44fb95305a13b31f83907cb4068a966 Author: Nirbheek Chauhan gentoo org> AuthorDate: Tue Jun 7 16:30:43 2011 +0000 Commit: Nirbheek Chauhan gentoo org> CommitDate: Tue Jun 7 16:36:10 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoo-bumpch= ecker.git;a=3Dcommit;h=3Da017173a Fix ambiguity in glib and pango package names --- modules/package_module.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/modules/package_module.py b/modules/package_module.py index 5f3dd69..8fd7336 100644 --- a/modules/package_module.py +++ b/modules/package_module.py @@ -28,6 +28,9 @@ class Package(object): 'Gtk2-GladeXML' : 'dev-perl/gtk2-gladexml', 'Gtk2' : 'dev-perl/gtk2-perl', 'Pango' : 'dev-perl/Pango', + # Haskell mess + "glib":"dev-libs/glib", + "pango":"x11-libs/pango", } =20 def __init__(self, raw_data):