[tryton-debian-vcs] tryton-modules-health-pediatrics-growth-charts branch debian updated. debian/2.8.1-1-12-g1057774

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Mon Mar 28 18:28:09 UTC 2016


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-health-pediatrics-growth-charts.git;a=commitdiff;h=debian/2.8.1-1-12-g1057774

commit 1057774b61d67cfa0a59a73b7ae4a038e3fb7d2a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Mar 28 01:15:58 2016 +0200

    Releasing debian version 3.0.1-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 4b6d078..0356d3a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-health-pediatrics-growth-charts (3.0.1-1) unstable; urgency=medium
+
+  * Wrapping and sorting control files (wrap-and-sort -bts).
+  * Adapting section naming in gbp.conf to current git-buildpackage.
+  * Improving description why we can not run the module test suites.
+  * Updating copyright years.
+  * Merging upstream version 3.0.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Mon, 28 Mar 2016 01:15:58 +0200
+
 tryton-modules-health-pediatrics-growth-charts (2.8.1-1) unstable; urgency=medium
 
   * Initial packaging.
commit bfec25a2b72e17e9844815273c0fcb58671c1c3a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Mar 28 01:15:57 2016 +0200

    Merging upstream version 3.0.1.

diff --git a/PKG-INFO b/PKG-INFO
index de447f8..605b99c 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_health_pediatrics_growth_charts
-Version: 2.8.1
+Version: 3.0.1
 Summary: GNU Health Pediatrics Growth Charts Module
 Home-page: http://health.gnu.org/
 Author: GNU Solidario
diff --git a/README b/README
index 4d62bf1..45f0f01 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-#    Copyright (C) 2008-2015 Luis Falcon
+#    Copyright (C) 2008-2016 Luis Falcon
 
 #    This program is free software: you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
diff --git a/__init__.py b/__init__.py
index d99c8df..548bdef 100755
--- a/__init__.py
+++ b/__init__.py
@@ -2,9 +2,9 @@
 ##############################################################################
 #
 #    GNU Health: The Free Health and Hospital Information System
-#    Copyright (C) 2008-2015 Luis Falcon <lfalcon at gnusolidario.org>
+#    Copyright (C) 2008-2016 Luis Falcon <lfalcon at gnusolidario.org>
 #    Copyright (C) 2013  Sebastián Marro <smarro at gnusolidario.org>
-#    Copyright (C) 2011-2015 GNU Solidario <health at gnusolidario.org>
+#    Copyright (C) 2011-2016 GNU Solidario <health at gnusolidario.org>
 #
 #    This program is free software: you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
diff --git a/health_pediatrics_growth_charts.py b/health_pediatrics_growth_charts.py
index b0b2b0d..4be5588 100644
--- a/health_pediatrics_growth_charts.py
+++ b/health_pediatrics_growth_charts.py
@@ -2,9 +2,9 @@
 ##############################################################################
 #
 #    GNU Health: The Free Health and Hospital Information System
-#    Copyright (C) 2008-2015 Luis Falcon <lfalcon at gnusolidario.org>
+#    Copyright (C) 2008-2016 Luis Falcon <lfalcon at gnusolidario.org>
 #    Copyright (C) 2013  Sebastián Marro <smarro at gnusolidario.org>
-#    Copyright (C) 2011-2015 GNU Solidario <health at gnusolidario.org>
+#    Copyright (C) 2011-2016 GNU Solidario <health at gnusolidario.org>
 #
 #    This program is free software: you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
@@ -31,12 +31,12 @@ __metaclass__ = PoolMeta
 class PatientEvaluation:
     __name__ = 'gnuhealth.patient.evaluation'
 
-    age_months = fields.Function(fields.Char('Patient Age in Months'),
+    age_months = fields.Function(fields.Integer('Patient Age in Months'),
         'get_patient_age_months')
 
     def get_patient_age_months(self, name):
         if self.patient:
             if self.patient.dob:
                 delta = relativedelta(self.evaluation_start, self.patient.dob)
-                return str(delta.years * 12 + delta.months)
-        return "No DoB !"
+                return delta.years * 12 + delta.months
+        return None
diff --git a/locale/ar.po b/locale/ar.po
new file mode 100644
index 0000000..472842a
--- /dev/null
+++ b/locale/ar.po
@@ -0,0 +1,16 @@
+# Nab3a <asn09 at aub.edu.lb>, 2016.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2016-01-08 12:28+0000\n"
+"Last-Translator: Nab3a <asn09 at aub.edu.lb>\n"
+"Language: ar\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1452256112.0\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr "عمر المريض بالأشهر"
diff --git a/locale/de_AT.po b/locale/de_AT.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/de_AT.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/el_GR.po b/locale/el_GR.po
index 26c4894..eb8ab28 100644
--- a/locale/el_GR.po
+++ b/locale/el_GR.po
@@ -1,20 +1,7 @@
-# 
-# Translators:
-# Vassilis Perantzakis <vaspervnp at yahoo.gr>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-01-28 10:20+0000\n"
-"Last-Translator: Vassilis Perantzakis <vaspervnp at yahoo.gr>\n"
-"Language-Team: Greek (http://www.transifex.com/projects/p/GNU_Health/language/el/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
-msgstr "Ηλικία ασθενή σε μήνες"
+msgstr ""
diff --git a/locale/en_GB.po b/locale/en_GB.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/en_GB.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/es_AR.po b/locale/es_AR.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/es_AR.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/es_EC.po
new file mode 100644
index 0000000..5fd694c
--- /dev/null
+++ b/locale/es_EC.po
@@ -0,0 +1,18 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-01-06 20:11+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"Language: es_EC\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.10.0\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr "Edad del Paciente en Meses"
diff --git a/locale/es_ES.po b/locale/es_ES.po
index d81ff9f..25eecea 100644
--- a/locale/es_ES.po
+++ b/locale/es_ES.po
@@ -1,19 +1,14 @@
-# 
-# Translators:
-# Sebastián Marró <smarro at thymbra.com>, 2014
+# Anonymous Pootle User, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-12-30 22:39+0000\n"
-"Last-Translator: Bruno Villasanti <bvillasanti at thymbra.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/GNU_Health/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"PO-Revision-Date: 2016-01-08 11:18+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language: es_ES\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.5.0\n"
+"X-POOTLE-MTIME: 1452251938.0\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
diff --git a/locale/es_MX.po b/locale/es_MX.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/es_MX.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/es_PE.po b/locale/es_PE.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/es_PE.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index 592a320..eb8ab28 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -1,20 +1,7 @@
-# 
-# Translators:
-# Mathieu Anquetin <mathieu at anquetin.eu>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-01-27 11:10+0000\n"
-"Last-Translator: Mathieu Anquetin <mathieu at anquetin.eu>\n"
-"Language-Team: French (France) (http://www.transifex.com/projects/p/GNU_Health/language/fr_FR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr_FR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
-msgstr "Âge du patient en mois"
+msgstr ""
diff --git a/locale/it_IT.po b/locale/it_IT.po
index 297fabf..eb8ab28 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -1,20 +1,7 @@
-# 
-# Translators:
-# Selene <scordara at thymbra.com>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-01-22 16:20+0000\n"
-"Last-Translator: Selene <scordara at thymbra.com>\n"
-"Language-Team: Italian (http://www.transifex.com/projects/p/GNU_Health/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
-msgstr "Etá del paziente in mesi"
+msgstr ""
diff --git a/locale/kn.po b/locale/kn.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/kn.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/lo.po b/locale/lo.po
new file mode 100644
index 0000000..eb8ab28
--- /dev/null
+++ b/locale/lo.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:gnuhealth.patient.evaluation,age_months:"
+msgid "Patient Age in Months"
+msgstr ""
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index 8332c80..eb8ab28 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -1,20 +1,7 @@
-# 
-# Translators:
-# carlo giusepe tadei valente sasaki <carlo.gt.valente at gmail.com>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-01-23 04:30+0000\n"
-"Last-Translator: carlo giusepe tadei valente sasaki <carlo.gt.valente at gmail.com>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/GNU_Health/language/pt_BR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
-msgstr "Idade do paciente em meses"
+msgstr ""
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index 71170c2..eb8ab28 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -1,20 +1,7 @@
-# 
-# Translators:
-# Philip Li <Horatii.Lee at gmail.com>, 2014
+#
 msgid ""
-msgstr ""
-"Project-Id-Version: GNU Health\n"
-"Report-Msgid-Bugs-To: https://savannah.gnu.org/bugs/?group=health\n"
-"POT-Creation-Date: 2015-01-27 11:17+0000\n"
-"PO-Revision-Date: 2014-04-01 01:40+0000\n"
-"Last-Translator: Philip Li <Horatii.Lee at gmail.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/GNU_Health/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:gnuhealth.patient.evaluation,age_months:"
 msgid "Patient Age in Months"
-msgstr "以月份计算的患者年龄"
+msgstr ""
diff --git a/setup.py b/setup.py
index 3d62664..4582e9b 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ info = dict(config.items('tryton'))
 for key in ('depends', 'extras_depend', 'xml'):
     if key in info:
         info[key] = info[key].strip().splitlines()
-major_version, minor_version = 3, 4
+major_version, minor_version = 3, 8
 
 requires = []
 
diff --git a/tests/test_health_pediatrics_growth_charts.py b/tests/test_health_pediatrics_growth_charts.py
index 646fee4..43fcd7d 100644
--- a/tests/test_health_pediatrics_growth_charts.py
+++ b/tests/test_health_pediatrics_growth_charts.py
@@ -1,35 +1,13 @@
-#!/usr/bin/env python
-
-import sys, os
-DIR = os.path.abspath(os.path.normpath(os.path.join(__file__,
-    '..', '..', '..', '..', '..', 'trytond')))
-if os.path.isdir(DIR):
-    sys.path.insert(0, os.path.dirname(DIR))
-
 import unittest
 import trytond.tests.test_tryton
-from trytond.tests.test_tryton import test_view, test_depends
+from trytond.tests.test_tryton import ModuleTestCase
 
 
-class HealthPediatricsGrowthChartsTestCase(unittest.TestCase):
+class HealthPediatricsGrowthChartsTestCase(ModuleTestCase):
     '''
-    Test HealthPediatricsGrowthCharts module.
+    Test Health Pediatrics Growth Charts module.
     '''
-
-    def setUp(self):
-        trytond.tests.test_tryton.install_module('health_pediatrics_growth_charts')
-
-    def test0005views(self):
-        '''
-        Test views.
-        '''
-        test_view('health_pediatrics_growth_charts')
-
-    def test0006depends(self):
-        '''
-        Test depends.
-        '''
-        test_depends()
+    module = 'health_pediatrics_growth_charts'
 
 
 def suite():
@@ -37,6 +15,3 @@ def suite():
     suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
         HealthPediatricsGrowthChartsTestCase))
     return suite
-
-if __name__ == '__main__':
-    unittest.TextTestRunner(verbosity=2).run(suite())
diff --git a/tryton.cfg b/tryton.cfg
index 16f5768..7b78584 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.1
+version=3.0.1
 depends:
     health_pediatrics
 
diff --git a/trytond_health_pediatrics_growth_charts.egg-info/PKG-INFO b/trytond_health_pediatrics_growth_charts.egg-info/PKG-INFO
index 5ce2351..ae7689f 100644
--- a/trytond_health_pediatrics_growth_charts.egg-info/PKG-INFO
+++ b/trytond_health_pediatrics_growth_charts.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-health-pediatrics-growth-charts
-Version: 2.8.1
+Version: 3.0.1
 Summary: GNU Health Pediatrics Growth Charts Module
 Home-page: http://health.gnu.org/
 Author: GNU Solidario
diff --git a/trytond_health_pediatrics_growth_charts.egg-info/SOURCES.txt b/trytond_health_pediatrics_growth_charts.egg-info/SOURCES.txt
index c54efec..e5a585d 100644
--- a/trytond_health_pediatrics_growth_charts.egg-info/SOURCES.txt
+++ b/trytond_health_pediatrics_growth_charts.egg-info/SOURCES.txt
@@ -6,20 +6,38 @@ setup.py
 ./health_pediatrics_growth_charts.py
 ./tryton.cfg
 ./doc/index.rst
+./locale/ar.po
+./locale/de_AT.po
 ./locale/el_GR.po
+./locale/en_GB.po
+./locale/es_AR.po
+./locale/es_EC.po
 ./locale/es_ES.po
+./locale/es_MX.po
+./locale/es_PE.po
 ./locale/fr_FR.po
 ./locale/it_IT.po
 ./locale/ja_JP.po
+./locale/kn.po
+./locale/lo.po
 ./locale/pt_BR.po
 ./locale/zh_CN.po
 ./tests/__init__.py
 ./tests/test_health_pediatrics_growth_charts.py
+locale/ar.po
+locale/de_AT.po
 locale/el_GR.po
+locale/en_GB.po
+locale/es_AR.po
+locale/es_EC.po
 locale/es_ES.po
+locale/es_MX.po
+locale/es_PE.po
 locale/fr_FR.po
 locale/it_IT.po
 locale/ja_JP.po
+locale/kn.po
+locale/lo.po
 locale/pt_BR.po
 locale/zh_CN.po
 trytond_health_pediatrics_growth_charts.egg-info/PKG-INFO
diff --git a/trytond_health_pediatrics_growth_charts.egg-info/requires.txt b/trytond_health_pediatrics_growth_charts.egg-info/requires.txt
index bcbf0e8..5abab40 100644
--- a/trytond_health_pediatrics_growth_charts.egg-info/requires.txt
+++ b/trytond_health_pediatrics_growth_charts.egg-info/requires.txt
@@ -1,2 +1,2 @@
-trytond_health_pediatrics == 2.8.1
-trytond >= 3.4, < 3.5
+trytond_health_pediatrics == 3.0.1
+trytond >= 3.8, < 3.9
commit aab4756ada365d378f1b06a3efef146b62ef2c68
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Fri Mar 25 21:58:40 2016 +0100

    Updating copyright years.

diff --git a/debian/copyright b/debian/copyright
index 797cead..bc5aec8 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,8 +1,8 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
 Files: *
-Copyright: 2008-2015 Luis Falcon <lfalcon at gnusolidario.org>
-           2011-2015 GNU Solidario <health at gnusolidario.org>
+Copyright: 2008-2016 Luis Falcon <lfalcon at gnusolidario.org>
+           2011-2016 GNU Solidario <health at gnusolidario.org>
 License: GPL-3+
 
 Files: setup.py
@@ -10,7 +10,7 @@ Copyright: 2011 Cédric Krier <ced at b2ck.com>
 License: GPL-3+
 
 Files: debian/*
-Copyright: 2015 Mathias Behrle <mathiasb at m9s.biz>
+Copyright: 2015-2016 Mathias Behrle <mathiasb at m9s.biz>
 License: GPL-3+
 
 License: GPL-3+
-- 
tryton-modules-health-pediatrics-growth-charts



More information about the tryton-debian-vcs mailing list