Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package trytond_stock_lot for
openSUSE:Factory checked in at 2025-09-15 19:53:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_stock_lot (Old)
and /work/SRC/openSUSE:Factory/.trytond_stock_lot.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_stock_lot"
Mon Sep 15 19:53:12 2025 rev:20 rq:1304785 version:7.0.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_stock_lot/trytond_stock_lot.changes
2025-07-02 18:17:08.462496096 +0200
+++
/work/SRC/openSUSE:Factory/.trytond_stock_lot.new.1977/trytond_stock_lot.changes
2025-09-15 19:57:17.982170373 +0200
@@ -1,0 +2,5 @@
+Sun Sep 14 13:40:50 UTC 2025 - Axel Braun <[email protected]>
+
+- Version 7.0.4 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_stock_lot-7.0.3.tar.gz
New:
----
trytond_stock_lot-7.0.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_stock_lot.spec ++++++
--- /var/tmp/diff_new_pack.AGHSw0/_old 2025-09-15 19:57:18.454190193 +0200
+++ /var/tmp/diff_new_pack.AGHSw0/_new 2025-09-15 19:57:18.454190193 +0200
@@ -1,7 +1,7 @@
#
# spec file for package trytond_stock_lot
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
# Copyright (c) 2014-2024 Dr. Axel Braun
#
# All modifications and additions to the file contributed by third parties
@@ -29,7 +29,7 @@
%define majorver 7.0
Name: trytond_stock_lot
-Version: %{majorver}.3
+Version: %{majorver}.4
Release: 0
Summary: The "stock_lot" module of the Tryton ERP system
License: GPL-3.0-or-later
++++++ trytond_stock_lot-7.0.3.tar.gz -> trytond_stock_lot-7.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_stock_lot-7.0.3/CHANGELOG
new/trytond_stock_lot-7.0.4/CHANGELOG
--- old/trytond_stock_lot-7.0.3/CHANGELOG 2024-07-17 23:41:55.000000000
+0200
+++ new/trytond_stock_lot-7.0.4/CHANGELOG 2025-09-03 20:43:11.000000000
+0200
@@ -1,4 +1,9 @@
+Version 7.0.4 - 2025-09-03
+--------------------------
+* Bug fixes (see mercurial logs for details)
+
+
Version 7.0.3 - 2024-07-17
--------------------------
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_stock_lot-7.0.3/COPYRIGHT
new/trytond_stock_lot-7.0.4/COPYRIGHT
--- old/trytond_stock_lot-7.0.3/COPYRIGHT 2024-07-17 23:41:54.000000000
+0200
+++ new/trytond_stock_lot-7.0.4/COPYRIGHT 2025-09-03 20:43:11.000000000
+0200
@@ -1,5 +1,5 @@
-Copyright (C) 2012-2024 Cédric Krier.
-Copyright (C) 2012-2024 B2CK SPRL.
+Copyright (C) 2012-2025 Cédric Krier.
+Copyright (C) 2012-2025 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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_stock_lot-7.0.3/PKG-INFO
new/trytond_stock_lot-7.0.4/PKG-INFO
--- old/trytond_stock_lot-7.0.3/PKG-INFO 2024-07-17 23:41:57.698402600
+0200
+++ new/trytond_stock_lot-7.0.4/PKG-INFO 2025-09-03 20:43:14.348262800
+0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
Name: trytond_stock_lot
-Version: 7.0.3
+Version: 7.0.4
Summary: Tryton module for lot of products
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/7.0/
@@ -58,6 +58,20 @@
Requires-Dist: trytond<7.1,>=7.0
Provides-Extra: test
Requires-Dist: proteus<7.1,>=7.0; extra == "test"
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: download-url
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: project-url
+Dynamic: provides-extra
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
Stock Lot Module
################
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_stock_lot-7.0.3/stock.py
new/trytond_stock_lot-7.0.4/stock.py
--- old/trytond_stock_lot-7.0.3/stock.py 2024-02-05 17:24:27.000000000
+0100
+++ new/trytond_stock_lot-7.0.4/stock.py 2025-08-23 20:45:21.000000000
+0200
@@ -592,11 +592,12 @@
methods=['on_change_with_quantity_remaining'])
def duplicate_lot(self):
lots = list(self.lots)
- template, = self.lots
- for i in range(self.duplicate_lot_number):
- lot = copy(template)
- lot._id = None
- lots.append(lot)
+ if self.lots:
+ template, = self.lots
+ for i in range(self.duplicate_lot_number):
+ lot = copy(template)
+ lot._id = None
+ lots.append(lot)
self.lots = lots
self.quantity_remaining = self.on_change_with_quantity_remaining()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_stock_lot-7.0.3/tryton.cfg
new/trytond_stock_lot-7.0.4/tryton.cfg
--- old/trytond_stock_lot-7.0.3/tryton.cfg 2024-05-15 19:01:26.000000000
+0200
+++ new/trytond_stock_lot-7.0.4/tryton.cfg 2025-05-05 10:54:28.000000000
+0200
@@ -1,5 +1,5 @@
[tryton]
-version=7.0.3
+version=7.0.4
depends:
ir
product
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_stock_lot-7.0.3/trytond_stock_lot.egg-info/PKG-INFO
new/trytond_stock_lot-7.0.4/trytond_stock_lot.egg-info/PKG-INFO
--- old/trytond_stock_lot-7.0.3/trytond_stock_lot.egg-info/PKG-INFO
2024-07-17 23:41:57.000000000 +0200
+++ new/trytond_stock_lot-7.0.4/trytond_stock_lot.egg-info/PKG-INFO
2025-09-03 20:43:13.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
Name: trytond_stock_lot
-Version: 7.0.3
+Version: 7.0.4
Summary: Tryton module for lot of products
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/7.0/
@@ -58,6 +58,20 @@
Requires-Dist: trytond<7.1,>=7.0
Provides-Extra: test
Requires-Dist: proteus<7.1,>=7.0; extra == "test"
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: download-url
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: project-url
+Dynamic: provides-extra
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
Stock Lot Module
################