From owner-svn-ports-all@freebsd.org Mon Mar 5 06:01:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B951F34361; Mon, 5 Mar 2018 06:01:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D05AB84C53; Mon, 5 Mar 2018 06:01:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB58D1FF7B; Mon, 5 Mar 2018 06:01:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2561kqS044863; Mon, 5 Mar 2018 06:01:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2561kTo044859; Mon, 5 Mar 2018 06:01:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803050601.w2561kTo044859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 5 Mar 2018 06:01:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463621 - in head/ftp: . py-requests-ftp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/ftp: . py-requests-ftp X-SVN-Commit-Revision: 463621 X-SVN-Commit-Repository: ports 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.25 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: Mon, 05 Mar 2018 06:01:47 -0000 Author: yuri Date: Mon Mar 5 06:01:46 2018 New Revision: 463621 URL: https://svnweb.freebsd.org/changeset/ports/463621 Log: New port: ftp/py-requests-ftp: Ftp transport adapter for requests PR: 226359 Submitted by: Shane Approved by: tcberner (mentor, implicit) Added: head/ftp/py-requests-ftp/ head/ftp/py-requests-ftp/Makefile (contents, props changed) head/ftp/py-requests-ftp/distinfo (contents, props changed) head/ftp/py-requests-ftp/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Mon Mar 5 05:48:24 2018 (r463620) +++ head/ftp/Makefile Mon Mar 5 06:01:46 2018 (r463621) @@ -85,6 +85,7 @@ SUBDIR += py-ftputil SUBDIR += py-pycurl SUBDIR += py-pyftpdlib + SUBDIR += py-requests-ftp SUBDIR += py-tftpy SUBDIR += quftp SUBDIR += rexx-curl Added: head/ftp/py-requests-ftp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-requests-ftp/Makefile Mon Mar 5 06:01:46 2018 (r463621) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= requests-ftp +DISTVERSION= 0.3.1 +CATEGORIES= ftp python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= FreeBSD@Shaneware.biz +COMMENT= Ftp transport adapter for requests + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/ftp/py-requests-ftp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-requests-ftp/distinfo Mon Mar 5 06:01:46 2018 (r463621) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519797133 +SHA256 (requests-ftp-0.3.1.tar.gz) = 7504ceb5cba8a5c0135ed738596820a78c5f2be92d79b29f96ba99b183d8057a +SIZE (requests-ftp-0.3.1.tar.gz) = 7850 Added: head/ftp/py-requests-ftp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-requests-ftp/pkg-descr Mon Mar 5 06:01:46 2018 (r463621) @@ -0,0 +1,4 @@ +Requests-FTP is an implementation of a very stupid FTP transport +adapter for use with the awesome Requests Python library. + +WWW: https://github.com/Lukasa/requests-ftp