From patchwork Tue Feb 18 20:40:06 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 321647 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 17F872C00CC for ; Wed, 19 Feb 2014 07:41:06 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 798548B9D5; Tue, 18 Feb 2014 20:40:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i5EsNXF8MpMC; Tue, 18 Feb 2014 20:40:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id C527E8B915; Tue, 18 Feb 2014 20:40:41 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 319381CE9A4 for ; Tue, 18 Feb 2014 20:40:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 39E9632247 for ; Tue, 18 Feb 2014 20:40:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IhQ-95wF0bBY for ; Tue, 18 Feb 2014 20:40:24 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by silver.osuosl.org (Postfix) with ESMTP id A1BE4321AB for ; Tue, 18 Feb 2014 20:40:24 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id DDF1E7BE; Tue, 18 Feb 2014 21:40:39 +0100 (CET) Received: from localhost (AToulouse-651-1-98-40.w109-222.abo.wanadoo.fr [109.222.65.40]) by mail.free-electrons.com (Postfix) with ESMTPSA id 9DB656E8; Tue, 18 Feb 2014 21:40:39 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Tue, 18 Feb 2014 21:40:06 +0100 Message-Id: <1392756013-27757-14-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1392756013-27757-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1392756013-27757-1-git-send-email-thomas.petazzoni@free-electrons.com> Cc: Rohan Fletcher Subject: [Buildroot] [PATCH v2 13/20] python-setuptools: bump version to 2.1.2 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Rohan Fletcher [Thomas: bump to 2.1.2 instead of 0.8, remove comment that no longer made sense about setuptools being forked.] Signed-off-by: Rohan Fletcher Signed-off-by: Thomas Petazzoni --- package/python-setuptools/python-setuptools.mk | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/package/python-setuptools/python-setuptools.mk b/package/python-setuptools/python-setuptools.mk index 13df448..48bf7c5 100644 --- a/package/python-setuptools/python-setuptools.mk +++ b/package/python-setuptools/python-setuptools.mk @@ -4,14 +4,9 @@ # ################################################################################ -# "distribute" is a fork of the unmaintained setuptools package. There -# are plans to re-merge it into setuptools; if this happens, we can -# switch back to it. -# See http://pypi.python.org/packages/source/s/setuptools - -PYTHON_SETUPTOOLS_VERSION = 0.6.36 -PYTHON_SETUPTOOLS_SOURCE = distribute-$(PYTHON_SETUPTOOLS_VERSION).tar.gz -PYTHON_SETUPTOOLS_SITE = http://pypi.python.org/packages/source/d/distribute +PYTHON_SETUPTOOLS_VERSION = 2.1.2 +PYTHON_SETUPTOOLS_SOURCE = setuptools-$(PYTHON_SETUPTOOLS_VERSION).tar.gz +PYTHON_SETUPTOOLS_SITE = http://pypi.python.org/packages/source/s/setuptools PYTHON_SETUPTOOLS_SETUP_TYPE = setuptools $(eval $(python-package))