diff options
Diffstat (limited to 'misc')
30 files changed, 392 insertions, 31 deletions
diff --git a/misc/Makefile b/misc/Makefile index 24cbbb7c8aa..0a1499fe919 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.457 2015/08/19 07:12:19 he Exp $ +# $NetBSD: Makefile,v 1.458 2015/08/24 14:49:44 richard Exp $ # COMMENT= Miscellaneous utilities @@ -243,9 +243,14 @@ SUBDIR+= py-carddav SUBDIR+= py-stdnum SUBDIR+= py-trytond-company SUBDIR+= py-trytond-party +SUBDIR+= py-trytond-party-relationship SUBDIR+= py-trytond-party-siret SUBDIR+= py-trytond-product +SUBDIR+= py-trytond-product-attribute +SUBDIR+= py-trytond-production SUBDIR+= py-trytond-stock +SUBDIR+= py-trytond-stock-inventory-location +SUBDIR+= py-trytond-stock-product-location SUBDIR+= py-trytond-stock-lot SUBDIR+= qbrew SUBDIR+= qterm diff --git a/misc/py-trytond-company/Makefile b/misc/py-trytond-company/Makefile index 23e9198fa1d..39b78c2ba5f 100644 --- a/misc/py-trytond-company/Makefile +++ b/misc/py-trytond-company/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2015/03/15 00:17:35 rodent Exp $ +# $NetBSD: Makefile,v 1.7 2015/08/24 14:49:44 richard Exp $ TRYTON_MODULE_NAME= trytond_company .include "../../devel/py-trytond/Makefile.common" CATEGORIES= misc python @@ -14,7 +14,7 @@ DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond USE_LANGUAGES= # none -REPLACE_PYTHON+= tests/test_company.py +REPLACE_PYTHON+= tests/test_company.py tests/tools.py .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/misc/py-trytond-company/PLIST b/misc/py-trytond-company/PLIST index 9b9efc4170e..30ff971035b 100644 --- a/misc/py-trytond-company/PLIST +++ b/misc/py-trytond-company/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:35 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:44 richard Exp $ ${PYSITELIB}/trytond/modules/company/__init__.py ${PYSITELIB}/trytond/modules/company/__init__.pyc ${PYSITELIB}/trytond/modules/company/__init__.pyo @@ -33,6 +33,9 @@ ${PYSITELIB}/trytond/modules/company/tests/__init__.pyo ${PYSITELIB}/trytond/modules/company/tests/test_company.py ${PYSITELIB}/trytond/modules/company/tests/test_company.pyc ${PYSITELIB}/trytond/modules/company/tests/test_company.pyo +${PYSITELIB}/trytond/modules/company/tests/tools.py +${PYSITELIB}/trytond/modules/company/tests/tools.pyc +${PYSITELIB}/trytond/modules/company/tests/tools.pyo ${PYSITELIB}/trytond/modules/company/tryton.cfg ${PYSITELIB}/trytond/modules/company/view/company_config_start_form.xml ${PYSITELIB}/trytond/modules/company/view/company_form.xml @@ -45,8 +48,8 @@ ${PYSITELIB}/trytond/modules/company/view/property_form.xml ${PYSITELIB}/trytond/modules/company/view/property_tree.xml ${PYSITELIB}/trytond/modules/company/view/sequence_form.xml ${PYSITELIB}/trytond/modules/company/view/sequence_tree.xml -${PYSITELIB}/trytond/modules/company/view/user_form.xml ${PYSITELIB}/trytond/modules/company/view/user_form_preferences.xml +${PYSITELIB}/trytond/modules/company/view/user_form.xml ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt diff --git a/misc/py-trytond-company/distinfo b/misc/py-trytond-company/distinfo index 82bcde2506d..a868e9d3fa6 100644 --- a/misc/py-trytond-company/distinfo +++ b/misc/py-trytond-company/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_company-3.4.1.tar.gz) = 14015c4b87a679de09c28aaddf47c70d7f91a9a8 -RMD160 (tryton-3.4/trytond_company-3.4.1.tar.gz) = b370d403f7ec5a10c10b1c7a3004afe36c1a506a -Size (tryton-3.4/trytond_company-3.4.1.tar.gz) = 51520 bytes +SHA1 (tryton-3.6/trytond_company-3.6.0.tar.gz) = f549c81894d4c58bd73f13abb21593e5dfaf01cd +RMD160 (tryton-3.6/trytond_company-3.6.0.tar.gz) = dc3988f743fdf69539f7b845c99cc2b15f4fbd12 +Size (tryton-3.6/trytond_company-3.6.0.tar.gz) = 52782 bytes diff --git a/misc/py-trytond-party-relationship/DESCR b/misc/py-trytond-party-relationship/DESCR new file mode 100644 index 00000000000..e504ba8f640 --- /dev/null +++ b/misc/py-trytond-party-relationship/DESCR @@ -0,0 +1 @@ +The party relationship module of the Tryton application platform. diff --git a/misc/py-trytond-party-relationship/Makefile b/misc/py-trytond-party-relationship/Makefile new file mode 100644 index 00000000000..969747c4902 --- /dev/null +++ b/misc/py-trytond-party-relationship/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:44 richard Exp $ +TRYTON_MODULE_NAME= trytond_party_relationship +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= misc python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Party relationship module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_party_relationship.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-trytond-party-relationship/PLIST b/misc/py-trytond-party-relationship/PLIST new file mode 100644 index 00000000000..6fbfbb8112a --- /dev/null +++ b/misc/py-trytond-party-relationship/PLIST @@ -0,0 +1,35 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:44 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/party_relationship/__init__.py +${PYSITELIB}/trytond/modules/party_relationship/__init__.pyc +${PYSITELIB}/trytond/modules/party_relationship/__init__.pyo +${PYSITELIB}/trytond/modules/party_relationship/locale/ca_ES.po +${PYSITELIB}/trytond/modules/party_relationship/locale/de_DE.po +${PYSITELIB}/trytond/modules/party_relationship/locale/es_AR.po +${PYSITELIB}/trytond/modules/party_relationship/locale/es_CO.po +${PYSITELIB}/trytond/modules/party_relationship/locale/es_EC.po +${PYSITELIB}/trytond/modules/party_relationship/locale/es_ES.po +${PYSITELIB}/trytond/modules/party_relationship/locale/fr_FR.po +${PYSITELIB}/trytond/modules/party_relationship/locale/sl_SI.po +${PYSITELIB}/trytond/modules/party_relationship/party.py +${PYSITELIB}/trytond/modules/party_relationship/party.pyc +${PYSITELIB}/trytond/modules/party_relationship/party.pyo +${PYSITELIB}/trytond/modules/party_relationship/party.xml +${PYSITELIB}/trytond/modules/party_relationship/tests/__init__.py +${PYSITELIB}/trytond/modules/party_relationship/tests/__init__.pyc +${PYSITELIB}/trytond/modules/party_relationship/tests/__init__.pyo +${PYSITELIB}/trytond/modules/party_relationship/tests/test_party_relationship.py +${PYSITELIB}/trytond/modules/party_relationship/tests/test_party_relationship.pyc +${PYSITELIB}/trytond/modules/party_relationship/tests/test_party_relationship.pyo +${PYSITELIB}/trytond/modules/party_relationship/tryton.cfg +${PYSITELIB}/trytond/modules/party_relationship/view/party_form.xml +${PYSITELIB}/trytond/modules/party_relationship/view/relation_form.xml +${PYSITELIB}/trytond/modules/party_relationship/view/relation_tree.xml +${PYSITELIB}/trytond/modules/party_relationship/view/relation_type_form.xml +${PYSITELIB}/trytond/modules/party_relationship/view/relation_type_tree.xml diff --git a/misc/py-trytond-party-relationship/distinfo b/misc/py-trytond-party-relationship/distinfo new file mode 100644 index 00000000000..f0fd891ec2f --- /dev/null +++ b/misc/py-trytond-party-relationship/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:44 richard Exp $ + +SHA1 (tryton-3.6/trytond_party_relationship-3.6.0.tar.gz) = 4b2a6963bb5fad42b7e71d2c489d30a8902b2094 +RMD160 (tryton-3.6/trytond_party_relationship-3.6.0.tar.gz) = 493337f888f466990dfbc1aa2acd3c83a3fa03a2 +Size (tryton-3.6/trytond_party_relationship-3.6.0.tar.gz) = 22791 bytes diff --git a/misc/py-trytond-party-siret/distinfo b/misc/py-trytond-party-siret/distinfo index f591e8247f8..45b50f33379 100644 --- a/misc/py-trytond-party-siret/distinfo +++ b/misc/py-trytond-party-siret/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_party_siret-3.4.1.tar.gz) = a30965da264764ce9214c6447e4d03e6e43394a8 -RMD160 (tryton-3.4/trytond_party_siret-3.4.1.tar.gz) = 5b39e234a91ae7bca91255232b7d0f4417de9da2 -Size (tryton-3.4/trytond_party_siret-3.4.1.tar.gz) = 19618 bytes +SHA1 (tryton-3.6/trytond_party_siret-3.6.0.tar.gz) = 3845402737f31ae4005c539b46240364083dd10a +RMD160 (tryton-3.6/trytond_party_siret-3.6.0.tar.gz) = 016444d2f338dda900b0ff3ba44790fda1dcd9a4 +Size (tryton-3.6/trytond_party_siret-3.6.0.tar.gz) = 19762 bytes diff --git a/misc/py-trytond-party/distinfo b/misc/py-trytond-party/distinfo index baecdcf002d..3f94c3f6115 100644 --- a/misc/py-trytond-party/distinfo +++ b/misc/py-trytond-party/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_party-3.4.1.tar.gz) = 37da8bf310467a7a4410feee7ce24c51165d9ba7 -RMD160 (tryton-3.4/trytond_party-3.4.1.tar.gz) = 913a4ccd4ccf277a01ac2bc9e39390b4f2eaa38a -Size (tryton-3.4/trytond_party-3.4.1.tar.gz) = 55866 bytes +SHA1 (tryton-3.6/trytond_party-3.6.1.tar.gz) = a167fdacb33c6358f2f7109d0bb481bf6d1d4754 +RMD160 (tryton-3.6/trytond_party-3.6.1.tar.gz) = 1626406baf2008b33c2fb54ec17003626e4df399 +Size (tryton-3.6/trytond_party-3.6.1.tar.gz) = 61852 bytes diff --git a/misc/py-trytond-product-attribute/DESCR b/misc/py-trytond-product-attribute/DESCR new file mode 100644 index 00000000000..8ed76d70d4b --- /dev/null +++ b/misc/py-trytond-product-attribute/DESCR @@ -0,0 +1 @@ +The product attribute module of the Tryton application platform. diff --git a/misc/py-trytond-product-attribute/Makefile b/misc/py-trytond-product-attribute/Makefile new file mode 100644 index 00000000000..484c8bdbad4 --- /dev/null +++ b/misc/py-trytond-product-attribute/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:44 richard Exp $ +TRYTON_MODULE_NAME= trytond_product_attribute +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= misc python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Product attribute module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_product_attribute.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-trytond-product-attribute/PLIST b/misc/py-trytond-product-attribute/PLIST new file mode 100644 index 00000000000..2d07d2f79f0 --- /dev/null +++ b/misc/py-trytond-product-attribute/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:44 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/product_attribute/__init__.py +${PYSITELIB}/trytond/modules/product_attribute/__init__.pyc +${PYSITELIB}/trytond/modules/product_attribute/__init__.pyo +${PYSITELIB}/trytond/modules/product_attribute/locale/ca_ES.po +${PYSITELIB}/trytond/modules/product_attribute/locale/de_DE.po +${PYSITELIB}/trytond/modules/product_attribute/locale/es_AR.po +${PYSITELIB}/trytond/modules/product_attribute/locale/es_CO.po +${PYSITELIB}/trytond/modules/product_attribute/locale/es_EC.po +${PYSITELIB}/trytond/modules/product_attribute/locale/es_ES.po +${PYSITELIB}/trytond/modules/product_attribute/locale/fr_FR.po +${PYSITELIB}/trytond/modules/product_attribute/locale/sl_SI.po +${PYSITELIB}/trytond/modules/product_attribute/product.py +${PYSITELIB}/trytond/modules/product_attribute/product.pyc +${PYSITELIB}/trytond/modules/product_attribute/product.pyo +${PYSITELIB}/trytond/modules/product_attribute/product.xml +${PYSITELIB}/trytond/modules/product_attribute/tests/__init__.py +${PYSITELIB}/trytond/modules/product_attribute/tests/__init__.pyc +${PYSITELIB}/trytond/modules/product_attribute/tests/__init__.pyo +${PYSITELIB}/trytond/modules/product_attribute/tests/test_product_attribute.py +${PYSITELIB}/trytond/modules/product_attribute/tests/test_product_attribute.pyc +${PYSITELIB}/trytond/modules/product_attribute/tests/test_product_attribute.pyo +${PYSITELIB}/trytond/modules/product_attribute/tryton.cfg +${PYSITELIB}/trytond/modules/product_attribute/view/attribute_form.xml +${PYSITELIB}/trytond/modules/product_attribute/view/attribute_list.xml +${PYSITELIB}/trytond/modules/product_attribute/view/attribute_set_form.xml +${PYSITELIB}/trytond/modules/product_attribute/view/attribute_set_list.xml +${PYSITELIB}/trytond/modules/product_attribute/view/product_form.xml +${PYSITELIB}/trytond/modules/product_attribute/view/template_form.xml diff --git a/misc/py-trytond-product-attribute/distinfo b/misc/py-trytond-product-attribute/distinfo new file mode 100644 index 00000000000..ab576058b54 --- /dev/null +++ b/misc/py-trytond-product-attribute/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:44 richard Exp $ + +SHA1 (tryton-3.6/trytond_product_attribute-3.6.0.tar.gz) = 55cf4785e2d338da26351d28a810e910b23a559a +RMD160 (tryton-3.6/trytond_product_attribute-3.6.0.tar.gz) = 7e3cbcbd19bb43a9690c158f7b08bbf94c9ed286 +Size (tryton-3.6/trytond_product_attribute-3.6.0.tar.gz) = 22074 bytes diff --git a/misc/py-trytond-product/distinfo b/misc/py-trytond-product/distinfo index a4f8e904c1b..f97db338bdd 100644 --- a/misc/py-trytond-product/distinfo +++ b/misc/py-trytond-product/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_product-3.4.1.tar.gz) = ddab59b2d4619813dc43226e283af7f1cbaa74ba -RMD160 (tryton-3.4/trytond_product-3.4.1.tar.gz) = 481291f7fb7fb3b4ba1c07ce49581e059c4f4d5b -Size (tryton-3.4/trytond_product-3.4.1.tar.gz) = 46789 bytes +SHA1 (tryton-3.6/trytond_product-3.6.1.tar.gz) = 16025784137c7a40e2ee2ce62bb2b0ad28585ca7 +RMD160 (tryton-3.6/trytond_product-3.6.1.tar.gz) = f9f9011c51c058d32d42052e1416efc9b88a7717 +Size (tryton-3.6/trytond_product-3.6.1.tar.gz) = 47384 bytes diff --git a/misc/py-trytond-production/DESCR b/misc/py-trytond-production/DESCR new file mode 100644 index 00000000000..df900ea5bcc --- /dev/null +++ b/misc/py-trytond-production/DESCR @@ -0,0 +1 @@ +The production module of the Tryton application platform. diff --git a/misc/py-trytond-production/Makefile b/misc/py-trytond-production/Makefile new file mode 100644 index 00000000000..da00a0ae3c6 --- /dev/null +++ b/misc/py-trytond-production/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:44 richard Exp $ +TRYTON_MODULE_NAME= trytond_production +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= misc python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Production module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_production.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-trytond-production/PLIST b/misc/py-trytond-production/PLIST new file mode 100644 index 00000000000..0b5d56d5287 --- /dev/null +++ b/misc/py-trytond-production/PLIST @@ -0,0 +1,70 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:44 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/production/__init__.py +${PYSITELIB}/trytond/modules/production/__init__.pyc +${PYSITELIB}/trytond/modules/production/__init__.pyo +${PYSITELIB}/trytond/modules/production/bom.py +${PYSITELIB}/trytond/modules/production/bom.pyc +${PYSITELIB}/trytond/modules/production/bom.pyo +${PYSITELIB}/trytond/modules/production/bom.xml +${PYSITELIB}/trytond/modules/production/configuration.py +${PYSITELIB}/trytond/modules/production/configuration.pyc +${PYSITELIB}/trytond/modules/production/configuration.pyo +${PYSITELIB}/trytond/modules/production/configuration.xml +${PYSITELIB}/trytond/modules/production/locale/bg_BG.po +${PYSITELIB}/trytond/modules/production/locale/ca_ES.po +${PYSITELIB}/trytond/modules/production/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/production/locale/de_DE.po +${PYSITELIB}/trytond/modules/production/locale/es_AR.po +${PYSITELIB}/trytond/modules/production/locale/es_CO.po +${PYSITELIB}/trytond/modules/production/locale/es_EC.po +${PYSITELIB}/trytond/modules/production/locale/es_ES.po +${PYSITELIB}/trytond/modules/production/locale/fr_FR.po +${PYSITELIB}/trytond/modules/production/locale/nl_NL.po +${PYSITELIB}/trytond/modules/production/locale/ru_RU.po +${PYSITELIB}/trytond/modules/production/locale/sl_SI.po +${PYSITELIB}/trytond/modules/production/product.py +${PYSITELIB}/trytond/modules/production/product.pyc +${PYSITELIB}/trytond/modules/production/product.pyo +${PYSITELIB}/trytond/modules/production/product.xml +${PYSITELIB}/trytond/modules/production/production.py +${PYSITELIB}/trytond/modules/production/production.pyc +${PYSITELIB}/trytond/modules/production/production.pyo +${PYSITELIB}/trytond/modules/production/production.xml +${PYSITELIB}/trytond/modules/production/stock.py +${PYSITELIB}/trytond/modules/production/stock.pyc +${PYSITELIB}/trytond/modules/production/stock.pyo +${PYSITELIB}/trytond/modules/production/stock.xml +${PYSITELIB}/trytond/modules/production/tests/__init__.py +${PYSITELIB}/trytond/modules/production/tests/__init__.pyc +${PYSITELIB}/trytond/modules/production/tests/__init__.pyo +${PYSITELIB}/trytond/modules/production/tests/scenario_production.rst +${PYSITELIB}/trytond/modules/production/tests/test_production.py +${PYSITELIB}/trytond/modules/production/tests/test_production.pyc +${PYSITELIB}/trytond/modules/production/tests/test_production.pyo +${PYSITELIB}/trytond/modules/production/tryton.cfg +${PYSITELIB}/trytond/modules/production/view/assign_failed_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_input_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_input_list.xml +${PYSITELIB}/trytond/modules/production/view/bom_list.xml +${PYSITELIB}/trytond/modules/production/view/bom_output_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_output_list.xml +${PYSITELIB}/trytond/modules/production/view/bom_tree_open_start_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_tree_open_tree_form.xml +${PYSITELIB}/trytond/modules/production/view/bom_tree_tree.xml +${PYSITELIB}/trytond/modules/production/view/configuration_form.xml +${PYSITELIB}/trytond/modules/production/view/location_form.xml +${PYSITELIB}/trytond/modules/production/view/product_bom_form.xml +${PYSITELIB}/trytond/modules/production/view/product_bom_list_sequence.xml +${PYSITELIB}/trytond/modules/production/view/product_bom_list.xml +${PYSITELIB}/trytond/modules/production/view/product_form.xml +${PYSITELIB}/trytond/modules/production/view/production_calendar.xml +${PYSITELIB}/trytond/modules/production/view/production_form.xml +${PYSITELIB}/trytond/modules/production/view/production_list.xml diff --git a/misc/py-trytond-production/distinfo b/misc/py-trytond-production/distinfo new file mode 100644 index 00000000000..ea9aae29910 --- /dev/null +++ b/misc/py-trytond-production/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:44 richard Exp $ + +SHA1 (tryton-3.6/trytond_production-3.6.0.tar.gz) = fae81f2857651b2d90834178ad11d43e2b896ee2 +RMD160 (tryton-3.6/trytond_production-3.6.0.tar.gz) = d099ff78d8c612d8950e94c432bc66af04e68389 +Size (tryton-3.6/trytond_production-3.6.0.tar.gz) = 43782 bytes diff --git a/misc/py-trytond-stock-inventory-location/DESCR b/misc/py-trytond-stock-inventory-location/DESCR new file mode 100644 index 00000000000..a9e81ef77e6 --- /dev/null +++ b/misc/py-trytond-stock-inventory-location/DESCR @@ -0,0 +1 @@ +The stock inventory location module of the Tryton application platform. diff --git a/misc/py-trytond-stock-inventory-location/Makefile b/misc/py-trytond-stock-inventory-location/Makefile new file mode 100644 index 00000000000..cc18c676712 --- /dev/null +++ b/misc/py-trytond-stock-inventory-location/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:44 richard Exp $ +TRYTON_MODULE_NAME= trytond_stock_inventory_location +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= misc python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Stock inventory location module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_stock_inventory_location.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-trytond-stock-inventory-location/PLIST b/misc/py-trytond-stock-inventory-location/PLIST new file mode 100644 index 00000000000..a8124f6159a --- /dev/null +++ b/misc/py-trytond-stock-inventory-location/PLIST @@ -0,0 +1,35 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:44 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/stock_inventory_location/__init__.py +${PYSITELIB}/trytond/modules/stock_inventory_location/__init__.pyc +${PYSITELIB}/trytond/modules/stock_inventory_location/__init__.pyo +${PYSITELIB}/trytond/modules/stock_inventory_location/inventory.py +${PYSITELIB}/trytond/modules/stock_inventory_location/inventory.pyc +${PYSITELIB}/trytond/modules/stock_inventory_location/inventory.pyo +${PYSITELIB}/trytond/modules/stock_inventory_location/inventory.xml +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/bg_BG.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/ca_ES.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/de_DE.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/es_AR.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/es_CO.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/es_EC.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/es_ES.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/fr_FR.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/nl_NL.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/ru_RU.po +${PYSITELIB}/trytond/modules/stock_inventory_location/locale/sl_SI.po +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/__init__.py +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/__init__.pyc +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/__init__.pyo +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/test_stock_inventory_location.py +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/test_stock_inventory_location.pyc +${PYSITELIB}/trytond/modules/stock_inventory_location/tests/test_stock_inventory_location.pyo +${PYSITELIB}/trytond/modules/stock_inventory_location/tryton.cfg +${PYSITELIB}/trytond/modules/stock_inventory_location/view/inventory_create_start_form.xml diff --git a/misc/py-trytond-stock-inventory-location/distinfo b/misc/py-trytond-stock-inventory-location/distinfo new file mode 100644 index 00000000000..a8ce63042e6 --- /dev/null +++ b/misc/py-trytond-stock-inventory-location/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:44 richard Exp $ + +SHA1 (tryton-3.6/trytond_stock_inventory_location-3.6.0.tar.gz) = f6e0bfa14aef237c2cc8c25875d4f09862bfaa5e +RMD160 (tryton-3.6/trytond_stock_inventory_location-3.6.0.tar.gz) = 18f8b7f89f8aa13667d5d467c01d46c03a3da52e +Size (tryton-3.6/trytond_stock_inventory_location-3.6.0.tar.gz) = 20103 bytes diff --git a/misc/py-trytond-stock-lot/distinfo b/misc/py-trytond-stock-lot/distinfo index c7bc54c05c8..5cbbbacd5f4 100644 --- a/misc/py-trytond-stock-lot/distinfo +++ b/misc/py-trytond-stock-lot/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:36 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_stock_lot-3.4.1.tar.gz) = c4d7712e53ab8733f22cccd1b78aee9aac03604a -RMD160 (tryton-3.4/trytond_stock_lot-3.4.1.tar.gz) = dfcb6e233ba60b1b291e8d23a70bebbf530c08bb -Size (tryton-3.4/trytond_stock_lot-3.4.1.tar.gz) = 29668 bytes +SHA1 (tryton-3.6/trytond_stock_lot-3.6.0.tar.gz) = 4c6d0402b6f8fb77aab9233f8fb219ec35765ff0 +RMD160 (tryton-3.6/trytond_stock_lot-3.6.0.tar.gz) = 311fcbe64ba65a5a02c02083f1b0c0195eb1a926 +Size (tryton-3.6/trytond_stock_lot-3.6.0.tar.gz) = 29527 bytes diff --git a/misc/py-trytond-stock-product-location/DESCR b/misc/py-trytond-stock-product-location/DESCR new file mode 100644 index 00000000000..2e22324226e --- /dev/null +++ b/misc/py-trytond-stock-product-location/DESCR @@ -0,0 +1 @@ +The stock product location module of the Tryton application platform. diff --git a/misc/py-trytond-stock-product-location/Makefile b/misc/py-trytond-stock-product-location/Makefile new file mode 100644 index 00000000000..c5caaa9e29d --- /dev/null +++ b/misc/py-trytond-stock-product-location/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:44 richard Exp $ +TRYTON_MODULE_NAME= trytond_stock_product_location +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= misc python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Stock product location module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_stock_product_location.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/py-trytond-stock-product-location/PLIST b/misc/py-trytond-stock-product-location/PLIST new file mode 100644 index 00000000000..a6e762b3bca --- /dev/null +++ b/misc/py-trytond-stock-product-location/PLIST @@ -0,0 +1,41 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:44 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/stock_product_location/__init__.py +${PYSITELIB}/trytond/modules/stock_product_location/__init__.pyc +${PYSITELIB}/trytond/modules/stock_product_location/__init__.pyo +${PYSITELIB}/trytond/modules/stock_product_location/locale/bg_BG.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/ca_ES.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/de_DE.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/es_AR.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/es_CO.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/es_EC.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/es_ES.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/fr_FR.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/nl_NL.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/ru_RU.po +${PYSITELIB}/trytond/modules/stock_product_location/locale/sl_SI.po +${PYSITELIB}/trytond/modules/stock_product_location/location.py +${PYSITELIB}/trytond/modules/stock_product_location/location.pyc +${PYSITELIB}/trytond/modules/stock_product_location/location.pyo +${PYSITELIB}/trytond/modules/stock_product_location/location.xml +${PYSITELIB}/trytond/modules/stock_product_location/product.py +${PYSITELIB}/trytond/modules/stock_product_location/product.pyc +${PYSITELIB}/trytond/modules/stock_product_location/product.pyo +${PYSITELIB}/trytond/modules/stock_product_location/product.xml +${PYSITELIB}/trytond/modules/stock_product_location/tests/__init__.py +${PYSITELIB}/trytond/modules/stock_product_location/tests/__init__.pyc +${PYSITELIB}/trytond/modules/stock_product_location/tests/__init__.pyo +${PYSITELIB}/trytond/modules/stock_product_location/tests/test_stock_product_location.py +${PYSITELIB}/trytond/modules/stock_product_location/tests/test_stock_product_location.pyc +${PYSITELIB}/trytond/modules/stock_product_location/tests/test_stock_product_location.pyo +${PYSITELIB}/trytond/modules/stock_product_location/tryton.cfg +${PYSITELIB}/trytond/modules/stock_product_location/view/product_form.xml +${PYSITELIB}/trytond/modules/stock_product_location/view/product_location_form.xml +${PYSITELIB}/trytond/modules/stock_product_location/view/product_location_tree.xml diff --git a/misc/py-trytond-stock-product-location/distinfo b/misc/py-trytond-stock-product-location/distinfo new file mode 100644 index 00000000000..4f46910efe5 --- /dev/null +++ b/misc/py-trytond-stock-product-location/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:44 richard Exp $ + +SHA1 (tryton-3.6/trytond_stock_product_location-3.6.0.tar.gz) = 643e326ef1ec3e6104e120752452df7386d8d97e +RMD160 (tryton-3.6/trytond_stock_product_location-3.6.0.tar.gz) = 3968198fc76cc2b86115178c23a20081df2240f6 +Size (tryton-3.6/trytond_stock_product_location-3.6.0.tar.gz) = 20896 bytes diff --git a/misc/py-trytond-stock/PLIST b/misc/py-trytond-stock/PLIST index f7e09cb08f4..7afc88ec1a2 100644 --- a/misc/py-trytond-stock/PLIST +++ b/misc/py-trytond-stock/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2015/03/15 00:17:35 rodent Exp $ +@comment $NetBSD: PLIST,v 1.4 2015/08/24 14:49:44 richard Exp $ ${PYSITELIB}/trytond/modules/stock/__init__.py ${PYSITELIB}/trytond/modules/stock/__init__.pyc ${PYSITELIB}/trytond/modules/stock/__init__.pyo @@ -55,6 +55,7 @@ ${PYSITELIB}/trytond/modules/stock/tests/__init__.pyc ${PYSITELIB}/trytond/modules/stock/tests/__init__.pyo ${PYSITELIB}/trytond/modules/stock/tests/scenario_stock_average_cost_price.rst ${PYSITELIB}/trytond/modules/stock/tests/scenario_stock_inventory.rst +${PYSITELIB}/trytond/modules/stock/tests/scenario_stock_reporting.rst ${PYSITELIB}/trytond/modules/stock/tests/scenario_stock_shipment_internal.rst ${PYSITELIB}/trytond/modules/stock/tests/scenario_stock_shipment_out.rst ${PYSITELIB}/trytond/modules/stock/tests/test_stock.py @@ -71,8 +72,8 @@ ${PYSITELIB}/trytond/modules/stock/view/location_list.xml ${PYSITELIB}/trytond/modules/stock/view/location_quantity_tree.xml ${PYSITELIB}/trytond/modules/stock/view/location_tree.xml ${PYSITELIB}/trytond/modules/stock/view/move_form.xml -${PYSITELIB}/trytond/modules/stock/view/move_tree.xml ${PYSITELIB}/trytond/modules/stock/view/move_tree_simple.xml +${PYSITELIB}/trytond/modules/stock/view/move_tree.xml ${PYSITELIB}/trytond/modules/stock/view/party_address_form.xml ${PYSITELIB}/trytond/modules/stock/view/party_address_tree.xml ${PYSITELIB}/trytond/modules/stock/view/party_form.xml diff --git a/misc/py-trytond-stock/distinfo b/misc/py-trytond-stock/distinfo index 82fe71cf9e7..ace1897b513 100644 --- a/misc/py-trytond-stock/distinfo +++ b/misc/py-trytond-stock/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:44 richard Exp $ -SHA1 (tryton-3.4/trytond_stock-3.4.1.tar.gz) = afece3a81c3776e2d3032720ba2df82e5a756a8f -RMD160 (tryton-3.4/trytond_stock-3.4.1.tar.gz) = a79751aacf6b3ae4cf7eba1597ed0cef65e68956 -Size (tryton-3.4/trytond_stock-3.4.1.tar.gz) = 178109 bytes +SHA1 (tryton-3.6/trytond_stock-3.6.0.tar.gz) = 8e4de237f9cbe0e3abe83c5178e7bbfeb79e59c6 +RMD160 (tryton-3.6/trytond_stock-3.6.0.tar.gz) = 54bf779b84b3390f7b01c8b14ff3f1287796603e +Size (tryton-3.6/trytond_stock-3.6.0.tar.gz) = 181476 bytes |