From owner-svn-ports-all@FreeBSD.ORG Wed Nov 26 03:51:49 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA940A50; Wed, 26 Nov 2014 03:51:49 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C38C803; Wed, 26 Nov 2014 03:51:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAQ3pnBo078772; Wed, 26 Nov 2014 03:51:49 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAQ3pmUi078761; Wed, 26 Nov 2014 03:51:48 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201411260351.sAQ3pmUi078761@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 26 Nov 2014 03:51:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373438 - head/www/py-requests X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2014 03:51:49 -0000 Author: koobs Date: Wed Nov 26 03:51:48 2014 New Revision: 373438 URL: https://svnweb.freebsd.org/changeset/ports/373438 QAT: https://qat.redports.org/buildarchive/r373438/ Log: www/py-requests: Update to 2.4.3 - Update to 2.4.3 - Update to USES and USE_PYTHON new world order - Add LICENSE_FILE - Add TEST_DEPENDS - Update pkg-descr Changes: https://github.com/kennethreitz/requests/blob/v2.4.3/HISTORY.rst Modified: head/www/py-requests/Makefile head/www/py-requests/distinfo head/www/py-requests/pkg-descr Modified: head/www/py-requests/Makefile ============================================================================== --- head/www/py-requests/Makefile Wed Nov 26 02:41:26 2014 (r373437) +++ head/www/py-requests/Makefile Wed Nov 26 03:51:48 2014 (r373438) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= requests -PORTVERSION= 2.3.0 +PORTVERSION= 2.4.3 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,10 +11,12 @@ MAINTAINER= koobs@FreeBSD.org COMMENT= HTTP library written in Python for human beings LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.3.4:${PORTSDIR}/devel/py-pytest + +USES= python +USE_PYTHON= autoplist distutils CONFLICTS_INSTALL= py*-requests1-* Modified: head/www/py-requests/distinfo ============================================================================== --- head/www/py-requests/distinfo Wed Nov 26 02:41:26 2014 (r373437) +++ head/www/py-requests/distinfo Wed Nov 26 03:51:48 2014 (r373438) @@ -1,2 +1,2 @@ -SHA256 (requests-2.3.0.tar.gz) = 1c1473875d846fe563d70868acf05b1953a4472f4695b7b3566d1d978957b8fc -SIZE (requests-2.3.0.tar.gz) = 429521 +SHA256 (requests-2.4.3.tar.gz) = 53c68313c5c6149b1a899234c000296e60a8900682accf73d6f0c6d608afc6b1 +SIZE (requests-2.4.3.tar.gz) = 438132 Modified: head/www/py-requests/pkg-descr ============================================================================== --- head/www/py-requests/pkg-descr Wed Nov 26 02:41:26 2014 (r373437) +++ head/www/py-requests/pkg-descr Wed Nov 26 03:51:48 2014 (r373438) @@ -2,17 +2,18 @@ Requests is an ISC Licensed HTTP library Features: - * International Domains and URLs - * Keep-Alive & Connection Pooling - * Sessions with Cookie Persistence - * Browser-style SSL Verification - * Basic/Digest Authentication - * Elegant Key/Value Cookies - * Automatic Decompression - * Unicode Response Bodies - * Multipart File Uploads - * Connection Timeouts - * Thread-safety - * HTTP(S) Proxy Support + * International Domains and URLs + * Keep-Alive & Connection Pooling + * Sessions with Cookie Persistence + * Browser-style SSL Verification + * Basic/Digest Authentication + * Elegant Key/Value Cookies + * Automatic Decompression + * Unicode Response Bodies + * Multipart File Uploads + * Connection Timeouts + * .netrc support + * Python 2.6-3.4 + * Thread-safe WWW: http://python-requests.org