It's time to make Tryton great again. This update is YUGE. There are 71
new packages. Most of which are the remaining modules of the Tryton platform which weren't packaged. The others are dependencies of the new modules. This was tested on FreeBSD and is based in large part on Richard Palo's (richard@) work. This is the most recent release of the Tryton platform, version 4.2. There's a very large list of changes from the 3.8 series we have in pkgsrc. If you're interested, those functional changes can be found here: http://www.tryton.org/posts/new-tryton-release-42.html http://www.tryton.org/posts/new-tryton-release-40.html
This commit is contained in:
parent
0be3505d7b
commit
a71bc063ac
428 changed files with 7669 additions and 1622 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.145 2016/12/04 10:01:15 simonb Exp $
|
||||
# $NetBSD: Makefile,v 1.146 2016/12/04 21:12:58 rodent Exp $
|
||||
#
|
||||
|
||||
COMMENT= Document format and character code converters
|
||||
|
@ -98,6 +98,7 @@ SUBDIR+= psiconv
|
|||
SUBDIR+= pstotext
|
||||
SUBDIR+= py-cairosvg
|
||||
SUBDIR+= py-chardet
|
||||
SUBDIR+= py-html2text
|
||||
SUBDIR+= py-jpCodecs
|
||||
SUBDIR+= py-simplejson
|
||||
SUBDIR+= py-yenc
|
||||
|
|
1
converters/py-html2text/ALTERNATIVES
Normal file
1
converters/py-html2text/ALTERNATIVES
Normal file
|
@ -0,0 +1 @@
|
|||
bin/html2text @PREFIX@/bin/html2text@PYVERSSUFFIX@
|
3
converters/py-html2text/DESCR
Normal file
3
converters/py-html2text/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
Turn HTML into equivalent Markdown-structured text. Html2text is a Python script
|
||||
that converts a page of HTML into clean, easy-to-read, plain, ASCII text. Better
|
||||
yet, that ASCII also happens to be valid Markdown (a text-to-HTML format).
|
21
converters/py-html2text/Makefile
Normal file
21
converters/py-html2text/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
DISTNAME= html2text-2016.9.19
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= converters python textproc
|
||||
MASTER_SITES= https://files.pythonhosted.org/packages/source/h/html2text/
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= https://github.ccom/Alir3z4/html2text
|
||||
COMMENT= Python script that converts a page of HTML into clean ASCII text
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
post-install:
|
||||
${MV} ${DESTDIR}${PREFIX}/bin/html2text \
|
||||
${DESTDIR}${PREFIX}/bin/html2text${PYVERSSUFFIX}
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
23
converters/py-html2text/PLIST
Normal file
23
converters/py-html2text/PLIST
Normal file
|
@ -0,0 +1,23 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
bin/html2text${PYVERSSUFFIX}
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/html2text/__init__.py
|
||||
${PYSITELIB}/html2text/__init__.pyc
|
||||
${PYSITELIB}/html2text/__init__.pyo
|
||||
${PYSITELIB}/html2text/cli.py
|
||||
${PYSITELIB}/html2text/cli.pyc
|
||||
${PYSITELIB}/html2text/cli.pyo
|
||||
${PYSITELIB}/html2text/compat.py
|
||||
${PYSITELIB}/html2text/compat.pyc
|
||||
${PYSITELIB}/html2text/compat.pyo
|
||||
${PYSITELIB}/html2text/config.py
|
||||
${PYSITELIB}/html2text/config.pyc
|
||||
${PYSITELIB}/html2text/config.pyo
|
||||
${PYSITELIB}/html2text/utils.py
|
||||
${PYSITELIB}/html2text/utils.pyc
|
||||
${PYSITELIB}/html2text/utils.pyo
|
6
converters/py-html2text/distinfo
Normal file
6
converters/py-html2text/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (html2text-2016.9.19.tar.gz) = d0ad27c5d7e27472339c357669b56fd846c5e85e
|
||||
RMD160 (html2text-2016.9.19.tar.gz) = dac3afaeb4213a2fd34fc129e235d2c6c98ca8b9
|
||||
SHA512 (html2text-2016.9.19.tar.gz) = cbc67f2815c20bfed84bfdff1c44ac3f4d6cbeb5e5b62adaf08b485fb2c886605b7f8a9f85f420e1158117194e7aa3de064aaef5ca018f5c81d15ebf5065b061
|
||||
Size (html2text-2016.9.19.tar.gz) = 47899 bytes
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.521 2016/10/30 08:58:12 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.522 2016/12/04 21:12:58 rodent Exp $
|
||||
|
||||
COMMENT= Databases
|
||||
|
||||
|
@ -347,6 +347,7 @@ SUBDIR+= py-elixir
|
|||
SUBDIR+= py-firebase
|
||||
SUBDIR+= py-gdbm
|
||||
SUBDIR+= py-ldap
|
||||
SUBDIR+= py-ldap3
|
||||
SUBDIR+= py-metakit
|
||||
SUBDIR+= py-mongo
|
||||
SUBDIR+= py-mssql
|
||||
|
@ -374,6 +375,7 @@ SUBDIR+= py-sqlsoup
|
|||
SUBDIR+= py-sybase
|
||||
SUBDIR+= py-table
|
||||
SUBDIR+= py-tokyocabinet
|
||||
SUBDIR+= py-trytond-ldap-authentication
|
||||
SUBDIR+= py-whisper
|
||||
SUBDIR+= qdbm
|
||||
SUBDIR+= qdbm-cgi
|
||||
|
|
0
databases/py-ldap3/DESCR
Normal file
0
databases/py-ldap3/DESCR
Normal file
18
databases/py-ldap3/Makefile
Normal file
18
databases/py-ldap3/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
DISTNAME= ldap3-2.1.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=l/ldap3}
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= https://github.com/cannatag/ldap3
|
||||
COMMENT= Strictly RFC 4510 conforming LDAP V3 pure Python client library
|
||||
LICENSE= gnu-lgpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.8:../../security/py-asn1
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
309
databases/py-ldap3/PLIST
Normal file
309
databases/py-ldap3/PLIST
Normal file
|
@ -0,0 +1,309 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/ldap3/__init__.py
|
||||
${PYSITELIB}/ldap3/__init__.pyc
|
||||
${PYSITELIB}/ldap3/__init__.pyo
|
||||
${PYSITELIB}/ldap3/abstract/__init__.py
|
||||
${PYSITELIB}/ldap3/abstract/__init__.pyc
|
||||
${PYSITELIB}/ldap3/abstract/__init__.pyo
|
||||
${PYSITELIB}/ldap3/abstract/attrDef.py
|
||||
${PYSITELIB}/ldap3/abstract/attrDef.pyc
|
||||
${PYSITELIB}/ldap3/abstract/attrDef.pyo
|
||||
${PYSITELIB}/ldap3/abstract/attribute.py
|
||||
${PYSITELIB}/ldap3/abstract/attribute.pyc
|
||||
${PYSITELIB}/ldap3/abstract/attribute.pyo
|
||||
${PYSITELIB}/ldap3/abstract/cursor.py
|
||||
${PYSITELIB}/ldap3/abstract/cursor.pyc
|
||||
${PYSITELIB}/ldap3/abstract/cursor.pyo
|
||||
${PYSITELIB}/ldap3/abstract/entry.py
|
||||
${PYSITELIB}/ldap3/abstract/entry.pyc
|
||||
${PYSITELIB}/ldap3/abstract/entry.pyo
|
||||
${PYSITELIB}/ldap3/abstract/objectDef.py
|
||||
${PYSITELIB}/ldap3/abstract/objectDef.pyc
|
||||
${PYSITELIB}/ldap3/abstract/objectDef.pyo
|
||||
${PYSITELIB}/ldap3/core/__init__.py
|
||||
${PYSITELIB}/ldap3/core/__init__.pyc
|
||||
${PYSITELIB}/ldap3/core/__init__.pyo
|
||||
${PYSITELIB}/ldap3/core/connection.py
|
||||
${PYSITELIB}/ldap3/core/connection.pyc
|
||||
${PYSITELIB}/ldap3/core/connection.pyo
|
||||
${PYSITELIB}/ldap3/core/exceptions.py
|
||||
${PYSITELIB}/ldap3/core/exceptions.pyc
|
||||
${PYSITELIB}/ldap3/core/exceptions.pyo
|
||||
${PYSITELIB}/ldap3/core/pooling.py
|
||||
${PYSITELIB}/ldap3/core/pooling.pyc
|
||||
${PYSITELIB}/ldap3/core/pooling.pyo
|
||||
${PYSITELIB}/ldap3/core/results.py
|
||||
${PYSITELIB}/ldap3/core/results.pyc
|
||||
${PYSITELIB}/ldap3/core/results.pyo
|
||||
${PYSITELIB}/ldap3/core/server.py
|
||||
${PYSITELIB}/ldap3/core/server.pyc
|
||||
${PYSITELIB}/ldap3/core/server.pyo
|
||||
${PYSITELIB}/ldap3/core/timezone.py
|
||||
${PYSITELIB}/ldap3/core/timezone.pyc
|
||||
${PYSITELIB}/ldap3/core/timezone.pyo
|
||||
${PYSITELIB}/ldap3/core/tls.py
|
||||
${PYSITELIB}/ldap3/core/tls.pyc
|
||||
${PYSITELIB}/ldap3/core/tls.pyo
|
||||
${PYSITELIB}/ldap3/core/usage.py
|
||||
${PYSITELIB}/ldap3/core/usage.pyc
|
||||
${PYSITELIB}/ldap3/core/usage.pyo
|
||||
${PYSITELIB}/ldap3/extend/__init__.py
|
||||
${PYSITELIB}/ldap3/extend/__init__.pyc
|
||||
${PYSITELIB}/ldap3/extend/__init__.pyo
|
||||
${PYSITELIB}/ldap3/extend/microsoft/__init__.py
|
||||
${PYSITELIB}/ldap3/extend/microsoft/__init__.pyc
|
||||
${PYSITELIB}/ldap3/extend/microsoft/__init__.pyo
|
||||
${PYSITELIB}/ldap3/extend/microsoft/dirSync.py
|
||||
${PYSITELIB}/ldap3/extend/microsoft/dirSync.pyc
|
||||
${PYSITELIB}/ldap3/extend/microsoft/dirSync.pyo
|
||||
${PYSITELIB}/ldap3/extend/microsoft/modifyPassword.py
|
||||
${PYSITELIB}/ldap3/extend/microsoft/modifyPassword.pyc
|
||||
${PYSITELIB}/ldap3/extend/microsoft/modifyPassword.pyo
|
||||
${PYSITELIB}/ldap3/extend/microsoft/unlockAccount.py
|
||||
${PYSITELIB}/ldap3/extend/microsoft/unlockAccount.pyc
|
||||
${PYSITELIB}/ldap3/extend/microsoft/unlockAccount.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/__init__.py
|
||||
${PYSITELIB}/ldap3/extend/novell/__init__.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/__init__.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/addMembersToGroups.py
|
||||
${PYSITELIB}/ldap3/extend/novell/addMembersToGroups.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/addMembersToGroups.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/checkGroupsMemberships.py
|
||||
${PYSITELIB}/ldap3/extend/novell/checkGroupsMemberships.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/checkGroupsMemberships.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/endTransaction.py
|
||||
${PYSITELIB}/ldap3/extend/novell/endTransaction.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/endTransaction.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/getBindDn.py
|
||||
${PYSITELIB}/ldap3/extend/novell/getBindDn.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/getBindDn.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/listReplicas.py
|
||||
${PYSITELIB}/ldap3/extend/novell/listReplicas.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/listReplicas.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasGetUniversalPassword.py
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasGetUniversalPassword.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasGetUniversalPassword.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasSetUniversalPassword.py
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasSetUniversalPassword.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/nmasSetUniversalPassword.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/partition_entry_count.py
|
||||
${PYSITELIB}/ldap3/extend/novell/partition_entry_count.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/partition_entry_count.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/removeMembersFromGroups.py
|
||||
${PYSITELIB}/ldap3/extend/novell/removeMembersFromGroups.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/removeMembersFromGroups.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/replicaInfo.py
|
||||
${PYSITELIB}/ldap3/extend/novell/replicaInfo.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/replicaInfo.pyo
|
||||
${PYSITELIB}/ldap3/extend/novell/startTransaction.py
|
||||
${PYSITELIB}/ldap3/extend/novell/startTransaction.pyc
|
||||
${PYSITELIB}/ldap3/extend/novell/startTransaction.pyo
|
||||
${PYSITELIB}/ldap3/extend/operation.py
|
||||
${PYSITELIB}/ldap3/extend/operation.pyc
|
||||
${PYSITELIB}/ldap3/extend/operation.pyo
|
||||
${PYSITELIB}/ldap3/extend/standard/PagedSearch.py
|
||||
${PYSITELIB}/ldap3/extend/standard/PagedSearch.pyc
|
||||
${PYSITELIB}/ldap3/extend/standard/PagedSearch.pyo
|
||||
${PYSITELIB}/ldap3/extend/standard/PersistentSearch.py
|
||||
${PYSITELIB}/ldap3/extend/standard/PersistentSearch.pyc
|
||||
${PYSITELIB}/ldap3/extend/standard/PersistentSearch.pyo
|
||||
${PYSITELIB}/ldap3/extend/standard/__init__.py
|
||||
${PYSITELIB}/ldap3/extend/standard/__init__.pyc
|
||||
${PYSITELIB}/ldap3/extend/standard/__init__.pyo
|
||||
${PYSITELIB}/ldap3/extend/standard/modifyPassword.py
|
||||
${PYSITELIB}/ldap3/extend/standard/modifyPassword.pyc
|
||||
${PYSITELIB}/ldap3/extend/standard/modifyPassword.pyo
|
||||
${PYSITELIB}/ldap3/extend/standard/whoAmI.py
|
||||
${PYSITELIB}/ldap3/extend/standard/whoAmI.pyc
|
||||
${PYSITELIB}/ldap3/extend/standard/whoAmI.pyo
|
||||
${PYSITELIB}/ldap3/operation/__init__.py
|
||||
${PYSITELIB}/ldap3/operation/__init__.pyc
|
||||
${PYSITELIB}/ldap3/operation/__init__.pyo
|
||||
${PYSITELIB}/ldap3/operation/abandon.py
|
||||
${PYSITELIB}/ldap3/operation/abandon.pyc
|
||||
${PYSITELIB}/ldap3/operation/abandon.pyo
|
||||
${PYSITELIB}/ldap3/operation/add.py
|
||||
${PYSITELIB}/ldap3/operation/add.pyc
|
||||
${PYSITELIB}/ldap3/operation/add.pyo
|
||||
${PYSITELIB}/ldap3/operation/bind.py
|
||||
${PYSITELIB}/ldap3/operation/bind.pyc
|
||||
${PYSITELIB}/ldap3/operation/bind.pyo
|
||||
${PYSITELIB}/ldap3/operation/compare.py
|
||||
${PYSITELIB}/ldap3/operation/compare.pyc
|
||||
${PYSITELIB}/ldap3/operation/compare.pyo
|
||||
${PYSITELIB}/ldap3/operation/delete.py
|
||||
${PYSITELIB}/ldap3/operation/delete.pyc
|
||||
${PYSITELIB}/ldap3/operation/delete.pyo
|
||||
${PYSITELIB}/ldap3/operation/extended.py
|
||||
${PYSITELIB}/ldap3/operation/extended.pyc
|
||||
${PYSITELIB}/ldap3/operation/extended.pyo
|
||||
${PYSITELIB}/ldap3/operation/modify.py
|
||||
${PYSITELIB}/ldap3/operation/modify.pyc
|
||||
${PYSITELIB}/ldap3/operation/modify.pyo
|
||||
${PYSITELIB}/ldap3/operation/modifyDn.py
|
||||
${PYSITELIB}/ldap3/operation/modifyDn.pyc
|
||||
${PYSITELIB}/ldap3/operation/modifyDn.pyo
|
||||
${PYSITELIB}/ldap3/operation/search.py
|
||||
${PYSITELIB}/ldap3/operation/search.pyc
|
||||
${PYSITELIB}/ldap3/operation/search.pyo
|
||||
${PYSITELIB}/ldap3/operation/unbind.py
|
||||
${PYSITELIB}/ldap3/operation/unbind.pyc
|
||||
${PYSITELIB}/ldap3/operation/unbind.pyo
|
||||
${PYSITELIB}/ldap3/protocol/__init__.py
|
||||
${PYSITELIB}/ldap3/protocol/__init__.pyc
|
||||
${PYSITELIB}/ldap3/protocol/__init__.pyo
|
||||
${PYSITELIB}/ldap3/protocol/controls.py
|
||||
${PYSITELIB}/ldap3/protocol/controls.pyc
|
||||
${PYSITELIB}/ldap3/protocol/controls.pyo
|
||||
${PYSITELIB}/ldap3/protocol/convert.py
|
||||
${PYSITELIB}/ldap3/protocol/convert.pyc
|
||||
${PYSITELIB}/ldap3/protocol/convert.pyo
|
||||
${PYSITELIB}/ldap3/protocol/formatters/__init__.py
|
||||
${PYSITELIB}/ldap3/protocol/formatters/__init__.pyc
|
||||
${PYSITELIB}/ldap3/protocol/formatters/__init__.pyo
|
||||
${PYSITELIB}/ldap3/protocol/formatters/formatters.py
|
||||
${PYSITELIB}/ldap3/protocol/formatters/formatters.pyc
|
||||
${PYSITELIB}/ldap3/protocol/formatters/formatters.pyo
|
||||
${PYSITELIB}/ldap3/protocol/formatters/standard.py
|
||||
${PYSITELIB}/ldap3/protocol/formatters/standard.pyc
|
||||
${PYSITELIB}/ldap3/protocol/formatters/standard.pyo
|
||||
${PYSITELIB}/ldap3/protocol/formatters/validators.py
|
||||
${PYSITELIB}/ldap3/protocol/formatters/validators.pyc
|
||||
${PYSITELIB}/ldap3/protocol/formatters/validators.pyo
|
||||
${PYSITELIB}/ldap3/protocol/microsoft.py
|
||||
${PYSITELIB}/ldap3/protocol/microsoft.pyc
|
||||
${PYSITELIB}/ldap3/protocol/microsoft.pyo
|
||||
${PYSITELIB}/ldap3/protocol/novell.py
|
||||
${PYSITELIB}/ldap3/protocol/novell.pyc
|
||||
${PYSITELIB}/ldap3/protocol/novell.pyo
|
||||
${PYSITELIB}/ldap3/protocol/oid.py
|
||||
${PYSITELIB}/ldap3/protocol/oid.pyc
|
||||
${PYSITELIB}/ldap3/protocol/oid.pyo
|
||||
${PYSITELIB}/ldap3/protocol/persistentSearch.py
|
||||
${PYSITELIB}/ldap3/protocol/persistentSearch.pyc
|
||||
${PYSITELIB}/ldap3/protocol/persistentSearch.pyo
|
||||
${PYSITELIB}/ldap3/protocol/rfc2696.py
|
||||
${PYSITELIB}/ldap3/protocol/rfc2696.pyc
|
||||
${PYSITELIB}/ldap3/protocol/rfc2696.pyo
|
||||
${PYSITELIB}/ldap3/protocol/rfc2849.py
|
||||
${PYSITELIB}/ldap3/protocol/rfc2849.pyc
|
||||
${PYSITELIB}/ldap3/protocol/rfc2849.pyo
|
||||
${PYSITELIB}/ldap3/protocol/rfc3062.py
|
||||
${PYSITELIB}/ldap3/protocol/rfc3062.pyc
|
||||
${PYSITELIB}/ldap3/protocol/rfc3062.pyo
|
||||
${PYSITELIB}/ldap3/protocol/rfc4511.py
|
||||
${PYSITELIB}/ldap3/protocol/rfc4511.pyc
|
||||
${PYSITELIB}/ldap3/protocol/rfc4511.pyo
|
||||
${PYSITELIB}/ldap3/protocol/rfc4512.py
|
||||
${PYSITELIB}/ldap3/protocol/rfc4512.pyc
|
||||
${PYSITELIB}/ldap3/protocol/rfc4512.pyo
|
||||
${PYSITELIB}/ldap3/protocol/sasl/__init__.py
|
||||
${PYSITELIB}/ldap3/protocol/sasl/__init__.pyc
|
||||
${PYSITELIB}/ldap3/protocol/sasl/__init__.pyo
|
||||
${PYSITELIB}/ldap3/protocol/sasl/digestMd5.py
|
||||
${PYSITELIB}/ldap3/protocol/sasl/digestMd5.pyc
|
||||
${PYSITELIB}/ldap3/protocol/sasl/digestMd5.pyo
|
||||
${PYSITELIB}/ldap3/protocol/sasl/external.py
|
||||
${PYSITELIB}/ldap3/protocol/sasl/external.pyc
|
||||
${PYSITELIB}/ldap3/protocol/sasl/external.pyo
|
||||
${PYSITELIB}/ldap3/protocol/sasl/kerberos.py
|
||||
${PYSITELIB}/ldap3/protocol/sasl/kerberos.pyc
|
||||
${PYSITELIB}/ldap3/protocol/sasl/kerberos.pyo
|
||||
${PYSITELIB}/ldap3/protocol/sasl/sasl.py
|
||||
${PYSITELIB}/ldap3/protocol/sasl/sasl.pyc
|
||||
${PYSITELIB}/ldap3/protocol/sasl/sasl.pyo
|
||||
${PYSITELIB}/ldap3/protocol/schemas/__init__.py
|
||||
${PYSITELIB}/ldap3/protocol/schemas/__init__.pyc
|
||||
${PYSITELIB}/ldap3/protocol/schemas/__init__.pyo
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ad2012R2.py
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ad2012R2.pyc
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ad2012R2.pyo
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ds389.py
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ds389.pyc
|
||||
${PYSITELIB}/ldap3/protocol/schemas/ds389.pyo
|
||||
${PYSITELIB}/ldap3/protocol/schemas/edir888.py
|
||||
${PYSITELIB}/ldap3/protocol/schemas/edir888.pyc
|
||||
${PYSITELIB}/ldap3/protocol/schemas/edir888.pyo
|
||||
${PYSITELIB}/ldap3/protocol/schemas/slapd24.py
|
||||
${PYSITELIB}/ldap3/protocol/schemas/slapd24.pyc
|
||||
${PYSITELIB}/ldap3/protocol/schemas/slapd24.pyo
|
||||
${PYSITELIB}/ldap3/strategy/__init__.py
|
||||
${PYSITELIB}/ldap3/strategy/__init__.pyc
|
||||
${PYSITELIB}/ldap3/strategy/__init__.pyo
|
||||
${PYSITELIB}/ldap3/strategy/async.py
|
||||
${PYSITELIB}/ldap3/strategy/async.pyc
|
||||
${PYSITELIB}/ldap3/strategy/async.pyo
|
||||
${PYSITELIB}/ldap3/strategy/asyncStream.py
|
||||
${PYSITELIB}/ldap3/strategy/asyncStream.pyc
|
||||
${PYSITELIB}/ldap3/strategy/asyncStream.pyo
|
||||
${PYSITELIB}/ldap3/strategy/base.py
|
||||
${PYSITELIB}/ldap3/strategy/base.pyc
|
||||
${PYSITELIB}/ldap3/strategy/base.pyo
|
||||
${PYSITELIB}/ldap3/strategy/ldifProducer.py
|
||||
${PYSITELIB}/ldap3/strategy/ldifProducer.pyc
|
||||
${PYSITELIB}/ldap3/strategy/ldifProducer.pyo
|
||||
${PYSITELIB}/ldap3/strategy/mockAsync.py
|
||||
${PYSITELIB}/ldap3/strategy/mockAsync.pyc
|
||||
${PYSITELIB}/ldap3/strategy/mockAsync.pyo
|
||||
${PYSITELIB}/ldap3/strategy/mockBase.py
|
||||
${PYSITELIB}/ldap3/strategy/mockBase.pyc
|
||||
${PYSITELIB}/ldap3/strategy/mockBase.pyo
|
||||
${PYSITELIB}/ldap3/strategy/mockSync.py
|
||||
${PYSITELIB}/ldap3/strategy/mockSync.pyc
|
||||
${PYSITELIB}/ldap3/strategy/mockSync.pyo
|
||||
${PYSITELIB}/ldap3/strategy/restartable.py
|
||||
${PYSITELIB}/ldap3/strategy/restartable.pyc
|
||||
${PYSITELIB}/ldap3/strategy/restartable.pyo
|
||||
${PYSITELIB}/ldap3/strategy/reusable.py
|
||||
${PYSITELIB}/ldap3/strategy/reusable.pyc
|
||||
${PYSITELIB}/ldap3/strategy/reusable.pyo
|
||||
${PYSITELIB}/ldap3/strategy/sync.py
|
||||
${PYSITELIB}/ldap3/strategy/sync.pyc
|
||||
${PYSITELIB}/ldap3/strategy/sync.pyo
|
||||
${PYSITELIB}/ldap3/utils/__init__.py
|
||||
${PYSITELIB}/ldap3/utils/__init__.pyc
|
||||
${PYSITELIB}/ldap3/utils/__init__.pyo
|
||||
${PYSITELIB}/ldap3/utils/asn1.py
|
||||
${PYSITELIB}/ldap3/utils/asn1.pyc
|
||||
${PYSITELIB}/ldap3/utils/asn1.pyo
|
||||
${PYSITELIB}/ldap3/utils/ciDict.py
|
||||
${PYSITELIB}/ldap3/utils/ciDict.pyc
|
||||
${PYSITELIB}/ldap3/utils/ciDict.pyo
|
||||
${PYSITELIB}/ldap3/utils/config.py
|
||||
${PYSITELIB}/ldap3/utils/config.pyc
|
||||
${PYSITELIB}/ldap3/utils/config.pyo
|
||||
${PYSITELIB}/ldap3/utils/conv.py
|
||||
${PYSITELIB}/ldap3/utils/conv.pyc
|
||||
${PYSITELIB}/ldap3/utils/conv.pyo
|
||||
${PYSITELIB}/ldap3/utils/dn.py
|
||||
${PYSITELIB}/ldap3/utils/dn.pyc
|
||||
${PYSITELIB}/ldap3/utils/dn.pyo
|
||||
${PYSITELIB}/ldap3/utils/hashed.py
|
||||
${PYSITELIB}/ldap3/utils/hashed.pyc
|
||||
${PYSITELIB}/ldap3/utils/hashed.pyo
|
||||
${PYSITELIB}/ldap3/utils/log.py
|
||||
${PYSITELIB}/ldap3/utils/log.pyc
|
||||
${PYSITELIB}/ldap3/utils/log.pyo
|
||||
${PYSITELIB}/ldap3/utils/ntlm.py
|
||||
${PYSITELIB}/ldap3/utils/ntlm.pyc
|
||||
${PYSITELIB}/ldap3/utils/ntlm.pyo
|
||||
${PYSITELIB}/ldap3/utils/ordDict.py
|
||||
${PYSITELIB}/ldap3/utils/ordDict.pyc
|
||||
${PYSITELIB}/ldap3/utils/ordDict.pyo
|
||||
${PYSITELIB}/ldap3/utils/repr.py
|
||||
${PYSITELIB}/ldap3/utils/repr.pyc
|
||||
${PYSITELIB}/ldap3/utils/repr.pyo
|
||||
${PYSITELIB}/ldap3/utils/tls_backport.py
|
||||
${PYSITELIB}/ldap3/utils/tls_backport.pyc
|
||||
${PYSITELIB}/ldap3/utils/tls_backport.pyo
|
||||
${PYSITELIB}/ldap3/utils/uri.py
|
||||
${PYSITELIB}/ldap3/utils/uri.pyc
|
||||
${PYSITELIB}/ldap3/utils/uri.pyo
|
||||
${PYSITELIB}/ldap3/version.py
|
||||
${PYSITELIB}/ldap3/version.pyc
|
||||
${PYSITELIB}/ldap3/version.pyo
|
6
databases/py-ldap3/distinfo
Normal file
6
databases/py-ldap3/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (ldap3-2.1.1.tar.gz) = 6f115498b5aeaa510372c591c49384ec8f6e89a9
|
||||
RMD160 (ldap3-2.1.1.tar.gz) = cc13f7b47ca4622ac1a268014fd6a437c58b13e3
|
||||
SHA512 (ldap3-2.1.1.tar.gz) = f81aa7cad84f89acbdf400a10ed9f2a2e3e6f4602eb64ed4ab32d1d5fc20394ef5a041d0d6068986114908cd6c91cff84ed24a2180196e8a1b1f726b49b463b4
|
||||
Size (ldap3-2.1.1.tar.gz) = 314500 bytes
|
1
databases/py-trytond-ldap-authentication/DESCR
Normal file
1
databases/py-trytond-ldap-authentication/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The LDAP authentication module of the Tryton application platform.
|
18
databases/py-trytond-ldap-authentication/Makefile
Normal file
18
databases/py-trytond-ldap-authentication/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_ldap_authentication
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= databases python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= LDAP authentication module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-ldap3-[0-9]*:../../databases/py-ldap3
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
39
databases/py-trytond-ldap-authentication/PLIST
Normal file
39
databases/py-trytond-ldap-authentication/PLIST
Normal file
|
@ -0,0 +1,39 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/__init__.py
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/res.py
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/res.pyc
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/res.pyo
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/test_ldap_authentication.py
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/test_ldap_authentication.pyc
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tests/test_ldap_authentication.pyo
|
||||
${PYSITELIB}/trytond/modules/ldap_authentication/tryton.cfg
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
databases/py-trytond-ldap-authentication/distinfo
Normal file
6
databases/py-trytond-ldap-authentication/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_ldap_authentication-4.2.0.tar.gz) = 2e76856719718efade1412dd5787f3e668417e26
|
||||
RMD160 (tryton-4.2/trytond_ldap_authentication-4.2.0.tar.gz) = e6c83c71adcfda09250e2f39c09a281e7ce35d5b
|
||||
SHA512 (tryton-4.2/trytond_ldap_authentication-4.2.0.tar.gz) = 973f3fcba57d4846de8c1eee7b73d41f898dcf25afcdcc5f8e73fe3bb4d3211ed76857e31229659ba278a777c831cc75a4e98eb89a2147e2ac3ff7ecfd35bdcb
|
||||
Size (tryton-4.2/trytond_ldap_authentication-4.2.0.tar.gz) = 21675 bytes
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.2339 2016/12/03 23:54:56 wiedi Exp $
|
||||
# $NetBSD: Makefile,v 1.2340 2016/12/04 21:12:58 rodent Exp $
|
||||
#
|
||||
|
||||
COMMENT= Development utilities
|
||||
|
@ -1723,6 +1723,7 @@ SUBDIR+= py-Pyro
|
|||
SUBDIR+= py-ZopeComponent
|
||||
SUBDIR+= py-ZopeEvent
|
||||
SUBDIR+= py-ZopeInterface
|
||||
SUBDIR+= py-appdirs
|
||||
SUBDIR+= py-argcomplete
|
||||
SUBDIR+= py-argh
|
||||
SUBDIR+= py-argparse
|
||||
|
|
2
devel/py-appdirs/DESCR
Normal file
2
devel/py-appdirs/DESCR
Normal file
|
@ -0,0 +1,2 @@
|
|||
A small Python module for determining appropriate " + "platform-specific dirs,
|
||||
e.g. a "user data dir"
|
18
devel/py-appdirs/Makefile
Normal file
18
devel/py-appdirs/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
DISTNAME= appdirs-1.4.0
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=a/appdirs/}
|
||||
|
||||
MAINTAINER= kamelderouiche@yahoo.com
|
||||
HOMEPAGE= http://github.com/ActiveState/appdirs
|
||||
COMMENT= Module for determining appropriate, platform-specific dirs
|
||||
LICENSE= mit
|
||||
|
||||
WRKSRC= ${WRKDIR}/appdirs-1.4.0
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
8
devel/py-appdirs/PLIST
Normal file
8
devel/py-appdirs/PLIST
Normal file
|
@ -0,0 +1,8 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/appdirs.py
|
||||
${PYSITELIB}/appdirs.pyc
|
||||
${PYSITELIB}/appdirs.pyo
|
5
devel/py-appdirs/distinfo
Normal file
5
devel/py-appdirs/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (appdirs-1.4.0.tar.gz) = a23245ad884a605bc845855cbf9e17991bc274ed
|
||||
RMD160 (appdirs-1.4.0.tar.gz) = 50000f1b504ed024a976cde1426883b301aa977e
|
||||
Size (appdirs-1.4.0.tar.gz) = 14358 bytes
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.4 2015/11/22 08:05:07 richard Exp $
|
||||
$NetBSD: distinfo,v 1.5 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/proteus-3.8.0.tar.gz) = 18a47cf46544d4971d68a1e14a350ebe4de86cbf
|
||||
RMD160 (tryton-3.8/proteus-3.8.0.tar.gz) = 6f76cd3f255c4c134d8295c6738236271935f7ea
|
||||
SHA512 (tryton-3.8/proteus-3.8.0.tar.gz) = d448ad9a535a2cb70181777b19da65e488ef2eeed5d9f09ef12b95877984305dbdb4ae02571de7679454d247b31080ec703b6be35db0699a2e76106ef6578b96
|
||||
Size (tryton-3.8/proteus-3.8.0.tar.gz) = 37154 bytes
|
||||
SHA1 (tryton-4.2/proteus-4.2.0.tar.gz) = 0d3bb9b5b129cdfb9d5907b9d9a3532a143d8327
|
||||
RMD160 (tryton-4.2/proteus-4.2.0.tar.gz) = 1c66511574067c94abffbaaf399f26e200e5a44b
|
||||
SHA512 (tryton-4.2/proteus-4.2.0.tar.gz) = 9bafbcb7cab43a6624dc70933efe2267e72cdd788c6dd87a1d4673ffde3c96b39ab99f430133ed10c69d563ce023bca3dbe74694c56d867d13774b44ffea47cf
|
||||
Size (tryton-4.2/proteus-4.2.0.tar.gz) = 37393 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.21 2016/08/28 15:48:31 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.22 2016/12/04 21:12:59 rodent Exp $
|
||||
TRYTON_MODULE_NAME= tryton
|
||||
PKGREVISION= 1
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
|
@ -12,11 +12,11 @@ LICENSE= gnu-gpl-v3
|
|||
USE_LANGUAGES= # none
|
||||
|
||||
PYTHON_VERSIONED_DEPENDENCIES= dateutil
|
||||
PY_PATCHPLIST= yes
|
||||
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 34 35
|
||||
|
||||
.include "options.mk"
|
||||
|
||||
OPSYSVARS+= DEPENDS
|
||||
DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet
|
||||
DEPENDS.Darwin+= ${PYPKGPREFIX}-py2app-[0-9]*:../../devel/py-py2app
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
@comment $NetBSD: PLIST,v 1.5 2015/11/22 08:05:07 richard Exp $
|
||||
@comment $NetBSD: PLIST,v 1.6 2016/12/04 21:12:59 rodent Exp $
|
||||
bin/tryton${PYVERSSUFFIX}
|
||||
${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}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/tryton/__init__.py
|
||||
${PYSITELIB}/tryton/__init__.pyc
|
||||
|
@ -93,45 +93,48 @@ ${PYSITELIB}/tryton/common/timedelta.pyo
|
|||
${PYSITELIB}/tryton/common/treeviewcontrol.py
|
||||
${PYSITELIB}/tryton/common/treeviewcontrol.pyc
|
||||
${PYSITELIB}/tryton/common/treeviewcontrol.pyo
|
||||
${PYSITELIB}/tryton/common/widget_style.py
|
||||
${PYSITELIB}/tryton/common/widget_style.pyc
|
||||
${PYSITELIB}/tryton/common/widget_style.pyo
|
||||
${PYSITELIB}/tryton/config.py
|
||||
${PYSITELIB}/tryton/config.pyc
|
||||
${PYSITELIB}/tryton/config.pyo
|
||||
${PYSITELIB}/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/de_DE/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/de_DE/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_AR/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_AR/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_CO/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_CO/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_EC/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_EC/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_ES/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_ES/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_MX/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_MX/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/bg/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/bg/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/ca/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/ca/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/cs/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/cs/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/de/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/de/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/es_419/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/fr/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/fr/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/it_IT/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/lo/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/lo/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/lt/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/lt/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/nl/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/nl/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/pl/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/pl/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/ru/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/ru/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/sl/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/sl/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo
|
||||
${PYSITELIB}/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-attachment-hi.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-attachment.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-bookmark.svg
|
||||
|
@ -165,6 +168,8 @@ ${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-mail-message-new.svg
|
|||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-mail-message.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-new.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-noimage.png
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-note-hi.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-note.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-open.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-preferences-system-session.svg
|
||||
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-preferences-system.svg
|
||||
|
@ -210,18 +215,9 @@ ${PYSITELIB}/tryton/gui/window/attachment.pyo
|
|||
${PYSITELIB}/tryton/gui/window/board.py
|
||||
${PYSITELIB}/tryton/gui/window/board.pyc
|
||||
${PYSITELIB}/tryton/gui/window/board.pyo
|
||||
${PYSITELIB}/tryton/gui/window/dbcreate.py
|
||||
${PYSITELIB}/tryton/gui/window/dbcreate.pyc
|
||||
${PYSITELIB}/tryton/gui/window/dbcreate.pyo
|
||||
${PYSITELIB}/tryton/gui/window/dbdumpdrop.py
|
||||
${PYSITELIB}/tryton/gui/window/dbdumpdrop.pyc
|
||||
${PYSITELIB}/tryton/gui/window/dbdumpdrop.pyo
|
||||
${PYSITELIB}/tryton/gui/window/dblogin.py
|
||||
${PYSITELIB}/tryton/gui/window/dblogin.pyc
|
||||
${PYSITELIB}/tryton/gui/window/dblogin.pyo
|
||||
${PYSITELIB}/tryton/gui/window/dbrestore.py
|
||||
${PYSITELIB}/tryton/gui/window/dbrestore.pyc
|
||||
${PYSITELIB}/tryton/gui/window/dbrestore.pyo
|
||||
${PYSITELIB}/tryton/gui/window/email.py
|
||||
${PYSITELIB}/tryton/gui/window/email.pyc
|
||||
${PYSITELIB}/tryton/gui/window/email.pyo
|
||||
|
@ -237,6 +233,9 @@ ${PYSITELIB}/tryton/gui/window/limit.pyo
|
|||
${PYSITELIB}/tryton/gui/window/nomodal.py
|
||||
${PYSITELIB}/tryton/gui/window/nomodal.pyc
|
||||
${PYSITELIB}/tryton/gui/window/nomodal.pyo
|
||||
${PYSITELIB}/tryton/gui/window/note.py
|
||||
${PYSITELIB}/tryton/gui/window/note.pyc
|
||||
${PYSITELIB}/tryton/gui/window/note.pyo
|
||||
${PYSITELIB}/tryton/gui/window/preference.py
|
||||
${PYSITELIB}/tryton/gui/window/preference.pyc
|
||||
${PYSITELIB}/tryton/gui/window/preference.pyo
|
||||
|
@ -300,6 +299,9 @@ ${PYSITELIB}/tryton/gui/window/view_form/view/calendar_gtk/dates_period.pyo
|
|||
${PYSITELIB}/tryton/gui/window/view_form/view/calendar_gtk/toolbar.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/calendar_gtk/toolbar.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/calendar_gtk/toolbar.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/__init__.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/__init__.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/__init__.pyo
|
||||
|
@ -345,6 +347,9 @@ ${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/one2one.pyo
|
|||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/progressbar.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/progressbar.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/progressbar.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/pyson.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/pyson.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/pyson.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/reference.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/reference.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/reference.pyo
|
||||
|
@ -369,9 +374,9 @@ ${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/url.pyo
|
|||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/widget.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/widget.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form_gtk/widget.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/form.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/__init__.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/__init__.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/__init__.pyo
|
||||
|
@ -387,9 +392,9 @@ ${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/line.pyo
|
|||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/pie.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/pie.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph_gtk/pie.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/graph.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/__init__.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/__init__.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/__init__.pyo
|
||||
|
@ -399,12 +404,12 @@ ${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/editabletree.pyo
|
|||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/widget.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/widget.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list_gtk/widget.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/list.pyo
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/screen_container.py
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/screen_container.pyc
|
||||
${PYSITELIB}/tryton/gui/window/view_form/view/screen_container.pyo
|
||||
${PYSITELIB}/tryton/gui/window/win_csv.py
|
||||
${PYSITELIB}/tryton/gui/window/win_csv.pyc
|
||||
${PYSITELIB}/tryton/gui/window/win_csv.pyo
|
||||
${PYSITELIB}/tryton/gui/window/win_export.py
|
||||
${PYSITELIB}/tryton/gui/window/win_export.pyc
|
||||
${PYSITELIB}/tryton/gui/window/win_export.pyo
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.14 2015/11/22 08:05:07 richard Exp $
|
||||
$NetBSD: distinfo,v 1.15 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/tryton-3.8.2.tar.gz) = 1bf4a0e5ff5dcc7e632a44dc74dee58586500b92
|
||||
RMD160 (tryton-3.8/tryton-3.8.2.tar.gz) = 3118a74fd6d6a508645c8d8a02e51646f0ee9a39
|
||||
SHA512 (tryton-3.8/tryton-3.8.2.tar.gz) = 4b1626ed95a229ea59bfbec50a8b51ae8412e46ad7150cbf3d05162c479ddfc053d570b2925107eeddcf914e346055db4508cde6ee66583cece6d3c86c00118b
|
||||
Size (tryton-3.8/tryton-3.8.2.tar.gz) = 810794 bytes
|
||||
SHA1 (tryton-4.2/tryton-4.2.0.tar.gz) = 2a10cee83e19a02f6c3fd2382bfda1a22053f175
|
||||
RMD160 (tryton-4.2/tryton-4.2.0.tar.gz) = ecd245cbd4fae77348578d37d2f868b3139d1427
|
||||
SHA512 (tryton-4.2/tryton-4.2.0.tar.gz) = 698ee08d3be09a7903211cc6573646e4f8be7f62ccc631a923cc4158c5ba07dc583955dd44a072f56e0b7fe97734a55c14d683133205ca7dc4100df7baa41e1f
|
||||
Size (tryton-4.2/tryton-4.2.0.tar.gz) = 707272 bytes
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
bin/trytond-admin @PREFIX@/bin/trytond-admin@PYVERSSUFFIX@
|
||||
bin/trytond-cron @PREFIX@/bin/trytond-cron@PYVERSSUFFIX@
|
||||
bin/trytond @PREFIX@/bin/trytond@PYVERSSUFFIX@
|
||||
|
|
13
devel/py-trytond/MESSAGE
Normal file
13
devel/py-trytond/MESSAGE
Normal file
|
@ -0,0 +1,13 @@
|
|||
===========================================================================
|
||||
$NetBSD: MESSAGE,v 1.1 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
Getting started with Tryton:
|
||||
|
||||
0. Modify the stock configuration file and setup your database connection;
|
||||
|
||||
1. Create the database, roles, schemas, etc. depending on your backend;
|
||||
|
||||
2. Run: trytond-admin@PYVERSSUFFIX@ -c @PKG_SYSCONFDIR@/tryton/trytond.conf -d $YOURDB --all
|
||||
|
||||
3. Start trytond: @RC_SCRIPTS_DIR@/trytond start;
|
||||
===========================================================================
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.14 2016/08/28 15:48:31 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2016/12/04 21:12:59 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= devel python
|
||||
|
@ -8,11 +8,14 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Server of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-python-sql>=0.2:../../databases/py-python-sql
|
||||
DEPENDS+= ${PYPKGPREFIX}-python-sql>=0.4:../../databases/py-python-sql
|
||||
DEPENDS+= ${PYPKGPREFIX}-polib-[0-9]*:../../devel/py-polib
|
||||
DEPENDS+= ${PYPKGPREFIX}-wrapt-[0-9]*:../../devel/py-wrapt
|
||||
DEPENDS+= ${PYPKGPREFIX}-bcrypt-[0-9]*:../../security/py-bcrypt
|
||||
DEPENDS+= ${PYPKGPREFIX}-relatorio>=0.2.0:../../textproc/py-relatorio
|
||||
DEPENDS+= ${PYPKGPREFIX}-lxml>=2.0:../../textproc/py-lxml
|
||||
DEPENDS+= ${PYPKGPREFIX}-genshi-[0-9]*:../../www/py-genshi
|
||||
DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
@ -33,15 +36,34 @@ REPLACE_PYTHON+= trytond/tests/test_tryton.py
|
|||
|
||||
PYTHON_VERSIONED_DEPENDENCIES= dateutil
|
||||
PY_PATCHPLIST= yes
|
||||
PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
|
||||
|
||||
.include "options.mk"
|
||||
|
||||
OPSYSVARS+= DEPENDS
|
||||
DEPENDS.Darwin+= ${PYPKGPREFIX}-py2app-[0-9]*:../../devel/py-py2app
|
||||
|
||||
RCD_SCRIPTS= trytond
|
||||
CONFDIR= ${PKG_SYSCONFDIR}/${PKGBASE}
|
||||
EGDIR= share/examples/${PKGBASE}
|
||||
INSTALLATION_DIRS+= ${EGDIR} share/${PKGBASE}
|
||||
|
||||
CONF_FILES+= ${EGDIR}/trytond.conf.example \
|
||||
${CONFDIR}/trytond.conf
|
||||
CONF_FILES+= ${EGDIR}/logging.conf.example \
|
||||
${CONFDIR}/logging.conf
|
||||
|
||||
post-install:
|
||||
${MV} ${DESTDIR}${PREFIX}/bin/trytond-admin \
|
||||
${DESTDIR}${PREFIX}/bin/trytond-admin${PYVERSSUFFIX}
|
||||
${MV} ${DESTDIR}${PREFIX}/bin/trytond-cron \
|
||||
${DESTDIR}${PREFIX}/bin/trytond-cron${PYVERSSUFFIX}
|
||||
${MV} ${DESTDIR}${PREFIX}/bin/trytond \
|
||||
${DESTDIR}${PREFIX}/bin/trytond${PYVERSSUFFIX}
|
||||
${INSTALL_DATA} ${FILESDIR}/trytond.conf.example \
|
||||
${DESTDIR}${PREFIX}/${EGDIR}/trytond.conf.example
|
||||
${INSTALL_DATA} ${FILESDIR}/logging.conf.example \
|
||||
${DESTDIR}${PREFIX}/${EGDIR}/logging.conf.example
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
|
|
|
@ -1,128 +1,249 @@
|
|||
# $NetBSD: Makefile.common,v 1.10 2016/07/09 13:03:44 wiz Exp $
|
||||
# $NetBSD: Makefile.common,v 1.11 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
# used by meta-pkgs/py-tryton-platform/Makefile
|
||||
# used by databases/py-ldap-authentication/Makefile
|
||||
# used by devel/py-proteus/Makefile
|
||||
# used by devel/py-tryton/Makefile
|
||||
# used by devel/py-trytond/Makefile
|
||||
# used by finance/py-trytond-account-asset/Makefile
|
||||
# used by finance/py-trytond-account-be/Makefile
|
||||
# used by finance/py-trytond-account-credit-limit/Makefile
|
||||
# used by finance/py-trytond-account-de-skr03/Makefile
|
||||
# used by finance/py-trytond-account-deposit/Makefile
|
||||
# used by finance/py-trytond-account-dunning/Makefile
|
||||
# used by finance/py-trytond-account-dunning-fee/Makefile
|
||||
# used by finance/py-trytond-account-dunning-letter/Makefile
|
||||
# used by finance/py-trytond-account-fr/Makefile
|
||||
# used by finance/py-trytond-account-invoice-history/Makefile
|
||||
# used by finance/py-trytond-account-invoice-line-standalone/Makefile
|
||||
# used by finance/py-trytond-account-invoice-stock/Makefile
|
||||
# used by finance/py-trytond-account-invoice/Makefile
|
||||
# used by finance/py-trytond-account-payment-clearing/Makefile
|
||||
# used by finance/py-trytond-account-payment-sepa/Makefile
|
||||
# used by finance/py-trytond-account-payment/Makefile
|
||||
# used by finance/py-trytond-account-payment-sepa/Makefile
|
||||
# used by finance/py-trytond-account-payment-sepa-cfonb/Makefile
|
||||
# used by finance/py-trytond-account-product/Makefile
|
||||
# used by finance/py-trytond-account-statement/Makefile
|
||||
# used by finance/py-trytond-account-stock-anglo-saxon/Makefile
|
||||
# used by finance/py-trytond-account-stock-continental/Makefile
|
||||
# used by finance/py-trytond-account-stock-landed-cost/Makefile
|
||||
# used by finance/py-trytond-account-stock-landed-cost-weight/Makefile
|
||||
# used by finance/py-trytond-account-tax-rule-country/Makefile
|
||||
# used by finance/py-trytond-account/Makefile
|
||||
# used by finance/py-trytond-analytic-account/Makefile
|
||||
# used by finance/py-trytond-analytic-invoice/Makefile
|
||||
# used by finance/py-trytond-analytic-purchase/Makefile
|
||||
# used by finance/py-trytond-analytic-sale/Makefile
|
||||
# used by finance/py-trytond-bank/Makefile
|
||||
# used by finance/py-trytond-commission-waiting/Makefile
|
||||
# used by finance/py-trytond-commission/Makefile
|
||||
# used by finance/py-trytond-currency/Makefile
|
||||
# used by finance/py-trytond-customs/Makefile
|
||||
# used by finance/py-trytond-product-cost-fifo/Makefile
|
||||
# used by finance/py-trytond-product-cost-history/Makefile
|
||||
# used by finance/py-trytond-product-price-list/Makefile
|
||||
# used by finance/py-trytond-purchase-invoice-line-standalone/Makefile
|
||||
# used by finance/py-trytond-purchase-request/Makefile
|
||||
# used by finance/py-trytond-purchase-requisition/Makefile
|
||||
# used by finance/py-trytond-purchase-shipment-cost/Makefile
|
||||
# used by finance/py-trytond-purchase/Makefile
|
||||
# used by finance/py-trytond-sale/Makefile
|
||||
# used by finance/py-trytond-sale-complaint/Makefile
|
||||
# used by finance/py-trytond-sale-credit-limit/Makefile
|
||||
# used by finance/py-trytond-sale-extra/Makefile
|
||||
# used by finance/py-trytond-sale-invoice-grouping/Makefile
|
||||
# used by finance/py-trytond-sale-opportunity/Makefile
|
||||
# used by finance/py-trytond-sale-price-list/Makefile
|
||||
# used by finance/py-trytond-sale-promotion/Makefile
|
||||
# used by finance/py-trytond-sale-shipment-cost/Makefile
|
||||
# used by finance/py-trytond-sale-shipment-grouping/Makefile
|
||||
# used by finance/py-trytond-sale-stock-quantity/Makefile
|
||||
# used by finance/py-trytond-sale-supply/Makefile
|
||||
# used by finance/py-trytond-sale-supply-drop-shipment/Makefile
|
||||
# used by finance/py-trytond-stock-supply-day/Makefile
|
||||
# used by finance/py-trytond-stock-supply-forecast/Makefile
|
||||
# used by finance/py-trytond-stock-supply-production/Makefile
|
||||
# used by finance/py-trytond-stock-supply/Makefile
|
||||
# used by geography/py-trytond-country/Makefile
|
||||
# used by geography/py-trytond-google-maps/Makefile
|
||||
# used by meta-pkgs/py-tryton-platform/Makefile
|
||||
# used by misc/py-trytond-carrier-percentage/Makefile
|
||||
# used by misc/py-trytond-carrier-weight/Makefile
|
||||
# used by misc/py-trytond-carrier/Makefile
|
||||
# used by misc/py-trytond-company/Makefile
|
||||
# used by misc/py-trytond-dashboard/Makefile
|
||||
# used by misc/py-trytond-party-relationship/Makefile
|
||||
# used by misc/py-trytond-party-siret/Makefile
|
||||
# used by misc/py-trytond-party-vcarddav/Makefile
|
||||
# used by misc/py-trytond-party/Makefile
|
||||
# used by misc/py-trytond-product-attribute/Makefile
|
||||
# used by misc/py-trytond-product-classification-taxonomic/Makefile
|
||||
# used by misc/py-trytond-product-classification/Makefile
|
||||
# used by misc/py-trytond-product-measurements/Makefile
|
||||
# used by misc/py-trytond-product/Makefile
|
||||
# used by misc/py-trytond-production-routing/Makefile
|
||||
# used by misc/py-trytond-production-split/Makefile
|
||||
# used by misc/py-trytond-production-work-timesheet/Makefile
|
||||
# used by misc/py-trytond-production-work/Makefile
|
||||
# used by misc/py-trytond-production/Makefile
|
||||
# used by misc/py-trytond-project-invoice/Makefile
|
||||
# used by misc/py-trytond-project-plan/Makefile
|
||||
# used by misc/py-trytond-project-revenue/Makefile
|
||||
# used by misc/py-trytond-project/Makefile
|
||||
# used by misc/py-trytond-stock-forecast/Makefile
|
||||
# used by misc/py-trytond-stock-inventory-location/Makefile
|
||||
# used by misc/py-trytond-stock-location-sequence/Makefile
|
||||
# used by misc/py-trytond-stock-lot-sled/Makefile
|
||||
# used by misc/py-trytond-stock-lot/Makefile
|
||||
# used by misc/py-trytond-stock-package-shipping-dpd/Makefile
|
||||
# used by misc/py-trytond-stock-package-shipping-ups/Makefile
|
||||
# used by misc/py-trytond-stock-package-shipping/Makefile
|
||||
# used by misc/py-trytond-stock-package/Makefile
|
||||
# used by misc/py-trytond-stock-product-location/Makefile
|
||||
# used by misc/py-trytond-stock-split/Makefile
|
||||
# used by misc/py-trytond-stock/Makefile
|
||||
# used by security/py-trytond-authentication-sms/Makefile
|
||||
# used by time/py-trytond-calendar-classification/Makefile
|
||||
# used by time/py-trytond-calendar-scheduling/Makefile
|
||||
# used by time/py-trytond-calendar-todo/Makefile
|
||||
# used by time/py-trytond-calendar/Makefile
|
||||
# used by time/py-trytond-company-work-time/Makefile
|
||||
# used by time/py-trytond-timesheet-cost/Makefile
|
||||
# used by time/py-trytond-timesheet/Makefile
|
||||
# used by www/py-trytond-web-user/Makefile
|
||||
# used by www/py-trytond-webdav/Makefile
|
||||
|
||||
TRYTON_BASEVER= 3.8
|
||||
TRYTON_BASEVER= 4.2
|
||||
|
||||
#specific module revisions:
|
||||
#MODULE_REVISION.proteus= 1
|
||||
MODULE_REVISION.tryton= 2
|
||||
#MODULE_REVISION.trytond= 3
|
||||
#MODULE_REVISION.trytond_account= 1
|
||||
#MODULE_REVISION.trytond_account_asset= 1
|
||||
#MODULE_REVISION.trytond_account_fr= 0
|
||||
#MODULE_REVISION.trytond_account_invoice= 1
|
||||
#MODULE_REVISION.trytond_account_invoice_history= 1
|
||||
#MODULE_REVISION.trytond_account_invoice_line_standalone= 1
|
||||
#MODULE_REVISION.trytond_account_invoice_stock= 1
|
||||
#MODULE_REVISION.trytond_account_payment= 1
|
||||
#MODULE_REVISION.trytond_account_payment_clearing= 1
|
||||
#MODULE_REVISION.trytond_account_payment_sepa= 1
|
||||
#MODULE_REVISION.trytond_account_product= 1
|
||||
#MODULE_REVISION.trytond_account_statement= 1
|
||||
#MODULE_REVISION.trytond_account_stock_continental= 1
|
||||
#MODULE_REVISION.trytond_analytic_account= 1
|
||||
#MODULE_REVISION.trytond_analytic_invoice= 1
|
||||
#MODULE_REVISION.trytond_analytic_purchase= 1
|
||||
#MODULE_REVISION.trytond_analytic_sale= 1
|
||||
#MODULE_REVISION.trytond_bank= 1
|
||||
#MODULE_REVISION.trytond_calendar= 1
|
||||
#MODULE_REVISION.trytond_carrier= 1
|
||||
#MODULE_REVISION.trytond_carrier_percentage= 1
|
||||
#MODULE_REVISION.trytond_carrier_weight= 1
|
||||
#MODULE_REVISION.trytond_company= 1
|
||||
#MODULE_REVISION.trytond_company_work_time= 1
|
||||
#MODULE_REVISION.trytond_country= 1
|
||||
#MODULE_REVISION.trytond_currency= 1
|
||||
#MODULE_REVISION.trytond_dashboard= 1
|
||||
#MODULE_REVISION.trytond_google_maps= 1
|
||||
#MODULE_REVISION.trytond_ldap_authentication= 1
|
||||
#MODULE_REVISION.trytond_party= 1
|
||||
#MODULE_REVISION.trytond_party_relationship= 1
|
||||
#MODULE_REVISION.trytond_party_siret= 1
|
||||
#MODULE_REVISION.trytond_party_vcarddav= 1
|
||||
#MODULE_REVISION.trytond_product= 1
|
||||
#MODULE_REVISION.trytond_product_attribute= 1
|
||||
#MODULE_REVISION.trytond_product_cost_fifo= 1
|
||||
#MODULE_REVISION.trytond_product_cost_history= 1
|
||||
#MODULE_REVISION.trytond_product_measurements= 1
|
||||
#MODULE_REVISION.trytond_product_price_list= 1
|
||||
#MODULE_REVISION.trytond_production= 1
|
||||
#MODULE_REVISION.trytond_project= 1
|
||||
#MODULE_REVISION.trytond_project_invoice= 1
|
||||
#MODULE_REVISION.trytond_project_plan= 1
|
||||
#MODULE_REVISION.trytond_project_revenue= 1
|
||||
#MODULE_REVISION.trytond_purchase= 1
|
||||
#MODULE_REVISION.trytond_purchase_invoice_line_standalone= 1
|
||||
#MODULE_REVISION.trytond_purchase_shipment_cost= 1
|
||||
#MODULE_REVISION.trytond_sale= 1
|
||||
#MODULE_REVISION.trytond_sale_credit_limit= 1
|
||||
#MODULE_REVISION.trytond_sale_invoice_grouping= 1
|
||||
#MODULE_REVISION.trytond_sale_opportunity= 2
|
||||
#MODULE_REVISION.trytond_sale_price_list= 1
|
||||
#MODULE_REVISION.trytond_sale_shipment_cost= 1
|
||||
#MODULE_REVISION.trytond_sale_shipment_grouping= 1
|
||||
#MODULE_REVISION.trytond_sale_supply= 1
|
||||
#MODULE_REVISION.trytond_sale_supply_drop_shipment= 1
|
||||
#MODULE_REVISION.trytond_stock= 1
|
||||
#MODULE_REVISION.trytond_stock_forecast= 1
|
||||
#MODULE_REVISION.trytond_stock_inventory_location= 1
|
||||
#MODULE_REVISION.trytond_stock_location_sequence= 1
|
||||
#MODULE_REVISION.trytond_stock_lot= 1
|
||||
#MODULE_REVISION.trytond_stock_package= 1
|
||||
#MODULE_REVISION.trytond_stock_product_location= 1
|
||||
#MODULE_REVISION.trytond_stock_split= 1
|
||||
#MODULE_REVISION.trytond_stock_supply= 1
|
||||
#MODULE_REVISION.trytond_stock_supply_day= 1
|
||||
#MODULE_REVISION.trytond_stock_supply_production= 1
|
||||
#MODULE_REVISION.trytond_timesheet= 1
|
||||
#MODULE_REVISION.trytond_timesheet_cost= 1
|
||||
# NB: the following commands can help getting a list of module revisions:
|
||||
#
|
||||
# default to 0 if not defined above
|
||||
MODULE_REVISION.${TRYTON_MODULE_NAME}?= 0
|
||||
# elinks "http://downloads.tryton.org/4.2/" | grep -o 'http:[^"]*' |\
|
||||
# grep -Ev '\.asc|SHA|\.exe|\.dmg|sao|last' | cut -d'/' -f 5 | sort -d
|
||||
#
|
||||
# links -source "http://downloads.tryton.org/4.2/" | grep -Eo '.*.tar.gz' |\
|
||||
# grep -Ev '\.asc|SHA|\.exe|\.dmg|sao|last' | html2text -nobs
|
||||
#
|
||||
# after updating the revisions below, distinfo can be regenerated
|
||||
# for all the updated modules as follows:
|
||||
#
|
||||
# cd ../../meta-pkgs/py-tryton-platform
|
||||
# make fetch-list | sh # or 'bmake' when not on NetBSD
|
||||
# for p in ../../*/py-tryton*; do make -C $p mdi; done
|
||||
# cd ../../devel/py-proteus
|
||||
# make fetch-list | sh ; make mdi
|
||||
#
|
||||
# specific module revisions:
|
||||
MODULE_REVISION.proteus= 0
|
||||
MODULE_REVISION.tryton= 0
|
||||
MODULE_REVISION.trytond= 0
|
||||
MODULE_REVISION.trytond_account= 0
|
||||
MODULE_REVISION.trytond_account_asset= 0
|
||||
MODULE_REVISION.trytond_account_be= 0
|
||||
MODULE_REVISION.trytond_account_credit_limit= 0
|
||||
MODULE_REVISION.trytond_account_deposit= 0
|
||||
MODULE_REVISION.trytond_account_de_skr03= 0
|
||||
MODULE_REVISION.trytond_account_dunning= 0
|
||||
MODULE_REVISION.trytond_account_dunning_fee= 0
|
||||
MODULE_REVISION.trytond_account_dunning_letter= 0
|
||||
MODULE_REVISION.trytond_account_fr= 0
|
||||
MODULE_REVISION.trytond_account_invoice= 0
|
||||
MODULE_REVISION.trytond_account_invoice_history= 0
|
||||
MODULE_REVISION.trytond_account_invoice_line_standalone= 0
|
||||
MODULE_REVISION.trytond_account_invoice_stock= 0
|
||||
MODULE_REVISION.trytond_account_payment= 0
|
||||
MODULE_REVISION.trytond_account_payment_clearing= 0
|
||||
MODULE_REVISION.trytond_account_payment_sepa= 0
|
||||
MODULE_REVISION.trytond_account_payment_sepa_cfonb= 0
|
||||
MODULE_REVISION.trytond_account_product= 0
|
||||
MODULE_REVISION.trytond_account_statement= 0
|
||||
MODULE_REVISION.trytond_account_stock_anglo_saxon= 0
|
||||
MODULE_REVISION.trytond_account_stock_continental= 0
|
||||
MODULE_REVISION.trytond_account_stock_landed_cost= 0
|
||||
MODULE_REVISION.trytond_account_stock_landed_cost_weight= 0
|
||||
MODULE_REVISION.trytond_account_tax_rule_country= 0
|
||||
MODULE_REVISION.trytond_analytic_account= 0
|
||||
MODULE_REVISION.trytond_analytic_invoice= 0
|
||||
MODULE_REVISION.trytond_analytic_purchase= 0
|
||||
MODULE_REVISION.trytond_analytic_sale= 0
|
||||
MODULE_REVISION.trytond_authentication_sms= 0
|
||||
MODULE_REVISION.trytond_bank= 0
|
||||
MODULE_REVISION.trytond_calendar= 0
|
||||
MODULE_REVISION.trytond_calendar_classification= 0
|
||||
MODULE_REVISION.trytond_calendar_scheduling= 0
|
||||
MODULE_REVISION.trytond_calendar_todo= 0
|
||||
MODULE_REVISION.trytond_carrier= 0
|
||||
MODULE_REVISION.trytond_carrier_percentage= 0
|
||||
MODULE_REVISION.trytond_carrier_weight= 0
|
||||
MODULE_REVISION.trytond_commission= 0
|
||||
MODULE_REVISION.trytond_commission_waiting= 0
|
||||
MODULE_REVISION.trytond_company= 0
|
||||
MODULE_REVISION.trytond_company_work_time= 0
|
||||
MODULE_REVISION.trytond_country= 0
|
||||
MODULE_REVISION.trytond_currency= 0
|
||||
MODULE_REVISION.trytond_customs= 0
|
||||
MODULE_REVISION.trytond_dashboard= 0
|
||||
MODULE_REVISION.trytond_google_maps= 0
|
||||
MODULE_REVISION.trytond_ldap_authentication= 0
|
||||
MODULE_REVISION.trytond_party= 0
|
||||
MODULE_REVISION.trytond_party_relationship= 0
|
||||
MODULE_REVISION.trytond_party_siret= 0
|
||||
MODULE_REVISION.trytond_party_vcarddav= 0
|
||||
MODULE_REVISION.trytond_product= 0
|
||||
MODULE_REVISION.trytond_product_attribute= 0
|
||||
MODULE_REVISION.trytond_product_classification= 0
|
||||
MODULE_REVISION.trytond_product_classification_taxonomic= 0
|
||||
MODULE_REVISION.trytond_product_cost_fifo= 0
|
||||
MODULE_REVISION.trytond_product_cost_history= 0
|
||||
MODULE_REVISION.trytond_production= 0
|
||||
MODULE_REVISION.trytond_production_routing= 0
|
||||
MODULE_REVISION.trytond_production_split= 0
|
||||
MODULE_REVISION.trytond_production_work= 0
|
||||
MODULE_REVISION.trytond_production_work_timesheet= 0
|
||||
MODULE_REVISION.trytond_product_measurements= 0
|
||||
MODULE_REVISION.trytond_product_price_list= 0
|
||||
MODULE_REVISION.trytond_project= 0
|
||||
MODULE_REVISION.trytond_project_invoice= 0
|
||||
MODULE_REVISION.trytond_project_plan= 0
|
||||
MODULE_REVISION.trytond_project_revenue= 0
|
||||
MODULE_REVISION.trytond_purchase= 0
|
||||
MODULE_REVISION.trytond_purchase_invoice_line_standalone= 0
|
||||
MODULE_REVISION.trytond_purchase_request= 0
|
||||
MODULE_REVISION.trytond_purchase_requisition= 0
|
||||
MODULE_REVISION.trytond_purchase_shipment_cost= 0
|
||||
MODULE_REVISION.trytond_sale= 0
|
||||
MODULE_REVISION.trytond_sale_complaint= 0
|
||||
MODULE_REVISION.trytond_sale_credit_limit= 0
|
||||
MODULE_REVISION.trytond_sale_extra= 0
|
||||
MODULE_REVISION.trytond_sale_invoice_grouping= 0
|
||||
MODULE_REVISION.trytond_sale_opportunity= 0
|
||||
MODULE_REVISION.trytond_sale_price_list= 0
|
||||
MODULE_REVISION.trytond_sale_promotion= 0
|
||||
MODULE_REVISION.trytond_sale_shipment_cost= 0
|
||||
MODULE_REVISION.trytond_sale_shipment_grouping= 0
|
||||
MODULE_REVISION.trytond_sale_stock_quantity= 0
|
||||
MODULE_REVISION.trytond_sale_supply= 0
|
||||
MODULE_REVISION.trytond_sale_supply_drop_shipment= 0
|
||||
MODULE_REVISION.trytond_stock= 0
|
||||
MODULE_REVISION.trytond_stock_forecast= 0
|
||||
MODULE_REVISION.trytond_stock_inventory_location= 0
|
||||
MODULE_REVISION.trytond_stock_location_sequence= 0
|
||||
MODULE_REVISION.trytond_stock_lot= 0
|
||||
MODULE_REVISION.trytond_stock_lot_sled= 0
|
||||
MODULE_REVISION.trytond_stock_package= 0
|
||||
MODULE_REVISION.trytond_stock_package_shipping= 0
|
||||
MODULE_REVISION.trytond_stock_package_shipping_dpd= 0
|
||||
MODULE_REVISION.trytond_stock_package_shipping_ups= 0
|
||||
MODULE_REVISION.trytond_stock_product_location= 0
|
||||
MODULE_REVISION.trytond_stock_split= 0
|
||||
MODULE_REVISION.trytond_stock_supply= 0
|
||||
MODULE_REVISION.trytond_stock_supply_day= 0
|
||||
MODULE_REVISION.trytond_stock_supply_forecast= 0
|
||||
MODULE_REVISION.trytond_stock_supply_production= 0
|
||||
MODULE_REVISION.trytond_timesheet= 0
|
||||
MODULE_REVISION.trytond_timesheet_cost= 0
|
||||
MODULE_REVISION.trytond_web_user= 0
|
||||
MODULE_REVISION.trytond_webdav= 0
|
||||
#
|
||||
# DO NOT default to 0 if not defined above (which are also for dependencies)
|
||||
|
||||
TRYTON_VERSION= ${TRYTON_BASEVER}.${MODULE_REVISION.${TRYTON_MODULE_NAME}}
|
||||
|
||||
|
@ -135,3 +256,8 @@ MASTER_SITES= ${TRYTON_SITES}
|
|||
DIST_SUBDIR= tryton-${TRYTON_BASEVER}
|
||||
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-gtk2 via py-pycha via py-relatorio
|
||||
# predefine these so modules don't have to.
|
||||
PY_PATCHPLIST= yes
|
||||
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
|
||||
|
||||
OPSYSVARS+= DEPENDS
|
||||
|
|
|
@ -1,14 +1,22 @@
|
|||
@comment $NetBSD: PLIST,v 1.5 2015/11/22 08:05:07 richard Exp $
|
||||
@comment $NetBSD: PLIST,v 1.6 2016/12/04 21:12:59 rodent Exp $
|
||||
bin/trytond-admin${PYVERSSUFFIX}
|
||||
bin/trytond-cron${PYVERSSUFFIX}
|
||||
bin/trytond${PYVERSSUFFIX}
|
||||
${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}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
${PYSITELIB}/trytond/__init__.py
|
||||
${PYSITELIB}/trytond/__init__.pyc
|
||||
${PYSITELIB}/trytond/__init__.pyo
|
||||
${PYSITELIB}/trytond/admin.py
|
||||
${PYSITELIB}/trytond/admin.pyc
|
||||
${PYSITELIB}/trytond/admin.pyo
|
||||
${PYSITELIB}/trytond/application.py
|
||||
${PYSITELIB}/trytond/application.pyc
|
||||
${PYSITELIB}/trytond/application.pyo
|
||||
${PYSITELIB}/trytond/backend/__init__.py
|
||||
${PYSITELIB}/trytond/backend/__init__.pyc
|
||||
${PYSITELIB}/trytond/backend/__init__.pyo
|
||||
|
@ -51,6 +59,9 @@ ${PYSITELIB}/trytond/backend/table.pyo
|
|||
${PYSITELIB}/trytond/cache.py
|
||||
${PYSITELIB}/trytond/cache.pyc
|
||||
${PYSITELIB}/trytond/cache.pyo
|
||||
${PYSITELIB}/trytond/commandline.py
|
||||
${PYSITELIB}/trytond/commandline.pyc
|
||||
${PYSITELIB}/trytond/commandline.pyo
|
||||
${PYSITELIB}/trytond/config.py
|
||||
${PYSITELIB}/trytond/config.pyc
|
||||
${PYSITELIB}/trytond/config.pyo
|
||||
|
@ -60,12 +71,18 @@ ${PYSITELIB}/trytond/const.pyo
|
|||
${PYSITELIB}/trytond/convert.py
|
||||
${PYSITELIB}/trytond/convert.pyc
|
||||
${PYSITELIB}/trytond/convert.pyo
|
||||
${PYSITELIB}/trytond/cron.py
|
||||
${PYSITELIB}/trytond/cron.pyc
|
||||
${PYSITELIB}/trytond/cron.pyo
|
||||
${PYSITELIB}/trytond/error.py
|
||||
${PYSITELIB}/trytond/error.pyc
|
||||
${PYSITELIB}/trytond/error.pyo
|
||||
${PYSITELIB}/trytond/exceptions.py
|
||||
${PYSITELIB}/trytond/exceptions.pyc
|
||||
${PYSITELIB}/trytond/exceptions.pyo
|
||||
${PYSITELIB}/trytond/filestore.py
|
||||
${PYSITELIB}/trytond/filestore.pyc
|
||||
${PYSITELIB}/trytond/filestore.pyo
|
||||
${PYSITELIB}/trytond/ir/__init__.py
|
||||
${PYSITELIB}/trytond/ir/__init__.pyc
|
||||
${PYSITELIB}/trytond/ir/__init__.pyo
|
||||
|
@ -102,24 +119,24 @@ ${PYSITELIB}/trytond/ir/lang.py
|
|||
${PYSITELIB}/trytond/ir/lang.pyc
|
||||
${PYSITELIB}/trytond/ir/lang.pyo
|
||||
${PYSITELIB}/trytond/ir/lang.xml
|
||||
${PYSITELIB}/trytond/ir/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/ir/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/ir/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/ir/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/ir/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/ir/locale/bg.po
|
||||
${PYSITELIB}/trytond/ir/locale/ca.po
|
||||
${PYSITELIB}/trytond/ir/locale/cs.po
|
||||
${PYSITELIB}/trytond/ir/locale/de.po
|
||||
${PYSITELIB}/trytond/ir/locale/es.po
|
||||
${PYSITELIB}/trytond/ir/locale/es_419.po
|
||||
${PYSITELIB}/trytond/ir/locale/fr.po
|
||||
${PYSITELIB}/trytond/ir/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/ir/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/ir/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/ir/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/ir/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/ir/locale/lo.po
|
||||
${PYSITELIB}/trytond/ir/locale/lt.po
|
||||
${PYSITELIB}/trytond/ir/locale/nl.po
|
||||
${PYSITELIB}/trytond/ir/locale/pl.po
|
||||
${PYSITELIB}/trytond/ir/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/ir/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/ir/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/ir/locale/ru.po
|
||||
${PYSITELIB}/trytond/ir/locale/sl.po
|
||||
${PYSITELIB}/trytond/ir/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/ir/model.py
|
||||
${PYSITELIB}/trytond/ir/model.pyc
|
||||
${PYSITELIB}/trytond/ir/model.pyo
|
||||
|
@ -128,10 +145,17 @@ ${PYSITELIB}/trytond/ir/module.py
|
|||
${PYSITELIB}/trytond/ir/module.pyc
|
||||
${PYSITELIB}/trytond/ir/module.pyo
|
||||
${PYSITELIB}/trytond/ir/module.xml
|
||||
${PYSITELIB}/trytond/ir/note.py
|
||||
${PYSITELIB}/trytond/ir/note.pyc
|
||||
${PYSITELIB}/trytond/ir/note.pyo
|
||||
${PYSITELIB}/trytond/ir/note.xml
|
||||
${PYSITELIB}/trytond/ir/property.py
|
||||
${PYSITELIB}/trytond/ir/property.pyc
|
||||
${PYSITELIB}/trytond/ir/property.pyo
|
||||
${PYSITELIB}/trytond/ir/property.xml
|
||||
${PYSITELIB}/trytond/ir/resource.py
|
||||
${PYSITELIB}/trytond/ir/resource.pyc
|
||||
${PYSITELIB}/trytond/ir/resource.pyo
|
||||
${PYSITELIB}/trytond/ir/rule.py
|
||||
${PYSITELIB}/trytond/ir/rule.pyc
|
||||
${PYSITELIB}/trytond/ir/rule.pyo
|
||||
|
@ -220,8 +244,12 @@ ${PYSITELIB}/trytond/ir/view/lang_form.xml
|
|||
${PYSITELIB}/trytond/ir/view/lang_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_access_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_access_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_click_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_click_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_rule_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_button_rule_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_data_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_data_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_field_access_form.xml
|
||||
|
@ -231,6 +259,8 @@ ${PYSITELIB}/trytond/ir/view/model_field_list.xml
|
|||
${PYSITELIB}/trytond/ir/view/model_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/model_print_model_graph_start_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_activate_upgrade_done_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_activate_upgrade_start_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_config_wizard_done_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_config_wizard_first_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_config_wizard_item_list.xml
|
||||
|
@ -238,9 +268,9 @@ ${PYSITELIB}/trytond/ir/view/module_config_wizard_other_form.xml
|
|||
${PYSITELIB}/trytond/ir/view/module_dependency_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_dependency_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_install_upgrade_done_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_install_upgrade_start_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/module_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/note_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/note_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/property_form.xml
|
||||
${PYSITELIB}/trytond/ir/view/property_list.xml
|
||||
${PYSITELIB}/trytond/ir/view/rule_form.xml
|
||||
|
@ -338,9 +368,6 @@ ${PYSITELIB}/trytond/model/fields/reference.pyo
|
|||
${PYSITELIB}/trytond/model/fields/selection.py
|
||||
${PYSITELIB}/trytond/model/fields/selection.pyc
|
||||
${PYSITELIB}/trytond/model/fields/selection.pyo
|
||||
${PYSITELIB}/trytond/model/fields/sha.py
|
||||
${PYSITELIB}/trytond/model/fields/sha.pyc
|
||||
${PYSITELIB}/trytond/model/fields/sha.pyo
|
||||
${PYSITELIB}/trytond/model/fields/text.py
|
||||
${PYSITELIB}/trytond/model/fields/text.pyc
|
||||
${PYSITELIB}/trytond/model/fields/text.pyo
|
||||
|
@ -362,6 +389,9 @@ ${PYSITELIB}/trytond/model/modelstorage.pyo
|
|||
${PYSITELIB}/trytond/model/modelview.py
|
||||
${PYSITELIB}/trytond/model/modelview.pyc
|
||||
${PYSITELIB}/trytond/model/modelview.pyo
|
||||
${PYSITELIB}/trytond/model/order.py
|
||||
${PYSITELIB}/trytond/model/order.pyc
|
||||
${PYSITELIB}/trytond/model/order.pyo
|
||||
${PYSITELIB}/trytond/model/union.py
|
||||
${PYSITELIB}/trytond/model/union.pyc
|
||||
${PYSITELIB}/trytond/model/union.pyo
|
||||
|
@ -371,30 +401,21 @@ ${PYSITELIB}/trytond/model/workflow.pyo
|
|||
${PYSITELIB}/trytond/modules/__init__.py
|
||||
${PYSITELIB}/trytond/modules/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/__init__.pyo
|
||||
${PYSITELIB}/trytond/monitor.py
|
||||
${PYSITELIB}/trytond/monitor.pyc
|
||||
${PYSITELIB}/trytond/monitor.pyo
|
||||
${PYSITELIB}/trytond/pool.py
|
||||
${PYSITELIB}/trytond/pool.pyc
|
||||
${PYSITELIB}/trytond/pool.pyo
|
||||
${PYSITELIB}/trytond/protocols/__init__.py
|
||||
${PYSITELIB}/trytond/protocols/__init__.pyc
|
||||
${PYSITELIB}/trytond/protocols/__init__.pyo
|
||||
${PYSITELIB}/trytond/protocols/common.py
|
||||
${PYSITELIB}/trytond/protocols/common.pyc
|
||||
${PYSITELIB}/trytond/protocols/common.pyo
|
||||
${PYSITELIB}/trytond/protocols/dispatcher.py
|
||||
${PYSITELIB}/trytond/protocols/dispatcher.pyc
|
||||
${PYSITELIB}/trytond/protocols/dispatcher.pyo
|
||||
${PYSITELIB}/trytond/protocols/jsonrpc.py
|
||||
${PYSITELIB}/trytond/protocols/jsonrpc.pyc
|
||||
${PYSITELIB}/trytond/protocols/jsonrpc.pyo
|
||||
${PYSITELIB}/trytond/protocols/sslsocket.py
|
||||
${PYSITELIB}/trytond/protocols/sslsocket.pyc
|
||||
${PYSITELIB}/trytond/protocols/sslsocket.pyo
|
||||
${PYSITELIB}/trytond/protocols/webdav.py
|
||||
${PYSITELIB}/trytond/protocols/webdav.pyc
|
||||
${PYSITELIB}/trytond/protocols/webdav.pyo
|
||||
${PYSITELIB}/trytond/protocols/wrappers.py
|
||||
${PYSITELIB}/trytond/protocols/wrappers.pyc
|
||||
${PYSITELIB}/trytond/protocols/wrappers.pyo
|
||||
${PYSITELIB}/trytond/protocols/xmlrpc.py
|
||||
${PYSITELIB}/trytond/protocols/xmlrpc.pyc
|
||||
${PYSITELIB}/trytond/protocols/xmlrpc.pyo
|
||||
|
@ -418,25 +439,28 @@ ${PYSITELIB}/trytond/res/ir.py
|
|||
${PYSITELIB}/trytond/res/ir.pyc
|
||||
${PYSITELIB}/trytond/res/ir.pyo
|
||||
${PYSITELIB}/trytond/res/ir.xml
|
||||
${PYSITELIB}/trytond/res/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/res/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/res/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/res/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/res/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/res/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/res/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/res/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/res/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/res/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/res/locale/bg.po
|
||||
${PYSITELIB}/trytond/res/locale/ca.po
|
||||
${PYSITELIB}/trytond/res/locale/cs.po
|
||||
${PYSITELIB}/trytond/res/locale/de.po
|
||||
${PYSITELIB}/trytond/res/locale/es.po
|
||||
${PYSITELIB}/trytond/res/locale/es_419.po
|
||||
${PYSITELIB}/trytond/res/locale/fr.po
|
||||
${PYSITELIB}/trytond/res/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/res/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/res/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/res/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/res/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/res/locale/lo.po
|
||||
${PYSITELIB}/trytond/res/locale/lt.po
|
||||
${PYSITELIB}/trytond/res/locale/nl.po
|
||||
${PYSITELIB}/trytond/res/locale/pl.po
|
||||
${PYSITELIB}/trytond/res/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/res/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/res/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/res/locale/ru.po
|
||||
${PYSITELIB}/trytond/res/locale/sl.po
|
||||
${PYSITELIB}/trytond/res/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/res/res.xml
|
||||
${PYSITELIB}/trytond/res/routes.py
|
||||
${PYSITELIB}/trytond/res/routes.pyc
|
||||
${PYSITELIB}/trytond/res/routes.pyo
|
||||
${PYSITELIB}/trytond/res/tryton.cfg
|
||||
${PYSITELIB}/trytond/res/user.py
|
||||
${PYSITELIB}/trytond/res/user.pyc
|
||||
|
@ -445,9 +469,11 @@ ${PYSITELIB}/trytond/res/user.xml
|
|||
${PYSITELIB}/trytond/res/view/group_form.xml
|
||||
${PYSITELIB}/trytond/res/view/group_list.xml
|
||||
${PYSITELIB}/trytond/res/view/sequence_type_form.xml
|
||||
${PYSITELIB}/trytond/res/view/user_application_form.xml
|
||||
${PYSITELIB}/trytond/res/view/user_application_list.xml
|
||||
${PYSITELIB}/trytond/res/view/user_config_start_form.xml
|
||||
${PYSITELIB}/trytond/res/view/user_form_preferences.xml
|
||||
${PYSITELIB}/trytond/res/view/user_form.xml
|
||||
${PYSITELIB}/trytond/res/view/user_form_preferences.xml
|
||||
${PYSITELIB}/trytond/res/view/user_list.xml
|
||||
${PYSITELIB}/trytond/res/view/user_warning_form.xml
|
||||
${PYSITELIB}/trytond/res/view/user_warning_tree.xml
|
||||
|
@ -457,9 +483,9 @@ ${PYSITELIB}/trytond/rpc.pyo
|
|||
${PYSITELIB}/trytond/security.py
|
||||
${PYSITELIB}/trytond/security.pyc
|
||||
${PYSITELIB}/trytond/security.pyo
|
||||
${PYSITELIB}/trytond/server.py
|
||||
${PYSITELIB}/trytond/server.pyc
|
||||
${PYSITELIB}/trytond/server.pyo
|
||||
${PYSITELIB}/trytond/sendmail.py
|
||||
${PYSITELIB}/trytond/sendmail.pyc
|
||||
${PYSITELIB}/trytond/sendmail.pyo
|
||||
${PYSITELIB}/trytond/test_loader.py
|
||||
${PYSITELIB}/trytond/test_loader.pyc
|
||||
${PYSITELIB}/trytond/test_loader.pyo
|
||||
|
@ -498,6 +524,9 @@ ${PYSITELIB}/trytond/tests/run-tests.py
|
|||
${PYSITELIB}/trytond/tests/run-tests.pyc
|
||||
${PYSITELIB}/trytond/tests/run-tests.pyo
|
||||
${PYSITELIB}/trytond/tests/sequence.xml
|
||||
${PYSITELIB}/trytond/tests/test.py
|
||||
${PYSITELIB}/trytond/tests/test.pyc
|
||||
${PYSITELIB}/trytond/tests/test.pyo
|
||||
${PYSITELIB}/trytond/tests/test_access.py
|
||||
${PYSITELIB}/trytond/tests/test_access.pyc
|
||||
${PYSITELIB}/trytond/tests/test_access.pyo
|
||||
|
@ -519,6 +548,9 @@ ${PYSITELIB}/trytond/tests/test_field_context.pyo
|
|||
${PYSITELIB}/trytond/tests/test_fields.py
|
||||
${PYSITELIB}/trytond/tests/test_fields.pyc
|
||||
${PYSITELIB}/trytond/tests/test_fields.pyo
|
||||
${PYSITELIB}/trytond/tests/test_filestore.py
|
||||
${PYSITELIB}/trytond/tests/test_filestore.pyc
|
||||
${PYSITELIB}/trytond/tests/test_filestore.pyo
|
||||
${PYSITELIB}/trytond/tests/test_history.py
|
||||
${PYSITELIB}/trytond/tests/test_history.pyc
|
||||
${PYSITELIB}/trytond/tests/test_history.pyo
|
||||
|
@ -531,6 +563,9 @@ ${PYSITELIB}/trytond/tests/test_ir.pyo
|
|||
${PYSITELIB}/trytond/tests/test_mixins.py
|
||||
${PYSITELIB}/trytond/tests/test_mixins.pyc
|
||||
${PYSITELIB}/trytond/tests/test_mixins.pyo
|
||||
${PYSITELIB}/trytond/tests/test_model.py
|
||||
${PYSITELIB}/trytond/tests/test_model.pyc
|
||||
${PYSITELIB}/trytond/tests/test_model.pyo
|
||||
${PYSITELIB}/trytond/tests/test_modelsingleton.py
|
||||
${PYSITELIB}/trytond/tests/test_modelsingleton.pyc
|
||||
${PYSITELIB}/trytond/tests/test_modelsingleton.pyo
|
||||
|
@ -546,6 +581,9 @@ ${PYSITELIB}/trytond/tests/test_modelview.pyo
|
|||
${PYSITELIB}/trytond/tests/test_mptt.py
|
||||
${PYSITELIB}/trytond/tests/test_mptt.pyc
|
||||
${PYSITELIB}/trytond/tests/test_mptt.pyo
|
||||
${PYSITELIB}/trytond/tests/test_order.py
|
||||
${PYSITELIB}/trytond/tests/test_order.pyc
|
||||
${PYSITELIB}/trytond/tests/test_order.pyo
|
||||
${PYSITELIB}/trytond/tests/test_protocols.py
|
||||
${PYSITELIB}/trytond/tests/test_protocols.pyc
|
||||
${PYSITELIB}/trytond/tests/test_protocols.pyo
|
||||
|
@ -555,6 +593,12 @@ ${PYSITELIB}/trytond/tests/test_pyson.pyo
|
|||
${PYSITELIB}/trytond/tests/test_res.py
|
||||
${PYSITELIB}/trytond/tests/test_res.pyc
|
||||
${PYSITELIB}/trytond/tests/test_res.pyo
|
||||
${PYSITELIB}/trytond/tests/test_rpc.py
|
||||
${PYSITELIB}/trytond/tests/test_rpc.pyc
|
||||
${PYSITELIB}/trytond/tests/test_rpc.pyo
|
||||
${PYSITELIB}/trytond/tests/test_sendmail.py
|
||||
${PYSITELIB}/trytond/tests/test_sendmail.pyc
|
||||
${PYSITELIB}/trytond/tests/test_sendmail.pyo
|
||||
${PYSITELIB}/trytond/tests/test_sequence.py
|
||||
${PYSITELIB}/trytond/tests/test_sequence.pyc
|
||||
${PYSITELIB}/trytond/tests/test_sequence.pyo
|
||||
|
@ -576,18 +620,15 @@ ${PYSITELIB}/trytond/tests/test_union.pyo
|
|||
${PYSITELIB}/trytond/tests/test_user.py
|
||||
${PYSITELIB}/trytond/tests/test_user.pyc
|
||||
${PYSITELIB}/trytond/tests/test_user.pyo
|
||||
${PYSITELIB}/trytond/tests/test_webdav.py
|
||||
${PYSITELIB}/trytond/tests/test_webdav.pyc
|
||||
${PYSITELIB}/trytond/tests/test_webdav.pyo
|
||||
${PYSITELIB}/trytond/tests/test_wizard.py
|
||||
${PYSITELIB}/trytond/tests/test_wizard.pyc
|
||||
${PYSITELIB}/trytond/tests/test_wizard.pyo
|
||||
${PYSITELIB}/trytond/tests/test_workflow.py
|
||||
${PYSITELIB}/trytond/tests/test_workflow.pyc
|
||||
${PYSITELIB}/trytond/tests/test_workflow.pyo
|
||||
${PYSITELIB}/trytond/tests/test.py
|
||||
${PYSITELIB}/trytond/tests/test.pyc
|
||||
${PYSITELIB}/trytond/tests/test.pyo
|
||||
${PYSITELIB}/trytond/tests/tools.py
|
||||
${PYSITELIB}/trytond/tests/tools.pyc
|
||||
${PYSITELIB}/trytond/tests/tools.pyo
|
||||
${PYSITELIB}/trytond/tests/trigger.py
|
||||
${PYSITELIB}/trytond/tests/trigger.pyc
|
||||
${PYSITELIB}/trytond/tests/trigger.pyo
|
||||
|
@ -600,6 +641,9 @@ ${PYSITELIB}/trytond/tests/workflow.py
|
|||
${PYSITELIB}/trytond/tests/workflow.pyc
|
||||
${PYSITELIB}/trytond/tests/workflow.pyo
|
||||
${PYSITELIB}/trytond/tests/workflow.xml
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.py
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.pyc
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.pyo
|
||||
${PYSITELIB}/trytond/tools/__init__.py
|
||||
${PYSITELIB}/trytond/tools/__init__.pyc
|
||||
${PYSITELIB}/trytond/tools/__init__.pyo
|
||||
|
@ -615,50 +659,21 @@ ${PYSITELIB}/trytond/tools/misc.pyo
|
|||
${PYSITELIB}/trytond/tools/singleton.py
|
||||
${PYSITELIB}/trytond/tools/singleton.pyc
|
||||
${PYSITELIB}/trytond/tools/singleton.pyo
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.py
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.pyc
|
||||
${PYSITELIB}/trytond/tools/StringMatcher.pyo
|
||||
${PYSITELIB}/trytond/transaction.py
|
||||
${PYSITELIB}/trytond/transaction.pyc
|
||||
${PYSITELIB}/trytond/transaction.pyo
|
||||
${PYSITELIB}/trytond/url.py
|
||||
${PYSITELIB}/trytond/url.pyc
|
||||
${PYSITELIB}/trytond/url.pyo
|
||||
${PYSITELIB}/trytond/webdav/__init__.py
|
||||
${PYSITELIB}/trytond/webdav/__init__.pyc
|
||||
${PYSITELIB}/trytond/webdav/__init__.pyo
|
||||
${PYSITELIB}/trytond/webdav/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/webdav/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/webdav/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/webdav/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/webdav/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/webdav/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/webdav/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/webdav/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/webdav/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/webdav/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/webdav/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/webdav/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/webdav/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/webdav/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/webdav/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/webdav/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/webdav/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/webdav/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/webdav/tryton.cfg
|
||||
${PYSITELIB}/trytond/webdav/view/attachment_form.xml
|
||||
${PYSITELIB}/trytond/webdav/view/collection_form.xml
|
||||
${PYSITELIB}/trytond/webdav/view/collection_list.xml
|
||||
${PYSITELIB}/trytond/webdav/view/collection_tree.xml
|
||||
${PYSITELIB}/trytond/webdav/view/share_form.xml
|
||||
${PYSITELIB}/trytond/webdav/view/share_list.xml
|
||||
${PYSITELIB}/trytond/webdav/webdav.py
|
||||
${PYSITELIB}/trytond/webdav/webdav.pyc
|
||||
${PYSITELIB}/trytond/webdav/webdav.pyo
|
||||
${PYSITELIB}/trytond/webdav/webdav.xml
|
||||
${PYSITELIB}/trytond/wizard/__init__.py
|
||||
${PYSITELIB}/trytond/wizard/__init__.pyc
|
||||
${PYSITELIB}/trytond/wizard/__init__.pyo
|
||||
${PYSITELIB}/trytond/wizard/wizard.py
|
||||
${PYSITELIB}/trytond/wizard/wizard.pyc
|
||||
${PYSITELIB}/trytond/wizard/wizard.pyo
|
||||
${PYSITELIB}/trytond/wsgi.py
|
||||
${PYSITELIB}/trytond/wsgi.pyc
|
||||
${PYSITELIB}/trytond/wsgi.pyo
|
||||
share/examples/py27-trytond/logging.conf.example
|
||||
share/examples/py27-trytond/trytond.conf.example
|
||||
@pkgdir share/py27-trytond
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.9 2015/11/22 08:05:07 richard Exp $
|
||||
$NetBSD: distinfo,v 1.10 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond-3.8.0.tar.gz) = ad676dc77efd54bdf5fd2201147ae61785a02526
|
||||
RMD160 (tryton-3.8/trytond-3.8.0.tar.gz) = 11b02f64b9edd28292a7ec3879cbe536be45f05f
|
||||
SHA512 (tryton-3.8/trytond-3.8.0.tar.gz) = b61a86a12e8b644bfdce9dead15cdc5935be0051360da16010374a9476fba8015196088fb204038cf3788d027e270c7d182a6f3b0e26039cd21e4206d6e6abc9
|
||||
Size (tryton-3.8/trytond-3.8.0.tar.gz) = 579722 bytes
|
||||
SHA1 (tryton-4.2/trytond-4.2.0.tar.gz) = 0843e2f58ab71901554dcdb6a8a07237e48da36a
|
||||
RMD160 (tryton-4.2/trytond-4.2.0.tar.gz) = 285052dddda56ebc201aae489208a6cb86e859b1
|
||||
SHA512 (tryton-4.2/trytond-4.2.0.tar.gz) = ad04376465db907c5403ec52367f37fb65979389d90090393aea1b12224d55a402fd889f269cfaf1979eb31899c22a7057e2d5956b1b045c18e52e2946ec59e8
|
||||
Size (tryton-4.2/trytond-4.2.0.tar.gz) = 582865 bytes
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
# $NetBSD: options.mk,v 1.9 2016/08/18 19:25:31 wiz Exp $
|
||||
# $NetBSD: options.mk,v 1.10 2016/12/04 21:12:59 rodent Exp $
|
||||
|
||||
PKG_OPTIONS_VAR= PKG_OPTIONS.py-trytond
|
||||
PKG_SUPPORTED_OPTIONS= cdecimal mysql pydot psycopg pytz simplejson sphinx
|
||||
PKG_SUPPORTED_OPTIONS+= webdav
|
||||
PKG_SUGGESTED_OPTIONS+= psycopg pytz simplejson sphinx
|
||||
|
||||
.include "../../mk/bsd.options.mk"
|
||||
|
||||
# XXX Supports unoconv http://dag.wieers.com/home-made/unoconv/) and
|
||||
# XXX python-Levenshtein (http://github.com/miohtama/python-Levenshtein) options
|
||||
# XXX: Supports unoconv http://dag.wieers.com/home-made/unoconv/) option and
|
||||
# XXX: python-Levenshtein (http://github.com/miohtama/python-Levenshtein) option
|
||||
|
||||
.if !empty(PKG_OPTIONS:Mcdecimal)
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-cdecimal is obsolete for that version and thus not available
|
||||
|
@ -39,8 +38,3 @@ DEPENDS+= ${PYPKGPREFIX}-simplejson-[0-9]*:../../converters/py-simplejson
|
|||
.if !empty(PKG_OPTIONS:Msphinx)
|
||||
DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
|
||||
.endif
|
||||
|
||||
.if !empty(PKG_OPTIONS:Mwebdav)
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-pywebdav
|
||||
DEPENDS+= ${PYPKGPREFIX}-pywebdav-[0-9]*:../../www/py-pywebdav
|
||||
.endif
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.39 2015/12/27 16:27:40 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.40 2016/12/04 21:12:58 rodent Exp $
|
||||
#
|
||||
|
||||
COMMENT= Monetary, financial and related applications
|
||||
|
@ -20,6 +20,13 @@ SUBDIR+= py-python-bitcoinlib
|
|||
SUBDIR+= py-stripe
|
||||
SUBDIR+= py-trytond-account
|
||||
SUBDIR+= py-trytond-account-asset
|
||||
SUBDIR+= py-trytond-account-be
|
||||
SUBDIR+= py-trytond-account-credit-limit
|
||||
SUBDIR+= py-trytond-account-deposit
|
||||
SUBDIR+= py-trytond-account-de-skr03
|
||||
SUBDIR+= py-trytond-account-dunning
|
||||
SUBDIR+= py-trytond-account-dunning-fee
|
||||
SUBDIR+= py-trytond-account-dunning-fee-letter
|
||||
SUBDIR+= py-trytond-account-fr
|
||||
SUBDIR+= py-trytond-account-invoice
|
||||
SUBDIR+= py-trytond-account-invoice-history
|
||||
|
@ -28,22 +35,47 @@ SUBDIR+= py-trytond-account-invoice-stock
|
|||
SUBDIR+= py-trytond-account-payment
|
||||
SUBDIR+= py-trytond-account-payment-clearing
|
||||
SUBDIR+= py-trytond-account-payment-sepa
|
||||
SUBDIR+= py-trytond-account-payment-sepa-cfonb
|
||||
SUBDIR+= py-trytond-account-product
|
||||
SUBDIR+= py-trytond-account-statement
|
||||
SUBDIR+= py-trytond-account-stock-anglo-saxon
|
||||
SUBDIR+= py-trytond-account-stock-continental
|
||||
SUBDIR+= py-trytond-account-stock-landed-cost
|
||||
SUBDIR+= py-trytond-account-stock-landed-cost-weight
|
||||
SUBDIR+= py-trytond-account-tax-rule-country
|
||||
SUBDIR+= py-trytond-analytic-account
|
||||
SUBDIR+= py-trytond-analytic-invoice
|
||||
SUBDIR+= py-trytond-analytic-purchase
|
||||
SUBDIR+= py-trytond-analytic-sale
|
||||
SUBDIR+= py-trytond-bank
|
||||
SUBDIR+= py-trytond-commission
|
||||
SUBDIR+= py-trytond-commission-waiting
|
||||
SUBDIR+= py-trytond-currency
|
||||
SUBDIR+= py-trytond-customs
|
||||
SUBDIR+= py-trytond-product-cost-fifo
|
||||
SUBDIR+= py-trytond-product-cost-history
|
||||
SUBDIR+= py-trytond-product-price-list
|
||||
SUBDIR+= py-trytond-purchase
|
||||
SUBDIR+= py-trytond-purchase-invoice-line-standalone
|
||||
SUBDIR+= py-trytond-purchase-request
|
||||
SUBDIR+= py-trytond-purchase-requisition
|
||||
SUBDIR+= py-trytond-purchase-shipment-cost
|
||||
SUBDIR+= py-trytond-sale
|
||||
SUBDIR+= py-trytond-sale-complaint
|
||||
SUBDIR+= py-trytond-sale-credit-limit
|
||||
SUBDIR+= py-trytond-sale-extra
|
||||
SUBDIR+= py-trytond-sale-invoice-grouping
|
||||
SUBDIR+= py-trytond-sale-opportunity
|
||||
SUBDIR+= py-trytond-sale-price-list
|
||||
SUBDIR+= py-trytond-sale-promotion
|
||||
SUBDIR+= py-trytond-sale-shipment-cost
|
||||
SUBDIR+= py-trytond-sale-shipment-grouping
|
||||
SUBDIR+= py-trytond-sale-stock-quantity
|
||||
SUBDIR+= py-trytond-sale-supply
|
||||
SUBDIR+= py-trytond-sale-supply-drop-shipment
|
||||
SUBDIR+= py-trytond-stock-supply
|
||||
SUBDIR+= py-trytond-stock-supply-forecast
|
||||
SUBDIR+= py-trytond-stock-supply-production
|
||||
SUBDIR+= py-vatnumber
|
||||
SUBDIR+= ruby-activemerchant
|
||||
SUBDIR+= ruby-braintree
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.3 2015/08/24 14:49:41 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_asset
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -9,11 +9,11 @@ COMMENT= Account_asset module of the Tryton application platform
|
|||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-cached-property-[0-9]*:../../devel/py-cached-property
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product>=${TRYTON_BASEVER}:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product>=${TRYTON_BASEVER}:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.4 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.5 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_asset/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_asset/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_asset/__init__.pyo
|
||||
|
@ -13,33 +6,33 @@ ${PYSITELIB}/trytond/modules/account_asset/account.py
|
|||
${PYSITELIB}/trytond/modules/account_asset/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_asset/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_asset/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset_table.odt
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset.py
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset.pyc
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset.pyo
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/asset_table.odt
|
||||
${PYSITELIB}/trytond/modules/account_asset/invoice.py
|
||||
${PYSITELIB}/trytond/modules/account_asset/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_asset/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_asset/invoice.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_bg.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_ca.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_de.xml
|
||||
|
@ -47,6 +40,7 @@ ${PYSITELIB}/trytond/modules/account_asset/minimal_chart_en.xml
|
|||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_es.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_nl.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_pt.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_ru.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/minimal_chart_sl.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/product.py
|
||||
|
@ -79,3 +73,10 @@ ${PYSITELIB}/trytond/modules/account_asset/view/configuration_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_asset/view/invoice_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/view/print_depreciation_table_start.xml
|
||||
${PYSITELIB}/trytond/modules/account_asset/view/template_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.5 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.6 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_asset-3.8.0.tar.gz) = 762d9d9d9ca1801004a69b8e9b676dcd9712aba3
|
||||
RMD160 (tryton-3.8/trytond_account_asset-3.8.0.tar.gz) = c154e6ee9a1af9aa6206b821270fca939f0b9ebf
|
||||
SHA512 (tryton-3.8/trytond_account_asset-3.8.0.tar.gz) = b2ec25a62e08ea4efd19deac8fefd248e8a6900aacbdcaeae36e85516a6206aac997508fc65a10331daf03a25de39491c40a1e80f08981d6d8a1aa1e61efdd9a
|
||||
Size (tryton-3.8/trytond_account_asset-3.8.0.tar.gz) = 69888 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_asset-4.2.0.tar.gz) = 596cf7e2d3838d42755663f8ca4aec8913c5e0ab
|
||||
RMD160 (tryton-4.2/trytond_account_asset-4.2.0.tar.gz) = b3855442e3c8c2de4591b35905d1027bd86799a3
|
||||
SHA512 (tryton-4.2/trytond_account_asset-4.2.0.tar.gz) = 75097cbc0240a389841f160ab4d4d80598ffca768ff6b6b31a7e6d385b025b7e2187f7546164677722da8a3dfd90b415ec0773dce84febc14e59311eda2fc457
|
||||
Size (tryton-4.2/trytond_account_asset-4.2.0.tar.gz) = 75514 bytes
|
||||
|
|
1
finance/py-trytond-account-be/DESCR
Normal file
1
finance/py-trytond-account-be/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_be module of the Tryton application platform.
|
20
finance/py-trytond-account-be/Makefile
Normal file
20
finance/py-trytond-account-be/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_be
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= The account_be module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
REPLACE_PYTHON+= tests/test_account_be.py tests/__init__.py
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
25
finance/py-trytond-account-be/PLIST
Normal file
25
finance/py-trytond-account-be/PLIST
Normal file
|
@ -0,0 +1,25 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_be/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_be/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_be/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_be/account.py
|
||||
${PYSITELIB}/trytond/modules/account_be/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_be/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_be/account_be_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_be/account_be_nl.xml
|
||||
${PYSITELIB}/trytond/modules/account_be/tax_be_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_be/tax_be_nl.xml
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/test_account_be.py
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/test_account_be.pyc
|
||||
${PYSITELIB}/trytond/modules/account_be/tests/test_account_be.pyo
|
||||
${PYSITELIB}/trytond/modules/account_be/tryton.cfg
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-be/distinfo
Normal file
6
finance/py-trytond-account-be/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_be-4.2.0.tar.gz) = 054a7eb5e3f26879883f985a1d2f20bf471bcefb
|
||||
RMD160 (tryton-4.2/trytond_account_be-4.2.0.tar.gz) = 2f92cc4b1f57203169218a8d876c9c95b86b4a36
|
||||
SHA512 (tryton-4.2/trytond_account_be-4.2.0.tar.gz) = 909e7902ac150e5329cdd1ea4207691c58290c534dd2f872af85fe251bc063f513107fcbafb88502360a97b575ab286218f84cc113ef012486df32a1413865e9
|
||||
Size (tryton-4.2/trytond_account_be-4.2.0.tar.gz) = 79430 bytes
|
1
finance/py-trytond-account-credit-limit/DESCR
Normal file
1
finance/py-trytond-account-credit-limit/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_credit_limit module of the Tryton application platform.
|
20
finance/py-trytond-account-credit-limit/Makefile
Normal file
20
finance/py-trytond-account-credit-limit/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_credit_limit
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= Tryton's account_credit_limit module
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
47
finance/py-trytond-account-credit-limit/PLIST
Normal file
47
finance/py-trytond-account-credit-limit/PLIST
Normal file
|
@ -0,0 +1,47 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/account.py
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/party.py
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/party.pyo
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/party.xml
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/test_account_credit_limit.py
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/test_account_credit_limit.pyc
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tests/test_account_credit_limit.pyo
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/view/configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/view/dunning_level_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_credit_limit/view/party_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-credit-limit/distinfo
Normal file
6
finance/py-trytond-account-credit-limit/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_credit_limit-4.2.0.tar.gz) = a3f307824ebfcf83d45778089234d470618b7258
|
||||
RMD160 (tryton-4.2/trytond_account_credit_limit-4.2.0.tar.gz) = fe7a65477a299c529db2cefc59a9d77c76a85319
|
||||
SHA512 (tryton-4.2/trytond_account_credit_limit-4.2.0.tar.gz) = 42b957d77cf197c0b139dcd93f30939a38a430c0665b32cde3bf63d5a4235c56ee74765b8bf32543afd8e0b98411d84107ec09cfa0b1f803ef8eaf3dfc595b46
|
||||
Size (tryton-4.2/trytond_account_credit_limit-4.2.0.tar.gz) = 22610 bytes
|
1
finance/py-trytond-account-de-skr03/DESCR
Normal file
1
finance/py-trytond-account-de-skr03/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_de_skr03 module of the Tryton application platform.
|
18
finance/py-trytond-account-de-skr03/Makefile
Normal file
18
finance/py-trytond-account-de-skr03/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_de_skr03
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= The account_de_skr03 module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
19
finance/py-trytond-account-de-skr03/PLIST
Normal file
19
finance/py-trytond-account-de-skr03/PLIST
Normal file
|
@ -0,0 +1,19 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/account_de.xml
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/test_account_de_skr03.py
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/test_account_de_skr03.pyc
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tests/test_account_de_skr03.pyo
|
||||
${PYSITELIB}/trytond/modules/account_de_skr03/tryton.cfg
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-de-skr03/distinfo
Normal file
6
finance/py-trytond-account-de-skr03/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_de_skr03-4.2.0.tar.gz) = 18e1921195a2cd7dd08311f7678bd0a21221d97b
|
||||
RMD160 (tryton-4.2/trytond_account_de_skr03-4.2.0.tar.gz) = 5533c143b767bfa46c38cf1a4675d72351940b57
|
||||
SHA512 (tryton-4.2/trytond_account_de_skr03-4.2.0.tar.gz) = d13394b420effadec1351b47a2a223dfe7bab4ffdfc48bb558c4af1a8c70e96bf2d1cb8bc67ad52a5d6524ece208509ebfcaf3b37023c9e1d3f7e4181cc51469
|
||||
Size (tryton-4.2/trytond_account_de_skr03-4.2.0.tar.gz) = 51314 bytes
|
1
finance/py-trytond-account-deposit/DESCR
Normal file
1
finance/py-trytond-account-deposit/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_deposit module of the Tryton application platform.
|
25
finance/py-trytond-account-deposit/Makefile
Normal file
25
finance/py-trytond-account-deposit/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_deposit
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= The account_deposit module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-python-sql>=0.4:../../databases/py-python-sql
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
PYTHON_VERSIONED_DEPENDENCIES+= dateutil
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../lang/python/versioned_dependencies.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
65
finance/py-trytond-account-deposit/PLIST
Normal file
65
finance/py-trytond-account-deposit/PLIST
Normal file
|
@ -0,0 +1,65 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_deposit/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/account.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/invoice.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/invoice.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_bg.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_ca.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_de.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_en.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_es.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_nl.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_pt.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_ru.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/minimal_chart_sl.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/party.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/party.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/party.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/scenario_deposit.rst
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/test_account_deposit.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/test_account_deposit.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/test_account_deposit.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/tools.py
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/tools.pyc
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tests/tools.pyo
|
||||
${PYSITELIB}/trytond/modules/account_deposit/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_deposit/view/invoice_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/view/party_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/view/party_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_deposit/view/recall_deposit_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-deposit/distinfo
Normal file
6
finance/py-trytond-account-deposit/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_deposit-4.2.0.tar.gz) = fa64deebb97af168cc6f61f17e0bafc3637984f8
|
||||
RMD160 (tryton-4.2/trytond_account_deposit-4.2.0.tar.gz) = 93e9f823852999f7ff9891bb275d556c15f7d0fe
|
||||
SHA512 (tryton-4.2/trytond_account_deposit-4.2.0.tar.gz) = b901a8aeaccd9de5cfd4ad90204031e7ac1d5ca05642fd7f9c9b88403939dc8c5c630ec2f66dc0f6adbea5988603a725b092ed4a6dc42e2abeca22d46de1c7c6
|
||||
Size (tryton-4.2/trytond_account_deposit-4.2.0.tar.gz) = 25772 bytes
|
1
finance/py-trytond-account-dunning-fee/DESCR
Normal file
1
finance/py-trytond-account-dunning-fee/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_dunning_fee module of the Tryton application platform.
|
19
finance/py-trytond-account-dunning-fee/Makefile
Normal file
19
finance/py-trytond-account-dunning-fee/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_dunning_fee
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= Tryton's account_dunning_fee module
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-dunning>=${TRYTON_BASEVER}:../../finance/py-trytond-account-dunning
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product>=${TRYTON_BASEVER}:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
51
finance/py-trytond-account-dunning-fee/PLIST
Normal file
51
finance/py-trytond-account-dunning-fee/PLIST
Normal file
|
@ -0,0 +1,51 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/account.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/dunning.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/dunning.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/dunning.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/dunning.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/scenario_account_dunning_fee.rst
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/test_account_dunning_fee.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/test_account_dunning_fee.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tests/test_account_dunning_fee.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_fee_dunning_level_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_fee_dunning_level_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_fee_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_fee_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_level_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_fee/view/dunning_level_list.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-dunning-fee/distinfo
Normal file
6
finance/py-trytond-account-dunning-fee/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_dunning_fee-4.2.0.tar.gz) = 656cdada5f6bf912d9c240cf07c6f603ebd52c6b
|
||||
RMD160 (tryton-4.2/trytond_account_dunning_fee-4.2.0.tar.gz) = 1e020274aa626e1982a4f741f912b70bbc881929
|
||||
SHA512 (tryton-4.2/trytond_account_dunning_fee-4.2.0.tar.gz) = b1ff5ad2af074bba5c2a8ac0b43702e11296f875f617a2ae01399b0ef5ea8091b36694a18f00b419830b40e2203a9e0d593397aca93ffe5936bb962a0f5f8c2c
|
||||
Size (tryton-4.2/trytond_account_dunning_fee-4.2.0.tar.gz) = 27209 bytes
|
1
finance/py-trytond-account-dunning-letter/DESCR
Normal file
1
finance/py-trytond-account-dunning-letter/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_dunning_letter module of the Tryton application platform.
|
21
finance/py-trytond-account-dunning-letter/Makefile
Normal file
21
finance/py-trytond-account-dunning-letter/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_dunning_letter
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= Tryton's account_dunning_letter module
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-dunning>=${TRYTON_BASEVER}:../../finance/py-trytond-account-dunning
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
44
finance/py-trytond-account-dunning-letter/PLIST
Normal file
44
finance/py-trytond-account-dunning-letter/PLIST
Normal file
|
@ -0,0 +1,44 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/dunning.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/dunning.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/dunning.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/dunning.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/letter.odt
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/scenario_account_dunning_letter.rst
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/test_account_dunning_letter.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/test_account_dunning_letter.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tests/test_account_dunning_letter.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/view/dunning_level_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning_letter/view/dunning_level_list.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-dunning-letter/distinfo
Normal file
6
finance/py-trytond-account-dunning-letter/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_dunning_letter-4.2.0.tar.gz) = f3311c0b1f1de8406e6fe5e7bb41ccf0bd041892
|
||||
RMD160 (tryton-4.2/trytond_account_dunning_letter-4.2.0.tar.gz) = f4724b5d726166925ec7fe20d6c5735f2401537b
|
||||
SHA512 (tryton-4.2/trytond_account_dunning_letter-4.2.0.tar.gz) = 2061c2a6f1e47e693ee512b085cb385a048558d3503ae933714ac3600e7817c28bbd1a2f6b596ea69150665b5b42b03f4c16af5b6818dd083bb773c1cd97363a
|
||||
Size (tryton-4.2/trytond_account_dunning_letter-4.2.0.tar.gz) = 34924 bytes
|
1
finance/py-trytond-account-dunning/DESCR
Normal file
1
finance/py-trytond-account-dunning/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_dunning module of the Tryton application platform.
|
21
finance/py-trytond-account-dunning/Makefile
Normal file
21
finance/py-trytond-account-dunning/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_dunning
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= rodent@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= The account_dunning module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-python-sql>=0.4:../../databases/py-python-sql
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
60
finance/py-trytond-account-dunning/PLIST
Normal file
60
finance/py-trytond-account-dunning/PLIST
Normal file
|
@ -0,0 +1,60 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_dunning/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/account.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/dunning.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/dunning.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/dunning.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/dunning.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_dunning/party.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/party.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/party.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/scenario_account_dunning.rst
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/test_account_dunning.py
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/test_account_dunning.pyc
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tests/test_account_dunning.pyo
|
||||
${PYSITELIB}/trytond/modules/account_dunning/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_create_start_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_level_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_level_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_level_list_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_procedure_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_procedure_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/dunning_process_start_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_dunning/view/party_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
finance/py-trytond-account-dunning/distinfo
Normal file
6
finance/py-trytond-account-dunning/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_dunning-4.2.0.tar.gz) = 9035f8989065a0348a2a484eaf1b9bdedade0d15
|
||||
RMD160 (tryton-4.2/trytond_account_dunning-4.2.0.tar.gz) = 16e5df9dbb46c46881441c7636a30e6423fa6e0b
|
||||
SHA512 (tryton-4.2/trytond_account_dunning-4.2.0.tar.gz) = 0f9a08130bb601d4c69af4be0b3c8fb000fec00ebb6b5ffdbbddd661e67b7c292373e78e047b346861ec4ae124954c84edb65fb11265159e7fbe067419161565
|
||||
Size (tryton-4.2/trytond_account_dunning-4.2.0.tar.gz) = 34153 bytes
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.4 2015/08/24 14:49:41 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_fr
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,8 +8,9 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= The account_fr module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-siret>=${TRYTON_BASEVER}:../../misc/py-trytond-party-siret
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,37 +1,30 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.4 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_fr/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_fr/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_fr/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_fr/account_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_fr/account.py
|
||||
${PYSITELIB}/trytond/modules/account_fr/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_fr/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_fr/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/account_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_fr/tax_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_fr/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_fr/tests/__init__.pyc
|
||||
|
@ -42,3 +35,10 @@ ${PYSITELIB}/trytond/modules/account_fr/tests/test_account_fr.pyo
|
|||
${PYSITELIB}/trytond/modules/account_fr/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_fr/view/fec_result_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_fr/view/fec_start_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.5 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.6 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_fr-3.8.0.tar.gz) = 5a24c4ff937570333b996de3bdf616ec63726ad3
|
||||
RMD160 (tryton-3.8/trytond_account_fr-3.8.0.tar.gz) = da857b8421c0d83a8ad16014879f2319be786595
|
||||
SHA512 (tryton-3.8/trytond_account_fr-3.8.0.tar.gz) = f007ea82e0b970f91f2c804d196ddccabaf7e5c247e095c00c86e26b1a62b6c493617e45d172d3578798e3dbb712534f2863c266d4be4d14899e686f42620da6
|
||||
Size (tryton-3.8/trytond_account_fr-3.8.0.tar.gz) = 56747 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_fr-4.2.0.tar.gz) = 2c9bfdabbc48ed6d8b67bbd5d2fceaa7b71d3ca5
|
||||
RMD160 (tryton-4.2/trytond_account_fr-4.2.0.tar.gz) = a2f2754b2990b56eb6c81b07c59e5cb258ee13ab
|
||||
SHA512 (tryton-4.2/trytond_account_fr-4.2.0.tar.gz) = f027b01a5bb548cc4e108f11df07b5f20216efa909a0bffc3a279d426b508969429adff916715f81a76e1c8341778786668bfd90b25ccf5ab8e430cadd181538
|
||||
Size (tryton-4.2/trytond_account_fr-4.2.0.tar.gz) = 57725 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_invoice_history
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,9 +8,9 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account invoice history module of the Tryton platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,35 +1,28 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.3 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/invoice.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/party.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/party.pyo
|
||||
|
@ -37,3 +30,10 @@ ${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.py
|
|||
${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice_history/tryton.cfg
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.3 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.4 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_invoice_history-3.8.0.tar.gz) = 95b0073b8fe3048b1cfaba225b5894113e0a7122
|
||||
RMD160 (tryton-3.8/trytond_account_invoice_history-3.8.0.tar.gz) = 12cd8077658213bb18383be6b50a1f1f3e8f47b3
|
||||
SHA512 (tryton-3.8/trytond_account_invoice_history-3.8.0.tar.gz) = 55409a28f06dc8097755588cb6854562db185a5f136ee7c91ace9c69b0918fbf26136a491c6b35daaaa8cf03125345ec0a669a65ce9dae123e4a785db6a773cc
|
||||
Size (tryton-3.8/trytond_account_invoice_history-3.8.0.tar.gz) = 18161 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_invoice_history-4.2.0.tar.gz) = 2d2edd006f72243d0a1af8e17da5219ea2b0640f
|
||||
RMD160 (tryton-4.2/trytond_account_invoice_history-4.2.0.tar.gz) = e12932f3dbf3e35297f48359041c7f930b68a008
|
||||
SHA512 (tryton-4.2/trytond_account_invoice_history-4.2.0.tar.gz) = 8e80f48dd422b7562bfc2803d83fb62220c2d76bb8137f46abb2bbe0555c5fd6cca75a92852e02b455a1a866bc4e5f6efac86018ceaa0d5fefab8f5396af4d21
|
||||
Size (tryton-4.2/trytond_account_invoice_history-4.2.0.tar.gz) = 18374 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_invoice_line_standalone
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,8 +8,8 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account invoice line standalone module of the Tryton platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.3 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.pyo
|
||||
|
@ -13,24 +6,24 @@ ${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.py
|
|||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.pyo
|
||||
|
@ -40,3 +33,10 @@ ${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/test_account_
|
|||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/view/invoice_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice_line_standalone/view/invoice_line_tree.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.3 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.4 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_invoice_line_standalone-3.8.0.tar.gz) = fe830339b4cb6879c7a2eba34b6b6a4ce97ad8b1
|
||||
RMD160 (tryton-3.8/trytond_account_invoice_line_standalone-3.8.0.tar.gz) = 119ec1330c4246cd4a788d310673718d6b04a37d
|
||||
SHA512 (tryton-3.8/trytond_account_invoice_line_standalone-3.8.0.tar.gz) = 756b652cdace82c44e88efe6d7723893295271e22a54df433bc3aed51878c8b4b5acf12353e3c8d0513da8c9963e36377724ee0b65e4a4c1043ca7982d471aa4
|
||||
Size (tryton-3.8/trytond_account_invoice_line_standalone-3.8.0.tar.gz) = 20264 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_invoice_line_standalone-4.2.0.tar.gz) = eb77a1b99893d9ad404bb1e694ab575b79fe02b5
|
||||
RMD160 (tryton-4.2/trytond_account_invoice_line_standalone-4.2.0.tar.gz) = 99bcdcd43df9c152b61100731367f4336a5b75b0
|
||||
SHA512 (tryton-4.2/trytond_account_invoice_line_standalone-4.2.0.tar.gz) = fb6941bd4010037fa705da061f54194c5723fffa6417512fdf40aa99e7095c0a6495ad72afda098b0dc207c18421bfdb9eeaa24c69325ca9a9f2f8a3cb20ce41
|
||||
Size (tryton-4.2/trytond_account_invoice_line_standalone-4.2.0.tar.gz) = 20028 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_invoice_stock
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,10 +8,10 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account invoice stock module of the Tryton 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-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product>=${TRYTON_BASEVER}:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-stock>=${TRYTON_BASEVER}:../../misc/py-trytond-stock
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.3 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.pyo
|
||||
|
@ -13,24 +6,24 @@ ${PYSITELIB}/trytond/modules/account_invoice_stock/account.py
|
|||
${PYSITELIB}/trytond/modules/account_invoice_stock/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/stock.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/stock.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/stock.pyo
|
||||
|
@ -44,3 +37,10 @@ ${PYSITELIB}/trytond/modules/account_invoice_stock/tests/test_account_invoice_st
|
|||
${PYSITELIB}/trytond/modules/account_invoice_stock/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/view/invoice_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice_stock/view/move_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.3 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.4 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_invoice_stock-3.8.0.tar.gz) = e80a3d2031b9c767a983a09c9fc269f9c20ec38d
|
||||
RMD160 (tryton-3.8/trytond_account_invoice_stock-3.8.0.tar.gz) = 7e0ec5dac0e6f7327ae402bc543843a798173fdb
|
||||
SHA512 (tryton-3.8/trytond_account_invoice_stock-3.8.0.tar.gz) = 76237456734c7d43f74a80f466dc0e790b55df9b030fccd6a8bc9e15936b32e469efa2fb14a2e34ec7f75412a5763b59dfd50bd092f776115f6adc6978a312ae
|
||||
Size (tryton-3.8/trytond_account_invoice_stock-3.8.0.tar.gz) = 20449 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_invoice_stock-4.2.0.tar.gz) = 64b0752fa734c4dc921a1e20a396c62f1bb1c5af
|
||||
RMD160 (tryton-4.2/trytond_account_invoice_stock-4.2.0.tar.gz) = f5fffa91effa8aa31f37a700a33a85302b1dcf04
|
||||
SHA512 (tryton-4.2/trytond_account_invoice_stock-4.2.0.tar.gz) = ea10f1c7307b4463ef6241d8f348d10e4746b9f41d64c30c91d517e30ebe3745370987924dba58bc2aff54506f150f2ee1e761e2673d1fd7f3fe4e5429739dee
|
||||
Size (tryton-4.2/trytond_account_invoice_stock-4.2.0.tar.gz) = 21014 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.8 2015/08/24 14:49:41 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2016/12/04 21:13:00 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_invoice
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -9,13 +9,13 @@ COMMENT= Account invoice module of the Tryton application platform
|
|||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product>=${TRYTON_BASEVER}:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency>=${TRYTON_BASEVER}:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product>=${TRYTON_BASEVER}:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.4 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.5 2016/12/04 21:13:00 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_invoice/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice/__init__.pyo
|
||||
|
@ -18,24 +11,24 @@ ${PYSITELIB}/trytond/modules/account_invoice/invoice.py
|
|||
${PYSITELIB}/trytond/modules/account_invoice/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice/invoice.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_invoice/party.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice/party.pyo
|
||||
|
@ -47,9 +40,9 @@ ${PYSITELIB}/trytond/modules/account_invoice/payment_term.xml
|
|||
${PYSITELIB}/trytond/modules/account_invoice/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/scenario_invoice.rst
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/scenario_invoice_alternate_currency.rst
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/scenario_invoice_supplier.rst
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/scenario_invoice.rst
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.py
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.pyo
|
||||
|
@ -59,18 +52,16 @@ ${PYSITELIB}/trytond/modules/account_invoice/tests/tools.pyo
|
|||
${PYSITELIB}/trytond/modules/account_invoice/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/address_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/address_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/configuration_tax_rounding_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/configuration_tax_rounding_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/address_tree_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/credit_start_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/fiscalyear_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/move_line_list_payment.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/move_line_list_to_pay.xml
|
||||
|
@ -79,13 +70,20 @@ ${PYSITELIB}/trytond/modules/account_invoice/view/pay_ask_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_invoice/view/pay_start_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_list_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_list_sequence.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_test_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_test_result_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/period_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_invoice/view/print_warning_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.7 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.8 2016/12/04 21:13:00 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_invoice-3.8.0.tar.gz) = a41be221bcf24558377dfe0f928ed5262a55d295
|
||||
RMD160 (tryton-3.8/trytond_account_invoice-3.8.0.tar.gz) = a0be26451ce031ae431959d0bfd5acca394b4dae
|
||||
SHA512 (tryton-3.8/trytond_account_invoice-3.8.0.tar.gz) = 3aac31aba2b342bb447ccea6f5119df4a1b8dbb720f06c2817e1c37623d36c346e9caa313176d80b480b16f21eb58b516e54ad43c3f5b5004af778a8a4595513
|
||||
Size (tryton-3.8/trytond_account_invoice-3.8.0.tar.gz) = 159556 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_invoice-4.2.0.tar.gz) = 998e286f8c24209b4256c9ad38e6b15b69dbf53d
|
||||
RMD160 (tryton-4.2/trytond_account_invoice-4.2.0.tar.gz) = 4ee712e16fb0fc80807519e233995a9123f0543e
|
||||
SHA512 (tryton-4.2/trytond_account_invoice-4.2.0.tar.gz) = 60cfc8c1a5dd2fe556d171fa25b528a3bb92cc39a30bba8bf79f55313d9a8577b3322568306f9eb6e29cd8baf483a9046817c5b54a0c8bb5e373915332d42d6a
|
||||
Size (tryton-4.2/trytond_account_invoice-4.2.0.tar.gz) = 149967 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_payment_clearing
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,8 +8,8 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account payment clearing module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment-[0-9]*:../../finance/py-trytond-account-payment
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment>=${TRYTON_BASEVER}:../../finance/py-trytond-account-payment
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
REPLACE_PYTHON+= tests/test_account_payment_clearing.py
|
||||
|
||||
|
|
|
@ -1,35 +1,28 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.3 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/account.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/payment.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/payment.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/payment.pyo
|
||||
|
@ -41,6 +34,8 @@ ${PYSITELIB}/trytond/modules/account_payment_clearing/statement.xml
|
|||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/scenario_account_negative_payment_clearing.rst
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/scenario_account_payment_clearing.rst
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.pyo
|
||||
|
@ -49,3 +44,10 @@ ${PYSITELIB}/trytond/modules/account_payment_clearing/view/payment_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_payment_clearing/view/payment_journal_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/view/statement_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_clearing/view/statement_line_tree.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.3 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.4 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_payment_clearing-3.8.0.tar.gz) = 1fd14e980944ea3f1b1b13c09fe9568a1906d1d7
|
||||
RMD160 (tryton-3.8/trytond_account_payment_clearing-3.8.0.tar.gz) = 6defb1dd8a79d4e46f7bca67e1488a14fd92c3bf
|
||||
SHA512 (tryton-3.8/trytond_account_payment_clearing-3.8.0.tar.gz) = 96aa3af2c11638a848887c71bb1ca24083ac9ce541f8a5d690a4b5cbeabe4d864aa1e63072079659f475de3b17e1ea69a2578d2355e2a053d6cccce6d2b52db1
|
||||
Size (tryton-3.8/trytond_account_payment_clearing-3.8.0.tar.gz) = 22868 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_payment_clearing-4.2.0.tar.gz) = 2069d33d1f48e6d33b22861a0f2346ecb4f9edb0
|
||||
RMD160 (tryton-4.2/trytond_account_payment_clearing-4.2.0.tar.gz) = 9d9c58328039175c624ed2439a76fd6c4d32fe6f
|
||||
SHA512 (tryton-4.2/trytond_account_payment_clearing-4.2.0.tar.gz) = 374032487437f3c26dab34b36e69abf99660d0f09699c7553a8680b38b9c8ff8d9608912b6219f4b654c7a0c6a7d11c9fa43a19fd541af26f319f7e1e8afb959
|
||||
Size (tryton-4.2/trytond_account_payment_clearing-4.2.0.tar.gz) = 24422 bytes
|
||||
|
|
1
finance/py-trytond-account-payment-sepa-cfonb/DESCR
Normal file
1
finance/py-trytond-account-payment-sepa-cfonb/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_payment_sepa_cfonb module of the Tryton application platform.
|
23
finance/py-trytond-account-payment-sepa-cfonb/Makefile
Normal file
23
finance/py-trytond-account-payment-sepa-cfonb/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_payment_sepa_cfonb
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= Account payment SEPA CFONB module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment-sepa>=${TRYTON_BASEVER}:../../finance/py-trytond-account-payment-sepa
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment>=${TRYTON_BASEVER}:../../finance/py-trytond-account-payment
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-bank>=${TRYTON_BASEVER}:../../finance/py-trytond-bank
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
REPLACE_PYTHON+= tests/test_account_payment_sepa_cfonb.py
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../lang/python/versioned_dependencies.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
24
finance/py-trytond-account-payment-sepa-cfonb/PLIST
Normal file
24
finance/py-trytond-account-payment-sepa-cfonb/PLIST
Normal file
|
@ -0,0 +1,24 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:01 rodent 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/account_payment_sepa_cfonb/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/payment.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/payment.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/payment.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/template/base-cfonb.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/template/pain.001.001.03-cfonb.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/template/pain.008.001.02-cfonb.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/test_account_payment_sepa_cfonb.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/test_account_payment_sepa_cfonb.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tests/test_account_payment_sepa_cfonb.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa_cfonb/tryton.cfg
|
6
finance/py-trytond-account-payment-sepa-cfonb/distinfo
Normal file
6
finance/py-trytond-account-payment-sepa-cfonb/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-4.2/trytond_account_payment_sepa_cfonb-4.2.0.tar.gz) = 954df127f81c08589017f662fc0a64548615a643
|
||||
RMD160 (tryton-4.2/trytond_account_payment_sepa_cfonb-4.2.0.tar.gz) = 3af4445f2e6841c8970410f1527d9603abf00159
|
||||
SHA512 (tryton-4.2/trytond_account_payment_sepa_cfonb-4.2.0.tar.gz) = d8253d25b577d17890bea6eeea75c7e49efcaa9e317551ff5eca93f614b2e9466d341946d774f96c65cf634f612d31b27c6c7e0fa005155bd2feeebeebaa1a39
|
||||
Size (tryton-4.2/trytond_account_payment_sepa_cfonb-4.2.0.tar.gz) = 20016 bytes
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.4 2016/08/28 15:48:31 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_payment_sepa
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,11 +8,11 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account payment SEPA module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment-[0-9]*:../../finance/py-trytond-account-payment
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-bank-[0-9]*:../../finance/py-trytond-bank
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment>=${TRYTON_BASEVER}:../../finance/py-trytond-account-payment
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-bank>=${TRYTON_BASEVER}:../../finance/py-trytond-bank
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-genshi-[0-9]*:../../www/py-genshi
|
||||
DEPENDS+= ${PYPKGPREFIX}-lxml>=2.0:../../textproc/py-lxml
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.4 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.5 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.pyo
|
||||
|
@ -13,24 +6,24 @@ ${PYSITELIB}/trytond/modules/account_payment_sepa/account.py
|
|||
${PYSITELIB}/trytond/modules/account_payment_sepa/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/mandate.odt
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/party.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/party.pyc
|
||||
|
@ -54,9 +47,13 @@ ${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.008.003.02.xml
|
|||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.01.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.01.xsd
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.02.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.02.xsd
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.03.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.03.xsd
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.04.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.04.xsd
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.001.001.03.xsd
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.001.001.05.xsd
|
||||
|
@ -73,7 +70,13 @@ ${PYSITELIB}/trytond/modules/account_payment_sepa/view/mandate_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/mandate_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/message_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/message_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/party_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/payment_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/payment_group_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment_sepa/view/payment_journal_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.6 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.7 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_payment_sepa-3.8.0.tar.gz) = ec4f077d7ee3a5e4e0a74cb8c799a32e73b43170
|
||||
RMD160 (tryton-3.8/trytond_account_payment_sepa-3.8.0.tar.gz) = ff6310993ee35ac0e70085215636add2f786a66c
|
||||
SHA512 (tryton-3.8/trytond_account_payment_sepa-3.8.0.tar.gz) = 3f46fb5da7d2e3e61db0ad1d1bc0ae89b764b500b62b9a8e52c93b37b3703cadb8a405bd0cf43f9956833b2a6b6ff40ea3702e227a127b5ed8230291b26ae665
|
||||
Size (tryton-3.8/trytond_account_payment_sepa-3.8.0.tar.gz) = 109469 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_payment_sepa-4.2.0.tar.gz) = fbf23f8a253701b17e0761f4dae53d6eb7f90b83
|
||||
RMD160 (tryton-4.2/trytond_account_payment_sepa-4.2.0.tar.gz) = 2da0b55f3b56b26bd1fc5db42afd1175395a4c84
|
||||
SHA512 (tryton-4.2/trytond_account_payment_sepa-4.2.0.tar.gz) = f5335b573f606365853e73f33a09fc10b4ac60829422bdf266faebe43ca20d758028de799a4aed541c29801a40c187b4d88057495e8de06fde3c0dddf924ccdc
|
||||
Size (tryton-4.2/trytond_account_payment_sepa-4.2.0.tar.gz) = 112597 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.3 2015/08/24 14:49:42 richard Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_payment
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,11 +8,11 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account_payment module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency>=${TRYTON_BASEVER}:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.4 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_payment/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_payment/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/__init__.pyo
|
||||
|
@ -13,24 +6,27 @@ ${PYSITELIB}/trytond/modules/account_payment/account.py
|
|||
${PYSITELIB}/trytond/modules/account_payment/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_payment/party.py
|
||||
${PYSITELIB}/trytond/modules/account_payment/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/party.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment/payment.py
|
||||
${PYSITELIB}/trytond/modules/account_payment/payment.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/payment.pyo
|
||||
|
@ -39,12 +35,14 @@ ${PYSITELIB}/trytond/modules/account_payment/tests/__init__.py
|
|||
${PYSITELIB}/trytond/modules/account_payment/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/scenario_account_payment.rst
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/scenario_account_payment_invoice.rst
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/test_account_payment.py
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/test_account_payment.pyc
|
||||
${PYSITELIB}/trytond/modules/account_payment/tests/test_account_payment.pyo
|
||||
${PYSITELIB}/trytond/modules/account_payment/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/move_line_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/move_line_pay_start_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/move_line_pay_ask_journal_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/payment_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/payment_group_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/payment_group_list.xml
|
||||
|
@ -52,3 +50,10 @@ ${PYSITELIB}/trytond/modules/account_payment/view/payment_journal_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_payment/view/payment_journal_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/payment_list.xml
|
||||
${PYSITELIB}/trytond/modules/account_payment/view/payment_process_start_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.5 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.6 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_payment-3.8.0.tar.gz) = 1f80210f07275b737cd4e3671cd1c0900b6e85a3
|
||||
RMD160 (tryton-3.8/trytond_account_payment-3.8.0.tar.gz) = 7b8c3581bdcf8a67aa692220cdb5fe2de2fc2ed6
|
||||
SHA512 (tryton-3.8/trytond_account_payment-3.8.0.tar.gz) = bb570b7bd91c78dbb014141847f6a3f6b578b024e8432ef26653b9ae1d18d94f3331e6db61e45e772fc19f741bb17114c8204e67c714445770820a9b54242132
|
||||
Size (tryton-3.8/trytond_account_payment-3.8.0.tar.gz) = 35883 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_payment-4.2.0.tar.gz) = 41975b89c1a5ef69305fcbbe1e5606fc01eeb95c
|
||||
RMD160 (tryton-4.2/trytond_account_payment-4.2.0.tar.gz) = c2361f24d79f607ca8fab8ed283be9674c4bf9fe
|
||||
SHA512 (tryton-4.2/trytond_account_payment-4.2.0.tar.gz) = 41911b774adaaee56cedf3eaa4b24dfa93909ae7029ba51459778e4eb71b602aef26e686a7adf922a6ab231739a7d52ffab54c3f6fe27ff43277cae834e57244
|
||||
Size (tryton-4.2/trytond_account_payment-4.2.0.tar.gz) = 41521 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.7 2015/03/15 00:17:35 rodent Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_product
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,10 +8,10 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account product module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-product>=${TRYTON_BASEVER}:../../misc/py-trytond-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.4 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_product/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_product/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_product/__init__.pyo
|
||||
|
@ -13,24 +6,24 @@ ${PYSITELIB}/trytond/modules/account_product/configuration.py
|
|||
${PYSITELIB}/trytond/modules/account_product/configuration.pyc
|
||||
${PYSITELIB}/trytond/modules/account_product/configuration.pyo
|
||||
${PYSITELIB}/trytond/modules/account_product/configuration.xml
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_product/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_product/product.py
|
||||
${PYSITELIB}/trytond/modules/account_product/product.pyc
|
||||
${PYSITELIB}/trytond/modules/account_product/product.pyo
|
||||
|
@ -44,4 +37,13 @@ ${PYSITELIB}/trytond/modules/account_product/tests/test_account_product.pyo
|
|||
${PYSITELIB}/trytond/modules/account_product/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_product/view/category_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_product/view/configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_product/view/product_configuration_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_product/view/template_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_product/view/template_tree.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.6 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.7 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_product-3.8.0.tar.gz) = c488376589e71117c3b0fc6eba0a0397585a1026
|
||||
RMD160 (tryton-3.8/trytond_account_product-3.8.0.tar.gz) = fa97ec83da3e3bd1d2088cf7813e8776a22cc3a9
|
||||
SHA512 (tryton-3.8/trytond_account_product-3.8.0.tar.gz) = 717cb7b4b081c31a3ecaa07289c7b522f834bf330a6b1ff4089b05fd8ac4f2ed04a5ec6e48ed380d1a27f349001da7794a0d95b639dcd55a445ab7586f9ccd06
|
||||
Size (tryton-3.8/trytond_account_product-3.8.0.tar.gz) = 29571 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_product-4.2.0.tar.gz) = 48507966f512d37ad5dd08997a3f77abc6e38d35
|
||||
RMD160 (tryton-4.2/trytond_account_product-4.2.0.tar.gz) = 3def49f7e5bf6a6a9103c9558b1b59c40d2133fc
|
||||
SHA512 (tryton-4.2/trytond_account_product-4.2.0.tar.gz) = d4cf41babcec41edc3761a9abec1122184bbdce1b94e861e9290144aa6d7ce23c95ceeb937c2a06a2e864404c2145cba4c9e174dcdc78c71157ed2ece81f5741
|
||||
Size (tryton-4.2/trytond_account_product-4.2.0.tar.gz) = 34251 bytes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.2 2015/03/15 00:17:35 rodent Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_statement
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
@ -8,12 +8,12 @@ HOMEPAGE= http://www.tryton.org/
|
|||
COMMENT= Account statement module of the Tryton application platform
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-currency>=${TRYTON_BASEVER}:../../finance/py-trytond-currency
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-company>=${TRYTON_BASEVER}:../../misc/py-trytond-company
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-party>=${TRYTON_BASEVER}:../../misc/py-trytond-party
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.4 2015/11/22 08:05:08 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
|
||||
@comment $NetBSD: PLIST,v 1.5 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_statement/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_statement/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_statement/__init__.pyo
|
||||
|
@ -16,24 +9,27 @@ ${PYSITELIB}/trytond/modules/account_statement/journal.py
|
|||
${PYSITELIB}/trytond/modules/account_statement/journal.pyc
|
||||
${PYSITELIB}/trytond/modules/account_statement/journal.pyo
|
||||
${PYSITELIB}/trytond/modules/account_statement/journal.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/bg_BG.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/ca_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/cs_CZ.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/de_DE.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_AR.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_CO.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_EC.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_ES.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_MX.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/fr_FR.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/lt_LT.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/nl_NL.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/ru_RU.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/sl_SI.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_statement/party.py
|
||||
${PYSITELIB}/trytond/modules/account_statement/party.pyc
|
||||
${PYSITELIB}/trytond/modules/account_statement/party.pyo
|
||||
${PYSITELIB}/trytond/modules/account_statement/statement.odt
|
||||
${PYSITELIB}/trytond/modules/account_statement/statement.py
|
||||
${PYSITELIB}/trytond/modules/account_statement/statement.pyc
|
||||
|
@ -53,6 +49,13 @@ ${PYSITELIB}/trytond/modules/account_statement/view/statement_form.xml
|
|||
${PYSITELIB}/trytond/modules/account_statement/view/statement_journal_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_journal_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_line_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_line_tree_editable.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_line_tree.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_line_tree_editable.xml
|
||||
${PYSITELIB}/trytond/modules/account_statement/view/statement_tree.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.5 2015/11/22 08:05:08 richard Exp $
|
||||
$NetBSD: distinfo,v 1.6 2016/12/04 21:13:01 rodent Exp $
|
||||
|
||||
SHA1 (tryton-3.8/trytond_account_statement-3.8.0.tar.gz) = 5ee0564be4f050341da82965b2d07b76237d1332
|
||||
RMD160 (tryton-3.8/trytond_account_statement-3.8.0.tar.gz) = 44a6ac3df0a5fe46c72dfbbf97ae901749486e7f
|
||||
SHA512 (tryton-3.8/trytond_account_statement-3.8.0.tar.gz) = fda91eef542e57920210c86daf341a840de022167e08b6bc60d4bfd48aadef81b31ce5cc0c439ba24edb83085c894b52db260096f3c64765e36b6609ef5210ce
|
||||
Size (tryton-3.8/trytond_account_statement-3.8.0.tar.gz) = 57847 bytes
|
||||
SHA1 (tryton-4.2/trytond_account_statement-4.2.0.tar.gz) = f444c5e85de99dea17255f500e1ab1b8c0290791
|
||||
RMD160 (tryton-4.2/trytond_account_statement-4.2.0.tar.gz) = 547902fd885277ba8596bd7f633971d56dfaa9d4
|
||||
SHA512 (tryton-4.2/trytond_account_statement-4.2.0.tar.gz) = a524e74ec80cc2ce6f896620a8b80e70a1a71ce8cbd02ac60e998fbb4118691a08cf1197ee2a58a7638eabb25726d0f092994580200a80e43e07ab55fc4b365e
|
||||
Size (tryton-4.2/trytond_account_statement-4.2.0.tar.gz) = 60635 bytes
|
||||
|
|
1
finance/py-trytond-account-stock-anglo-saxon/DESCR
Normal file
1
finance/py-trytond-account-stock-anglo-saxon/DESCR
Normal file
|
@ -0,0 +1 @@
|
|||
The account_stock_anglo_saxon module of the Tryton application platform.
|
23
finance/py-trytond-account-stock-anglo-saxon/Makefile
Normal file
23
finance/py-trytond-account-stock-anglo-saxon/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# $NetBSD: Makefile,v 1.1 2016/12/04 21:13:01 rodent Exp $
|
||||
TRYTON_MODULE_NAME= trytond_account_stock_anglo_saxon
|
||||
.include "../../devel/py-trytond/Makefile.common"
|
||||
CATEGORIES= finance python
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://www.tryton.org/
|
||||
COMMENT= Tryton's account stock anglo saxon continental module
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account>=${TRYTON_BASEVER}:../../finance/py-trytond-account
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice>=${TRYTON_BASEVER}:../../finance/py-trytond-account-invoice
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-product>=${TRYTON_BASEVER}:../../finance/py-trytond-account-product
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-account-stock-continental>=${TRYTON_BASEVER}:../../finance/py-trytond-account-stock-continental
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-purchase>=${TRYTON_BASEVER}:../../finance/py-trytond-purchase
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond-sale>=${TRYTON_BASEVER}:../../finance/py-trytond-sale
|
||||
DEPENDS+= ${PYPKGPREFIX}-trytond>=${TRYTON_BASEVER}:../../devel/py-trytond
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
67
finance/py-trytond-account-stock-anglo-saxon/PLIST
Normal file
67
finance/py-trytond-account-stock-anglo-saxon/PLIST
Normal file
|
@ -0,0 +1,67 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2016/12/04 21:13:01 rodent Exp $
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/account.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/account.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/account.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/account.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/invoice.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/invoice.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/invoice.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/bg.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/ca.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/cs.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/de.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/es.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/es_419.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/fr.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/hu_HU.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/it_IT.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/ja_JP.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/lo.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/lt.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/nl.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/pl.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/pt_BR.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/ru.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/sl.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/locale/zh_CN.po
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_bg.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_ca.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_de.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_en.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_es.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_fr.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_nl.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_pt.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_ru.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/minimal_chart_sl.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/product.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/product.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/product.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/product.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/stock.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/stock.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/stock.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/__init__.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/__init__.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/__init__.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/scenario_account_stock_anglo_saxon.rst
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/scenario_account_stock_anglo_saxon_with_drop_shipment.rst
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/test_account_stock_anglo_saxon.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/test_account_stock_anglo_saxon.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/test_account_stock_anglo_saxon.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/tools.py
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/tools.pyc
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tests/tools.pyo
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/tryton.cfg
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/view/category_form.xml
|
||||
${PYSITELIB}/trytond/modules/account_stock_anglo_saxon/view/template_form.xml
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
||||
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue