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,7 @@
Internationalization extension for SQLAlchemy models. Features:
* Stores translations in separate tables.
* Reflects translation table structures based on parent model table structure.
* Supports forcing of given locale.
* Good performance (uses proxy dicts and other advanced SQLAlchemy concepts for
performance optimization).

View File

@@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.2 2014/12/31 13:57:26 wiz Exp $
DISTNAME= SQLAlchemy-i18n-1.0.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= databases python
MASTER_SITES= https://pypi.python.org/packages/source/S/SQLAlchemy-i18n/
MAINTAINER= rodent@NetBSD.org
HOMEPAGE= https://github.com/kvesteri/sqlalchemy-i18n
COMMENT= Internationalization extension for SQLAlchemy models
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-sqlalchemy>=0.9:../../databases/py-sqlalchemy
DEPENDS+= ${PYPKGPREFIX}-sqlalchemy-utils>=0.25.3:../../databases/py-sqlalchemy-utils
DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six
USE_LANGUAGES= # none
.include "options.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,31 @@
@comment $NetBSD: PLIST,v 1.1 2014/12/06 03:26:17 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}/sqlalchemy_i18n/__init__.py
${PYSITELIB}/sqlalchemy_i18n/__init__.pyc
${PYSITELIB}/sqlalchemy_i18n/__init__.pyo
${PYSITELIB}/sqlalchemy_i18n/builders.py
${PYSITELIB}/sqlalchemy_i18n/builders.pyc
${PYSITELIB}/sqlalchemy_i18n/builders.pyo
${PYSITELIB}/sqlalchemy_i18n/comparators.py
${PYSITELIB}/sqlalchemy_i18n/comparators.pyc
${PYSITELIB}/sqlalchemy_i18n/comparators.pyo
${PYSITELIB}/sqlalchemy_i18n/exc.py
${PYSITELIB}/sqlalchemy_i18n/exc.pyc
${PYSITELIB}/sqlalchemy_i18n/exc.pyo
${PYSITELIB}/sqlalchemy_i18n/expressions.py
${PYSITELIB}/sqlalchemy_i18n/expressions.pyc
${PYSITELIB}/sqlalchemy_i18n/expressions.pyo
${PYSITELIB}/sqlalchemy_i18n/manager.py
${PYSITELIB}/sqlalchemy_i18n/manager.pyc
${PYSITELIB}/sqlalchemy_i18n/manager.pyo
${PYSITELIB}/sqlalchemy_i18n/translatable.py
${PYSITELIB}/sqlalchemy_i18n/translatable.pyc
${PYSITELIB}/sqlalchemy_i18n/translatable.pyo
${PYSITELIB}/sqlalchemy_i18n/utils.py
${PYSITELIB}/sqlalchemy_i18n/utils.pyc
${PYSITELIB}/sqlalchemy_i18n/utils.pyo

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1 2014/12/06 03:26:17 rodent Exp $
SHA1 (SQLAlchemy-i18n-1.0.1.tar.gz) = 013889825f2e2ea4640b50a9a1081171ed1dbd18
RMD160 (SQLAlchemy-i18n-1.0.1.tar.gz) = 6ba493f2d818639b44f2e1c0ac2b505784778aec
Size (SQLAlchemy-i18n-1.0.1.tar.gz) = 25506 bytes

View File

@@ -0,0 +1,16 @@
# $NetBSD: options.mk,v 1.1 2014/12/06 03:26:17 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.py-sqlalchemy-i18n
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
DEPENDS+= ${PYPKGPREFIX}-pygments>=1.2:../../textproc/py-pygments
DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.3:../../textproc/py-jinja2
DEPENDS+= ${PYPKGPREFIX}-docutils>=0.10:../../textproc/py-docutils
DEPENDS+= ${PYPKGPREFIX}-flexmock>=0.9.7:../../devel/py-flexmock
DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2.4.6:../../databases/py-psycopg2
.endif