From owner-svn-ports-head@FreeBSD.ORG Mon Jan 27 12:05:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60253479; Mon, 27 Jan 2014 12:05:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B478117D; Mon, 27 Jan 2014 12:05:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0RC5YnT085743; Mon, 27 Jan 2014 12:05:34 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0RC5XTM085741; Mon, 27 Jan 2014 12:05:33 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201401271205.s0RC5XTM085741@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 27 Jan 2014 12:05:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341384 - in head/www: . py-requests1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 12:05:34 -0000 Author: koobs Date: Mon Jan 27 12:05:33 2014 New Revision: 341384 URL: http://svnweb.freebsd.org/changeset/ports/341384 QAT: https://qat.redports.org/buildarchive/r341384/ Log: www/py-requests1: Copy from www/requests so we can upgrade to 2.x Copy www/requests -> www/requests1 so we can update the main port to version 2.x. Next commit will sweep all dependants. While I'm here: - Enable STAGE support - Enable AUTOPLIST - Deprecate easy_install target - Add CONFLICTS - Tweak COMMENT PR: ports/185631 Added: head/www/py-requests1/ - copied from r341334, head/www/py-requests/ Deleted: head/www/py-requests1/pkg-plist Modified: head/www/Makefile head/www/py-requests1/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jan 27 11:59:40 2014 (r341383) +++ head/www/Makefile Mon Jan 27 12:05:33 2014 (r341384) @@ -1665,6 +1665,7 @@ SUBDIR += py-rackspace-monitoring SUBDIR += py-recaptcha SUBDIR += py-requests + SUBDIR += py-requests1 SUBDIR += py-requests-oauth-hook SUBDIR += py-requests-oauthlib SUBDIR += py-restclient Modified: head/www/py-requests1/Makefile ============================================================================== --- head/www/py-requests/Makefile Mon Jan 27 07:32:02 2014 (r341334) +++ head/www/py-requests1/Makefile Mon Jan 27 12:05:33 2014 (r341384) @@ -1,22 +1,24 @@ # Created by: Olivier Duchateau # $FreeBSD$ -PORTNAME= requests +PORTNAME= requests1 PORTVERSION= 1.2.3 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= HTTP library written in Python for human beings +COMMENT= HTTP library written in Python for human beings (Version 1.x) LICENSE= ISCL USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +CONFLICTS_INSTALL= py*-requests-* regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} test_requests.py -NO_STAGE= yes .include