Your message dated Thu, 22 Feb 2018 10:20:51 +0000
with message-id <e1eonzf-000cy8...@fasolo.debian.org>
and subject line Bug#891018: fixed in webcit 917-dfsg-2
has caused the Debian Bug report #891018,
regarding webcit: libical2 is obsolete and will be removed soon
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 ow...@bugs.debian.org
immediately.)


-- 
891018: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: webcit
Version: 917-dfsg-1
Severity: serious
Tags: patch

libical2 is obsolete and will be removed soon.

Please change the build dependency to libical-dev
and add the attached patch.
--- webcit-917-dfsg.orig/calendar_tools.c
+++ webcit-917-dfsg/calendar_tools.c
@@ -151,7 +151,6 @@
        t->minute = IBSTR(vname);
 
        /* time zone is set to the default zone for this server */
-       t->is_utc = 0;
        t->is_date = 0;
        t->zone = get_default_icaltimezone();
 }
@@ -170,7 +169,7 @@
        sscanf((char*)BSTR(prefix), "%04d-%02d-%02d", &t->year, &t->month, 
&t->day);
 
        /* time zone is set to the default zone for this server */
-       t->is_utc = 1;
+       t->zone = icaltimezone_get_utc_timezone();
        t->is_date = 1;
 }
 
--- webcit-917-dfsg.orig/calendar_view.c
+++ webcit-917-dfsg/calendar_view.c
@@ -198,7 +198,6 @@
        starting_tm.tm_hour = 0;
        starting_tm.tm_min = 0;
        today_start_t = icaltime_from_timet_with_zone(mktime(&starting_tm), 0, 
icaltimezone_get_utc_timezone());
-       today_start_t.is_utc = 1;
 
        memset(&ending_tm, 0, sizeof(struct tm));
        ending_tm.tm_year = year - 1900;
@@ -207,7 +206,6 @@
        ending_tm.tm_hour = 23;
        ending_tm.tm_min = 59;
        today_end_t = icaltime_from_timet_with_zone(mktime(&ending_tm), 0, 
icaltimezone_get_utc_timezone());
-       today_end_t.is_utc = 1;
 
        /*
         * Create another one without caring about the timezone for all day 
events.
@@ -854,7 +852,6 @@
        starting_tm.tm_hour = 0;
        starting_tm.tm_min = 0;
        today_start_t = icaltime_from_timet_with_zone(mktime(&starting_tm), 0, 
icaltimezone_get_utc_timezone());
-       today_start_t.is_utc = 1;
 
        memset(&ending_tm, 0, sizeof(struct tm));
        ending_tm.tm_year = year - 1900;
@@ -863,7 +860,6 @@
        ending_tm.tm_hour = 23;
        ending_tm.tm_min = 59;
        today_end_t = icaltime_from_timet_with_zone(mktime(&ending_tm), 0, 
icaltimezone_get_utc_timezone());
-       today_end_t.is_utc = 1;
 
        /*
         * Create another one without caring about the timezone for all day 
events.
--- webcit-917-dfsg.orig/event.c
+++ webcit-917-dfsg/event.c
@@ -264,8 +264,6 @@
                        ((yesbstr("alldayevent")) ? 1 : 0),
                        icaltimezone_get_utc_timezone()
                );
-               t_start.is_utc = 1;
-
        }
        display_icaltimetype_as_webform(&t_start, "dtstart", 0);
 
@@ -854,8 +852,8 @@
 
                /* Add NOW() to the calendar object... */
                icalcomponent_set_dtstamp(vevent,
-                                         icaltime_from_timet(
-                                                 time(NULL), 0));
+                                         icaltime_from_timet_with_zone(
+                                                 time(NULL), 0, 
icaltimezone_get_utc_timezone()));
 
                if (havebstr("summary")) {
                        icalcomponent_add_property(vevent,
--- webcit-917-dfsg.orig/ical_dezonify.c
+++ webcit-917-dfsg/ical_dezonify.c
@@ -116,7 +116,7 @@
        syslog(LOG_DEBUG, "                * Was: %s\n", 
icaltime_as_ical_string(TheTime));
 #endif
 
-       if (TheTime.is_utc) {
+       if (icaltime_is_utc(TheTime)) {
 #ifdef DBG_ICAL
                syslog(LOG_DEBUG, "                * This property is ALREADY 
UTC.\n");
 #endif
@@ -126,7 +126,7 @@
 #ifdef DBG_ICAL
                syslog(LOG_DEBUG, "                * Replacing '%s' TZID with 
'Z' suffix.\n", tzid);
 #endif
-               TheTime.is_utc = 1;
+               TheTime.zone = icaltimezone_get_utc_timezone();
        }
 
        else {
@@ -146,7 +146,7 @@
                        t = get_default_icaltimezone();
                }
                icaltimezone_convert_time(&TheTime, t, 
icaltimezone_get_utc_timezone());
-               TheTime.is_utc = 1;
+               TheTime.zone = icaltimezone_get_utc_timezone();
        }
 
        icalproperty_remove_parameter_by_kind(prop, ICAL_TZID_PARAMETER);

--- End Message ---
--- Begin Message ---
Source: webcit
Source-Version: 917-dfsg-2

We believe that the bug you reported is fixed in the latest version of
webcit, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 891...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Meskes <mes...@debian.org> (supplier of updated webcit package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 22 Feb 2018 10:11:13 +0100
Source: webcit
Binary: citadel-webcit citadel-suite
Architecture: source all amd64
Version: 917-dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Citadel Team <pkg-citadel-de...@lists.alioth.debian.org>
Changed-By: Michael Meskes <mes...@debian.org>
Description:
 citadel-suite - complete and feature-rich groupware server; metapackage for 
full
 citadel-webcit - web-based frontend to Citadel groupware server
Closes: 891018
Changes:
 webcit (917-dfsg-2) unstable; urgency=medium
 .
   * Point CVS information to salsa.
   * Switch build to libical3.
     Thanks to Adrian Bunk <b...@debian.org> (Closes: #891018)
   * Get rid of recursive chown statement in postinst.
Checksums-Sha1:
 3fdc052bce1b85e1a5bb5b4a8a787778fb59a781 2165 webcit_917-dfsg-2.dsc
 9948146b6f520054b107b3dffd4dbf337d1af1ac 25974 webcit_917-dfsg-2.diff.gz
 0442ad5d20dbe5b7db97f2ce88bae62268ee70ea 8536 citadel-suite_917-dfsg-2_all.deb
 3486e23ab5ae2348736bc0e5e19d4009de5d7e07 699800 
citadel-webcit-dbgsym_917-dfsg-2_amd64.deb
 39048ea2717e01aed565b43dab3abdb1b99061bd 753544 
citadel-webcit_917-dfsg-2_amd64.deb
 938f15c096e3ac70eacc0fd96b4c7880d3842841 6672 webcit_917-dfsg-2_amd64.buildinfo
Checksums-Sha256:
 33ea4d802af2645e13494bfe791668e214792f2dbd81a8b2f5ceece2a5d7f1c0 2165 
webcit_917-dfsg-2.dsc
 1ab14411fb64cf7055b5f8d1d667a72b4a151d94a29e80883c80b1ee5c8d2aed 25974 
webcit_917-dfsg-2.diff.gz
 b9949d7cf1e481ff6a0e179df8b0a8bce0aae2104cc3d9a57c3a3e904fa00323 8536 
citadel-suite_917-dfsg-2_all.deb
 877b8ed39bfaac5b08183b4335b4f4bdc92dd1b1486690aa4a78940f3b72f09d 699800 
citadel-webcit-dbgsym_917-dfsg-2_amd64.deb
 6fae8031f2f09e8a3ca23b57b6d149556bec981b52468559ac392e05910be362 753544 
citadel-webcit_917-dfsg-2_amd64.deb
 437660c6e5d90de6c35ff10bb67dd4dba355cc026bfee25d363e78aac256d2c5 6672 
webcit_917-dfsg-2_amd64.buildinfo
Files:
 5246f19b824a6f715263381254eca8ad 2165 web optional webcit_917-dfsg-2.dsc
 de24ef9db5fd78b1c80c5d4e55447d85 25974 web optional webcit_917-dfsg-2.diff.gz
 6ed619b40c627d8cf8abf728801efc32 8536 mail optional 
citadel-suite_917-dfsg-2_all.deb
 50463bbb4f5cefda0da2b0b9f20b4029 699800 debug optional 
citadel-webcit-dbgsym_917-dfsg-2_amd64.deb
 b40128519f6286f06017fa7b71d618eb 753544 web optional 
citadel-webcit_917-dfsg-2_amd64.deb
 50962054d6de980b2bdeeebecf12da6d 6672 web optional 
webcit_917-dfsg-2_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEZ/2RWVGI6sRsEOjtNdhXwLvLOyUFAlqOi9kACgkQNdhXwLvL
OyUmXw/+N+5iuEIS2AYZlbeMJ9mMQ+LgKzk1mvpRGKPdOeHN/sjpH1OtHOyyw4Wz
OhBGXR5ZMn+7I6w2Y+fhSylh6E4+Pn7ZJwfImlYnAiiDQzzEbS13p8lBECA5ceoj
yt9rGAlqMdpYAr/dndR+4plgCCSpAhl7u4Ca2qKEkIU/hgfnm6dXc5Go9EIastQE
yaQbA9xaYRq7aE7XjtwZ+7LIibP6n+mBTha7qvWRyJNoMdF1ZOBfNPk4VKqsTU82
RabvjxXTnHFrymRRap70xcfhtSWcwth2pfPLqrLMM/0r/vAW/eP6YFOJrLL3YkuN
y3MKYihKTrADXGvrhTI97JOcOxlWsMeMKRSMxa4RiKvza9GPQaOiTlPborWaBYS/
IVJA0FlFfb73QRa6gTT0+opxfNsnq18LLRFwryqDNtTueOIMGL1imTXuUXuwmlQd
o/KirvIKh1ZF/UuBI79Wc1kGePsPFvHNCERyETiiZcaCqxEBeawlH1iLRnxUBQO8
ePsNIEo9xhyvGyb5M//UDo+0uI9dMcuxG+MJ8QOnkBZ1ELs7aRQUn+sr7+3Mbc4x
FliHXf2ITR8SN+rD/UjIy1i5atA10OFV4c03fzszFngS4IPRaj3ICSnSMSOnbGZk
/OQjbvSzlq+IwapFBtfqR8w0DehZcwkcKBjewJQPk6Es9TUFU5s=
=r9k0
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to