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 14B241381F3 for ; Sun, 16 Dec 2012 04:48:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28D0921C003; Sun, 16 Dec 2012 04:48:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9232921C003 for ; Sun, 16 Dec 2012 04:48:45 +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 6466833DC83 for ; Sun, 16 Dec 2012 04:48:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B3E55E543C for ; Sun, 16 Dec 2012 04:48:42 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1355633297.bc0efc857b5708ea572e3a4c57c9689cf48c50ad.dol-sen@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: / X-VCS-Repository: proj/mirrorselect X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: bc0efc857b5708ea572e3a4c57c9689cf48c50ad X-VCS-Branch: master Date: Sun, 16 Dec 2012 04:48:42 +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: 72a2722b-cec9-493d-a14c-70a29d73591e X-Archives-Hash: 04f32368f11f22372f9ceffdafc80768 commit: bc0efc857b5708ea572e3a4c57c9689cf48c50ad Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 16 04:48:17 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sun Dec 16 04:48:17 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=bc0efc85 Fix setup.py to use PVR instead of VERSION from the environment so that egg-info is set correctly during the merge. --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/setup.py b/setup.py index 8a9f980..7a53076 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ import os import io -__version__ = os.getenv('VERSION', default='9999') +__version__ = os.getenv('PVR', default='9999') cwd = os.getcwd()