From owner-svn-ports-all@freebsd.org Mon Jun 11 08:28:15 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 8E9C3101F7E4; Mon, 11 Jun 2018 08:28:15 +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 3C31B75B41; Mon, 11 Jun 2018 08:28:15 +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 1A2DC18FEA; Mon, 11 Jun 2018 08:28:15 +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 w5B8SEAN003818; Mon, 11 Jun 2018 08:28:14 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5B8SEPf003815; Mon, 11 Jun 2018 08:28:14 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806110828.w5B8SEPf003815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 11 Jun 2018 08:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472171 - in head/misc: . py-serverfiles X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-serverfiles X-SVN-Commit-Revision: 472171 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.26 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, 11 Jun 2018 08:28:15 -0000 Author: yuri Date: Mon Jun 11 08:28:13 2018 New Revision: 472171 URL: https://svnweb.freebsd.org/changeset/ports/472171 Log: New port: misc/py-serverfiles: Access files on a HTTP server and store them locally for reuse Added: head/misc/py-serverfiles/ head/misc/py-serverfiles/Makefile (contents, props changed) head/misc/py-serverfiles/distinfo (contents, props changed) head/misc/py-serverfiles/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jun 11 08:18:30 2018 (r472170) +++ head/misc/Makefile Mon Jun 11 08:28:13 2018 (r472171) @@ -421,6 +421,7 @@ SUBDIR += py-qt4-demo SUBDIR += py-qt4-doc SUBDIR += py-qt5-demo + SUBDIR += py-serverfiles SUBDIR += py-socli SUBDIR += py-spdx SUBDIR += py-spdx-lookup Added: head/misc/py-serverfiles/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-serverfiles/Makefile Mon Jun 11 08:28:13 2018 (r472171) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= serverfiles +DISTVERSION= 0.2.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Access files on a HTTP server and store them locally for reuse + +LICENSE= GPLv3+ + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.11.1:www/py-requests@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/misc/py-serverfiles/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-serverfiles/distinfo Mon Jun 11 08:28:13 2018 (r472171) @@ -0,0 +1,3 @@ +TIMESTAMP = 1528705281 +SHA256 (serverfiles-0.2.1.tar.gz) = 7dfe1c28c7792231758929e3cbc24bff71bdc0120594d01e6f9b94847addf871 +SIZE (serverfiles-0.2.1.tar.gz) = 11127 Added: head/misc/py-serverfiles/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-serverfiles/pkg-descr Mon Jun 11 08:28:13 2018 (r472171) @@ -0,0 +1,4 @@ +An utility that accesses files on a HTTP server and stores them locally +for reuse. + +WWW: https://pypi.org/project/serverfiles/