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 1R2IvN-0008I4-Kv for garchives@archives.gentoo.org; Sat, 10 Sep 2011 08:28:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB1521C085; Sat, 10 Sep 2011 08:28:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2834A21C085 for ; Sat, 10 Sep 2011 08:28:22 +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 851DC1B4025 for ; Sat, 10 Sep 2011 08:28:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B982480042 for ; Sat, 10 Sep 2011 08:28:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1ee846c8dc76fda41f16a31e13f7ebae9b069247.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoopm:master commit in: gentoopm/basepm/ X-VCS-Repository: proj/gentoopm X-VCS-Files: gentoopm/basepm/pkg.py X-VCS-Directories: gentoopm/basepm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1ee846c8dc76fda41f16a31e13f7ebae9b069247 Date: Sat, 10 Sep 2011 08:28:20 +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: c8fd4d8cf517240fbe169092ed53788a commit: 1ee846c8dc76fda41f16a31e13f7ebae9b069247 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Sat Sep 10 08:30:00 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Sat Sep 10 08:30:00 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoopm.git;= a=3Dcommit;h=3D1ee846c8 Name herds explicitly. --- gentoopm/basepm/pkg.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/gentoopm/basepm/pkg.py b/gentoopm/basepm/pkg.py index c536a69..92069d1 100644 --- a/gentoopm/basepm/pkg.py +++ b/gentoopm/basepm/pkg.py @@ -158,7 +158,8 @@ class PMPackageHerd(PMPackageMaintainer): @type name: string """ return PMPackageMaintainer.__new__(self, - '%s@gentoo.org' % name) + '%s@gentoo.org' % name, # XXX + '%s herd' % name) =20 @property def description(self):