From owner-svn-ports-all@freebsd.org Wed Aug 29 19:07:57 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 3EC0F1092C0C; Wed, 29 Aug 2018 19:07:57 +0000 (UTC) (envelope-from sunpoet@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 F11F17AA7B; Wed, 29 Aug 2018 19:07:56 +0000 (UTC) (envelope-from sunpoet@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 B95D0213B9; Wed, 29 Aug 2018 19:07:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7TJ7ulT064882; Wed, 29 Aug 2018 19:07:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7TJ7tZU064878; Wed, 29 Aug 2018 19:07:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808291907.w7TJ7tZU064878@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 29 Aug 2018 19:07:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478368 - in head/devel: . py-pooch X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-pooch X-SVN-Commit-Revision: 478368 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.27 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, 29 Aug 2018 19:07:57 -0000 Author: sunpoet Date: Wed Aug 29 19:07:55 2018 New Revision: 478368 URL: https://svnweb.freebsd.org/changeset/ports/478368 Log: Add py-pooch 0.1 Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks. WWW: https://github.com/fatiando/pooch Added: head/devel/py-pooch/ head/devel/py-pooch/Makefile (contents, props changed) head/devel/py-pooch/distinfo (contents, props changed) head/devel/py-pooch/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 29 18:53:00 2018 (r478367) +++ head/devel/Makefile Wed Aug 29 19:07:55 2018 (r478368) @@ -4845,6 +4845,7 @@ SUBDIR += py-ply SUBDIR += py-podcastparser SUBDIR += py-polib + SUBDIR += py-pooch SUBDIR += py-positional SUBDIR += py-posix_ipc SUBDIR += py-pp Added: head/devel/py-pooch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pooch/Makefile Wed Aug 29 19:07:55 2018 (r478368) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pooch +PORTVERSION= 0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fetch your sample data files + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} < 3500 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.tempfile>=0:devel/py-backports.tempfile@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathlib>=0:devel/py-pathlib@${PY_FLAVOR} +.endif + +.include Added: head/devel/py-pooch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pooch/distinfo Wed Aug 29 19:07:55 2018 (r478368) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535483931 +SHA256 (pooch-0.1.tar.gz) = 2a6c4e8fa1e7036ef41f57f0f09933e4fe82dbb6bd295028fef25af7a675b6bf +SIZE (pooch-0.1.tar.gz) = 36668 Added: head/devel/py-pooch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pooch/pkg-descr Wed Aug 29 19:07:55 2018 (r478368) @@ -0,0 +1,5 @@ +Pooch manages your Python library's sample data files: it automatically +downloads and stores them in a local directory, with support for versioning and +corruption checks. + +WWW: https://github.com/fatiando/pooch