[tryton-debian-vcs] tryton-modules-stock-supply-day branch upstream updated. upstream/3.0.0-1-gc7aa301

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Tue Apr 22 13:11:27 UTC 2014


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock-supply-day.git;a=commitdiff;h=upstream/3.0.0-1-gc7aa301

commit c7aa301a33666e4dde285642d485b4b75dfe9e69
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Apr 22 14:23:58 2014 +0200

    Adding upstream version 3.2.0.

diff --git a/CHANGELOG b/CHANGELOG
index c9c3b17..dbd87f6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.0 - 2014-04-21
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.0 - 2013-10-21
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index d7165c7..9925e7d 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2013 Cédric Krier.
+Copyright (C) 2008-2014 Cédric Krier.
 Copyright (C) 2008-2012 Bertrand Chenal.
-Copyright (C) 2008-2013 B2CK SPRL.
+Copyright (C) 2008-2014 B2CK SPRL.
 
 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/INSTALL b/INSTALL
index e363bd6..f49164a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -4,7 +4,7 @@ Installing trytond_stock_supply_day
 Prerequisites
 -------------
 
- * Python 2.6 or later (http://www.python.org/)
+ * Python 2.7 or later (http://www.python.org/)
  * trytond (http://www.tryton.org/)
  * trytond_purchase (http://www.tryton.org/)
 
diff --git a/MANIFEST.in b/MANIFEST.in
index 2569955..e013c00 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,12 +1,10 @@
 include INSTALL
 include README
-include TODO
 include COPYRIGHT
 include CHANGELOG
 include LICENSE
 include tryton.cfg
 include *.xml
 include view/*.xml
-include *.odt
 include locale/*.po
 include doc/*
diff --git a/PKG-INFO b/PKG-INFO
index d30d70f..303681e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_stock_supply_day
-Version: 3.0.0
+Version: 3.2.0
 Summary: Tryton module to add supply weekdays
 Home-page: http://www.tryton.org/
 Author: Tryton
-Author-email: UNKNOWN
+Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.0/
+Download-URL: http://downloads.tryton.org/3.2/
 Description: trytond_stock_supply_day
         ========================
         
@@ -43,6 +43,7 @@ Description: trytond_stock_supply_day
         
           http://www.tryton.org/
         
+Keywords: tryton supply day
 Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Plugins
@@ -61,6 +62,5 @@ Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python :: 2.6
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Topic :: Office/Business
diff --git a/locale/es_CO.po b/locale/es_CO.po
index e05bd49..c21b4db 100644
--- a/locale/es_CO.po
+++ b/locale/es_CO.po
@@ -4,7 +4,7 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:purchase.product_supplier,weekdays:"
 msgid "Week Days"
-msgstr "Días de la Semana"
+msgstr "Días de Semana"
 
 msgctxt "field:purchase.product_supplier.day,create_date:"
 msgid "Create Date"
@@ -28,7 +28,7 @@ msgstr "Nombre"
 
 msgctxt "field:purchase.product_supplier.day,weekday:"
 msgid "Week Day"
-msgstr "Día de la Semana"
+msgstr "Día de Semana"
 
 msgctxt "field:purchase.product_supplier.day,write_date:"
 msgid "Write Date"
@@ -72,8 +72,8 @@ msgstr "Miércoles"
 
 msgctxt "view:purchase.product_supplier.day:"
 msgid "Week Day"
-msgstr "Día de la Semana"
+msgstr "Día de Semana"
 
 msgctxt "view:purchase.product_supplier:"
 msgid "Week Days"
-msgstr "Días de la Semana"
+msgstr "Días de Semana"
diff --git a/setup.py b/setup.py
index 3aa6941..1d09db9 100644
--- a/setup.py
+++ b/setup.py
@@ -11,33 +11,51 @@ import ConfigParser
 def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read()
 
+
+def get_require_version(name):
+    if minor_version % 2:
+        require = '%s >= %s.%s.dev0, < %s.%s'
+    else:
+        require = '%s >= %s.%s, < %s.%s'
+    require %= (name, major_version, minor_version,
+        major_version, minor_version + 1)
+    return require
+
 config = ConfigParser.ConfigParser()
 config.readfp(open('tryton.cfg'))
 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, _ = info.get('version', '0.0.1').split('.', 2)
+version = info.get('version', '0.0.1')
+major_version, minor_version, _ = version.split('.', 2)
 major_version = int(major_version)
 minor_version = int(minor_version)
+name = 'trytond_stock_supply_day'
+
+download_url = 'http://downloads.tryton.org/%s.%s/' % (
+    major_version, minor_version)
+if minor_version % 2:
+    version = '%s.%s.dev0' % (major_version, minor_version)
+    download_url = (
+        'hg+http://hg.tryton.org/modules/%s#egg=%s-%s' % (
+            name[8:], name, version))
 
 requires = []
 for dep in info.get('depends', []):
     if not re.match(r'(ir|res|webdav)(\W|$)', dep):
-        requires.append('trytond_%s >= %s.%s, < %s.%s' %
-            (dep, major_version, minor_version, major_version,
-                minor_version + 1))
-requires.append('trytond >= %s.%s, < %s.%s' %
-    (major_version, minor_version, major_version, minor_version + 1))
+        requires.append(get_require_version('trytond_%s' % dep))
+requires.append(get_require_version('trytond'))
 
-setup(name='trytond_stock_supply_day',
-    version=info.get('version', '0.0.1'),
+setup(name=name,
+    version=version,
     description='Tryton module to add supply weekdays',
     long_description=read('README'),
     author='Tryton',
+    author_email='issue_tracker at tryton.org',
     url='http://www.tryton.org/',
-    download_url=("http://downloads.tryton.org/" +
-        info.get('version', '0.0.1').rsplit('.', 1)[0] + '/'),
+    download_url=download_url,
+    keywords='tryton supply day',
     package_dir={'trytond.modules.stock_supply_day': '.'},
     packages=[
         'trytond.modules.stock_supply_day',
@@ -65,7 +83,6 @@ setup(name='trytond_stock_supply_day',
         'Natural Language :: Slovenian',
         'Natural Language :: Spanish',
         'Operating System :: OS Independent',
-        'Programming Language :: Python :: 2.6',
         'Programming Language :: Python :: 2.7',
         'Topic :: Office/Business',
         ],
diff --git a/tests/test_stock_supply_day.py b/tests/test_stock_supply_day.py
index f3a5ece..331ede7 100644
--- a/tests/test_stock_supply_day.py
+++ b/tests/test_stock_supply_day.py
@@ -1,14 +1,5 @@
-#!/usr/bin/env python
 #This file is part of Tryton.  The COPYRIGHT file at the top level of
 #this repository contains the full copyright notices and license terms.
-
-import sys
-import 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 doctest
 import datetime
@@ -20,9 +11,7 @@ from trytond.transaction import Transaction
 
 
 class StockSupplyDayTestCase(unittest.TestCase):
-    '''
-    Test StockSupplyDay module.
-    '''
+    'Test StockSupplyDay module'
 
     def setUp(self):
         trytond.tests.test_tryton.install_module('stock_supply_day')
@@ -39,21 +28,15 @@ class StockSupplyDayTestCase(unittest.TestCase):
         self.user = POOL.get('res.user')
 
     def test0005views(self):
-        '''
-        Test views.
-        '''
+        'Test views'
         test_view('stock_supply_day')
 
     def test0006depends(self):
-        '''
-        Test depends.
-        '''
+        'Test depends'
         test_depends()
 
     def test0010compute_supply_date(self):
-        '''
-        Test compute_supply_date.
-        '''
+        'Test compute_supply_date'
         dates = [
             # purchase date, delivery time, weekday, supply date
             (datetime.date(2011, 11, 21), 10, 0, datetime.date(2011, 12, 5)),
@@ -79,9 +62,7 @@ class StockSupplyDayTestCase(unittest.TestCase):
                 self.assertEqual(date, supply_date)
 
     def test0020compute_purchase_date(self):
-        '''
-        Test compute_purchase_date.
-        '''
+        'Test compute_purchase_date'
         dates = [
             # purchase date, delivery time, weekday, supply date
             (datetime.date(2011, 11, 25), 10, 0, datetime.date(2011, 12, 6)),
@@ -131,7 +112,9 @@ class StockSupplyDayTestCase(unittest.TestCase):
         product, = self.product.create([{
                     'template': template.id,
                     }])
-        company, = self.company.search([('rec_name', '=', 'B2CK')])
+        company, = self.company.search([
+                ('rec_name', '=', 'Dunder Mifflin'),
+                ])
         self.user.write([self.user(USER)], {
             'main_company': company.id,
             'company': company.id,
@@ -176,6 +159,3 @@ def suite():
     suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
         StockSupplyDayTestCase))
     return suite
-
-if __name__ == '__main__':
-    unittest.TextTestRunner(verbosity=2).run(suite())
diff --git a/tryton.cfg b/tryton.cfg
index ac534b2..8c52929 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.0.0
+version=3.2.0
 depends:
     ir
     purchase
diff --git a/trytond_stock_supply_day.egg-info/PKG-INFO b/trytond_stock_supply_day.egg-info/PKG-INFO
index 64c0d0f..ec46c07 100644
--- a/trytond_stock_supply_day.egg-info/PKG-INFO
+++ b/trytond_stock_supply_day.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-stock-supply-day
-Version: 3.0.0
+Version: 3.2.0
 Summary: Tryton module to add supply weekdays
 Home-page: http://www.tryton.org/
 Author: Tryton
-Author-email: UNKNOWN
+Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.0/
+Download-URL: http://downloads.tryton.org/3.2/
 Description: trytond_stock_supply_day
         ========================
         
@@ -43,6 +43,7 @@ Description: trytond_stock_supply_day
         
           http://www.tryton.org/
         
+Keywords: tryton supply day
 Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Plugins
@@ -61,6 +62,5 @@ Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python :: 2.6
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Topic :: Office/Business
diff --git a/trytond_stock_supply_day.egg-info/requires.txt b/trytond_stock_supply_day.egg-info/requires.txt
index 0a6aaab..dcf7de2 100644
--- a/trytond_stock_supply_day.egg-info/requires.txt
+++ b/trytond_stock_supply_day.egg-info/requires.txt
@@ -1,2 +1,2 @@
-trytond_purchase >= 3.0, < 3.1
-trytond >= 3.0, < 3.1
\ No newline at end of file
+trytond_purchase >= 3.2, < 3.3
+trytond >= 3.2, < 3.3
\ No newline at end of file
-- 
tryton-modules-stock-supply-day



More information about the tryton-debian-vcs mailing list