Your message dated Mon, 08 Oct 2012 20:25:42 +0100
with message-id <[email protected]>
and subject line Re: Bug#687633: pre-approve unblock:
tryton-modules-calendar-scheduling/2.2.2-1
has caused the Debian Bug report #687633,
regarding pre-approve unblock: tryton-modules-calendar-scheduling/2.2.2-1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
687633: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687633
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Dear release managers,
please approve the upload of tryton-modules-calendar-scheduling_2.2.2-1.
The new version contains the upstream bug fix release [1].
The fixes are for
* Add missing test on owner
Mathias
[1] http://news.tryton.org/2012/09/maintenance-releases-for-supported.html
debdiff attached
unblock: tryton-modules-calendar-scheduling/2.2.2-1
diff -Nru tryton-modules-calendar-scheduling-2.2.1/calendar.py tryton-modules-calendar-scheduling-2.2.2/calendar.py
--- tryton-modules-calendar-scheduling-2.2.1/calendar.py 2011-11-22 13:28:33.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/calendar.py 2012-08-26 15:35:32.000000000 +0200
@@ -759,7 +759,7 @@
attendees = self.browse(ids)
for attendee in attendees:
owner = attendee.event.calendar.owner
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
continue
organizer = self.organiser_to_notify(attendee)
if not organizer:
@@ -804,7 +804,7 @@
if attendee.status == 'declined':
continue
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
continue
organizer = self.organiser_to_notify(attendee)
if not organizer:
@@ -846,7 +846,7 @@
if (not attendee.status) or attendee.status in ('', 'needs-action'):
return res_id
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
return res_id
organizer = self.organiser_to_notify(attendee)
if not organizer:
diff -Nru tryton-modules-calendar-scheduling-2.2.1/CHANGELOG tryton-modules-calendar-scheduling-2.2.2/CHANGELOG
--- tryton-modules-calendar-scheduling-2.2.1/CHANGELOG 2011-12-26 10:40:11.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/CHANGELOG 2012-09-02 16:06:47.000000000 +0200
@@ -1,3 +1,6 @@
+Version 2.2.2 - 2012-09-02
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.1 - 2011-12-26
* Bug fixes (see mercurial logs for details)
diff -Nru tryton-modules-calendar-scheduling-2.2.1/COPYRIGHT tryton-modules-calendar-scheduling-2.2.2/COPYRIGHT
--- tryton-modules-calendar-scheduling-2.2.1/COPYRIGHT 2011-11-22 13:28:33.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/COPYRIGHT 2012-09-02 16:06:23.000000000 +0200
@@ -1,6 +1,6 @@
-Copyright (C) 2009-2011 Cédric Krier.
+Copyright (C) 2009-2012 Cédric Krier.
Copyright (C) 2009-2011 Bertrand Chenal.
-Copyright (C) 2009-2011 B2CK SPRL.
+Copyright (C) 2009-2012 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 -Nru tryton-modules-calendar-scheduling-2.2.1/debian/changelog tryton-modules-calendar-scheduling-2.2.2/debian/changelog
--- tryton-modules-calendar-scheduling-2.2.1/debian/changelog 2012-06-30 18:12:21.000000000 +0200
+++ tryton-modules-calendar-scheduling-2.2.2/debian/changelog 2012-09-12 15:45:29.000000000 +0200
@@ -1,3 +1,9 @@
+tryton-modules-calendar-scheduling (2.2.2-1) unstable; urgency=low
+
+ * Merging upstream version 2.2.2.
+
+ -- Mathias Behrle <[email protected]> Wed, 12 Sep 2012 15:45:29 +0200
+
tryton-modules-calendar-scheduling (2.2.1-3) unstable; urgency=low
* Updating maintainers field.
diff -Nru tryton-modules-calendar-scheduling-2.2.1/PKG-INFO tryton-modules-calendar-scheduling-2.2.2/PKG-INFO
--- tryton-modules-calendar-scheduling-2.2.1/PKG-INFO 2011-12-26 10:40:13.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/PKG-INFO 2012-09-02 16:06:51.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
Name: trytond_calendar_scheduling
-Version: 2.2.1
+Version: 2.2.2
Summary: Add Scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: B2CK
diff -Nru tryton-modules-calendar-scheduling-2.2.1/trytond_calendar_scheduling.egg-info/PKG-INFO tryton-modules-calendar-scheduling-2.2.2/trytond_calendar_scheduling.egg-info/PKG-INFO
--- tryton-modules-calendar-scheduling-2.2.1/trytond_calendar_scheduling.egg-info/PKG-INFO 2011-12-26 10:40:11.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/trytond_calendar_scheduling.egg-info/PKG-INFO 2012-09-02 16:06:50.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
Name: trytond-calendar-scheduling
-Version: 2.2.1
+Version: 2.2.2
Summary: Add Scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: B2CK
diff -Nru tryton-modules-calendar-scheduling-2.2.1/__tryton__.py tryton-modules-calendar-scheduling-2.2.2/__tryton__.py
--- tryton-modules-calendar-scheduling-2.2.1/__tryton__.py 2011-11-22 13:28:33.000000000 +0100
+++ tryton-modules-calendar-scheduling-2.2.2/__tryton__.py 2011-12-28 00:44:11.000000000 +0100
@@ -9,7 +9,7 @@
'name_es_ES' : 'Planificador del calendario',
'name_fr_FR' : 'Programmation calendrier',
'name_ru_RU' : 'ÐалендаÑное планиÑование',
- 'version' : '2.2.1',
+ 'version': '2.2.2',
'author' : 'B2CK',
'email': '[email protected]',
'website': 'http://www.tryton.org/',
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
On Mon, 2012-10-08 at 10:13 +0200, Mathias Behrle wrote:
> * Betr.: " Re: Bug#687633: pre-approve unblock:
> tryton-modules-calendar-scheduling/2.2.2-1" (Wed, 03 Oct 2012 19:08:13
> +0100):
>
> > Please go ahead, and let us know once the package has been in unstable
> > for a few days.
>
> Package was uploaded to unstable on 2012-10-05.
Unblocked.
Regards,
Adam
--- End Message ---