Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -0,0 +1,3 @@
Python has all kinds of data validation tools, but every one of them seems to
require defining a schema / form. This is a simple validation library where
validating a simple value does not require defining a form or a schema.

View File

@@ -0,0 +1,21 @@
# $NetBSD: Makefile,v 1.3 2014/10/05 22:22:49 rodent Exp $
DISTNAME= validators-0.7
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= python textproc
MASTER_SITES= https://pypi.python.org/packages/source/v/validators/
MAINTAINER= rodent@NetBSD.org
HOMEPAGE= https://github.com/kvesteri/validators
COMMENT= Python data validation for humans
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
DEPENDS+= ${PYPKGPREFIX}-decorator>=3.4.0:../../devel/py-decorator
USE_LANGUAGES= # none
.include "options.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,49 @@
@comment $NetBSD: PLIST,v 1.2 2014/06/26 01:19:04 rodent Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/validators/__init__.py
${PYSITELIB}/validators/__init__.pyc
${PYSITELIB}/validators/__init__.pyo
${PYSITELIB}/validators/between.py
${PYSITELIB}/validators/between.pyc
${PYSITELIB}/validators/between.pyo
${PYSITELIB}/validators/email.py
${PYSITELIB}/validators/email.pyc
${PYSITELIB}/validators/email.pyo
${PYSITELIB}/validators/extremes.py
${PYSITELIB}/validators/extremes.pyc
${PYSITELIB}/validators/extremes.pyo
${PYSITELIB}/validators/i18n/__init__.py
${PYSITELIB}/validators/i18n/__init__.pyc
${PYSITELIB}/validators/i18n/__init__.pyo
${PYSITELIB}/validators/i18n/fi.py
${PYSITELIB}/validators/i18n/fi.pyc
${PYSITELIB}/validators/i18n/fi.pyo
${PYSITELIB}/validators/ip_address.py
${PYSITELIB}/validators/ip_address.pyc
${PYSITELIB}/validators/ip_address.pyo
${PYSITELIB}/validators/length.py
${PYSITELIB}/validators/length.pyc
${PYSITELIB}/validators/length.pyo
${PYSITELIB}/validators/mac_address.py
${PYSITELIB}/validators/mac_address.pyc
${PYSITELIB}/validators/mac_address.pyo
${PYSITELIB}/validators/slug.py
${PYSITELIB}/validators/slug.pyc
${PYSITELIB}/validators/slug.pyo
${PYSITELIB}/validators/truthy.py
${PYSITELIB}/validators/truthy.pyc
${PYSITELIB}/validators/truthy.pyo
${PYSITELIB}/validators/url.py
${PYSITELIB}/validators/url.pyc
${PYSITELIB}/validators/url.pyo
${PYSITELIB}/validators/utils.py
${PYSITELIB}/validators/utils.pyc
${PYSITELIB}/validators/utils.pyo
${PYSITELIB}/validators/uuid.py
${PYSITELIB}/validators/uuid.pyc
${PYSITELIB}/validators/uuid.pyo

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.3 2014/10/05 22:22:49 rodent Exp $
SHA1 (validators-0.7.tar.gz) = 475dbe957353a2245d7a9c28f8e74afe5e764a17
RMD160 (validators-0.7.tar.gz) = 39fd4a03a8d845b636195cb9bd2b5ae6affe0013
Size (validators-0.7.tar.gz) = 16931 bytes

View File

@@ -0,0 +1,11 @@
# $NetBSD: options.mk,v 1.1 2014/06/14 14:35:09 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.py-validators
PKG_SUPPORTED_OPTIONS= tests
PKG_SUGGESTED_OPTIONS+= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mtests)
DEPENDS+= ${PYPKGPREFIX}-test>=2.2.3:../../devel/py-test
.endif