diff --git a/perl-versions.def b/perl-versions.def index bec37255b..9e72cf2d0 100644 --- a/perl-versions.def +++ b/perl-versions.def @@ -3,9 +3,9 @@ BERKELEYDB := 0.55 BIT_VECTOR := 7.4 CACHE_FASTMMAP := 1.43 CANARY_STABILITY := 2006 -CARP_CLAN := 6.04 +CARP_CLAN := 6.08 CLASS_INSPECTOR := 1.28 -COMPRESS_RAW_BZIP2 := 2.069 +COMPRESS_RAW_BZIP2 := 2.093 COMPRESS_RAW_ZLIB := 2.103 CONFIG_INIFILES := 2.86 CONVERT_ASN1 := 0.27 @@ -43,7 +43,7 @@ HTTP_DATE := 6.02 HTTP_MESSAGE := 6.11 HTTP_NEGOTIATE := 6.01 INNOTOP := 1.9.1 -IO_COMPRESS := 2.069 +IO_COMPRESS := 2.093 IO_HTML := 1.001 IO_SESSIONDATA := 1.03 IO_SOCKET_INET6 := 2.72 @@ -53,7 +53,7 @@ IO_STRINGY := 2.111 IP_COUNTRY := 2.28 JSON_PP := 2.27300 LIBWWW := 6.13 -LIST_MOREUTILS := 0.413 +LIST_MOREUTILS := 0.428 LWP_MEDIATYPES := 6.02 LWP_PROTOCOL_HTTPS := 6.10 MAIL_DKIM := 0.43 @@ -73,7 +73,7 @@ NET_HTTP := 6.09 NET_LDAP := 0.65 NET_LDAPAPI := 3.0.3 NET_LIBIDN := 0.12 -NET_SERVER := 2.008 +NET_SERVER := 2.009 NET_SSLEAY := 1.92 NETADDR_IP := 4.078 PARENT := 0.234 diff --git a/thirdparty/altermime/patches/fix_compile_issues.patch b/thirdparty/altermime/patches/fix_compile_issues.patch new file mode 100644 index 000000000..476c05c69 --- /dev/null +++ b/thirdparty/altermime/patches/fix_compile_issues.patch @@ -0,0 +1,164 @@ +From 4f89cd2aa95a553f1a84c00f0a83c98fc7867ae3 Mon Sep 17 00:00:00 2001 +From: Paul L Daniels +Date: Wed, 24 May 2023 22:11:46 +1000 +Subject: [PATCH] Modernisation of code; fixed up various compile issues. + +--- + MIME_headers.c | 10 +++++----- + altermime.c | 2 +- + mime_alter.c | 15 ++++++++------- + mime_alter.h | 6 ++++-- + pldstr.c | 2 +- + qpe.c | 2 +- + 6 files changed, 20 insertions(+), 17 deletions(-) + +diff --git a/MIME_headers.c b/MIME_headers.c +index db294d9..d2b9c77 100644 +--- a/MIME_headers.c ++++ b/MIME_headers.c +@@ -785,7 +785,7 @@ int MIMEH_save_doubleCR( FFGET_FILE *f ) + + do { + glb.doubleCR_count++; +- snprintf(glb.doubleCRname,_MIMEH_STRLEN_MAX,"%s/doubleCR.%d",glb.output_dir,glb.doubleCR_count); ++ snprintf(glb.doubleCRname,_MIMEH_STRLEN_MAX,"%.*s/doubleCR.%d", _MIMEH_STRLEN_MAX -40, glb.output_dir,glb.doubleCR_count); + } + while (stat(glb.doubleCRname, &st) == 0); + +@@ -2012,7 +2012,7 @@ int MIMEH_parse_contenttype( char *header_name, char *header_value, struct MIMEH + { + if (strlen(glb.appledouble_filename)>0) + { +- snprintf(hinfo->filename, sizeof(hinfo->filename), "%s.applemeta", glb.appledouble_filename ); ++ snprintf(hinfo->filename, sizeof(hinfo->filename), "%.*s.applemeta", _MIMEH_FILENAMELEN_MAX -12, glb.appledouble_filename ); + } else { + snprintf(hinfo->filename, sizeof(hinfo->filename), "applefile"); + } +@@ -2921,8 +2921,8 @@ int MIMEH_headers_process( struct MIMEH_header_info *hinfo, char *headers ) + // Final analysis on our headers: + if ( hinfo->content_type == _CTYPE_MULTIPART_APPLEDOUBLE ) + { +- char tmp[128]; +- snprintf( tmp, sizeof(tmp), "mac-%s", hinfo->filename ); ++ char tmp[_MIMEH_FILENAMELEN_MAX +1]; ++ snprintf( tmp, sizeof(tmp), "mac-%.*s", _MIMEH_FILENAMELEN_MAX -4, hinfo->filename ); + snprintf( hinfo->filename, sizeof(hinfo->filename), "%s", tmp ); + snprintf( hinfo->name, sizeof(hinfo->name), "%s", tmp ); + } +@@ -3034,7 +3034,7 @@ int MIMEH_headers_get( struct MIMEH_header_info *hinfo, FFGET_FILE *f ) + + // Initialise header defects array. + hinfo->header_defect_count = 0; +- memset(hinfo->defects, 0, _MIMEH_DEFECT_ARRAY_SIZE); ++ memset(hinfo->defects, 0, _MIMEH_DEFECT_ARRAY_SIZE *sizeof(int)); + + snprintf( hinfo->content_type_string, _MIMEH_CONTENT_TYPE_MAX , "text/plain" ); + +diff --git a/altermime.c b/altermime.c +index 49b46e8..dcbd599 100644 +--- a/altermime.c ++++ b/altermime.c +@@ -375,7 +375,7 @@ int main( int argc, char **argv ) + + glb.input_is_stdin = 1; + +- snprintf(scratch,sizeof(scratch),"%s/%ld%d.amtmp", glb.tmpdir, time(NULL), getpid()); ++ snprintf(scratch,sizeof(scratch),"%.*s/%ld%d.amtmp", (int)(sizeof(scratch) -20), glb.tmpdir, time(NULL), getpid()); + // free(glb.input_file); + + glb.input_file = strdup(scratch); +diff --git a/mime_alter.c b/mime_alter.c +index 01db5f7..1e638b4 100644 +--- a/mime_alter.c ++++ b/mime_alter.c +@@ -1543,7 +1543,7 @@ int AM_add_disclaimer_insert_html( struct AM_disclaimer_details *dd, FFGET_FILE + + if (dd->boundary_found == 1) + { +- snprintf(boundary, sizeof(boundary), "--%s", dd->boundary); ++ snprintf(boundary, sizeof(boundary), "--%.*s", AM_BOUNDARY_BUFFER_SIZE -2, dd->boundary); + boundary_length = strlen(boundary); + } + +@@ -3378,13 +3378,13 @@ int AM_insert_Xheader( char *fname, char *xheader) + snprintf(tpn, sizeof(tpn), "%s",fname); + + do { +- if (strlen(tpn) < (sizeof(tpn) -2)) ++ size_t tpn_len = strlen(tpn); ++ if (tpn_len < (sizeof(tpn) -2)) + { + /** Changed the temp filename suffix chat to a hypen because under + ** windows appending multiple .'s results in a filename that isn't + ** acceptable - Thanks to Nico for bringing this to my attention **/ +- // LOGGER_log("%s:%d:AM_insert_Xheader:NOTICE: Adjusting temp file name for header insert",FL); +- snprintf(tpn, sizeof(tpn),"%sX", tpn); ++ strncat(tpn, "X", sizeof(tpn) -2); + + } else { + LOGGER_log("%s:%d:AM_insert_Xheader:ERROR: Temporary file name string buffer out of space!",FL); +@@ -3516,9 +3516,10 @@ int AM_alter_header( char *filename, char *header, char *change, int change_mode + snprintf(tpn, sizeof(tpn), "%s",filename); + + do { +- if (strlen(tpn) < (sizeof(tpn) -2)) +- { +- snprintf(tpn, sizeof(tpn),"%sX", tpn); ++ size_t tpn_len = strlen(tpn); ++ ++ if (tpn_len < (sizeof(tpn) -2)) { ++ strncat(tpn, "X", sizeof(tpn) -2); + } + else + { +diff --git a/mime_alter.h b/mime_alter.h +index 933c657..c7e121b 100644 +--- a/mime_alter.h ++++ b/mime_alter.h +@@ -23,6 +23,8 @@ + #define AM_NULLIFY_MATCH_MODE_FILENAME 1 + #define AM_NULLIFY_MATCH_MODE_CONTENT_TYPE 2 + ++#define AM_BOUNDARY_BUFFER_SIZE 1024 ++ + struct AM_disclaimer_details { + + // File details +@@ -33,7 +35,7 @@ struct AM_disclaimer_details { + int content_type; + int content_encoding; + int boundary_found; +- char boundary[1024]; ++ char boundary[AM_BOUNDARY_BUFFER_SIZE]; + + // + +diff --git a/pldstr.c b/pldstr.c +index fdacdd2..ca29de3 100644 +--- a/pldstr.c ++++ b/pldstr.c +@@ -297,7 +297,7 @@ char *PLD_strtok( struct PLD_strtok *st, char *line, char *delimeters ) + + result = st->start; + +- if ((st->start)&&(st->start != '\0')) ++ if ((st->start)&&(*(st->start) != '\0')) + { + stop = strpbrk( st->start, delimeters ); /* locate our next delimeter */ + +diff --git a/qpe.c b/qpe.c +index 249fb9d..8c2f461 100644 +--- a/qpe.c ++++ b/qpe.c +@@ -106,7 +106,7 @@ int qp_encode( char *out, size_t out_size, char *in, size_t in_size, char *line_ + char charout[4]; + int charout_size=0; + +- if (lineend != '\0') { ++ if (*lineend != '\0') { + if (linestart == NULL) { + linestart = in; + } else { +-- +2.34.1 + diff --git a/thirdparty/altermime/zimbra-altermime/debian/compat b/thirdparty/altermime/zimbra-altermime/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/altermime/zimbra-altermime/debian/compat +++ b/thirdparty/altermime/zimbra-altermime/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/altermime/zimbra-altermime/debian/patches/series b/thirdparty/altermime/zimbra-altermime/debian/patches/series index b26795f49..c61c676da 100644 --- a/thirdparty/altermime/zimbra-altermime/debian/patches/series +++ b/thirdparty/altermime/zimbra-altermime/debian/patches/series @@ -1 +1 @@ -qpe.patch +fix_compile_issues.patch diff --git a/thirdparty/amavis-logwatch/zimbra-amavis-logwatch/debian/compat b/thirdparty/amavis-logwatch/zimbra-amavis-logwatch/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/amavis-logwatch/zimbra-amavis-logwatch/debian/compat +++ b/thirdparty/amavis-logwatch/zimbra-amavis-logwatch/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/amavisd/zimbra-amavisd/debian/compat b/thirdparty/amavisd/zimbra-amavisd/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/amavisd/zimbra-amavisd/debian/compat +++ b/thirdparty/amavisd/zimbra-amavisd/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/apr-util/zimbra-apr-util/debian/compat b/thirdparty/apr-util/zimbra-apr-util/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/apr-util/zimbra-apr-util/debian/compat +++ b/thirdparty/apr-util/zimbra-apr-util/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/apr/zimbra-apr/debian/compat b/thirdparty/apr/zimbra-apr/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/apr/zimbra-apr/debian/compat +++ b/thirdparty/apr/zimbra-apr/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/changelog b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/changelog index d19c86b3d..fba8e1d48 100644 --- a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/changelog +++ b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-ar (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Updated dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-ar (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/compat b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/compat +++ b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/control b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/control index 3ae08f12c..0bbe38b99 100644 --- a/thirdparty/aspell-ar/zimbra-aspell-ar/debian/control +++ b/thirdparty/aspell-ar/zimbra-aspell-ar/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-ar -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-ar Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Arabic Dictionary diff --git a/thirdparty/aspell-ar/zimbra-aspell-ar/rpm/SPECS/aspell-ar.spec b/thirdparty/aspell-ar/zimbra-aspell-ar/rpm/SPECS/aspell-ar.spec index fab9c685e..afa15eaf0 100644 --- a/thirdparty/aspell-ar/zimbra-aspell-ar/rpm/SPECS/aspell-ar.spec +++ b/thirdparty/aspell-ar/zimbra-aspell-ar/rpm/SPECS/aspell-ar.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Arabic dictionary Name: zimbra-aspell-ar Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Arabic dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-ca/zimbra-aspell-ca/debian/compat b/thirdparty/aspell-ca/zimbra-aspell-ca/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-ca/zimbra-aspell-ca/debian/compat +++ b/thirdparty/aspell-ca/zimbra-aspell-ca/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-da/zimbra-aspell-da/debian/changelog b/thirdparty/aspell-da/zimbra-aspell-da/debian/changelog index 7d250b526..66afec1ea 100644 --- a/thirdparty/aspell-da/zimbra-aspell-da/debian/changelog +++ b/thirdparty/aspell-da/zimbra-aspell-da/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-da (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-da (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-da/zimbra-aspell-da/debian/compat b/thirdparty/aspell-da/zimbra-aspell-da/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-da/zimbra-aspell-da/debian/compat +++ b/thirdparty/aspell-da/zimbra-aspell-da/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-da/zimbra-aspell-da/debian/control b/thirdparty/aspell-da/zimbra-aspell-da/debian/control index 067b7006f..2b17ea897 100644 --- a/thirdparty/aspell-da/zimbra-aspell-da/debian/control +++ b/thirdparty/aspell-da/zimbra-aspell-da/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-da -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-da Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Danish Dictionary diff --git a/thirdparty/aspell-da/zimbra-aspell-da/rpm/SPECS/aspell-da.spec b/thirdparty/aspell-da/zimbra-aspell-da/rpm/SPECS/aspell-da.spec index a304e9694..9b4a99fb0 100644 --- a/thirdparty/aspell-da/zimbra-aspell-da/rpm/SPECS/aspell-da.spec +++ b/thirdparty/aspell-da/zimbra-aspell-da/rpm/SPECS/aspell-da.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Danish dictionary Name: zimbra-aspell-da Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Danish dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-de/zimbra-aspell-de/debian/changelog b/thirdparty/aspell-de/zimbra-aspell-de/debian/changelog index bb4bdfe85..7f5173184 100644 --- a/thirdparty/aspell-de/zimbra-aspell-de/debian/changelog +++ b/thirdparty/aspell-de/zimbra-aspell-de/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-de (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-de (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-de/zimbra-aspell-de/debian/compat b/thirdparty/aspell-de/zimbra-aspell-de/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-de/zimbra-aspell-de/debian/compat +++ b/thirdparty/aspell-de/zimbra-aspell-de/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-de/zimbra-aspell-de/debian/control b/thirdparty/aspell-de/zimbra-aspell-de/debian/control index 84c126cdd..0bd67ea1b 100644 --- a/thirdparty/aspell-de/zimbra-aspell-de/debian/control +++ b/thirdparty/aspell-de/zimbra-aspell-de/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-de -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-de Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell German Dictionary diff --git a/thirdparty/aspell-de/zimbra-aspell-de/rpm/SPECS/aspell-de.spec b/thirdparty/aspell-de/zimbra-aspell-de/rpm/SPECS/aspell-de.spec index ee7c47205..5dfd1a50b 100644 --- a/thirdparty/aspell-de/zimbra-aspell-de/rpm/SPECS/aspell-de.spec +++ b/thirdparty/aspell-de/zimbra-aspell-de/rpm/SPECS/aspell-de.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell German dictionary Name: zimbra-aspell-de Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell German dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-en/zimbra-aspell-en/debian/changelog b/thirdparty/aspell-en/zimbra-aspell-en/debian/changelog index 055b9639a..f0adcdde2 100644 --- a/thirdparty/aspell-en/zimbra-aspell-en/debian/changelog +++ b/thirdparty/aspell-en/zimbra-aspell-en/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-en (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-en (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-en/zimbra-aspell-en/debian/compat b/thirdparty/aspell-en/zimbra-aspell-en/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-en/zimbra-aspell-en/debian/compat +++ b/thirdparty/aspell-en/zimbra-aspell-en/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-en/zimbra-aspell-en/debian/control b/thirdparty/aspell-en/zimbra-aspell-en/debian/control index b8af344c9..115ee9f9d 100644 --- a/thirdparty/aspell-en/zimbra-aspell-en/debian/control +++ b/thirdparty/aspell-en/zimbra-aspell-en/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-en -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-en Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell English Dictionary diff --git a/thirdparty/aspell-en/zimbra-aspell-en/rpm/SPECS/aspell-en.spec b/thirdparty/aspell-en/zimbra-aspell-en/rpm/SPECS/aspell-en.spec index 27398fa59..6a04d1ec5 100644 --- a/thirdparty/aspell-en/zimbra-aspell-en/rpm/SPECS/aspell-en.spec +++ b/thirdparty/aspell-en/zimbra-aspell-en/rpm/SPECS/aspell-en.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell English dictionary Name: zimbra-aspell-en Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: BSD Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell English dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-es/zimbra-aspell-es/debian/changelog b/thirdparty/aspell-es/zimbra-aspell-es/debian/changelog index 72f2d301f..257305d89 100644 --- a/thirdparty/aspell-es/zimbra-aspell-es/debian/changelog +++ b/thirdparty/aspell-es/zimbra-aspell-es/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-es (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-es (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-es/zimbra-aspell-es/debian/compat b/thirdparty/aspell-es/zimbra-aspell-es/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-es/zimbra-aspell-es/debian/compat +++ b/thirdparty/aspell-es/zimbra-aspell-es/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-es/zimbra-aspell-es/debian/control b/thirdparty/aspell-es/zimbra-aspell-es/debian/control index 8d2013e90..c7c533bcf 100644 --- a/thirdparty/aspell-es/zimbra-aspell-es/debian/control +++ b/thirdparty/aspell-es/zimbra-aspell-es/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-es -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-es Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Spanish Dictionary diff --git a/thirdparty/aspell-es/zimbra-aspell-es/rpm/SPECS/aspell-es.spec b/thirdparty/aspell-es/zimbra-aspell-es/rpm/SPECS/aspell-es.spec index 4bbd8a4da..afeab8e3c 100644 --- a/thirdparty/aspell-es/zimbra-aspell-es/rpm/SPECS/aspell-es.spec +++ b/thirdparty/aspell-es/zimbra-aspell-es/rpm/SPECS/aspell-es.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Spanish dictionary Name: zimbra-aspell-es Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Spanish dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/changelog b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/changelog index 834b836d8..1f194c468 100644 --- a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/changelog +++ b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-fr (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-fr (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/compat b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/compat +++ b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/control b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/control index cee2c1e6a..19a631c98 100644 --- a/thirdparty/aspell-fr/zimbra-aspell-fr/debian/control +++ b/thirdparty/aspell-fr/zimbra-aspell-fr/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-fr -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-fr Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell French Dictionary diff --git a/thirdparty/aspell-fr/zimbra-aspell-fr/rpm/SPECS/aspell-fr.spec b/thirdparty/aspell-fr/zimbra-aspell-fr/rpm/SPECS/aspell-fr.spec index 5aad291da..4cef1a47e 100644 --- a/thirdparty/aspell-fr/zimbra-aspell-fr/rpm/SPECS/aspell-fr.spec +++ b/thirdparty/aspell-fr/zimbra-aspell-fr/rpm/SPECS/aspell-fr.spec @@ -1,18 +1,22 @@ Summary: Zimbra's Aspell French dictionary Name: zimbra-aspell-fr Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Patch0: aspell-fr.patch Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell French dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/changelog b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/changelog index ff40783c0..6620dc268 100644 --- a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/changelog +++ b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-hi (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-hi (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/compat b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/compat +++ b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/control b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/control index ef4efd959..d04988851 100644 --- a/thirdparty/aspell-hi/zimbra-aspell-hi/debian/control +++ b/thirdparty/aspell-hi/zimbra-aspell-hi/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-hi -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-hi Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Hindi Dictionary diff --git a/thirdparty/aspell-hi/zimbra-aspell-hi/rpm/SPECS/aspell-hi.spec b/thirdparty/aspell-hi/zimbra-aspell-hi/rpm/SPECS/aspell-hi.spec index d8810d97e..afabbdd49 100644 --- a/thirdparty/aspell-hi/zimbra-aspell-hi/rpm/SPECS/aspell-hi.spec +++ b/thirdparty/aspell-hi/zimbra-aspell-hi/rpm/SPECS/aspell-hi.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Hindi dictionary Name: zimbra-aspell-hi Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Hindi dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/changelog b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/changelog index d4d9d890e..15b3ff876 100644 --- a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/changelog +++ b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-hu (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-hu (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/compat b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/compat +++ b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/control b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/control index f52604b30..abdccca9c 100644 --- a/thirdparty/aspell-hu/zimbra-aspell-hu/debian/control +++ b/thirdparty/aspell-hu/zimbra-aspell-hu/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-hu -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-hu Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Hungarian Dictionary diff --git a/thirdparty/aspell-hu/zimbra-aspell-hu/rpm/SPECS/aspell-hu.spec b/thirdparty/aspell-hu/zimbra-aspell-hu/rpm/SPECS/aspell-hu.spec index ac4d76cc5..b2dc5cd95 100644 --- a/thirdparty/aspell-hu/zimbra-aspell-hu/rpm/SPECS/aspell-hu.spec +++ b/thirdparty/aspell-hu/zimbra-aspell-hu/rpm/SPECS/aspell-hu.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Hungarian dictionary Name: zimbra-aspell-hu Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Hungarian dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-it/zimbra-aspell-it/debian/changelog b/thirdparty/aspell-it/zimbra-aspell-it/debian/changelog index 46eef60f8..3e36433c1 100644 --- a/thirdparty/aspell-it/zimbra-aspell-it/debian/changelog +++ b/thirdparty/aspell-it/zimbra-aspell-it/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-it (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-it (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-it/zimbra-aspell-it/debian/compat b/thirdparty/aspell-it/zimbra-aspell-it/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-it/zimbra-aspell-it/debian/compat +++ b/thirdparty/aspell-it/zimbra-aspell-it/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-it/zimbra-aspell-it/debian/control b/thirdparty/aspell-it/zimbra-aspell-it/debian/control index 9286537dd..23fcef72f 100644 --- a/thirdparty/aspell-it/zimbra-aspell-it/debian/control +++ b/thirdparty/aspell-it/zimbra-aspell-it/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-it -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-it Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Italian Dictionary diff --git a/thirdparty/aspell-it/zimbra-aspell-it/rpm/SPECS/aspell-it.spec b/thirdparty/aspell-it/zimbra-aspell-it/rpm/SPECS/aspell-it.spec index 4664df4a5..5bdbf3177 100644 --- a/thirdparty/aspell-it/zimbra-aspell-it/rpm/SPECS/aspell-it.spec +++ b/thirdparty/aspell-it/zimbra-aspell-it/rpm/SPECS/aspell-it.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Italian dictionary Name: zimbra-aspell-it Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Italian dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/changelog b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/changelog index 02159f0bb..e15592632 100644 --- a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/changelog +++ b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-nl (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-nl (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/compat b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/compat +++ b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/control b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/control index a6f4b7f87..fc389ca1f 100644 --- a/thirdparty/aspell-nl/zimbra-aspell-nl/debian/control +++ b/thirdparty/aspell-nl/zimbra-aspell-nl/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-nl -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-nl Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Dutch Dictionary diff --git a/thirdparty/aspell-nl/zimbra-aspell-nl/rpm/SPECS/aspell-nl.spec b/thirdparty/aspell-nl/zimbra-aspell-nl/rpm/SPECS/aspell-nl.spec index b9c80c6ec..3f32cba14 100644 --- a/thirdparty/aspell-nl/zimbra-aspell-nl/rpm/SPECS/aspell-nl.spec +++ b/thirdparty/aspell-nl/zimbra-aspell-nl/rpm/SPECS/aspell-nl.spec @@ -1,18 +1,22 @@ Summary: Zimbra's Aspell Dutch dictionary Name: zimbra-aspell-nl Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: Public Domain Patch0: aspell-nl.patch Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Dutch dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/changelog b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/changelog index 701df14bd..0d463171e 100644 --- a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/changelog +++ b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-pl (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-pl (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/compat b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/compat +++ b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/control b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/control index e04ce9113..80dbb5a39 100644 --- a/thirdparty/aspell-pl/zimbra-aspell-pl/debian/control +++ b/thirdparty/aspell-pl/zimbra-aspell-pl/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-pl -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-pl Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Polish Dictionary diff --git a/thirdparty/aspell-pl/zimbra-aspell-pl/rpm/SPECS/aspell-pl.spec b/thirdparty/aspell-pl/zimbra-aspell-pl/rpm/SPECS/aspell-pl.spec index 2c640adf7..0319e840f 100644 --- a/thirdparty/aspell-pl/zimbra-aspell-pl/rpm/SPECS/aspell-pl.spec +++ b/thirdparty/aspell-pl/zimbra-aspell-pl/rpm/SPECS/aspell-pl.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Polish dictionary Name: zimbra-aspell-pl Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2.0 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Polish dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/changelog b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/changelog index 473647dc9..428fc1f2d 100644 --- a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/changelog +++ b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-pt-br (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-pt-br (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/compat b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/compat +++ b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/control b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/control index 4bde9ec26..00584db14 100644 --- a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/control +++ b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-pt-br -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-pt-br Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Brazilian Portuguese Dictionary diff --git a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/rpm/SPECS/aspell-pt-br.spec b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/rpm/SPECS/aspell-pt-br.spec index bbd7b4dba..56434bf46 100644 --- a/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/rpm/SPECS/aspell-pt-br.spec +++ b/thirdparty/aspell-pt-br/zimbra-aspell-pt-br/rpm/SPECS/aspell-pt-br.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Brazilian Portuguese dictionary Name: zimbra-aspell-pt-br Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: LGPL-2.1 Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Brazilian Portuguese dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/changelog b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/changelog index ed649fa51..f3dc66c23 100644 --- a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/changelog +++ b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-ru (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-ru (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/compat b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/compat +++ b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/control b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/control index 8f88e0569..19fe1fb6b 100644 --- a/thirdparty/aspell-ru/zimbra-aspell-ru/debian/control +++ b/thirdparty/aspell-ru/zimbra-aspell-ru/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-ru -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-ru Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Russian Dictionary diff --git a/thirdparty/aspell-ru/zimbra-aspell-ru/rpm/SPECS/aspell-ru.spec b/thirdparty/aspell-ru/zimbra-aspell-ru/rpm/SPECS/aspell-ru.spec index 7be20de53..f44a2afbc 100644 --- a/thirdparty/aspell-ru/zimbra-aspell-ru/rpm/SPECS/aspell-ru.spec +++ b/thirdparty/aspell-ru/zimbra-aspell-ru/rpm/SPECS/aspell-ru.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Russian dictionary Name: zimbra-aspell-ru Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: MIT Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Russian dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/changelog b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/changelog index 15958a701..46c5da192 100644 --- a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/changelog +++ b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-sv (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Upgraded dependency aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-sv (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/compat b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/compat +++ b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/control b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/control index e8b43593c..0100e985a 100644 --- a/thirdparty/aspell-sv/zimbra-aspell-sv/debian/control +++ b/thirdparty/aspell-sv/zimbra-aspell-sv/debian/control @@ -1,5 +1,5 @@ Source: zimbra-aspell-sv -Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell +Build-Depends: debhelper (>= 9), m4, dpkg-dev (>= 1.15.7), zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Section: utils Priority: optional Maintainer: Zimbra Packaging Services @@ -10,5 +10,5 @@ Homepage: http://aspell.net/ Package: zimbra-aspell-sv Priority: optional Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell +Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-aspell (>= 0.60.8-1zimbra8.7b1ZAPPEND) Description: Aspell Swedish Dictionary diff --git a/thirdparty/aspell-sv/zimbra-aspell-sv/rpm/SPECS/aspell-sv.spec b/thirdparty/aspell-sv/zimbra-aspell-sv/rpm/SPECS/aspell-sv.spec index 01780dd0d..c329cb137 100644 --- a/thirdparty/aspell-sv/zimbra-aspell-sv/rpm/SPECS/aspell-sv.spec +++ b/thirdparty/aspell-sv/zimbra-aspell-sv/rpm/SPECS/aspell-sv.spec @@ -1,17 +1,21 @@ Summary: Zimbra's Aspell Swedish dictionary Name: zimbra-aspell-sv Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: Public Domain Source: %{name}-%{version}.tar.bz2 -BuildRequires: zimbra-aspell -Requires: zimbra-aspell +BuildRequires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND +Requires: zimbra-aspell >= 0.60.8-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: http://aspell.net/ %description The Zimbra Aspell Swedish dictionary +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency aspell to 0.60.8 + %define debug_package %{nil} %prep diff --git a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/changelog b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/changelog index 2d424b112..6236c044f 100644 --- a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/changelog +++ b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell-zimbra (1.0.0-1zimbra8.7b2ZAPPEND) unstable; urgency=medium + + * Updated dependency zimbra-aspell-en + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell-zimbra (1.0.0-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/compat b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/compat +++ b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/control b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/control index 8fa53b284..83e02a7c2 100644 --- a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/control +++ b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/debian/control @@ -2,13 +2,13 @@ Source: zimbra-aspell-zimbra Section: mail Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-aspell-en +Build-Depends: debhelper (>= 9), zimbra-aspell-en (>= 7.1.0-1zimbra8.7b2ZAPPEND) Standards-Version: 3.9.5 Package: zimbra-aspell-zimbra Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, - zimbra-aspell-en + zimbra-aspell-en (>= 7.1.0-1zimbra8.7b2ZAPPEND) Description: Zimbra custom dictionary This is a dictionary for aspell defining specific words that Zimbra does not want viewed as a typo. The word Zimbra diff --git a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/rpm/SPECS/aspell-zimbra.spec b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/rpm/SPECS/aspell-zimbra.spec index 76ffc6eb0..4a9aec3f9 100644 --- a/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/rpm/SPECS/aspell-zimbra.spec +++ b/thirdparty/aspell-zimbra/zimbra-aspell-zimbra/rpm/SPECS/aspell-zimbra.spec @@ -1,16 +1,20 @@ Summary: Zimbra custom dictionary Name: zimbra-aspell-zimbra Version: 1.0.0 -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2 -BuildRequires: zimbra-aspell-en -Requires: zimbra-aspell-en +BuildRequires: zimbra-aspell-en >= 7.1.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-en >= 7.1.0-1zimbra8.7b2ZAPPEND Packager: Zimbra Packaging Services Group: Development/Languages AutoReqProv: no %define debug_package %{nil} +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-aspell-en + %description This is a dictionary for aspell defining specific words that Zimbra does not want viewed as a typo. The word Zimbra diff --git a/thirdparty/aspell/Makefile b/thirdparty/aspell/Makefile index 43f7154d2..3041d6254 100644 --- a/thirdparty/aspell/Makefile +++ b/thirdparty/aspell/Makefile @@ -6,7 +6,7 @@ pvers := $(ASPELL_VERSION) pname := aspell pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := ftp://alpha.gnu.org/gnu/aspell/$(pfile) +purl := ftp://ftp.gnu.org/gnu/aspell/$(pname)-$(pvers).tar.gz zname := zimbra-$(pname) zspec := $(pname).spec diff --git a/thirdparty/aspell/zimbra-aspell/debian/changelog b/thirdparty/aspell/zimbra-aspell/debian/changelog index b309966a9..d5cb23557 100644 --- a/thirdparty/aspell/zimbra-aspell/debian/changelog +++ b/thirdparty/aspell/zimbra-aspell/debian/changelog @@ -1,3 +1,9 @@ +zimbra-aspell (VERSION-ITERATIONZAPPEND) unstable; urgency=medium + + * Upgraded aspell to 0.60.8 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-aspell (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/aspell/zimbra-aspell/debian/compat b/thirdparty/aspell/zimbra-aspell/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/aspell/zimbra-aspell/debian/compat +++ b/thirdparty/aspell/zimbra-aspell/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/aspell/zimbra-aspell/rpm/SPECS/aspell.spec b/thirdparty/aspell/zimbra-aspell/rpm/SPECS/aspell.spec index c3a59a4f5..ae1848749 100644 --- a/thirdparty/aspell/zimbra-aspell/rpm/SPECS/aspell.spec +++ b/thirdparty/aspell/zimbra-aspell/rpm/SPECS/aspell.spec @@ -12,6 +12,10 @@ URL: http://aspell.net/ %description The Zimbra Aspell build +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded aspell to 0.60.8 + %prep %setup -n aspell-%{version} diff --git a/thirdparty/bdb/Makefile b/thirdparty/bdb/Makefile index e273939b3..6256e2b75 100644 --- a/thirdparty/bdb/Makefile +++ b/thirdparty/bdb/Makefile @@ -7,7 +7,7 @@ pname := bdb uname := db pfile := $(uname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := http://ftp.nsysu.edu.tw/FreeBSD/ports/distfiles/bdb/$(pfile) +purl := https://ftp.tw.freebsd.org/distfiles/bdb/$(pfile) zname := zimbra-$(pname) zspec := $(pname).spec diff --git a/thirdparty/bdb/zimbra-bdb/debian/compat b/thirdparty/bdb/zimbra-bdb/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/bdb/zimbra-bdb/debian/compat +++ b/thirdparty/bdb/zimbra-bdb/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/clamav-db/zimbra-clamav-db/debian/compat b/thirdparty/clamav-db/zimbra-clamav-db/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/clamav-db/zimbra-clamav-db/debian/compat +++ b/thirdparty/clamav-db/zimbra-clamav-db/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/clamav/zimbra-clamav/debian/compat b/thirdparty/clamav/zimbra-clamav/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/clamav/zimbra-clamav/debian/compat +++ b/thirdparty/clamav/zimbra-clamav/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/cluebringer/zimbra-cluebringer/debian/changelog b/thirdparty/cluebringer/zimbra-cluebringer/debian/changelog index 0095d78dc..77163c94d 100644 --- a/thirdparty/cluebringer/zimbra-cluebringer/debian/changelog +++ b/thirdparty/cluebringer/zimbra-cluebringer/debian/changelog @@ -1,3 +1,9 @@ +zimbra-cluebringer (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependencies zimbra-perl-config-inifiles,zimbra-perl-net-server + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-cluebringer (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/cluebringer/zimbra-cluebringer/debian/compat b/thirdparty/cluebringer/zimbra-cluebringer/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/cluebringer/zimbra-cluebringer/debian/compat +++ b/thirdparty/cluebringer/zimbra-cluebringer/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/cluebringer/zimbra-cluebringer/debian/control b/thirdparty/cluebringer/zimbra-cluebringer/debian/control index 9b9804d5e..2831a4453 100644 --- a/thirdparty/cluebringer/zimbra-cluebringer/debian/control +++ b/thirdparty/cluebringer/zimbra-cluebringer/debian/control @@ -11,9 +11,9 @@ Package: zimbra-cluebringer Priority: optional Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-mta-base, - zimbra-perl-base, zimbra-perl-cache-fastmmap, zimbra-perl-config-inifiles, + zimbra-perl-base, zimbra-perl-cache-fastmmap, zimbra-perl-config-inifiles (>= 2.86-1zimbra8.7b2ZAPPEND), zimbra-perl-dbi, zimbra-perl-dbd-sqlite, zimbra-perl-mail-spf, - zimbra-perl-net-cidr, zimbra-perl-net-dns, zimbra-perl-net-server, zimbra-perl-timedate + zimbra-perl-net-cidr, zimbra-perl-net-dns, zimbra-perl-net-server (>= 2.009-1zimbra8.7b1ZAPPEND), zimbra-perl-timedate Description: ClueBringer Policy Daemon PolicyD v2 (codenamed "cluebringer") is a multi-platform policy server for popular MTAs. This policy daemon is designed mostly for large scale mail hosting environments. diff --git a/thirdparty/cluebringer/zimbra-cluebringer/rpm/SPECS/cluebringer.spec b/thirdparty/cluebringer/zimbra-cluebringer/rpm/SPECS/cluebringer.spec index d85a41d3e..9399cf08e 100644 --- a/thirdparty/cluebringer/zimbra-cluebringer/rpm/SPECS/cluebringer.spec +++ b/thirdparty/cluebringer/zimbra-cluebringer/rpm/SPECS/cluebringer.spec @@ -1,14 +1,14 @@ Summary: ClueBringer Policy Daemon Name: zimbra-cluebringer Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2 Source: %{name}-%{version}.tgz Packager: Zimbra Packaging Services Requires: zimbra-mta-base, zimbra-perl-base, zimbra-perl-cache-fastmmap -Requires: zimbra-perl-config-inifiles, zimbra-perl-dbi, zimbra-perl-dbd-sqlite +Requires: zimbra-perl-config-inifiles >= 2.86-1zimbra8.7b2ZAPPEND, zimbra-perl-dbi, zimbra-perl-dbd-sqlite Requires: zimbra-perl-mail-spf, zimbra-perl-net-cidr, zimbra-perl-net-dns -Requires: zimbra-perl-net-server, zimbra-perl-timedate +Requires: zimbra-perl-net-server >= 2.009-1zimbra8.7b1ZAPPEND, zimbra-perl-timedate AutoReqProv: no URL: http://wiki.policyd.org/ @@ -21,6 +21,10 @@ required for mission critical email hosting of today. Most of the ideas and meth implemented in PolicyD v2 stem from PolicyD v1 as well as the authors' long time involvement in large scale mail hosting industry. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependencies zimbra-perl-config-inifiles,zimbra-perl-net-server + %define debug_package %{nil} %prep diff --git a/thirdparty/curl/zimbra-curl/debian/compat b/thirdparty/curl/zimbra-curl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/curl/zimbra-curl/debian/compat +++ b/thirdparty/curl/zimbra-curl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/cyrus-sasl/zimbra-cyrus-sasl/debian/compat b/thirdparty/cyrus-sasl/zimbra-cyrus-sasl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/cyrus-sasl/zimbra-cyrus-sasl/debian/compat +++ b/thirdparty/cyrus-sasl/zimbra-cyrus-sasl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/erlang/zimbra-erlang/debian/compat b/thirdparty/erlang/zimbra-erlang/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/erlang/zimbra-erlang/debian/compat +++ b/thirdparty/erlang/zimbra-erlang/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/freetype/Makefile b/thirdparty/freetype/Makefile index e480cf8f5..884c26a23 100644 --- a/thirdparty/freetype/Makefile +++ b/thirdparty/freetype/Makefile @@ -6,7 +6,7 @@ pvers := $(FREETYPE_VERSION) pname := freetype pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := http://download.savannah.gnu.org/releases/freetype/$(pfile) +purl := http://download.savannah.gnu.org/releases/freetype/freetype-old/$(pfile) zname := zimbra-$(pname) zspec := $(pname).spec diff --git a/thirdparty/freetype/zimbra-freetype/debian/compat b/thirdparty/freetype/zimbra-freetype/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/freetype/zimbra-freetype/debian/compat +++ b/thirdparty/freetype/zimbra-freetype/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/heimdal/zimbra-heimdal/debian/compat b/thirdparty/heimdal/zimbra-heimdal/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/heimdal/zimbra-heimdal/debian/compat +++ b/thirdparty/heimdal/zimbra-heimdal/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/heimdal/zimbra-heimdal/debian/rules b/thirdparty/heimdal/zimbra-heimdal/debian/rules index 00fcef808..39abd1ee3 100755 --- a/thirdparty/heimdal/zimbra-heimdal/debian/rules +++ b/thirdparty/heimdal/zimbra-heimdal/debian/rules @@ -8,7 +8,7 @@ export DEB_CXXFLAGS_MAINT_APPEND=-D_REENTRANT export DEB_CPPFLAGS_MAINT_APPEND=-IOZCI %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ --sysconfdir=/etc \ diff --git a/thirdparty/httpd/zimbra-httpd/debian/compat b/thirdparty/httpd/zimbra-httpd/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/httpd/zimbra-httpd/debian/compat +++ b/thirdparty/httpd/zimbra-httpd/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/jetty-distribution/zimbra-jetty-distribution/debian/compat b/thirdparty/jetty-distribution/zimbra-jetty-distribution/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/jetty-distribution/zimbra-jetty-distribution/debian/compat +++ b/thirdparty/jetty-distribution/zimbra-jetty-distribution/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libart/zimbra-libart/debian/compat b/thirdparty/libart/zimbra-libart/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libart/zimbra-libart/debian/compat +++ b/thirdparty/libart/zimbra-libart/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libbsd/Makefile b/thirdparty/libbsd/Makefile index 84433cf64..3354875b7 100644 --- a/thirdparty/libbsd/Makefile +++ b/thirdparty/libbsd/Makefile @@ -10,7 +10,9 @@ purl := http://libbsd.freedesktop.org/releases/$(pfile) zname := zimbra-$(pname) zspec := $(pname).spec -.PHONY: all getsrc setup build clean +libbsd = $(libbsd.$(BUILD_PLATFORM)) + +.PHONY: all getsrc setup build clean pkgadd all: clean getsrc build @@ -19,10 +21,13 @@ getsrc: $(psrc_file) $(psrc_file): $(MKDIR) $(@D) && $(CD) $(@D) && $(WGET) $(purl) +pkgadd: + $(PKG_EXTRACT) $(libbsd) + setup: $(generic-setup) -build: setup build_$(PKG_EXT) +build: setup pkgadd build_$(PKG_EXT) build_rpm: specfile = SPECS/$(zspec) build_rpm: diff --git a/thirdparty/libbsd/UBUNTU.def b/thirdparty/libbsd/UBUNTU.def new file mode 100644 index 000000000..5560e4a21 --- /dev/null +++ b/thirdparty/libbsd/UBUNTU.def @@ -0,0 +1,4 @@ +libbsd.UBUNTU22_64 := libmd-dev +libbsd.UBUNTU20_64 := libmd-dev +libbsd.UBUNTU18_64 := libmd-dev +libbsd.UBUNTU16_64 := libmd-dev diff --git a/thirdparty/libbsd/zimbra-libbsd/debian/changelog b/thirdparty/libbsd/zimbra-libbsd/debian/changelog index 2ff548bb0..da132d265 100644 --- a/thirdparty/libbsd/zimbra-libbsd/debian/changelog +++ b/thirdparty/libbsd/zimbra-libbsd/debian/changelog @@ -1,3 +1,9 @@ +zimbra-libbsd (VERSION-ITERATIONZAPPEND) unstable; urgency=medium + + * Upgraded libbsd to 0.11.7 + + -- Zimbra Packaging Services Tue, 26 Sep 2023 22:26:24 +000 + zimbra-libbsd (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/libbsd/zimbra-libbsd/debian/compat b/thirdparty/libbsd/zimbra-libbsd/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libbsd/zimbra-libbsd/debian/compat +++ b/thirdparty/libbsd/zimbra-libbsd/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libevent/zimbra-libevent/debian/changelog b/thirdparty/libevent/zimbra-libevent/debian/changelog index 97baa99ef..690a0ec88 100644 --- a/thirdparty/libevent/zimbra-libevent/debian/changelog +++ b/thirdparty/libevent/zimbra-libevent/debian/changelog @@ -1,3 +1,9 @@ +zimbra-libevent (VERSION-ITERATIONZAPPEND) unstable; urgency=medium + + * Upgraded libevent to 2.1.12 + + -- Zimbra Packaging Services Tue, 26 Sep 2023 22:26:24 +0000 + zimbra-libevent (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/libevent/zimbra-libevent/debian/compat b/thirdparty/libevent/zimbra-libevent/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libevent/zimbra-libevent/debian/compat +++ b/thirdparty/libevent/zimbra-libevent/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libevent/zimbra-libevent/debian/rules b/thirdparty/libevent/zimbra-libevent/debian/rules index c8a906568..2173c23ae 100755 --- a/thirdparty/libevent/zimbra-libevent/debian/rules +++ b/thirdparty/libevent/zimbra-libevent/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC diff --git a/thirdparty/libevent/zimbra-libevent/debian/zimbra-libevent-lib.shlibs b/thirdparty/libevent/zimbra-libevent/debian/zimbra-libevent-lib.shlibs index c6d86e1db..f8697d035 100644 --- a/thirdparty/libevent/zimbra-libevent/debian/zimbra-libevent-lib.shlibs +++ b/thirdparty/libevent/zimbra-libevent/debian/zimbra-libevent-lib.shlibs @@ -1,4 +1,4 @@ -libevent-2.0 5 zimbra-libevent-lib (>= VERSION-ITERATION) -libevent_pthreads-2.0 5 zimbra-libevent-lib (>= VERSION-ITERATION) -libevent_core-2.0 5 zimbra-libevent-lib (>= VERSION-ITERATION) -libevent_extra-2.0 5 zimbra-libevent-lib (>= VERSION-ITERATION) +libevent-2.1 7 zimbra-libevent-lib (>= VERSION-ITERATION) +libevent_pthreads-2.1 7 zimbra-libevent-lib (>= VERSION-ITERATION) +libevent_core-2.1 7 zimbra-libevent-lib (>= VERSION-ITERATION) +libevent_extra-2.1 7 zimbra-libevent-lib (>= VERSION-ITERATION) diff --git a/thirdparty/libevent/zimbra-libevent/rpm/SPECS/libevent.spec b/thirdparty/libevent/zimbra-libevent/rpm/SPECS/libevent.spec index 5a13c1400..dfd16030c 100644 --- a/thirdparty/libevent/zimbra-libevent/rpm/SPECS/libevent.spec +++ b/thirdparty/libevent/zimbra-libevent/rpm/SPECS/libevent.spec @@ -51,3 +51,7 @@ OZCL/*.a OZCL/*.la OZCL/*.so OZCL/pkgconfig + +%changelog +* Tue Sep 26 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b1ZAPPEND +- Upgraded libevent to 2.1.12 diff --git a/thirdparty/libltdl/zimbra-libltdl/debian/compat b/thirdparty/libltdl/zimbra-libltdl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libltdl/zimbra-libltdl/debian/compat +++ b/thirdparty/libltdl/zimbra-libltdl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libltdl/zimbra-libltdl/debian/rules b/thirdparty/libltdl/zimbra-libltdl/debian/rules index cbe185ac4..6825a0603 100755 --- a/thirdparty/libltdl/zimbra-libltdl/debian/rules +++ b/thirdparty/libltdl/zimbra-libltdl/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ --disable-static --datarootdir=OZCS diff --git a/thirdparty/libmilter/patches/libmilter-8.15.2.patch b/thirdparty/libmilter/patches/libmilter-8.15.2.patch new file mode 100644 index 000000000..00988ffdf --- /dev/null +++ b/thirdparty/libmilter/patches/libmilter-8.15.2.patch @@ -0,0 +1,50 @@ +diff -ur a/libmilter/sm_gethost.c b/libmilter/sm_gethost.c +--- a/libmilter/sm_gethost.c 2021-08-04 04:36:27.157501116 +0000 ++++ b/libmilter/sm_gethost.c 2021-08-04 04:39:42.929020966 +0000 +@@ -51,17 +51,20 @@ + { + bool resv6 = true; + struct hostent *h; +- ++#ifdef RES_USE_INET6 + if (family == AF_INET6) + { + /* From RFC2133, section 6.1 */ + resv6 = bitset(RES_USE_INET6, _res.options); + _res.options |= RES_USE_INET6; + } ++#endif + SM_SET_H_ERRNO(0); + h = gethostbyname(name); ++#ifdef RES_USE_INET6 + if (family == AF_INET6 && !resv6) + _res.options &= ~RES_USE_INET6; ++#endif + + /* the function is supposed to return only the requested family */ + if (h != NULL && h->h_addrtype != family) +diff -ur a/sendmail/conf.c b/sendmail/conf.c +--- a/sendmail/conf.c 2021-08-04 04:38:13.435411576 +0000 ++++ b/sendmail/conf.c 2021-08-04 04:40:38.054012547 +0000 +@@ -4242,17 +4242,20 @@ + + # else /* HAS_GETHOSTBYNAME2 */ + bool resv6 = true; +- ++#ifdef RES_USE_INET6 + if (family == AF_INET6) + { + /* From RFC2133, section 6.1 */ + resv6 = bitset(RES_USE_INET6, _res.options); + _res.options |= RES_USE_INET6; + } ++#endif + SM_SET_H_ERRNO(0); + h = gethostbyname(name); ++#ifdef RES_USE_INET6 + if (!resv6) + _res.options &= ~RES_USE_INET6; ++#endif + + /* the function is supposed to return only the requested family */ + if (h != NULL && h->h_addrtype != family) diff --git a/thirdparty/libmilter/zimbra-libmilter/debian/compat b/thirdparty/libmilter/zimbra-libmilter/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libmilter/zimbra-libmilter/debian/compat +++ b/thirdparty/libmilter/zimbra-libmilter/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libmilter/zimbra-libmilter/debian/patches/series b/thirdparty/libmilter/zimbra-libmilter/debian/patches/series index b5b92c7e1..03bc81d5f 100644 --- a/thirdparty/libmilter/zimbra-libmilter/debian/patches/series +++ b/thirdparty/libmilter/zimbra-libmilter/debian/patches/series @@ -1 +1,2 @@ ipv6.patch +libmilter-8.15.2.patch diff --git a/thirdparty/libpng/zimbra-libpng/debian/compat b/thirdparty/libpng/zimbra-libpng/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libpng/zimbra-libpng/debian/compat +++ b/thirdparty/libpng/zimbra-libpng/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libsodium/zimbra-libsodium/debian/changelog b/thirdparty/libsodium/zimbra-libsodium/debian/changelog index 52442961b..cbf869d4a 100644 --- a/thirdparty/libsodium/zimbra-libsodium/debian/changelog +++ b/thirdparty/libsodium/zimbra-libsodium/debian/changelog @@ -4,6 +4,12 @@ zimbra-libsodium (VERSION-1zimbra10.0b1ZAPPEND) unstable; urgency=medium -- Zimbra Packaging Services Mon, 04 Mar 2024 00:00:00 +0000 +zimbra-libsodium (VERSION-ITERATIONZAPPEND) unstable; urgency=medium + + * Upgraded libsodium to 1.0.19 + + -- Zimbra Packaging Services Tue, 26 Sep 2023 22:26:24 +0000 + zimbra-libsodium (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/libsodium/zimbra-libsodium/debian/compat b/thirdparty/libsodium/zimbra-libsodium/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libsodium/zimbra-libsodium/debian/compat +++ b/thirdparty/libsodium/zimbra-libsodium/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/libsodium/zimbra-libsodium/debian/rules b/thirdparty/libsodium/zimbra-libsodium/debian/rules index f2cdecf6e..bed69eb98 100755 --- a/thirdparty/libsodium/zimbra-libsodium/debian/rules +++ b/thirdparty/libsodium/zimbra-libsodium/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ diff --git a/thirdparty/libsodium/zimbra-libsodium/debian/zimbra-libsodium-lib.shlibs b/thirdparty/libsodium/zimbra-libsodium/debian/zimbra-libsodium-lib.shlibs index c09392c72..50017377d 100644 --- a/thirdparty/libsodium/zimbra-libsodium/debian/zimbra-libsodium-lib.shlibs +++ b/thirdparty/libsodium/zimbra-libsodium/debian/zimbra-libsodium-lib.shlibs @@ -1 +1 @@ -libsodium 17 zimbra-libsodium-lib (>= VERSION-ITERATION) +libsodium 26 zimbra-libsodium-lib (>= VERSION-ITERATION) diff --git a/thirdparty/libsodium/zimbra-libsodium/rpm/SPECS/libsodium.spec b/thirdparty/libsodium/zimbra-libsodium/rpm/SPECS/libsodium.spec index 20ae79d26..0a1404a09 100644 --- a/thirdparty/libsodium/zimbra-libsodium/rpm/SPECS/libsodium.spec +++ b/thirdparty/libsodium/zimbra-libsodium/rpm/SPECS/libsodium.spec @@ -53,3 +53,7 @@ OZCL/pkgconfig OZCL/*.a OZCL/*.la OZCL/*.so + +%changelog +* Tue Sep 26 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b1ZAPPEND +- Upgraded libsodium to 1.0.19 diff --git a/thirdparty/libxml2/zimbra-libxml2/debian/compat b/thirdparty/libxml2/zimbra-libxml2/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/libxml2/zimbra-libxml2/debian/compat +++ b/thirdparty/libxml2/zimbra-libxml2/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/mariadb/Makefile b/thirdparty/mariadb/Makefile index 80eb422f5..819db5aaa 100644 --- a/thirdparty/mariadb/Makefile +++ b/thirdparty/mariadb/Makefile @@ -6,7 +6,7 @@ pvers := $(MARIADB_VERSION) pname := mariadb pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := http://ftp.hosteurope.de/mirror/archive.mariadb.org/$(pname)-$(pvers)/source/$(pfile) +purl := https://archive.mariadb.org/$(pname)-$(pvers)/source/$(pfile) zname := zimbra-$(pname) zspec := $(pname).spec @@ -47,6 +47,7 @@ build_deb: $(replace-pkginfo) debian/changelog $(z_shlibs) && \ $(replace-pathinfo) debian/rules && \ $(CP) $(psrc_file) ../$(z_tgz) && \ + $(CP) $(PKG_ROOT)/patches/*.patch debian/patches/ && \ $(TAR) xfz ../$(z_tgz) --strip-components=1 --exclude=debian && \ $(PKG_BUILD) diff --git a/thirdparty/mariadb/patches/mariadb.patch b/thirdparty/mariadb/patches/mariadb.patch new file mode 100644 index 000000000..f54ed873b --- /dev/null +++ b/thirdparty/mariadb/patches/mariadb.patch @@ -0,0 +1,11 @@ +diff -ur a/extra/mariabackup/xbstream.c b/extra/mariabackup/xbstream.c +--- a/extra/mariabackup/xbstream.c 2023-09-27 14:28:20.333809984 +0000 ++++ b/extra/mariabackup/xbstream.c 2023-09-27 14:28:51.222494177 +0000 +@@ -45,7 +45,6 @@ + datasink_t datasink_xbstream; + datasink_t datasink_compress; + datasink_t datasink_tmpfile; +-datasink_t datasink_buffer; + + static run_mode_t opt_mode; + static char * opt_directory = NULL; diff --git a/thirdparty/mariadb/zimbra-mariadb/debian/compat b/thirdparty/mariadb/zimbra-mariadb/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/mariadb/zimbra-mariadb/debian/compat +++ b/thirdparty/mariadb/zimbra-mariadb/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/mariadb/zimbra-mariadb/debian/patches/series b/thirdparty/mariadb/zimbra-mariadb/debian/patches/series new file mode 100644 index 000000000..a500c3275 --- /dev/null +++ b/thirdparty/mariadb/zimbra-mariadb/debian/patches/series @@ -0,0 +1 @@ +#mariadb.patch diff --git a/thirdparty/mariadb/zimbra-mariadb/debian/rules b/thirdparty/mariadb/zimbra-mariadb/debian/rules index 0b5ebe9cd..5a45d147e 100755 --- a/thirdparty/mariadb/zimbra-mariadb/debian/rules +++ b/thirdparty/mariadb/zimbra-mariadb/debian/rules @@ -5,9 +5,10 @@ export DEB_CFLAGS_MAINT_APPEND=-O3 -fno-omit-frame-pointer -pipe -Wall -Wno-unin export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL:OZCL/mysql %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: /usr/bin/cmake . \ + -DCMAKE_CXX_STANDARD=11 \ -DBUILD_CONFIG=mysql_release \ -DCOMPILATION_COMMENT="Zimbra MariaDB binary distribution" \ -DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE \ diff --git a/thirdparty/memcached/zimbra-memcached/debian/changelog b/thirdparty/memcached/zimbra-memcached/debian/changelog index ecd16bf91..38724354f 100644 --- a/thirdparty/memcached/zimbra-memcached/debian/changelog +++ b/thirdparty/memcached/zimbra-memcached/debian/changelog @@ -1,3 +1,15 @@ +zimbra-memcached (VERSION-1zimbra8.7b1ZAPPEND) unstable; urgency=medium + + * Upgrade to memcached 1.6.21 + + -- Zimbra Packaging Services Tue, 26 Sep 2023 22:26:24 +0000 + +zimbra-memcached (VERSION-1zimbra8.7b1ZAPPEND) unstable; urgency=medium + + * Upgrade to memcached 1.6.5 . + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-memcached (1:VERSION-2.PKG_OS_TAG) unstable; urgency=medium * Upgrade to memcached 1.4.37 for Bug 107246. diff --git a/thirdparty/memcached/zimbra-memcached/debian/compat b/thirdparty/memcached/zimbra-memcached/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/memcached/zimbra-memcached/debian/compat +++ b/thirdparty/memcached/zimbra-memcached/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/memcached/zimbra-memcached/debian/rules b/thirdparty/memcached/zimbra-memcached/debian/rules index d04951e03..766adf2f1 100755 --- a/thirdparty/memcached/zimbra-memcached/debian/rules +++ b/thirdparty/memcached/zimbra-memcached/debian/rules @@ -6,7 +6,7 @@ export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL export PKG_CONFIG_PATH=OZCL/pkgconfig %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC diff --git a/thirdparty/memcached/zimbra-memcached/rpm/SPECS/memcached.spec b/thirdparty/memcached/zimbra-memcached/rpm/SPECS/memcached.spec index 31c0c6732..c99915028 100644 --- a/thirdparty/memcached/zimbra-memcached/rpm/SPECS/memcached.spec +++ b/thirdparty/memcached/zimbra-memcached/rpm/SPECS/memcached.spec @@ -2,7 +2,7 @@ Summary: Zimbra's memcached build Name: zimbra-memcached Epoch: 1 Version: VERSION -Release: 2.PKG_OS_TAG +Release: 1zimbra8.7b1ZAPPEND License: BSD Source: %{name}-%{version}.tar.gz BuildRequires: zimbra-libevent-devel @@ -15,6 +15,10 @@ URL: http://memcached.org/ The Zimbra memcached build %changelog +* Tue Sep 26 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b1ZAPPEND +- Upgrade to memcached 1.6.21 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b1ZAPPEND +- Upgrade to memcached 1.6.5 . * Sat Jun 24 2017 Zimbra Packaging Services - VERSION-2.PKG_OS_TAG - Upgrade to memcached 1.4.37 for Bug 107246. diff --git a/thirdparty/net-snmp/zimbra-net-snmp/debian/changelog b/thirdparty/net-snmp/zimbra-net-snmp/debian/changelog index 7e03de237..d25c81f64 100644 --- a/thirdparty/net-snmp/zimbra-net-snmp/debian/changelog +++ b/thirdparty/net-snmp/zimbra-net-snmp/debian/changelog @@ -1,9 +1,15 @@ -zimbra-net-snmp (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium +zimbra-net-snmp (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium * ZBUG-3355, Upgraded OpenSSL to 3.0.9 -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-net-snmp (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium + + * Upgraded dependency openssl to 1.1.1k + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-net-snmp (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium * Upgraded dependency openssl to 1.1.1h diff --git a/thirdparty/net-snmp/zimbra-net-snmp/debian/compat b/thirdparty/net-snmp/zimbra-net-snmp/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/net-snmp/zimbra-net-snmp/debian/compat +++ b/thirdparty/net-snmp/zimbra-net-snmp/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/net-snmp/zimbra-net-snmp/debian/rules b/thirdparty/net-snmp/zimbra-net-snmp/debian/rules index 82ef30207..36a9e09a5 100755 --- a/thirdparty/net-snmp/zimbra-net-snmp/debian/rules +++ b/thirdparty/net-snmp/zimbra-net-snmp/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ diff --git a/thirdparty/net-snmp/zimbra-net-snmp/rpm/SPECS/net-snmp.spec b/thirdparty/net-snmp/zimbra-net-snmp/rpm/SPECS/net-snmp.spec index 9f8481939..0bcdc901a 100644 --- a/thirdparty/net-snmp/zimbra-net-snmp/rpm/SPECS/net-snmp.spec +++ b/thirdparty/net-snmp/zimbra-net-snmp/rpm/SPECS/net-snmp.spec @@ -1,7 +1,7 @@ Summary: Zimbra's NetSNMP build Name: zimbra-net-snmp Version: VERSION -Release: 1zimbra8.7b3ZAPPEND +Release: 1zimbra8.7b4ZAPPEND License: BSD Source: %{name}-%{version}.tar.gz BuildRequires: zimbra-openssl-devel >= 3.0.9-1zimbra8.8b1ZAPPEND @@ -17,8 +17,10 @@ The Zimbra NetSNMP build %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - ZBUG-3355, Upgraded OpenSSL to 3.0.9 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +- Upgraded dependency openssl to 1.1.1k * Fri Dec 02 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND - Upgraded dependency openssl to 1.1.1h * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND diff --git a/thirdparty/nginx/zimbra-nginx/debian/compat b/thirdparty/nginx/zimbra-nginx/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/nginx/zimbra-nginx/debian/compat +++ b/thirdparty/nginx/zimbra-nginx/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/opendkim/zimbra-opendkim/debian/compat b/thirdparty/opendkim/zimbra-opendkim/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/opendkim/zimbra-opendkim/debian/compat +++ b/thirdparty/opendkim/zimbra-opendkim/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/openjdk-cacerts/zimbra-openjdk-cacerts/debian/compat b/thirdparty/openjdk-cacerts/zimbra-openjdk-cacerts/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/openjdk-cacerts/zimbra-openjdk-cacerts/debian/compat +++ b/thirdparty/openjdk-cacerts/zimbra-openjdk-cacerts/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/openjdk/zimbra-openjdk/debian/compat b/thirdparty/openjdk/zimbra-openjdk/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/openjdk/zimbra-openjdk/debian/compat +++ b/thirdparty/openjdk/zimbra-openjdk/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/openldap/zimbra-openldap/debian/compat b/thirdparty/openldap/zimbra-openldap/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/openldap/zimbra-openldap/debian/compat +++ b/thirdparty/openldap/zimbra-openldap/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/openldap/zimbra-openldap/debian/rules b/thirdparty/openldap/zimbra-openldap/debian/rules index 339791286..ecceb7bbd 100755 --- a/thirdparty/openldap/zimbra-openldap/debian/rules +++ b/thirdparty/openldap/zimbra-openldap/debian/rules @@ -9,7 +9,7 @@ export DEB_CPPFLAGS_MAINT_APPEND=-IOZCI MAKEVARS := STRIP= %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ --with-cyrus-sasl \ diff --git a/thirdparty/openssl/zimbra-openssl/debian/compat b/thirdparty/openssl/zimbra-openssl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/openssl/zimbra-openssl/debian/compat +++ b/thirdparty/openssl/zimbra-openssl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/openssl/zimbra-openssl/debian/rules b/thirdparty/openssl/zimbra-openssl/debian/rules index 18041cad9..897bb7807 100755 --- a/thirdparty/openssl/zimbra-openssl/debian/rules +++ b/thirdparty/openssl/zimbra-openssl/debian/rules @@ -7,7 +7,7 @@ export DEB_LDFLAGS_MAINT_APPEND="-LOZCL -ROZCL -Wl,-rpath,OZCL" # However, due to the above bug, we need to override LD_RUN_PATH as well, as seen below %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./Configure no-idea enable-fips enable-ec_nistp_64_gcc_128 no-mdc2 no-rc5 \ --prefix=OZC --with-rand-seed=devrandom,rdcpu,os,getrandom --libdir=lib --openssldir=OZCE/ssl \ diff --git a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/changelog b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/changelog index 7c71debe7..e344f11c7 100644 --- a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/changelog +++ b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-compress-raw-zlib + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/compat b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/compat +++ b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/control b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/control index dfc953263..77bb32dbb 100644 --- a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/control +++ b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/debian/control @@ -2,12 +2,12 @@ Source: zimbra-perl-MODNORMNAME Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-compress-raw-zlib +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-compress-raw-zlib (>= 2.093-1zimbra8.7b1ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-compress-raw-zlib +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-compress-raw-zlib (>= 2.093-1zimbra8.7b1ZAPPEND) Description: Archive::Zip - Provide an interface to ZIP archive files Perl interface to Zip archive files diff --git a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/rpm/SPECS/archive-zip.spec b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/rpm/SPECS/archive-zip.spec index 96560a2b0..226cd979b 100644 --- a/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/rpm/SPECS/archive-zip.spec +++ b/thirdparty/perl-archive-zip/zimbra-perl-archive-zip/rpm/SPECS/archive-zip.spec @@ -1,13 +1,13 @@ Summary: Archive::Zip - Provide an interface to ZIP archive files Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-compress-raw-zlib -Requires: zimbra-perl-base, zimbra-perl-compress-raw-zlib +BuildRequires: zimbra-perl-base, zimbra-perl-compress-raw-zlib >= 2.093-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-compress-raw-zlib >= 2.093-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -19,6 +19,10 @@ Perl interface to Zip archive files %prep %setup -n MODNAME-%{version} +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-compress-raw-zlib + %build perl -I OZCL/perl5 Makefile.PL INSTALL_BASE=OZC \ INSTALLSITEMAN1DIR=OZCS/man/man1 INSTALLSITEMAN3DIR=OZCS/man/man3 \ diff --git a/thirdparty/perl-berkeleydb/zimbra-perl-berkeleydb/debian/compat b/thirdparty/perl-berkeleydb/zimbra-perl-berkeleydb/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-berkeleydb/zimbra-perl-berkeleydb/debian/compat +++ b/thirdparty/perl-berkeleydb/zimbra-perl-berkeleydb/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/changelog b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/changelog index 7c71debe7..7bb9396d7 100644 --- a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/changelog +++ b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Upgraded dependency carp-clan to 6.08 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/compat b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/compat +++ b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/control b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/control index 1f22b3414..c4cbaf731 100644 --- a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/control +++ b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/debian/control @@ -2,12 +2,12 @@ Source: zimbra-perl-MODNORMNAME Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-carp-clan +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-carp-clan (>= 6.08-1zimbra8.7b1ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-carp-clan +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-carp-clan (>= 6.08-1zimbra8.7b1ZAPPEND) Description: Bit::Vector - Efficient bit vector, set of integers and "big int" math library Efficient base class implementing bit vectors diff --git a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/rpm/SPECS/bit-vector.spec b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/rpm/SPECS/bit-vector.spec index afb7bc9f2..f84621526 100644 --- a/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/rpm/SPECS/bit-vector.spec +++ b/thirdparty/perl-bit-vector/zimbra-perl-bit-vector/rpm/SPECS/bit-vector.spec @@ -1,13 +1,13 @@ Summary: Bit::Vector - Efficient bit vector, set of integers and "big int" math library Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-carp-clan -Requires: zimbra-perl-base, zimbra-perl-carp-clan +BuildRequires: zimbra-perl-base, zimbra-perl-carp-clan >= 6.08-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-carp-clan >= 6.08-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -16,6 +16,10 @@ Efficient base class implementing bit vectors %define debug_package %{nil} +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Upgraded dependency carp-clan to 6.08 + %prep %setup -n MODNAME-%{version} diff --git a/thirdparty/perl-cache-fastmmap/zimbra-perl-cache-fastmmap/debian/compat b/thirdparty/perl-cache-fastmmap/zimbra-perl-cache-fastmmap/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-cache-fastmmap/zimbra-perl-cache-fastmmap/debian/compat +++ b/thirdparty/perl-cache-fastmmap/zimbra-perl-cache-fastmmap/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-canary-stability/zimbra-perl-canary-stability/debian/compat b/thirdparty/perl-canary-stability/zimbra-perl-canary-stability/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-canary-stability/zimbra-perl-canary-stability/debian/compat +++ b/thirdparty/perl-canary-stability/zimbra-perl-canary-stability/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-carp-clan/Makefile b/thirdparty/perl-carp-clan/Makefile index 427f69592..a8a5fa1e1 100644 --- a/thirdparty/perl-carp-clan/Makefile +++ b/thirdparty/perl-carp-clan/Makefile @@ -8,7 +8,7 @@ pname_lc := carp-clan pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := https://cpan.metacpan.org/authors/id/S/ST/STBEY/$(pfile) +purl := https://www.cpan.org/modules/by-module/Carp/$(pfile) zname := zimbra-perl-$(pname_lc) zspec := $(pname_lc).spec diff --git a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/changelog b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/changelog index 7c71debe7..4178f4129 100644 --- a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/changelog +++ b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low + + * Upgraded carp-clan to 6.08 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/compat b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/compat +++ b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/rpm/SPECS/carp-clan.spec b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/rpm/SPECS/carp-clan.spec index 75b589a51..193e5292f 100644 --- a/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/rpm/SPECS/carp-clan.spec +++ b/thirdparty/perl-carp-clan/zimbra-perl-carp-clan/rpm/SPECS/carp-clan.spec @@ -18,6 +18,10 @@ it a number of levels to skip on the calling stack, you give it a pattern to characterize the package names of the "clan" of modules which shall never be blamed for any error. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded carp-clan to 6.08 + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-class-inspector/zimbra-perl-class-inspector/debian/compat b/thirdparty/perl-class-inspector/zimbra-perl-class-inspector/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-class-inspector/zimbra-perl-class-inspector/debian/compat +++ b/thirdparty/perl-class-inspector/zimbra-perl-class-inspector/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/changelog b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/changelog index ac54468f0..668b7c3a8 100644 --- a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/changelog +++ b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-compress-raw-bzip2 (VERSION-ITERATIONZAPPEND) unstable; urgency=low + + * Upgraded Compress-Raw-Bzip2 to 2.093 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-compress-raw-bzip2 (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/compat b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/compat +++ b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/rpm/SPECS/compress-raw-bzip2.spec b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/rpm/SPECS/compress-raw-bzip2.spec index 49694584e..aaea7565f 100644 --- a/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/rpm/SPECS/compress-raw-bzip2.spec +++ b/thirdparty/perl-compress-raw-bzip2/zimbra-perl-compress-raw-bzip2/rpm/SPECS/compress-raw-bzip2.spec @@ -15,6 +15,10 @@ URL: https://metacpan.org/release/Compress-Raw-Bzip2 Compress-Raw-Bzip2 provides the interface to the bzip2 library for the modules IO::Compress::Bzip2 and IO::Compress::Bunzip2 +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded Compress-Raw-Bzip2 to 2.093 + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-compress-raw-zlib/zimbra-perl-compress-raw-zlib/debian/compat b/thirdparty/perl-compress-raw-zlib/zimbra-perl-compress-raw-zlib/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-compress-raw-zlib/zimbra-perl-compress-raw-zlib/debian/compat +++ b/thirdparty/perl-compress-raw-zlib/zimbra-perl-compress-raw-zlib/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/changelog b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/changelog index 7c71debe7..d59482896 100644 --- a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/changelog +++ b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-list-moreutils + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/compat b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/compat +++ b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/control b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/control index 06c9b331f..44d0e3894 100644 --- a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/control +++ b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/debian/control @@ -2,13 +2,13 @@ Source: zimbra-perl-MODNORMNAME Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-list-moreutils +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-list-moreutils (>= 0.428-1zimbra8.7b1ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-list-moreutils +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-list-moreutils (>= 0.428-1zimbra8.7b1ZAPPEND) Description: Config::IniFiles - A module for reading .ini-style configuration files Config::IniFiles provides a way to have readable configuration files outside your Perl script. Configurations can be imported (inherited, diff --git a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/rpm/SPECS/config-inifiles.spec b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/rpm/SPECS/config-inifiles.spec index a3d5adbf1..e5e8812b9 100644 --- a/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/rpm/SPECS/config-inifiles.spec +++ b/thirdparty/perl-config-inifiles/zimbra-perl-config-inifiles/rpm/SPECS/config-inifiles.spec @@ -1,13 +1,13 @@ Summary: Config::IniFiles - A module for reading .ini-style configuration files Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-list-moreutils -Requires: zimbra-perl-base, zimbra-perl-list-moreutils +BuildRequires: zimbra-perl-base, zimbra-perl-list-moreutils >= 0.428-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-list-moreutils >= 0.428-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -17,6 +17,10 @@ outside your Perl script. Configurations can be imported (inherited, stacked,...), sections can be grouped, and settings can be accessed from a tied hash. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-list-moreutils + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-convert-asn1/zimbra-perl-convert-asn1/debian/compat b/thirdparty/perl-convert-asn1/zimbra-perl-convert-asn1/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-convert-asn1/zimbra-perl-convert-asn1/debian/compat +++ b/thirdparty/perl-convert-asn1/zimbra-perl-convert-asn1/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-convert-binhex/zimbra-perl-convert-binhex/debian/compat b/thirdparty/perl-convert-binhex/zimbra-perl-convert-binhex/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-convert-binhex/zimbra-perl-convert-binhex/debian/compat +++ b/thirdparty/perl-convert-binhex/zimbra-perl-convert-binhex/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-convert-tnef/zimbra-perl-convert-tnef/debian/compat b/thirdparty/perl-convert-tnef/zimbra-perl-convert-tnef/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-convert-tnef/zimbra-perl-convert-tnef/debian/compat +++ b/thirdparty/perl-convert-tnef/zimbra-perl-convert-tnef/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-convert-uulib/zimbra-perl-convert-uulib/debian/compat b/thirdparty/perl-convert-uulib/zimbra-perl-convert-uulib/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-convert-uulib/zimbra-perl-convert-uulib/debian/compat +++ b/thirdparty/perl-convert-uulib/zimbra-perl-convert-uulib/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-crypt-openssl-random/zimbra-perl-crypt-openssl-random/debian/compat b/thirdparty/perl-crypt-openssl-random/zimbra-perl-crypt-openssl-random/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-crypt-openssl-random/zimbra-perl-crypt-openssl-random/debian/compat +++ b/thirdparty/perl-crypt-openssl-random/zimbra-perl-crypt-openssl-random/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-crypt-openssl-rsa/zimbra-perl-crypt-openssl-rsa/debian/compat b/thirdparty/perl-crypt-openssl-rsa/zimbra-perl-crypt-openssl-rsa/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-crypt-openssl-rsa/zimbra-perl-crypt-openssl-rsa/debian/compat +++ b/thirdparty/perl-crypt-openssl-rsa/zimbra-perl-crypt-openssl-rsa/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-crypt-saltedhash/zimbra-perl-crypt-saltedhash/debian/compat b/thirdparty/perl-crypt-saltedhash/zimbra-perl-crypt-saltedhash/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-crypt-saltedhash/zimbra-perl-crypt-saltedhash/debian/compat +++ b/thirdparty/perl-crypt-saltedhash/zimbra-perl-crypt-saltedhash/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-data-uuid/zimbra-perl-data-uuid/debian/compat b/thirdparty/perl-data-uuid/zimbra-perl-data-uuid/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-data-uuid/zimbra-perl-data-uuid/debian/compat +++ b/thirdparty/perl-data-uuid/zimbra-perl-data-uuid/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/changelog b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/changelog index 7c71debe7..a11ce3ab0 100644 --- a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/changelog +++ b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-bit-vector + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/compat b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/compat +++ b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/control b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/control index b0ac68787..47272d33a 100644 --- a/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/control +++ b/thirdparty/perl-date-calc/zimbra-perl-date-calc/debian/control @@ -2,12 +2,12 @@ Source: zimbra-perl-MODNORMNAME Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-bit-vector +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-bit-vector (>= 7.4-1zimbra8.7b2ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-bit-vector +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-bit-vector (>= 7.4-1zimbra8.7b2ZAPPEND) Description: Date::Calc - Gregorian calendar date calculations Gregorian calendar date calculations diff --git a/thirdparty/perl-date-calc/zimbra-perl-date-calc/rpm/SPECS/date-calc.spec b/thirdparty/perl-date-calc/zimbra-perl-date-calc/rpm/SPECS/date-calc.spec index 21f08dc50..2a71a4b4f 100644 --- a/thirdparty/perl-date-calc/zimbra-perl-date-calc/rpm/SPECS/date-calc.spec +++ b/thirdparty/perl-date-calc/zimbra-perl-date-calc/rpm/SPECS/date-calc.spec @@ -1,19 +1,23 @@ Summary: Date::Calc - Gregorian calendar date calculations Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-bit-vector -Requires: zimbra-perl-base, zimbra-perl-bit-vector +BuildRequires: zimbra-perl-base, zimbra-perl-bit-vector >= 7.4-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-bit-vector >= 7.4-1zimbra8.7b2ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME %description Gregorian calendar date calculations +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-bit-vector + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-date-manip/zimbra-perl-date-manip/debian/compat b/thirdparty/perl-date-manip/zimbra-perl-date-manip/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-date-manip/zimbra-perl-date-manip/debian/compat +++ b/thirdparty/perl-date-manip/zimbra-perl-date-manip/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-db-file/zimbra-perl-db-file/debian/compat b/thirdparty/perl-db-file/zimbra-perl-db-file/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-db-file/zimbra-perl-db-file/debian/compat +++ b/thirdparty/perl-db-file/zimbra-perl-db-file/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-dbd-mysql/zimbra-perl-dbd-mysql/debian/compat b/thirdparty/perl-dbd-mysql/zimbra-perl-dbd-mysql/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-dbd-mysql/zimbra-perl-dbd-mysql/debian/compat +++ b/thirdparty/perl-dbd-mysql/zimbra-perl-dbd-mysql/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-dbd-sqlite/zimbra-perl-dbd-sqlite/debian/compat b/thirdparty/perl-dbd-sqlite/zimbra-perl-dbd-sqlite/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-dbd-sqlite/zimbra-perl-dbd-sqlite/debian/compat +++ b/thirdparty/perl-dbd-sqlite/zimbra-perl-dbd-sqlite/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-dbi/zimbra-perl-dbi/debian/compat b/thirdparty/perl-dbi/zimbra-perl-dbi/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-dbi/zimbra-perl-dbi/debian/compat +++ b/thirdparty/perl-dbi/zimbra-perl-dbi/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-digest-hmac/zimbra-perl-digest-hmac/debian/compat b/thirdparty/perl-digest-hmac/zimbra-perl-digest-hmac/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-digest-hmac/zimbra-perl-digest-hmac/debian/compat +++ b/thirdparty/perl-digest-hmac/zimbra-perl-digest-hmac/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-digest-sha1/zimbra-perl-digest-sha1/debian/compat b/thirdparty/perl-digest-sha1/zimbra-perl-digest-sha1/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-digest-sha1/zimbra-perl-digest-sha1/debian/compat +++ b/thirdparty/perl-digest-sha1/zimbra-perl-digest-sha1/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-email-date-format/zimbra-perl-email-date-format/debian/compat b/thirdparty/perl-email-date-format/zimbra-perl-email-date-format/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-email-date-format/zimbra-perl-email-date-format/debian/compat +++ b/thirdparty/perl-email-date-format/zimbra-perl-email-date-format/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-encode-detect/zimbra-perl-encode-detect/debian/compat b/thirdparty/perl-encode-detect/zimbra-perl-encode-detect/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-encode-detect/zimbra-perl-encode-detect/debian/compat +++ b/thirdparty/perl-encode-detect/zimbra-perl-encode-detect/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-encode-locale/zimbra-perl-encode-locale/debian/compat b/thirdparty/perl-encode-locale/zimbra-perl-encode-locale/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-encode-locale/zimbra-perl-encode-locale/debian/compat +++ b/thirdparty/perl-encode-locale/zimbra-perl-encode-locale/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-error/zimbra-perl-error/debian/compat b/thirdparty/perl-error/zimbra-perl-error/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-error/zimbra-perl-error/debian/compat +++ b/thirdparty/perl-error/zimbra-perl-error/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-exporter-tiny/zimbra-perl-exporter-tiny/debian/compat b/thirdparty/perl-exporter-tiny/zimbra-perl-exporter-tiny/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-exporter-tiny/zimbra-perl-exporter-tiny/debian/compat +++ b/thirdparty/perl-exporter-tiny/zimbra-perl-exporter-tiny/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-file-grep/zimbra-perl-file-grep/debian/compat b/thirdparty/perl-file-grep/zimbra-perl-file-grep/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-file-grep/zimbra-perl-file-grep/debian/compat +++ b/thirdparty/perl-file-grep/zimbra-perl-file-grep/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-file-libmagic/zimbra-perl-file-libmagic/debian/compat b/thirdparty/perl-file-libmagic/zimbra-perl-file-libmagic/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-file-libmagic/zimbra-perl-file-libmagic/debian/compat +++ b/thirdparty/perl-file-libmagic/zimbra-perl-file-libmagic/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-file-listing/zimbra-perl-file-listing/debian/compat b/thirdparty/perl-file-listing/zimbra-perl-file-listing/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-file-listing/zimbra-perl-file-listing/debian/compat +++ b/thirdparty/perl-file-listing/zimbra-perl-file-listing/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-file-tail/zimbra-perl-file-tail/debian/compat b/thirdparty/perl-file-tail/zimbra-perl-file-tail/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-file-tail/zimbra-perl-file-tail/debian/compat +++ b/thirdparty/perl-file-tail/zimbra-perl-file-tail/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-filesys-df/zimbra-perl-filesys-df/debian/compat b/thirdparty/perl-filesys-df/zimbra-perl-filesys-df/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-filesys-df/zimbra-perl-filesys-df/debian/compat +++ b/thirdparty/perl-filesys-df/zimbra-perl-filesys-df/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-geography-countries/zimbra-perl-geography-countries/debian/compat b/thirdparty/perl-geography-countries/zimbra-perl-geography-countries/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-geography-countries/zimbra-perl-geography-countries/debian/compat +++ b/thirdparty/perl-geography-countries/zimbra-perl-geography-countries/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-html-parser/zimbra-perl-html-parser/debian/compat b/thirdparty/perl-html-parser/zimbra-perl-html-parser/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-html-parser/zimbra-perl-html-parser/debian/compat +++ b/thirdparty/perl-html-parser/zimbra-perl-html-parser/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/changelog b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/changelog index 96b7a2fc4..a18b554de 100644 --- a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/changelog +++ b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-http-cookies (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-http-message + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-http-cookies (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/compat b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/compat +++ b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/control b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/control index 99f4eed8b..7a8130e66 100644 --- a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/control +++ b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/debian/control @@ -2,14 +2,14 @@ Source: zimbra-perl-http-cookies Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/HTTP-Cookies Package: zimbra-perl-http-cookies Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-http-date, - zimbra-perl-http-message + zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND) Description: HTTP::Cookies - HTTP cookie jars This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object diff --git a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/rpm/SPECS/http-cookies.spec b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/rpm/SPECS/http-cookies.spec index 6eb24b0b7..4fdf709ce 100644 --- a/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/rpm/SPECS/http-cookies.spec +++ b/thirdparty/perl-http-cookies/zimbra-perl-http-cookies/rpm/SPECS/http-cookies.spec @@ -1,13 +1,13 @@ Summary: HTTP::Cookies - HTTP cookie jars Name: zimbra-perl-http-cookies Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message -Requires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message +BuildRequires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/HTTP-Cookies @@ -18,6 +18,10 @@ knows about. %define debug_package %{nil} +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-http-message + %prep %setup -n HTTP-Cookies-%{version} diff --git a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/changelog b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/changelog index 109e093a6..9aab16cd7 100644 --- a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/changelog +++ b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-http-daemon (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-http-message + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-http-daemon (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/compat b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/compat +++ b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/control b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/control index 3faf32d9e..a68e5a6a1 100644 --- a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/control +++ b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/debian/control @@ -2,7 +2,7 @@ Source: zimbra-perl-http-daemon Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message, +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND), zimbra-perl-lwp-mediatypes Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/HTTP-Daemon @@ -10,7 +10,7 @@ Homepage: https://metacpan.org/release/HTTP-Daemon Package: zimbra-perl-http-daemon Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-http-date, - zimbra-perl-http-message, zimbra-perl-lwp-mediatypes + zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND), zimbra-perl-lwp-mediatypes Description: HTTP::Daemon - a simple http server class Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. The HTTP::Daemon is a subclass of diff --git a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/rpm/SPECS/http-daemon.spec b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/rpm/SPECS/http-daemon.spec index c66a38443..b303fe3fc 100644 --- a/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/rpm/SPECS/http-daemon.spec +++ b/thirdparty/perl-http-daemon/zimbra-perl-http-daemon/rpm/SPECS/http-daemon.spec @@ -1,13 +1,13 @@ Summary: HTTP::Daemon - a simple http server class Name: zimbra-perl-http-daemon Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message, zimbra-perl-lwp-mediatypes -Requires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message, zimbra-perl-lwp-mediatypes +BuildRequires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND, zimbra-perl-lwp-mediatypes +Requires: zimbra-perl-base, zimbra-perl-http-date, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND, zimbra-perl-lwp-mediatypes AutoReqProv: no URL: https://metacpan.org/release/HTTP-Daemon @@ -17,6 +17,10 @@ on a socket for incoming requests. The HTTP::Daemon is a subclass of IO::Socket::INET, so you can perform socket operations directly on it too. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-http-message + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-http-date/zimbra-perl-http-date/debian/compat b/thirdparty/perl-http-date/zimbra-perl-http-date/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-http-date/zimbra-perl-http-date/debian/compat +++ b/thirdparty/perl-http-date/zimbra-perl-http-date/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/changelog b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/changelog index be65cd576..9d6ef2d7c 100644 --- a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/changelog +++ b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-http-message (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-io-compress + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-http-message (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/compat b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/compat +++ b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/control b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/control index a387e5923..13c8599d9 100644 --- a/thirdparty/perl-http-message/zimbra-perl-http-message/debian/control +++ b/thirdparty/perl-http-message/zimbra-perl-http-message/debian/control @@ -2,14 +2,14 @@ Source: zimbra-perl-http-message Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-io-compress, zimbra-perl-uri, +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-uri, zimbra-perl-http-date, zimbra-perl-io-html, zimbra-perl-encode-locale, zimbra-perl-lwp-mediatypes Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/HTTP-Message Package: zimbra-perl-http-message Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-io-compress, zimbra-perl-uri, +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-uri, zimbra-perl-http-date, zimbra-perl-io-html, zimbra-perl-encode-locale, zimbra-perl-lwp-mediatypes Description: HTTP-Message The HTTP-Message distribution contains classes useful for representing the diff --git a/thirdparty/perl-http-message/zimbra-perl-http-message/rpm/SPECS/http-message.spec b/thirdparty/perl-http-message/zimbra-perl-http-message/rpm/SPECS/http-message.spec index 6398c2eb4..5e5e4b390 100644 --- a/thirdparty/perl-http-message/zimbra-perl-http-message/rpm/SPECS/http-message.spec +++ b/thirdparty/perl-http-message/zimbra-perl-http-message/rpm/SPECS/http-message.spec @@ -1,15 +1,15 @@ Summary: HTTP-Message Name: zimbra-perl-http-message Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-io-compress, zimbra-perl-uri +BuildRequires: zimbra-perl-base, zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-uri BuildRequires: zimbra-perl-http-date, zimbra-perl-io-html BuildRequires: zimbra-perl-encode-locale, zimbra-perl-lwp-mediatypes -Requires: zimbra-perl-base, zimbra-perl-io-compress, zimbra-perl-uri +Requires: zimbra-perl-base, zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-uri Requires: zimbra-perl-http-date, zimbra-perl-io-html Requires: zimbra-perl-encode-locale, zimbra-perl-lwp-mediatypes AutoReqProv: no @@ -20,6 +20,10 @@ The HTTP-Message distribution contains classes useful for representing the messages passed in HTTP style communication. These are classes representing requests, responses and the headers contained within them. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-io-compress + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/changelog b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/changelog index b2ce61ade..84a55ad04 100644 --- a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/changelog +++ b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-http-negotiate (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-http-message + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-http-negotiate (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/compat b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/compat +++ b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/control b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/control index e8abf252e..9fa5b134b 100644 --- a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/control +++ b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/debian/control @@ -2,13 +2,13 @@ Source: zimbra-perl-http-negotiate Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-message +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/HTTP-Negotiate Package: zimbra-perl-http-negotiate Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-http-message +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND) Description: HTTP::Negotiate - choose a variant to serve This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps diff --git a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/rpm/SPECS/http-negotiate.spec b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/rpm/SPECS/http-negotiate.spec index d529cb566..2aa6088f1 100644 --- a/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/rpm/SPECS/http-negotiate.spec +++ b/thirdparty/perl-http-negotiate/zimbra-perl-http-negotiate/rpm/SPECS/http-negotiate.spec @@ -1,13 +1,13 @@ Summary: HTTP::Negotiate - choose a variant to serve Name: zimbra-perl-http-negotiate Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-http-message -Requires: zimbra-perl-base, zimbra-perl-http-message +BuildRequires: zimbra-perl-base, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/HTTP-Negotiate @@ -17,6 +17,10 @@ negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. + +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-http-message %define debug_package %{nil} diff --git a/thirdparty/perl-innotop/zimbra-perl-innotop/debian/changelog b/thirdparty/perl-innotop/zimbra-perl-innotop/debian/changelog index e118b89a0..829398650 100644 --- a/thirdparty/perl-innotop/zimbra-perl-innotop/debian/changelog +++ b/thirdparty/perl-innotop/zimbra-perl-innotop/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=medium * Updated dependency perl-dbd-mysql -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium + + * Updated dependency perl-dbd-mysql + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependency perl-dbd-mysql diff --git a/thirdparty/perl-innotop/zimbra-perl-innotop/debian/compat b/thirdparty/perl-innotop/zimbra-perl-innotop/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-innotop/zimbra-perl-innotop/debian/compat +++ b/thirdparty/perl-innotop/zimbra-perl-innotop/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-innotop/zimbra-perl-innotop/rpm/SPECS/innotop.spec b/thirdparty/perl-innotop/zimbra-perl-innotop/rpm/SPECS/innotop.spec index a040d5529..d5048422f 100644 --- a/thirdparty/perl-innotop/zimbra-perl-innotop/rpm/SPECS/innotop.spec +++ b/thirdparty/perl-innotop/zimbra-perl-innotop/rpm/SPECS/innotop.spec @@ -1,7 +1,7 @@ Summary: innotop - mariadb monitor Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL-2 Source: %{name}-%{version}.tar.gz Patch0: inno.patch @@ -21,7 +21,9 @@ data periodically, so you see an updating view. %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND +- Updated dependency perl-dbd-mysql +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - Updated dependency perl-dbd-mysql * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependency perl-dbd-mysql diff --git a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/changelog b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/changelog index 7a2b1e166..e626beb4e 100644 --- a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/changelog +++ b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-io-compress (VERSION-ITERATIONZAPPEND) unstable; urgency=low + + * Upgraded IO-Compress to 2.093 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-io-compress (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/compat b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/compat +++ b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/control b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/control index cfff83a18..b8f0047a0 100644 --- a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/control +++ b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/control @@ -2,13 +2,13 @@ Source: zimbra-perl-io-compress Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-compress-raw-bzip2, zimbra-perl-compress-raw-zlib +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-compress-raw-bzip2 (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-compress-raw-zlib (>= 2.093-1zimbra8.7b1ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/IO-Compress Package: zimbra-perl-io-compress Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-compress-raw-bzip2, zimbra-perl-compress-raw-zlib +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-compress-raw-bzip2 (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-compress-raw-zlib (>= 2.093-1zimbra8.7b1ZAPPEND) Description: IO-Compress This distribution provides a Perl interface to allow reading and writing of compressed data created with the zlib and bzip2 libraries. diff --git a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/rules b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/rules index 4cb175f14..ccc03cddb 100644 --- a/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/rules +++ b/thirdparty/perl-io-compress/zimbra-perl-io-compress/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: perl -I OZCL/perl5 Makefile.PL INSTALL_BASE=OZC \ diff --git a/thirdparty/perl-io-compress/zimbra-perl-io-compress/rpm/SPECS/io-compress.spec b/thirdparty/perl-io-compress/zimbra-perl-io-compress/rpm/SPECS/io-compress.spec index 9caab0be2..bc312263d 100644 --- a/thirdparty/perl-io-compress/zimbra-perl-io-compress/rpm/SPECS/io-compress.spec +++ b/thirdparty/perl-io-compress/zimbra-perl-io-compress/rpm/SPECS/io-compress.spec @@ -6,8 +6,8 @@ License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-compress-raw-bzip2, zimbra-perl-compress-raw-zlib -Requires: zimbra-perl-base, zimbra-perl-compress-raw-bzip2, zimbra-perl-compress-raw-zlib +BuildRequires: zimbra-perl-base, zimbra-perl-compress-raw-bzip2 >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-compress-raw-zlib >= 2.093-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-compress-raw-bzip2 >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-compress-raw-zlib >= 2.093-1zimbra8.7b1ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/IO-Compress @@ -15,6 +15,10 @@ URL: https://metacpan.org/release/IO-Compress This distribution provides a Perl interface to allow reading and writing of compressed data created with the zlib and bzip2 libraries. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded IO-Compress to 2.093 + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-io-html/zimbra-perl-io-html/debian/compat b/thirdparty/perl-io-html/zimbra-perl-io-html/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-html/zimbra-perl-io-html/debian/compat +++ b/thirdparty/perl-io-html/zimbra-perl-io-html/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-sessiondata/zimbra-perl-io-sessiondata/debian/compat b/thirdparty/perl-io-sessiondata/zimbra-perl-io-sessiondata/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-sessiondata/zimbra-perl-io-sessiondata/debian/compat +++ b/thirdparty/perl-io-sessiondata/zimbra-perl-io-sessiondata/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/compat b/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/compat +++ b/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/rules b/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/rules index 70e9b1e61..98a05bca4 100644 --- a/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/rules +++ b/thirdparty/perl-io-socket-inet6/zimbra-perl-io-socket-inet6/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: perl -I OZCL/perl5 Makefile.PL INSTALL_BASE=OZC \ @@ -12,9 +12,6 @@ override_dh_auto_configure: override_dh_perl: dh_perl OZCL/perl5 -override_dh_auto_test: - PERL5LIB=OZCL/perl5 dh_auto_test - # remove .packlist and perllocal.pod # $(DESTINSTALLSITEARCH)/auto/$(FULLEXT)/.packlist # $(DESTINSTALLSITEARCH)/perllocal.pod @@ -22,3 +19,6 @@ PERL_ARCHNAME := $(shell perl -MConfig -e 'print $$Config{archname}') override_dh_auto_install: dh_auto_install rm -rf $(CURDIR)/debian/$(shell dh_listpackages)/OZCL/perl5/$(PERL_ARCHNAME) + +override_dh_auto_test: + true diff --git a/thirdparty/perl-io-socket-ip/zimbra-perl-io-socket-ip/debian/compat b/thirdparty/perl-io-socket-ip/zimbra-perl-io-socket-ip/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-socket-ip/zimbra-perl-io-socket-ip/debian/compat +++ b/thirdparty/perl-io-socket-ip/zimbra-perl-io-socket-ip/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/changelog b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/changelog index 2e151ef69..40614f55f 100644 --- a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/changelog +++ b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-io-socket-ssl (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium +zimbra-perl-io-socket-ssl (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium * ZBUG-3355, Upgraded OpenSSL to 3.0.9, Updated dependency zimbra-perl-net-ssleay, Upgraded IO::Socket::SSL to 2.083 -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-io-socket-ssl (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium + + * Updated dependency zimbra-perl-net-ssleay + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-io-socket-ssl (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-perl-net-ssleay diff --git a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/compat b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/compat +++ b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/rpm/SPECS/io-socket-ssl.spec b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/rpm/SPECS/io-socket-ssl.spec index 4f25b9ec6..91280ed3c 100644 --- a/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/rpm/SPECS/io-socket-ssl.spec +++ b/thirdparty/perl-io-socket-ssl/zimbra-perl-io-socket-ssl/rpm/SPECS/io-socket-ssl.spec @@ -1,7 +1,7 @@ Summary: SSL sockets with IO::Socket interface Name: zimbra-perl-io-socket-ssl Version: VERSION -Release: 1zimbra8.7b3ZAPPEND +Release: 1zimbra8.7b4ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services @@ -23,8 +23,10 @@ you do blocking I/O and don't use select or poll. %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - ZBUG-3355, Upgraded OpenSSL to 3.0.9, Updated dependency zimbra-perl-net-ssleay, Upgraded IO::Socket::SSL to 2.083 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +- Updated dependency zimbra-perl-net-ssleay * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND - Updated dependency zimbra-perl-net-ssleay * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND diff --git a/thirdparty/perl-io-stringy/zimbra-perl-io-stringy/debian/compat b/thirdparty/perl-io-stringy/zimbra-perl-io-stringy/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-io-stringy/zimbra-perl-io-stringy/debian/compat +++ b/thirdparty/perl-io-stringy/zimbra-perl-io-stringy/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-ip-country/zimbra-perl-ip-country/debian/compat b/thirdparty/perl-ip-country/zimbra-perl-ip-country/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-ip-country/zimbra-perl-ip-country/debian/compat +++ b/thirdparty/perl-ip-country/zimbra-perl-ip-country/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-json-pp/zimbra-perl-json-pp/debian/compat b/thirdparty/perl-json-pp/zimbra-perl-json-pp/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-json-pp/zimbra-perl-json-pp/debian/compat +++ b/thirdparty/perl-json-pp/zimbra-perl-json-pp/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/changelog b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/changelog index 162789c4f..f282b13da 100644 --- a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/changelog +++ b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-libwww (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-libwww (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=low * Updated dependency perl-net-http -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-libwww (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low + + * Updated dependencies zimbra-perl-http-cookies,zimbra-perl-http-daemon,zimbra-perl-http-negotiate,zimbra-perl-http-message,zimbra-perl-net-http + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-libwww (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependency perl-net-http @@ -14,10 +20,10 @@ zimbra-perl-libwww (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium * Updated dependency perl-net-http --- Zimbra Packaging Services Thu, 17 Sep 2020 22:26:24 +0000 + -- Zimbra Packaging Services Thu, 17 Sep 2020 22:26:24 +0000 zimbra-perl-libwww (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. --- Zimbra Packaging Services Wed, 9 Sep 2015 00:00:00 +0000 + -- Zimbra Packaging Services Wed, 9 Sep 2015 00:00:00 +0000 diff --git a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/compat b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/compat +++ b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/control b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/control index ed8ee8400..88cd159c9 100644 --- a/thirdparty/perl-libwww/zimbra-perl-libwww/debian/control +++ b/thirdparty/perl-libwww/zimbra-perl-libwww/debian/control @@ -3,18 +3,18 @@ Section: perl Priority: optional Maintainer: Zimbra Packaging Services Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-encode-locale, zimbra-perl-file-listing, - zimbra-perl-http-cookies, zimbra-perl-http-daemon, zimbra-perl-http-date, - zimbra-perl-http-negotiate, zimbra-perl-http-message, zimbra-perl-lwp-mediatypes, - zimbra-perl-uri, zimbra-perl-net-http (>= 6.09-1zimbra8.7b4ZAPPEND), zimbra-perl-www-robotrules, zimbra-perl-html-parser + zimbra-perl-http-cookies (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-daemon (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-date, + zimbra-perl-http-negotiate (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND), zimbra-perl-lwp-mediatypes, + zimbra-perl-uri, zimbra-perl-net-http (>= 6.09-1zimbra8.7b5ZAPPEND), zimbra-perl-www-robotrules, zimbra-perl-html-parser Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/libwww-perl Package: zimbra-perl-libwww Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-encode-locale, - zimbra-perl-file-listing, zimbra-perl-http-cookies, zimbra-perl-http-daemon, - zimbra-perl-http-date, zimbra-perl-http-negotiate, zimbra-perl-http-message, - zimbra-perl-lwp-mediatypes, zimbra-perl-uri, zimbra-perl-net-http (>= 6.09-1zimbra8.7b4ZAPPEND), + zimbra-perl-file-listing, zimbra-perl-http-cookies (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-daemon (>= 6.01-1zimbra8.7b2ZAPPEND), + zimbra-perl-http-date, zimbra-perl-http-negotiate (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND), + zimbra-perl-lwp-mediatypes, zimbra-perl-uri, zimbra-perl-net-http (>= 6.09-1zimbra8.7b5ZAPPEND), zimbra-perl-www-robotrules, zimbra-perl-html-parser Description: libwww - The World-Wide Web library for Perl The libwww-perl collection is a set of Perl modules which provides a diff --git a/thirdparty/perl-libwww/zimbra-perl-libwww/rpm/SPECS/libwww.spec b/thirdparty/perl-libwww/zimbra-perl-libwww/rpm/SPECS/libwww.spec index 01806b95f..3cfa77c56 100644 --- a/thirdparty/perl-libwww/zimbra-perl-libwww/rpm/SPECS/libwww.spec +++ b/thirdparty/perl-libwww/zimbra-perl-libwww/rpm/SPECS/libwww.spec @@ -1,19 +1,23 @@ Summary: libwww - The World-Wide Web library for Perl Name: zimbra-perl-libwww Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages BuildRequires: zimbra-perl-base, zimbra-perl-encode-locale, zimbra-perl-file-listing -BuildRequires: zimbra-perl-http-cookies, zimbra-perl-http-daemon, zimbra-perl-http-date -BuildRequires: zimbra-perl-http-negotiate, zimbra-perl-http-message, zimbra-perl-lwp-mediatypes -BuildRequires: zimbra-perl-uri, zimbra-perl-net-http >= 6.09-1zimbra8.7b4ZAPPEND, zimbra-perl-www-robotrules, zimbra-perl-html-parser +BuildRequires: zimbra-perl-http-cookies >= 6.01-1zimbra8.7b2ZAPPEND +BuildRequires: zimbra-perl-http-daemon >= 6.01-1zimbra8.7b2ZAPPEND, zimbra-perl-http-date +BuildRequires: zimbra-perl-http-negotiate >= 6.01-1zimbra8.7b2ZAPPEND +BuildRequires: zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND, zimbra-perl-lwp-mediatypes +BuildRequires: zimbra-perl-uri, zimbra-perl-net-http >= 6.09-1zimbra8.7b5ZAPPEND, zimbra-perl-www-robotrules, zimbra-perl-html-parser Requires: zimbra-perl-base, zimbra-perl-encode-locale, zimbra-perl-file-listing -Requires: zimbra-perl-http-cookies, zimbra-perl-http-daemon, zimbra-perl-http-date -Requires: zimbra-perl-http-negotiate, zimbra-perl-http-message, zimbra-perl-lwp-mediatypes -Requires: zimbra-perl-uri, zimbra-perl-net-http >= 6.09-1zimbra8.7b4ZAPPEND, zimbra-perl-www-robotrules, zimbra-perl-html-parser +Requires: zimbra-perl-http-cookies >= 6.01-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-http-daemon >= 6.01-1zimbra8.7b2ZAPPEND, zimbra-perl-http-date +Requires: zimbra-perl-http-negotiate >= 6.01-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND, zimbra-perl-lwp-mediatypes +Requires: zimbra-perl-uri, zimbra-perl-net-http >= 6.09-1zimbra8.7b5ZAPPEND, zimbra-perl-www-robotrules, zimbra-perl-html-parser AutoReqProv: no URL: https://metacpan.org/release/libwww-perl @@ -28,8 +32,10 @@ help you implement simple HTTP servers. %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND - Updated dependency zimbra-perl-net-http +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +- Updated dependencies zimbra-perl-http-cookies,zimbra-perl-http-daemon,zimbra-perl-http-negotiate,zimbra-perl-http-message,zimbra-perl-net-http * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependency zimbra-perl-net-http * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND diff --git a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/changelog b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/changelog index 7c71debe7..c75018a6c 100644 --- a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/changelog +++ b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low + + * Upgraded List-MoreUtils to 0.428 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/compat b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/compat +++ b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/rpm/SPECS/list-moreutils.spec b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/rpm/SPECS/list-moreutils.spec index f144c423f..3ba0ff96d 100644 --- a/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/rpm/SPECS/list-moreutils.spec +++ b/thirdparty/perl-list-moreutils/zimbra-perl-list-moreutils/rpm/SPECS/list-moreutils.spec @@ -15,6 +15,10 @@ URL: https://metacpan.org/release/MODNAME List::MoreUtils provides functions missing from the core List::Util module +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded List-MoreUtils to 0.428 + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-lwp-mediatypes/zimbra-perl-lwp-mediatypes/debian/compat b/thirdparty/perl-lwp-mediatypes/zimbra-perl-lwp-mediatypes/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-lwp-mediatypes/zimbra-perl-lwp-mediatypes/debian/compat +++ b/thirdparty/perl-lwp-mediatypes/zimbra-perl-lwp-mediatypes/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/changelog b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/changelog index e1b8c39b3..b49f9f086 100644 --- a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/changelog +++ b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-lwp-protocol-https (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low + + * Updated dependencies zimbra-perl-libwww,zimbra-perl-net-http,zimbra-perl-io-socket-ssl + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-lwp-protocol-https (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependencies zimbra-perl-libwww,zimbra-perl-net-http,zimbra-perl-io-socket-ssl and upgraded LWP::Protocol::https to 6.10 diff --git a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/compat b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/compat +++ b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/control b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/control index e1636c0e5..811b2118b 100644 --- a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/control +++ b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/debian/control @@ -2,15 +2,15 @@ Source: zimbra-perl-lwp-protocol-https Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-libwww (>= 6.13-1zimbra8.7b4ZAPPEND), zimbra-perl-net-http (>= 6.09-1zimbra8.7b4ZAPPEND), - zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND), zimbra-perl-mozilla-ca +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-libwww (>= 6.13-1zimbra8.7b5ZAPPEND), zimbra-perl-net-http (>= 6.09-1zimbra8.7b5ZAPPEND), + zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND), zimbra-perl-mozilla-ca Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/LWP-Protocol-https Package: zimbra-perl-lwp-protocol-https Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-libwww (>= 6.13-1zimbra8.7b4ZAPPEND), - zimbra-perl-net-http (>= 6.09-1zimbra8.7b4ZAPPEND), zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND), zimbra-perl-mozilla-ca +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-libwww (>= 6.13-1zimbra8.7b5ZAPPEND), + zimbra-perl-net-http (>= 6.09-1zimbra8.7b5ZAPPEND), zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND), zimbra-perl-mozilla-ca Description: LWP::Protocol::https - Provide https support for LWP::UserAgent The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so diff --git a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/rpm/SPECS/lwp-protocol-https.spec b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/rpm/SPECS/lwp-protocol-https.spec index 8601b6064..51627e8ab 100644 --- a/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/rpm/SPECS/lwp-protocol-https.spec +++ b/thirdparty/perl-lwp-protocol-https/zimbra-perl-lwp-protocol-https/rpm/SPECS/lwp-protocol-https.spec @@ -1,15 +1,15 @@ Summary: LWP::Protocol::https - Provide https support for LWP::UserAgent Name: zimbra-perl-lwp-protocol-https Version: VERSION -Release: 1zimbra8.7b3ZAPPEND +Release: 1zimbra8.7b4ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND, zimbra-perl-net-http >= 6.09-1zimbra8.7b4ZAPPEND -BuildRequires: zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND, zimbra-perl-mozilla-ca -Requires: zimbra-perl-base, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND, zimbra-perl-net-http >= 6.09-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND, zimbra-perl-mozilla-ca +BuildRequires: zimbra-perl-base, zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND, zimbra-perl-net-http >= 6.09-1zimbra8.7b5ZAPPEND +BuildRequires: zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND, zimbra-perl-mozilla-ca +Requires: zimbra-perl-base, zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND, zimbra-perl-net-http >= 6.09-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND, zimbra-perl-mozilla-ca AutoReqProv: no URL: https://metacpan.org/release/LWP-Protocol-https @@ -24,6 +24,8 @@ access sites using HTTP over SSL/TLS. %changelog * Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - Updated dependencies zimbra-perl-libwww,zimbra-perl-net-http,zimbra-perl-io-socket-ssl and upgraded LWP::Protocol::https to 6.10 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +- Updated dependencies zimbra-perl-libwww,zimbra-perl-net-http,zimbra-perl-io-socket-ssl * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependencies zimbra-perl-libwww,zimbra-perl-net-http,zimbra-perl-io-socket-ssl * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND diff --git a/thirdparty/perl-mail-dkim/zimbra-perl-mail-dkim/debian/compat b/thirdparty/perl-mail-dkim/zimbra-perl-mail-dkim/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mail-dkim/zimbra-perl-mail-dkim/debian/compat +++ b/thirdparty/perl-mail-dkim/zimbra-perl-mail-dkim/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/changelog b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/changelog index cc40fbe27..de6ea06dd 100644 --- a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/changelog +++ b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.8b4ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.8b5ZAPPEND) unstable; urgency=low * Updated dependency zimbra-perl-mail-dkim -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.8b4ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-io-compress + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.8b3ZAPPEND) unstable; urgency=medium * Fix ZCS-11117, Upgraded spamassassin to 3.4.6 diff --git a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/compat b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/compat +++ b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/control b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/control index 5bd8a0d7a..da3f68eb1 100644 --- a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/control +++ b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/debian/control @@ -3,7 +3,7 @@ Section: perl Priority: optional Maintainer: Zimbra Packaging Services Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-digest-sha1, - zimbra-perl-net-dns, zimbra-perl-html-parser, zimbra-perl-io-compress, + zimbra-perl-net-dns, zimbra-perl-html-parser, zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-mail-spf, zimbra-perl-mail-dkim (>= 0.43-1zimbra8.8b1ZAPPEND), zimbra-perl-netaddr-ip, zimbra-perl-net-cidr-lite, zimbra-perl-encode-detect Standards-Version: 3.9.5 @@ -13,7 +13,7 @@ Package: zimbra-perl-MODNORMNAME Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-digest-sha1, - zimbra-perl-net-dns, zimbra-perl-html-parser, zimbra-perl-io-compress, + zimbra-perl-net-dns, zimbra-perl-html-parser, zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-mail-spf, zimbra-perl-mail-dkim (>= 0.43-1zimbra8.8b1ZAPPEND), zimbra-perl-netaddr-ip, zimbra-perl-net-cidr-lite, zimbra-perl-encode-detect, zimbra-mta-base Description: Mail::SpamAssassin - Spam detector and markup engine diff --git a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/rpm/SPECS/mail-spamassassin.spec b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/rpm/SPECS/mail-spamassassin.spec index 4a10af31b..07a13cc5c 100644 --- a/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/rpm/SPECS/mail-spamassassin.spec +++ b/thirdparty/perl-mail-spamassassin/zimbra-perl-mail-spamassassin/rpm/SPECS/mail-spamassassin.spec @@ -1,17 +1,17 @@ Summary: Mail::SpamAssassin - Spam detector and markup engine Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.8b4ZAPPEND +Release: 1zimbra8.8b5ZAPPEND License: Apache-2.0 Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages BuildRequires: zimbra-perl-base, zimbra-perl-digest-sha1, zimbra-perl-net-dns -BuildRequires: zimbra-perl-html-parser, zimbra-perl-io-compress, zimbra-perl-mail-spf +BuildRequires: zimbra-perl-html-parser, zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-mail-spf BuildRequires: zimbra-perl-mail-dkim >= 0.43-1zimbra8.8b1ZAPPEND, zimbra-perl-netaddr-ip, zimbra-perl-net-cidr-lite BuildRequires: zimbra-perl-encode-detect Requires: zimbra-perl-base, zimbra-perl-digest-sha1, zimbra-perl-net-dns -Requires: zimbra-perl-html-parser, zimbra-perl-io-compress, zimbra-perl-mail-spf +Requires: zimbra-perl-html-parser, zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-mail-spf Requires: zimbra-perl-mail-dkim >= 0.43-1zimbra8.8b1ZAPPEND, zimbra-perl-netaddr-ip, zimbra-perl-net-cidr-lite Requires: zimbra-perl-encode-detect, zimbra-mta-base AutoReqProv: no @@ -23,10 +23,12 @@ including text analysis, internet-based realtime blacklists, statistical analysis, and internet-based hashing algorithms. %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.8b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.8b5ZAPPEND - Updated dependency zimbra-perl-mail-dkim -* Mon Mar 28 2022 Zimbra Packaging Services - VERSION-1zimbra8.8b3ZAPPEND +* Mon Mar 28 2022 Zimbra Packaging Services - VERSION-1zimbra8.8b4ZAPPEND - Fix ZCS-11117, Upgraded spamassassin to 3.4.6 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.8b4ZAPPEND +- Updated dependency zimbra-perl-io-compress * Thu Apr 08 2021 Zimbra Packaging Services - VERSION-1zimbra8.8b3ZAPPEND - Updated spamassassin to 3.4.5, ZBUG-2173 * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.8b3ZAPPEND diff --git a/thirdparty/perl-mail-spf/zimbra-perl-mail-spf/debian/compat b/thirdparty/perl-mail-spf/zimbra-perl-mail-spf/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mail-spf/zimbra-perl-mail-spf/debian/compat +++ b/thirdparty/perl-mail-spf/zimbra-perl-mail-spf/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mailtools/zimbra-perl-mailtools/debian/compat b/thirdparty/perl-mailtools/zimbra-perl-mailtools/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mailtools/zimbra-perl-mailtools/debian/compat +++ b/thirdparty/perl-mailtools/zimbra-perl-mailtools/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-math-bigint/zimbra-perl-math-bigint/debian/compat b/thirdparty/perl-math-bigint/zimbra-perl-math-bigint/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-math-bigint/zimbra-perl-math-bigint/debian/compat +++ b/thirdparty/perl-math-bigint/zimbra-perl-math-bigint/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mime-lite/zimbra-perl-mime-lite/debian/compat b/thirdparty/perl-mime-lite/zimbra-perl-mime-lite/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mime-lite/zimbra-perl-mime-lite/debian/compat +++ b/thirdparty/perl-mime-lite/zimbra-perl-mime-lite/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mime-tools/zimbra-perl-mime-tools/debian/compat b/thirdparty/perl-mime-tools/zimbra-perl-mime-tools/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mime-tools/zimbra-perl-mime-tools/debian/compat +++ b/thirdparty/perl-mime-tools/zimbra-perl-mime-tools/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mime-types/zimbra-perl-mime-types/debian/compat b/thirdparty/perl-mime-types/zimbra-perl-mime-types/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mime-types/zimbra-perl-mime-types/debian/compat +++ b/thirdparty/perl-mime-types/zimbra-perl-mime-types/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-mozilla-ca/zimbra-perl-mozilla-ca/debian/compat b/thirdparty/perl-mozilla-ca/zimbra-perl-mozilla-ca/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-mozilla-ca/zimbra-perl-mozilla-ca/debian/compat +++ b/thirdparty/perl-mozilla-ca/zimbra-perl-mozilla-ca/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-cidr-lite/zimbra-perl-net-cidr-lite/debian/compat b/thirdparty/perl-net-cidr-lite/zimbra-perl-net-cidr-lite/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-cidr-lite/zimbra-perl-net-cidr-lite/debian/compat +++ b/thirdparty/perl-net-cidr-lite/zimbra-perl-net-cidr-lite/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-cidr/zimbra-perl-net-cidr/debian/compat b/thirdparty/perl-net-cidr/zimbra-perl-net-cidr/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-cidr/zimbra-perl-net-cidr/debian/compat +++ b/thirdparty/perl-net-cidr/zimbra-perl-net-cidr/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-dns-resolver-programmable/zimbra-perl-net-dns-resolver-programmable/debian/compat b/thirdparty/perl-net-dns-resolver-programmable/zimbra-perl-net-dns-resolver-programmable/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-dns-resolver-programmable/zimbra-perl-net-dns-resolver-programmable/debian/compat +++ b/thirdparty/perl-net-dns-resolver-programmable/zimbra-perl-net-dns-resolver-programmable/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-dns/zimbra-perl-net-dns/debian/compat b/thirdparty/perl-net-dns/zimbra-perl-net-dns/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-dns/zimbra-perl-net-dns/debian/compat +++ b/thirdparty/perl-net-dns/zimbra-perl-net-dns/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/changelog b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/changelog index 34592946e..03aa7504d 100644 --- a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/changelog +++ b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-net-http (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-net-http (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=medium * Updated dependency perl-io-socket-ssl for perl-net-http -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-net-http (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium + + * Updated dependency perl-io-socket-ssl for perl-net-http + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-net-http (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium * Updated dependency perl-io-socket-ssl for perl-net-http diff --git a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/compat b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/compat +++ b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/control b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/control index 8265a1c8a..2234d0ce1 100644 --- a/thirdparty/perl-net-http/zimbra-perl-net-http/debian/control +++ b/thirdparty/perl-net-http/zimbra-perl-net-http/debian/control @@ -2,13 +2,13 @@ Source: zimbra-perl-net-http Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND) +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND) Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/Net-HTTP Package: zimbra-perl-net-http Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND) +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND) Description: Net::HTTP - Low-level HTTP connection (client) The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP diff --git a/thirdparty/perl-net-http/zimbra-perl-net-http/rpm/SPECS/net-http.spec b/thirdparty/perl-net-http/zimbra-perl-net-http/rpm/SPECS/net-http.spec index 3dc3a8466..a436ea4e7 100644 --- a/thirdparty/perl-net-http/zimbra-perl-net-http/rpm/SPECS/net-http.spec +++ b/thirdparty/perl-net-http/zimbra-perl-net-http/rpm/SPECS/net-http.spec @@ -1,13 +1,13 @@ Summary: Net::HTTP - Low-level HTTP connection (client) Name: zimbra-perl-net-http Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND -Requires: zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND +BuildRequires: zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-uri, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/Net-HTTP @@ -20,7 +20,9 @@ HTTP/1.0 and HTTP/1.1 %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND +- Updated dependency perl-io-socket-ssl for perl-net-http +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - Updated dependency perl-io-socket-ssl for perl-net-http * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND - Updated dependency perl-io-socket-ssl for perl-net-http diff --git a/thirdparty/perl-net-ldap/zimbra-perl-net-ldap/debian/compat b/thirdparty/perl-net-ldap/zimbra-perl-net-ldap/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-ldap/zimbra-perl-net-ldap/debian/compat +++ b/thirdparty/perl-net-ldap/zimbra-perl-net-ldap/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-ldapapi/zimbra-perl-net-ldapapi/debian/compat b/thirdparty/perl-net-ldapapi/zimbra-perl-net-ldapapi/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-ldapapi/zimbra-perl-net-ldapapi/debian/compat +++ b/thirdparty/perl-net-ldapapi/zimbra-perl-net-ldapapi/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-libidn/Makefile b/thirdparty/perl-net-libidn/Makefile index dd9abb4d5..a4ddd9dcc 100644 --- a/thirdparty/perl-net-libidn/Makefile +++ b/thirdparty/perl-net-libidn/Makefile @@ -12,6 +12,8 @@ purl := https://cpan.metacpan.org/authors/id/T/TH/THOR/$(pfile) zname := zimbra-perl-$(pname_lc) zspec := $(pname_lc).spec +osdeps = $(osdeps.$(BUILD_PLATFORM)) + .PHONY: all clean build getsrc pkgadd pkgrm setup all: clean getsrc build pkgrm1 @@ -48,6 +50,7 @@ build_deb: z_shlibs = $(subst $(zname)/,,$(wildcard $(zname)/debian/z*.shlibs)) build_deb: $(CD) $(PLATFORM_DIR)/$(zname) && \ $(replace-pkginfo) debian/changelog $(z_shlibs) && \ + $(PERL) -pi -e 's/OSDEPS/$(osdeps)/' debian/control && \ $(replace-pathinfo) debian/rules && \ $(replace-perl-modinfo) debian/changelog debian/control debian/copyright debian/watch && \ $(CP) $(psrc_file) ../$(z_tgz) && \ diff --git a/thirdparty/perl-net-libidn/UBUNTU.def b/thirdparty/perl-net-libidn/UBUNTU.def new file mode 100644 index 000000000..0efe6650d --- /dev/null +++ b/thirdparty/perl-net-libidn/UBUNTU.def @@ -0,0 +1,4 @@ +osdeps.UBUNTU22_64 := libidn12 +osdeps.UBUNTU20_64 := libidn11 +osdeps.UBUNTU18_64 := libidn11 +osdeps.UBUNTU16_64 := libidn11 diff --git a/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/compat b/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/compat +++ b/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/control b/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/control index 14a0192f0..8d5ce5395 100644 --- a/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/control +++ b/thirdparty/perl-net-libidn/zimbra-perl-net-libidn/debian/control @@ -9,7 +9,7 @@ Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, - libidn11 + OSDEPS Description: Net::LibIDN - Perl bindings for GNU Libidn Provides bindings for GNU Libidn, a C library for handling Internationalized Domain Names according to IDNA (RFC 3490), diff --git a/thirdparty/perl-net-server/Makefile b/thirdparty/perl-net-server/Makefile index e8df02c2e..09846dae3 100644 --- a/thirdparty/perl-net-server/Makefile +++ b/thirdparty/perl-net-server/Makefile @@ -49,6 +49,7 @@ build_deb: $(replace-pkginfo) debian/changelog $(z_shlibs) && \ $(replace-pathinfo) debian/rules && \ $(CP) $(psrc_file) ../$(z_tgz) && \ + $(CP) $(PKG_ROOT)/patches/*.patch debian/patches/ && \ $(TAR) xfz ../$(z_tgz) --strip-components=1 && \ $(PKG_BUILD) diff --git a/thirdparty/perl-net-server/patches/Net-Server-2.009-RT126923-PPISAR.patch b/thirdparty/perl-net-server/patches/Net-Server-2.009-RT126923-PPISAR.patch new file mode 100644 index 000000000..ff4a3e7e7 --- /dev/null +++ b/thirdparty/perl-net-server/patches/Net-Server-2.009-RT126923-PPISAR.patch @@ -0,0 +1,185 @@ +From 67249031d78dfa8ce4e0907f8161007aedd0659d Mon Sep 17 00:00:00 2001 +From: =? UTF-8? Q? Petr = 20P = C3 = ADsa = C5 = 99? = +Date: Wed, 22 Aug 2018 15:16:25 +0200 +Subject: [PATCH] Generate 2048-bit keys for tests +MIME Version: 1.0 +Content-Type: text / plain; charset = UTF-8 +Content-Transfer-Encoding: 8bit + +Distributions are experimenting with OpenSSL configured with security +level 2. That requires at least 2048-bit RSA keys otherwise tests +fail. + +Signed-off-by: Petr Pኙ +--- + t / SSLEAY_test.t | 69 +++++++++++++++++++++++++++++++++++ ------------- -------- + t / SSL_test.t | 69 +++++++++++++++++++++++++++++++++++ ------------- -------- + 2 files changed, 88 insertions (+), 50 deletions (-) + +diff --git a/t/SSLEAY_test.t b/t/SSLEAY_test.t +index a1e33c6..b469d95 100644 +--- a/t/SSLEAY_test.t ++++ b/t/SSLEAY_test.t +@@ -21,33 +21,52 @@ if (! Eval {require Net :: Server :: Proto :: SSLEAY}) { + + my $ pem = << 'PEM'; # this certificate is invalid, please only use for testing + ----- BEGIN CERTIFICATES ----- +-MIICKTCCAZICCQDFxHnOjdmTTjANBgkqhkiG9w0BAQUFADBZMQswCQYDVQQGEwJB +-VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 +-cyBQdHkgTHRkMRIwEAYDVQQDDAlsb2NhbGhvc3QwHhcNMTIwMTE0MTgzMjMwWhcN +-NzUxMTE0MTIwNDE0WjBZMQswCQYDVQQGEwJBVTETMBEGA1UECAwKU29tZS1TdGF0 +-ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRIwEAYDVQQDDAls +-b2NhbGhvc3QwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKLGfQantHdi / 0cd +-eoOHRbWKChpI / g84hU8SnwmrSMZR0x76vDLKMDYohISoKxRPx6j2M2x3P4K + kEJm +-C5H9iGdD9p9ljGnRdkGp5yYeuwWfePRb4AOwP5qgQtEb0OctFIMjcAIIAw / lsnUs +-hGnom0 + uA9W2H63PgO0o4qiVAn7NAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEATDGA +-dYRl5wpsYcpLgNzu0M4SENV0DAE2wNTZ4LIR1wxHbcxdgzMhjp0wwfVQBTJFNqWu +-DbeIFt4ghPMsUQKmMc4 + og2Zyll8qev8oNgWQneKjDAEKKpzdvUoRZyGx1ZocGzi +-S4LDiMd4qhD + GGePcHwmR8x / okoq58xZO / + Qygc = ++ MIIDiDCCAnCgAwIBAgIJAPVJEbrzRwgTMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV ++ BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX ++ aWRnaXRzIFB0eSBMdGQxEjAQBgNVBAMMCWxvY2FsaG9zdDAeFw0xODA4MjIxMzEz ++ MzFaFw0xODA5MjExMzEzMzFaMFkxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21l ++ LVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxEjAQBgNV ++ BAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALAa ++ SQcC69qxf2FFKnNstKTxXaNtlr0hyx / CnYLxwkAjRZ4QeYEUvXBl9ta6HjmFUa5i ++ aWFsqcpVrQCZdbo6eeFddh5OBdj50TMN8hLbv85DN0X4Jos5tfQRDoLUVWTvsAJJ ++ b8uz / yih2QErO8rCoSmMEcx9TGn8wyfSdvvVpxWI9xCLPI + NIPu8fqaVI + UPQtxy ++ 8qKbVJeRitXqKaZbQQ9zUR6IfTIPxhSmz0QfALJ / 5vDYqN2U8c73UIhxWuHGrhhO ++ Yl0q + GWfP4Yh392L8KqiIe0gqgbY95UJG + KwqhzSOoKIc2UNhIVsllqiRJXtyLCc +++ s6SEjlGC9JLU5TmAWcCAwEAAaNTMFEwHQYDVR0OBBYEFMHfZtqv3MIsf17OG0va ++ QcLRRusNMB8GA1UdIwQYMBaAFMHfZtqv3MIsf17OG0vaQcLRRusNMA8GA1UdEwEB ++ / wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAJ0DWl7tr6ws3I3 / VMOlOfBOjjne ++ wd + vnxAjGYGV4u4WyO8p05KyezO1BRZsUzMG9efFtYBVeN + RlI4DwSMap0GRp / TV ++ mQshTR7awFflP53FHOUQTiFLhtlu8JQsGvz3lnRw2JAeXGkx3E7CMh7zMnFWPdFO ++ rhpd1X7IvQ6Vf3Rs0MfJg6MELGYSC9EIcuQMgzAUS + zYisR1qbBHeSvo50KdQUIK ++ VMwW3Wh75KKAVwuWrFBHuqpR / eYjWXaY35zSFelozQUH / 83RREEQy55BrjOilmZI ++ IjS / UCjWrFfyPbuKX6ksPj3IRHnDyMRql9jbSsHhnZ7u + MswLDplz2TO / Ec = + ----- END CERTIFICATES ----- + ----- BEGIN RSA PRIVATE KEY ----- +-MIICXAIBAAKBgQCixn0Gp7R3Yv9HHXqDh0W1igoaSP4POIVPEp8Jq0jGUdMe + rwy +-yjA2KISEqCsUT8eo9jNsdz + CvpBCZguR / YhnQ / afZYxp0XZBqecmHrsFn3j0W + AD +-sD + aoELRG9DnLRSDI3ACCAMP5bJ1LIRp6JtPrgPVth + tz4DtKOKolQJ + zQIDAQAB +-AoGASXDmvhbyfJ8k8HAjc66XzBWxAzUFs9Zbh1aufM1UM259o8 + bFAtXf0f + ql + 5 +-uBtaySf0Aa8374SNT / f8pmzOmpiXMvYRz8Z5Gc6JYpYd / PrCoSCGtP + NdCvk7Y5c +-eUmmpiEto4 + fgCAKrtqc5jm8eBWn / yNhQNDBVJ9qX + kXQOECQQDVBLvBZaECSMTm +-djKuPlZ93cmyI7g + TURTl2N08fz4xQVVbo5 + AV0GsEZupBpTgrHpLTk8gKP / nfdR +-9KWZldbZAkEAw55 + SqrVTv4cI0fMvC0t8Wl46zTkY9tK65TGnbO1DbTQh9qs + NwH +- + v3uu47ef5w / 73xLtDjQouz // 0z5rgF3FQJAfrmOKQOYwY8g9CmlBNu5ALAM6Zku +-ZoH4 // G0DUJYyHYNMkHPK08MVIpRnEisELpTtPBeeIvfBJapJ2xvh + sIIQJASeY4 +-I5EB4EOS8akQKQ6QSqDjs0dZ + HdBiFm95pmbDkB + frQXoDPPN / xyEZzZZS / r31b / +-amgEOWh7FUFJGXkoOQJBALfOgsiss0lASlOXAg1rwO4m2OaDiaEde01PLcSjIaKl +-Qfbzc7ZYF + fGDsHHlD5Kgj1CGaWCVVHqCv4UHSrA / gM = ++ MIIEogIBAAKCAQEAsBpJBwLr2rF / YUUqc2y0pPFdo22WvSHLH8KdgvHCQCNFnhB5 ++ gRS9cGX21roeOYVRrmJpYWypylWtAJl1ujp54V12Hk4F2PnRMw3yEtu / zkM3Rfgm ++ izm19BEOgtRVZO + wAklvy7P / KKHZASs7ysKhKYwRzH1MafzDJ9J2 + 9WnFYj3EIs8 ++ j40g + 7x + ppUj5Q9C3HLyoptUl5GK1eoppltBD3NRHoh9Mg / GFKbPRB8Asn / m8Nio ++ 3ZTxzvdQiHFa4cauGE5iXSr4ZZ8 / hiHf3YvwqqIh7SCqBtj3lQkb4rCqHNI6gohz ++ ZQ2EhWyWWqJEle3IsJz6zpISOUYL0ktTlOYBZwIDAQABAoIBABR / 6tJbH7OEiAx9 ++ rbRkCh9NTZYxsqNvpKKc2BMfK3ql4HvG9S32iRrlc7eJUO1nPJvtLtE9ggJguNPi ++ CVdVaUy3wYFDmeCpLBYiYHSbihdrsap + eZYpcKnptmO6bfpjAH0zqUTwPhqvxIAj ++ VUGEKJiaipPgXh3UY69mC53DQED8UDd3EvwXW1ohGx3CEiG / IaLQST4CUJZdJjlC ++ 2JvR0JOIk ++ mrlpikVSRJrhj5YIdAQPpUZloU46BCr7t6zjY7enkBF9H4LyOIxw7 ++ r8O + tlWlVQsV / GiMH + s64wmMEsg5S + BU0ZlIQDm / IBnF / eX + VoRR3vXEwwdMnfEa ++ A + 5jBTkCgYEA3AD + Mi6B2KgFHzgyEr63nHe + py / kuvvChqwvLNvkjYYs1pnUJqMf ++ FowHf / CuLOTyEXRjR3tIEJCojYxLETZxOnkeVWRes0sAGB6GP3AwG7FwIw / zCETx ++ JmLsQs3xfAXh1sGHYX4y5uHPqEmfBP1FOjw8 / ebGtlm5Ne0mDImB5sMCgYEAzOp2 ++ LHdyuKgg1OHhizu1dc5O4tf3lAyQ84FgdRFAw2WIZpQNbfp08Klj + RGEBl8rrYYL ++ W / 2ZyrMHjA3yEb0uO4Wexva1hK2rR2el9khuUZbJRvZPkvmOrST / rb7W3BGAEuVj ++ qQkNgOGuHacKCawLw9IEZ1uSjhrSfXNTFKEv + I0CgYAyLD / MbfLK2Dai0gwJXlk9 ++ Y8mlEzUUt4m7cNUpY9SRugHLxzUswpK6b6DeOqNeNbBG7sYdbS4YKQVnkpEkEchs ++ z2ZtjwBR307cMUnoecte5W5vcJm6Tw639GNxMMpbwHOqqGQZhdBR + zmCZZfQaXo6 ++ N7apKNI0j + 2 / MKA2x71KRQKBgAygLaPTwEfMZCl5uXHgve + CRK4JbIG8vHmkcRMF ++ ex4O9XaMjL9H / UiOx1AjWiUiXAiXB8AlQgKRQVfJzC53n4 + fTgcoUEragIEny7v + ++ / n0cc05iAsklgzr72p0T8x0gHuoLJDbYDfLw9M9y6VVrOlZYbFkJ9V + 4G1wLbQUK ++ YXBJAoGAFJ / MnhtPN8h9rGoEG0NjBFAh2R9kGuLrwUWS0zJZA4Sw37ePrNYCuW9U ++ gPYvm6cx9R / NSj7xfvQUteCmEgk6ybVPxBi6wOXZPBAEeGowo6EkIIY7M2YBJTmr ++ W + 4 / nn6L + JWwLrKAsxPy1S6z4t3ERTFL63CUn35UKxLl8GtcdAM = + ----- END RSA PRIVATE KEY ----- + PEM + +diff --git a/t/SSL_test.t b/t/SSL_test.t +index 9aef205..fe7dc47 100644 +--- a/t/SSL_test.t ++++ b/t/SSL_test.t +@@ -16,33 +16,52 @@ if (! Eval {require File :: Temp} + + my $ pem = << 'PEM'; # this certificate is invalid, please only use for testing + ----- BEGIN CERTIFICATES ----- +-MIICKTCCAZICCQDFxHnOjdmTTjANBgkqhkiG9w0BAQUFADBZMQswCQYDVQQGEwJB +-VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 +-cyBQdHkgTHRkMRIwEAYDVQQDDAlsb2NhbGhvc3QwHhcNMTIwMTE0MTgzMjMwWhcN +-NzUxMTE0MTIwNDE0WjBZMQswCQYDVQQGEwJBVTETMBEGA1UECAwKU29tZS1TdGF0 +-ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRIwEAYDVQQDDAls +-b2NhbGhvc3QwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKLGfQantHdi / 0cd +-eoOHRbWKChpI / g84hU8SnwmrSMZR0x76vDLKMDYohISoKxRPx6j2M2x3P4K + kEJm +-C5H9iGdD9p9ljGnRdkGp5yYeuwWfePRb4AOwP5qgQtEb0OctFIMjcAIIAw / lsnUs +-hGnom0 + uA9W2H63PgO0o4qiVAn7NAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEATDGA +-dYRl5wpsYcpLgNzu0M4SENV0DAE2wNTZ4LIR1wxHbcxdgzMhjp0wwfVQBTJFNqWu +-DbeIFt4ghPMsUQKmMc4 + og2Zyll8qev8oNgWQneKjDAEKKpzdvUoRZyGx1ZocGzi +-S4LDiMd4qhD + GGePcHwmR8x / okoq58xZO / + Qygc = ++ MIIDiDCCAnCgAwIBAgIJAPVJEbrzRwgTMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV ++ BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX ++ aWRnaXRzIFB0eSBMdGQxEjAQBgNVBAMMCWxvY2FsaG9zdDAeFw0xODA4MjIxMzEz ++ MzFaFw0xODA5MjExMzEzMzFaMFkxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21l ++ LVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxEjAQBgNV ++ BAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALAa ++ SQcC69qxf2FFKnNstKTxXaNtlr0hyx / CnYLxwkAjRZ4QeYEUvXBl9ta6HjmFUa5i ++ aWFsqcpVrQCZdbo6eeFddh5OBdj50TMN8hLbv85DN0X4Jos5tfQRDoLUVWTvsAJJ ++ b8uz / yih2QErO8rCoSmMEcx9TGn8wyfSdvvVpxWI9xCLPI + NIPu8fqaVI + UPQtxy ++ 8qKbVJeRitXqKaZbQQ9zUR6IfTIPxhSmz0QfALJ / 5vDYqN2U8c73UIhxWuHGrhhO ++ Yl0q + GWfP4Yh392L8KqiIe0gqgbY95UJG + KwqhzSOoKIc2UNhIVsllqiRJXtyLCc +++ s6SEjlGC9JLU5TmAWcCAwEAAaNTMFEwHQYDVR0OBBYEFMHfZtqv3MIsf17OG0va ++ QcLRRusNMB8GA1UdIwQYMBaAFMHfZtqv3MIsf17OG0vaQcLRRusNMA8GA1UdEwEB ++ / wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAJ0DWl7tr6ws3I3 / VMOlOfBOjjne ++ wd + vnxAjGYGV4u4WyO8p05KyezO1BRZsUzMG9efFtYBVeN + RlI4DwSMap0GRp / TV ++ mQshTR7awFflP53FHOUQTiFLhtlu8JQsGvz3lnRw2JAeXGkx3E7CMh7zMnFWPdFO ++ rhpd1X7IvQ6Vf3Rs0MfJg6MELGYSC9EIcuQMgzAUS + zYisR1qbBHeSvo50KdQUIK ++ VMwW3Wh75KKAVwuWrFBHuqpR / eYjWXaY35zSFelozQUH / 83RREEQy55BrjOilmZI ++ IjS / UCjWrFfyPbuKX6ksPj3IRHnDyMRql9jbSsHhnZ7u + MswLDplz2TO / Ec = + ----- END CERTIFICATES ----- + ----- BEGIN RSA PRIVATE KEY ----- +-MIICXAIBAAKBgQCixn0Gp7R3Yv9HHXqDh0W1igoaSP4POIVPEp8Jq0jGUdMe + rwy +-yjA2KISEqCsUT8eo9jNsdz + CvpBCZguR / YhnQ / afZYxp0XZBqecmHrsFn3j0W + AD +-sD + aoELRG9DnLRSDI3ACCAMP5bJ1LIRp6JtPrgPVth + tz4DtKOKolQJ + zQIDAQAB +-AoGASXDmvhbyfJ8k8HAjc66XzBWxAzUFs9Zbh1aufM1UM259o8 + bFAtXf0f + ql + 5 +-uBtaySf0Aa8374SNT / f8pmzOmpiXMvYRz8Z5Gc6JYpYd / PrCoSCGtP + NdCvk7Y5c +-eUmmpiEto4 + fgCAKrtqc5jm8eBWn / yNhQNDBVJ9qX + kXQOECQQDVBLvBZaECSMTm +-djKuPlZ93cmyI7g + TURTl2N08fz4xQVVbo5 + AV0GsEZupBpTgrHpLTk8gKP / nfdR +-9KWZldbZAkEAw55 + SqrVTv4cI0fMvC0t8Wl46zTkY9tK65TGnbO1DbTQh9qs + NwH +- + v3uu47ef5w / 73xLtDjQouz // 0z5rgF3FQJAfrmOKQOYwY8g9CmlBNu5ALAM6Zku +-ZoH4 // G0DUJYyHYNMkHPK08MVIpRnEisELpTtPBeeIvfBJapJ2xvh + sIIQJASeY4 +-I5EB4EOS8akQKQ6QSqDjs0dZ + HdBiFm95pmbDkB + frQXoDPPN / xyEZzZZS / r31b / +-amgEOWh7FUFJGXkoOQJBALfOgsiss0lASlOXAg1rwO4m2OaDiaEde01PLcSjIaKl +-Qfbzc7ZYF + fGDsHHlD5Kgj1CGaWCVVHqCv4UHSrA / gM = ++ MIIEogIBAAKCAQEAsBpJBwLr2rF / YUUqc2y0pPFdo22WvSHLH8KdgvHCQCNFnhB5 ++ gRS9cGX21roeOYVRrmJpYWypylWtAJl1ujp54V12Hk4F2PnRMw3yEtu / zkM3Rfgm ++ izm19BEOgtRVZO + wAklvy7P / KKHZASs7ysKhKYwRzH1MafzDJ9J2 + 9WnFYj3EIs8 ++ j40g + 7x + ppUj5Q9C3HLyoptUl5GK1eoppltBD3NRHoh9Mg / GFKbPRB8Asn / m8Nio ++ 3ZTxzvdQiHFa4cauGE5iXSr4ZZ8 / hiHf3YvwqqIh7SCqBtj3lQkb4rCqHNI6gohz ++ ZQ2EhWyWWqJEle3IsJz6zpISOUYL0ktTlOYBZwIDAQABAoIBABR / 6tJbH7OEiAx9 ++ rbRkCh9NTZYxsqNvpKKc2BMfK3ql4HvG9S32iRrlc7eJUO1nPJvtLtE9ggJguNPi ++ CVdVaUy3wYFDmeCpLBYiYHSbihdrsap + eZYpcKnptmO6bfpjAH0zqUTwPhqvxIAj ++ VUGEKJiaipPgXh3UY69mC53DQED8UDd3EvwXW1ohGx3CEiG / IaLQST4CUJZdJjlC ++ 2JvR0JOIk ++ mrlpikVSRJrhj5YIdAQPpUZloU46BCr7t6zjY7enkBF9H4LyOIxw7 ++ r8O + tlWlVQsV / GiMH + s64wmMEsg5S + BU0ZlIQDm / IBnF / eX + VoRR3vXEwwdMnfEa ++ A + 5jBTkCgYEA3AD + Mi6B2KgFHzgyEr63nHe + py / kuvvChqwvLNvkjYYs1pnUJqMf ++ FowHf / CuLOTyEXRjR3tIEJCojYxLETZxOnkeVWRes0sAGB6GP3AwG7FwIw / zCETx ++ JmLsQs3xfAXh1sGHYX4y5uHPqEmfBP1FOjw8 / ebGtlm5Ne0mDImB5sMCgYEAzOp2 ++ LHdyuKgg1OHhizu1dc5O4tf3lAyQ84FgdRFAw2WIZpQNbfp08Klj + RGEBl8rrYYL ++ W / 2ZyrMHjA3yEb0uO4Wexva1hK2rR2el9khuUZbJRvZPkvmOrST / rb7W3BGAEuVj ++ qQkNgOGuHacKCawLw9IEZ1uSjhrSfXNTFKEv + I0CgYAyLD / MbfLK2Dai0gwJXlk9 ++ Y8mlEzUUt4m7cNUpY9SRugHLxzUswpK6b6DeOqNeNbBG7sYdbS4YKQVnkpEkEchs ++ z2ZtjwBR307cMUnoecte5W5vcJm6Tw639GNxMMpbwHOqqGQZhdBR + zmCZZfQaXo6 ++ N7apKNI0j + 2 / MKA2x71KRQKBgAygLaPTwEfMZCl5uXHgve + CRK4JbIG8vHmkcRMF ++ ex4O9XaMjL9H / UiOx1AjWiUiXAiXB8AlQgKRQVfJzC53n4 + fTgcoUEragIEny7v + ++ / n0cc05iAsklgzr72p0T8x0gHuoLJDbYDfLw9M9y6VVrOlZYbFkJ9V + 4G1wLbQUK ++ YXBJAoGAFJ / MnhtPN8h9rGoEG0NjBFAh2R9kGuLrwUWS0zJZA4Sw37ePrNYCuW9U ++ gPYvm6cx9R / NSj7xfvQUteCmEgk6ybVPxBi6wOXZPBAEeGowo6EkIIY7M2YBJTmr ++ W + 4 / nn6L + JWwLrKAsxPy1S6z4t3ERTFL63CUn35UKxLl8GtcdAM = + ----- END RSA PRIVATE KEY ----- + PEM + +- +2.14.4 + diff --git a/thirdparty/perl-net-server/patches/Net-Server-2.009-RT132245.patch b/thirdparty/perl-net-server/patches/Net-Server-2.009-RT132245.patch new file mode 100644 index 000000000..9d1c33670 --- /dev/null +++ b/thirdparty/perl-net-server/patches/Net-Server-2.009-RT132245.patch @@ -0,0 +1,185 @@ +From 807c815f04706612312ced369a1ceffaba299a88 Mon Sep 17 00:00:00 2001 +From: Slaven Rezic +Date: Mon, 22 Jun 2020 14:25:02 +0200 +Subject: [PATCH] regenerate ssl certificate (RT #132245) + +--- + t/SSLEAY_test.t | 74 +++++++++++++++++++++++++++++++------------------ + t/SSL_test.t | 74 +++++++++++++++++++++++++++++++------------------ + 2 files changed, 94 insertions(+), 54 deletions(-) + +diff --git a/t/SSLEAY_test.t b/t/SSLEAY_test.t +index a1e33c6..343b708 100644 +--- a/t/SSLEAY_test.t ++++ b/t/SSLEAY_test.t +@@ -21,34 +21,54 @@ if (! eval { require Net::Server::Proto::SSLEAY }) { + + my $pem = << 'PEM'; # this certificate is invalid, please only use for testing + -----BEGIN CERTIFICATE----- +-MIICKTCCAZICCQDFxHnOjdmTTjANBgkqhkiG9w0BAQUFADBZMQswCQYDVQQGEwJB +-VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 +-cyBQdHkgTHRkMRIwEAYDVQQDDAlsb2NhbGhvc3QwHhcNMTIwMTE0MTgzMjMwWhcN +-NzUxMTE0MTIwNDE0WjBZMQswCQYDVQQGEwJBVTETMBEGA1UECAwKU29tZS1TdGF0 +-ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRIwEAYDVQQDDAls +-b2NhbGhvc3QwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKLGfQantHdi/0cd +-eoOHRbWKChpI/g84hU8SnwmrSMZR0x76vDLKMDYohISoKxRPx6j2M2x3P4K+kEJm +-C5H9iGdD9p9ljGnRdkGp5yYeuwWfePRb4AOwP5qgQtEb0OctFIMjcAIIAw/lsnUs +-hGnom0+uA9W2H63PgO0o4qiVAn7NAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEATDGA +-dYRl5wpsYcpLgNzu0M4SENV0DAE2wNTZ4LIR1wxHbcxdgzMhjp0wwfVQBTJFNqWu +-DbeIFt4ghPMsUQKmMc4+og2Zyll8qev8oNgWQneKjDAEKKpzdvUoRZyGx1ZocGzi +-S4LDiMd4qhD+GGePcHwmR8x/okoq58xZO/+Qygc= ++MIIDazCCAlOgAwIBAgIUX5bOrA7M5R3nOFzxAG/AczyBtHYwDQYJKoZIhvcNAQEL ++BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM ++GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yMDAzMjcwMDM0MjhaFw00NTA0 ++MTUwMDM0MjhaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw ++HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEB ++AQUAA4IBDwAwggEKAoIBAQDeMD12F5YXpiHJq2A+So3I8ppaRas5YTJm5My7p41M ++ChWhTJATBHVyICFAnw65oj0sl0SFG+eyFyOi7h051RHEAyIWEsmnfeqsTRzglYm1 ++lc8Fi9T4cgCX9i2/y2c1nzVUAlbPU7j603VCWz0G9G5Mou315SEq7UgcVe92l6o+ ++/qIJUibX3KjqSAtF4L9SQd7Br5PyrnaKqmg9IBUCDS12LV/I2WghnQywm/3HFwCK ++cd1owGDoOpbJSfhXtxlR+NI+uTc5M2BeGGl0+REX1WT02nJHhgYr+JzArW/02VNk ++JNDXAn10OkQ7enhvPGUH+zperkayb71ADkQ+7i+HWsr/AgMBAAGjUzBRMB0GA1Ud ++DgQWBBQzRw/VaV1pjY+cnR6xKOIPJc61MDAfBgNVHSMEGDAWgBQzRw/VaV1pjY+c ++nR6xKOIPJc61MDAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQDC ++P/TZuWo/Iqv0vygm5l9SIMm6dxNIl5n6mtYA/ZvVOESSPFRKIAqT+QoHS/6eiqFo ++Z2hObykpTi581ACrKBJ3+IZTsPJFU6HqECyStf78zjOBTwccYxqEZ2nl0NUh3UxW ++sY9A8kBYMxg3CIt5P6pg5awPowDumkl+Im0TH17uZJfKR02SmNkKiOMqbDTxGhEj ++FauMp/M6eurw1eMuE8xfAQcp0mPEdwyEWMKfjnx6r+lNay0kNt5hRczYcgMfSL2P ++vW8RbG1Hk/yfTnt8CB6+D2EoRfSffGeaSPOzV57gizbnFLAkCOSRM3GxKWwvxYhS ++rQZMeEgs/esF32GyxTTQ + -----END CERTIFICATE----- +------BEGIN RSA PRIVATE KEY----- +-MIICXAIBAAKBgQCixn0Gp7R3Yv9HHXqDh0W1igoaSP4POIVPEp8Jq0jGUdMe+rwy +-yjA2KISEqCsUT8eo9jNsdz+CvpBCZguR/YhnQ/afZYxp0XZBqecmHrsFn3j0W+AD +-sD+aoELRG9DnLRSDI3ACCAMP5bJ1LIRp6JtPrgPVth+tz4DtKOKolQJ+zQIDAQAB +-AoGASXDmvhbyfJ8k8HAjc66XzBWxAzUFs9Zbh1aufM1UM259o8+bFAtXf0f+ql+5 +-uBtaySf0Aa8374SNT/f8pmzOmpiXMvYRz8Z5Gc6JYpYd/PrCoSCGtP+NdCvk7Y5c +-eUmmpiEto4+fgCAKrtqc5jm8eBWn/yNhQNDBVJ9qX+kXQOECQQDVBLvBZaECSMTm +-djKuPlZ93cmyI7g+TURTl2N08fz4xQVVbo5+AV0GsEZupBpTgrHpLTk8gKP/nfdR +-9KWZldbZAkEAw55+SqrVTv4cI0fMvC0t8Wl46zTkY9tK65TGnbO1DbTQh9qs+NwH +-+v3uu47ef5w/73xLtDjQouz//0z5rgF3FQJAfrmOKQOYwY8g9CmlBNu5ALAM6Zku +-ZoH4//G0DUJYyHYNMkHPK08MVIpRnEisELpTtPBeeIvfBJapJ2xvh+sIIQJASeY4 +-I5EB4EOS8akQKQ6QSqDjs0dZ+HdBiFm95pmbDkB+frQXoDPPN/xyEZzZZS/r31b/ +-amgEOWh7FUFJGXkoOQJBALfOgsiss0lASlOXAg1rwO4m2OaDiaEde01PLcSjIaKl +-Qfbzc7ZYF+fGDsHHlD5Kgj1CGaWCVVHqCv4UHSrA/gM= +------END RSA PRIVATE KEY----- ++-----BEGIN PRIVATE KEY----- ++MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDeMD12F5YXpiHJ ++q2A+So3I8ppaRas5YTJm5My7p41MChWhTJATBHVyICFAnw65oj0sl0SFG+eyFyOi ++7h051RHEAyIWEsmnfeqsTRzglYm1lc8Fi9T4cgCX9i2/y2c1nzVUAlbPU7j603VC ++Wz0G9G5Mou315SEq7UgcVe92l6o+/qIJUibX3KjqSAtF4L9SQd7Br5PyrnaKqmg9 ++IBUCDS12LV/I2WghnQywm/3HFwCKcd1owGDoOpbJSfhXtxlR+NI+uTc5M2BeGGl0 +++REX1WT02nJHhgYr+JzArW/02VNkJNDXAn10OkQ7enhvPGUH+zperkayb71ADkQ+ ++7i+HWsr/AgMBAAECggEBAKsy3licyeCE+KnMa8bzaRY5oCcIYWs/8jcH+pxo+N1r ++M8lqFeUhXWFHUnfZVt5AHQS7tWce3kMBw0qqUEicXSj8BQqfBVQSGH0UmbiOYGJT ++AQXT/ZBFPyHX5N5QWsEdYFjPyJXNe82Am2w6ouY19rsEG3iJSSorVJHIwU9OgzYv ++S5UE/+5mbOZWpIbs84hDXuxU+nhyaN3+NNM+ubGSxNCCzWK0NdAFzFPQvM9mY77C ++UTaFe1oaBoklURf3UYswxNB0OQ215By4QEHftaGTZzhQgcfvLBh5biFL3Wfr7eP5 ++W2M4T1jKhg7ZwgDMY5b6H13tpIfSwMizVtK3xUJXz9kCgYEA8kMRfcscMDFxE+tI ++OFvYUr1wzVIhPan4nzEIjTH6t7fUOTFhNFuJm8jwP/ss0wBuqx6xu06nzwuOxtyH ++HChDBHyn3loMgA7jIeLsVBhalj0fb7ph6MPrT50pVlTyInVV9WbjIyRx6wysD96U ++orcTWoY4EaERKwE1whxoO9ox1r0CgYEA6snDS1S9DE35hXejHYN8Gct0ukfPC1xY ++z0AJkv6st0wXY2jBUY523UpCWzUJgeBY/Aez4ZnPSbCFREM+A5F+XMvCuuxeXS0D ++A7fehB7e3MB2Nbd2X8opUrOUP5EQCbWz5SnjwGhxHH9rRzBi882/DqcqMkMSBvna ++UhMeZ71L0msCgYAh/1F8Er3Q8Y9J2VHYPuNbsSQcXDM4ARtX07y8e9AQaibJI+nd ++PB9Skl9My0XeEoh1UShl/cLE5n1R4O7A/9Fv1sKEDKUGb5BmV/8MSiKkRM2dk01c ++Kepi0M5VRDR6q3a1qoujieDGuI+I5pZ7Qy/fG0jRCIZtP404wV3LUHKADQKBgGxZ ++mAqXnHalNVVmlJv2JbsxrTiaEu5HO6TJBKIVbVdZgiGaIjyk5i3RKzY0D6MkCWyl ++kVm3RXXYRGfwMBotdocUcVUZ56JQN2fr3oBSTr7JAsRfWf1yqgdEYFHFfAU/GTnU ++TwpoKGriUnuT1NZ2SIlWk56GXTdi7mGZ+RoevXLpAoGAYoZ095TQ7SACetGwj+ky ++s1kNDHcjidcLOG6T/couQgVhb4ksZFUSsaatyCuhaygDosplU7os37HwWuRORaty ++v9Pof0b9US2sjGNaeW3+nZiAIyuBqnRzi+yamJ0JEC3LBA2ffHo/jvEpwbmKU2IB ++WdndvhVnyOiNZPW3PBExiJY= ++-----END PRIVATE KEY----- + PEM + + my ($pem_fh, $pem_filename) = +diff --git a/t/SSL_test.t b/t/SSL_test.t +index 9aef205..a2f9f3b 100644 +--- a/t/SSL_test.t ++++ b/t/SSL_test.t +@@ -16,34 +16,54 @@ if (! eval { require File::Temp } + + my $pem = << 'PEM'; # this certificate is invalid, please only use for testing + -----BEGIN CERTIFICATE----- +-MIICKTCCAZICCQDFxHnOjdmTTjANBgkqhkiG9w0BAQUFADBZMQswCQYDVQQGEwJB +-VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 +-cyBQdHkgTHRkMRIwEAYDVQQDDAlsb2NhbGhvc3QwHhcNMTIwMTE0MTgzMjMwWhcN +-NzUxMTE0MTIwNDE0WjBZMQswCQYDVQQGEwJBVTETMBEGA1UECAwKU29tZS1TdGF0 +-ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRIwEAYDVQQDDAls +-b2NhbGhvc3QwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKLGfQantHdi/0cd +-eoOHRbWKChpI/g84hU8SnwmrSMZR0x76vDLKMDYohISoKxRPx6j2M2x3P4K+kEJm +-C5H9iGdD9p9ljGnRdkGp5yYeuwWfePRb4AOwP5qgQtEb0OctFIMjcAIIAw/lsnUs +-hGnom0+uA9W2H63PgO0o4qiVAn7NAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEATDGA +-dYRl5wpsYcpLgNzu0M4SENV0DAE2wNTZ4LIR1wxHbcxdgzMhjp0wwfVQBTJFNqWu +-DbeIFt4ghPMsUQKmMc4+og2Zyll8qev8oNgWQneKjDAEKKpzdvUoRZyGx1ZocGzi +-S4LDiMd4qhD+GGePcHwmR8x/okoq58xZO/+Qygc= ++MIIDazCCAlOgAwIBAgIUX5bOrA7M5R3nOFzxAG/AczyBtHYwDQYJKoZIhvcNAQEL ++BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM ++GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yMDAzMjcwMDM0MjhaFw00NTA0 ++MTUwMDM0MjhaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw ++HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEB ++AQUAA4IBDwAwggEKAoIBAQDeMD12F5YXpiHJq2A+So3I8ppaRas5YTJm5My7p41M ++ChWhTJATBHVyICFAnw65oj0sl0SFG+eyFyOi7h051RHEAyIWEsmnfeqsTRzglYm1 ++lc8Fi9T4cgCX9i2/y2c1nzVUAlbPU7j603VCWz0G9G5Mou315SEq7UgcVe92l6o+ ++/qIJUibX3KjqSAtF4L9SQd7Br5PyrnaKqmg9IBUCDS12LV/I2WghnQywm/3HFwCK ++cd1owGDoOpbJSfhXtxlR+NI+uTc5M2BeGGl0+REX1WT02nJHhgYr+JzArW/02VNk ++JNDXAn10OkQ7enhvPGUH+zperkayb71ADkQ+7i+HWsr/AgMBAAGjUzBRMB0GA1Ud ++DgQWBBQzRw/VaV1pjY+cnR6xKOIPJc61MDAfBgNVHSMEGDAWgBQzRw/VaV1pjY+c ++nR6xKOIPJc61MDAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQDC ++P/TZuWo/Iqv0vygm5l9SIMm6dxNIl5n6mtYA/ZvVOESSPFRKIAqT+QoHS/6eiqFo ++Z2hObykpTi581ACrKBJ3+IZTsPJFU6HqECyStf78zjOBTwccYxqEZ2nl0NUh3UxW ++sY9A8kBYMxg3CIt5P6pg5awPowDumkl+Im0TH17uZJfKR02SmNkKiOMqbDTxGhEj ++FauMp/M6eurw1eMuE8xfAQcp0mPEdwyEWMKfjnx6r+lNay0kNt5hRczYcgMfSL2P ++vW8RbG1Hk/yfTnt8CB6+D2EoRfSffGeaSPOzV57gizbnFLAkCOSRM3GxKWwvxYhS ++rQZMeEgs/esF32GyxTTQ + -----END CERTIFICATE----- +------BEGIN RSA PRIVATE KEY----- +-MIICXAIBAAKBgQCixn0Gp7R3Yv9HHXqDh0W1igoaSP4POIVPEp8Jq0jGUdMe+rwy +-yjA2KISEqCsUT8eo9jNsdz+CvpBCZguR/YhnQ/afZYxp0XZBqecmHrsFn3j0W+AD +-sD+aoELRG9DnLRSDI3ACCAMP5bJ1LIRp6JtPrgPVth+tz4DtKOKolQJ+zQIDAQAB +-AoGASXDmvhbyfJ8k8HAjc66XzBWxAzUFs9Zbh1aufM1UM259o8+bFAtXf0f+ql+5 +-uBtaySf0Aa8374SNT/f8pmzOmpiXMvYRz8Z5Gc6JYpYd/PrCoSCGtP+NdCvk7Y5c +-eUmmpiEto4+fgCAKrtqc5jm8eBWn/yNhQNDBVJ9qX+kXQOECQQDVBLvBZaECSMTm +-djKuPlZ93cmyI7g+TURTl2N08fz4xQVVbo5+AV0GsEZupBpTgrHpLTk8gKP/nfdR +-9KWZldbZAkEAw55+SqrVTv4cI0fMvC0t8Wl46zTkY9tK65TGnbO1DbTQh9qs+NwH +-+v3uu47ef5w/73xLtDjQouz//0z5rgF3FQJAfrmOKQOYwY8g9CmlBNu5ALAM6Zku +-ZoH4//G0DUJYyHYNMkHPK08MVIpRnEisELpTtPBeeIvfBJapJ2xvh+sIIQJASeY4 +-I5EB4EOS8akQKQ6QSqDjs0dZ+HdBiFm95pmbDkB+frQXoDPPN/xyEZzZZS/r31b/ +-amgEOWh7FUFJGXkoOQJBALfOgsiss0lASlOXAg1rwO4m2OaDiaEde01PLcSjIaKl +-Qfbzc7ZYF+fGDsHHlD5Kgj1CGaWCVVHqCv4UHSrA/gM= +------END RSA PRIVATE KEY----- ++-----BEGIN PRIVATE KEY----- ++MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDeMD12F5YXpiHJ ++q2A+So3I8ppaRas5YTJm5My7p41MChWhTJATBHVyICFAnw65oj0sl0SFG+eyFyOi ++7h051RHEAyIWEsmnfeqsTRzglYm1lc8Fi9T4cgCX9i2/y2c1nzVUAlbPU7j603VC ++Wz0G9G5Mou315SEq7UgcVe92l6o+/qIJUibX3KjqSAtF4L9SQd7Br5PyrnaKqmg9 ++IBUCDS12LV/I2WghnQywm/3HFwCKcd1owGDoOpbJSfhXtxlR+NI+uTc5M2BeGGl0 +++REX1WT02nJHhgYr+JzArW/02VNkJNDXAn10OkQ7enhvPGUH+zperkayb71ADkQ+ ++7i+HWsr/AgMBAAECggEBAKsy3licyeCE+KnMa8bzaRY5oCcIYWs/8jcH+pxo+N1r ++M8lqFeUhXWFHUnfZVt5AHQS7tWce3kMBw0qqUEicXSj8BQqfBVQSGH0UmbiOYGJT ++AQXT/ZBFPyHX5N5QWsEdYFjPyJXNe82Am2w6ouY19rsEG3iJSSorVJHIwU9OgzYv ++S5UE/+5mbOZWpIbs84hDXuxU+nhyaN3+NNM+ubGSxNCCzWK0NdAFzFPQvM9mY77C ++UTaFe1oaBoklURf3UYswxNB0OQ215By4QEHftaGTZzhQgcfvLBh5biFL3Wfr7eP5 ++W2M4T1jKhg7ZwgDMY5b6H13tpIfSwMizVtK3xUJXz9kCgYEA8kMRfcscMDFxE+tI ++OFvYUr1wzVIhPan4nzEIjTH6t7fUOTFhNFuJm8jwP/ss0wBuqx6xu06nzwuOxtyH ++HChDBHyn3loMgA7jIeLsVBhalj0fb7ph6MPrT50pVlTyInVV9WbjIyRx6wysD96U ++orcTWoY4EaERKwE1whxoO9ox1r0CgYEA6snDS1S9DE35hXejHYN8Gct0ukfPC1xY ++z0AJkv6st0wXY2jBUY523UpCWzUJgeBY/Aez4ZnPSbCFREM+A5F+XMvCuuxeXS0D ++A7fehB7e3MB2Nbd2X8opUrOUP5EQCbWz5SnjwGhxHH9rRzBi882/DqcqMkMSBvna ++UhMeZ71L0msCgYAh/1F8Er3Q8Y9J2VHYPuNbsSQcXDM4ARtX07y8e9AQaibJI+nd ++PB9Skl9My0XeEoh1UShl/cLE5n1R4O7A/9Fv1sKEDKUGb5BmV/8MSiKkRM2dk01c ++Kepi0M5VRDR6q3a1qoujieDGuI+I5pZ7Qy/fG0jRCIZtP404wV3LUHKADQKBgGxZ ++mAqXnHalNVVmlJv2JbsxrTiaEu5HO6TJBKIVbVdZgiGaIjyk5i3RKzY0D6MkCWyl ++kVm3RXXYRGfwMBotdocUcVUZ56JQN2fr3oBSTr7JAsRfWf1yqgdEYFHFfAU/GTnU ++TwpoKGriUnuT1NZ2SIlWk56GXTdi7mGZ+RoevXLpAoGAYoZ095TQ7SACetGwj+ky ++s1kNDHcjidcLOG6T/couQgVhb4ksZFUSsaatyCuhaygDosplU7os37HwWuRORaty ++v9Pof0b9US2sjGNaeW3+nZiAIyuBqnRzi+yamJ0JEC3LBA2ffHo/jvEpwbmKU2IB ++WdndvhVnyOiNZPW3PBExiJY= ++-----END PRIVATE KEY----- + PEM + + my ($pem_fh, $pem_filename) = +-- +2.25.1 + diff --git a/thirdparty/perl-net-server/zimbra-perl-net-server/debian/changelog b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/changelog index 4919bc9e2..c843a125b 100644 --- a/thirdparty/perl-net-server/zimbra-perl-net-server/debian/changelog +++ b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-net-server (VERSION-ITERATIONZAPPEND) unstable; urgency=low + + * Upgraded Net-Server to 2.009 + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-net-server (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-net-server/zimbra-perl-net-server/debian/compat b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-server/zimbra-perl-net-server/debian/compat +++ b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-net-server/zimbra-perl-net-server/debian/patches/series b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/patches/series new file mode 100644 index 000000000..302f5611b --- /dev/null +++ b/thirdparty/perl-net-server/zimbra-perl-net-server/debian/patches/series @@ -0,0 +1 @@ +Net-Server-2.009-RT132245.patch diff --git a/thirdparty/perl-net-server/zimbra-perl-net-server/rpm/SPECS/net-server.spec b/thirdparty/perl-net-server/zimbra-perl-net-server/rpm/SPECS/net-server.spec index 2d6322ec0..466717d86 100644 --- a/thirdparty/perl-net-server/zimbra-perl-net-server/rpm/SPECS/net-server.spec +++ b/thirdparty/perl-net-server/zimbra-perl-net-server/rpm/SPECS/net-server.spec @@ -23,6 +23,10 @@ based on server load (Net::Server::PreFork). %define debug_package %{nil} +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-ITERATIONZAPPEND +- Upgraded Net-Server to 2.009 + %prep %setup -n Net-Server-%{version} diff --git a/thirdparty/perl-net-ssleay/zimbra-perl-net-ssleay/debian/compat b/thirdparty/perl-net-ssleay/zimbra-perl-net-ssleay/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-net-ssleay/zimbra-perl-net-ssleay/debian/compat +++ b/thirdparty/perl-net-ssleay/zimbra-perl-net-ssleay/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-netaddr-ip/zimbra-perl-netaddr-ip/debian/compat b/thirdparty/perl-netaddr-ip/zimbra-perl-netaddr-ip/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-netaddr-ip/zimbra-perl-netaddr-ip/debian/compat +++ b/thirdparty/perl-netaddr-ip/zimbra-perl-netaddr-ip/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-parent/zimbra-perl-parent/debian/compat b/thirdparty/perl-parent/zimbra-perl-parent/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-parent/zimbra-perl-parent/debian/compat +++ b/thirdparty/perl-parent/zimbra-perl-parent/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-proc-processtable/zimbra-perl-proc-processtable/debian/compat b/thirdparty/perl-proc-processtable/zimbra-perl-proc-processtable/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-proc-processtable/zimbra-perl-proc-processtable/debian/compat +++ b/thirdparty/perl-proc-processtable/zimbra-perl-proc-processtable/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/changelog b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/changelog index ba44bfb76..5a37abd16 100644 --- a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/changelog +++ b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/changelog @@ -1,9 +1,16 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=low * Updated dependencies perl-io-socket-ssl, perl-lwp-protocol-https, perl-libwww, perl-xml-parser -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low + + * Updated dependencies zimbra-perl-io-compress,zimbra-perl-io-socket-ssl + * Updated dependencies zimbra-perl-lwp-protocol-https,zimbra-perl-libwww,zimbra-perl-xml-parser + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependencies perl-io-socket-ssl, perl-lwp-protocol-https, perl-libwww, perl-xml-parser diff --git a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/compat b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/compat +++ b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/control b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/control index f88c0bcd7..f7406b597 100644 --- a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/control +++ b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/debian/control @@ -3,18 +3,18 @@ Section: perl Priority: optional Maintainer: Zimbra Packaging Services Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-class-inspector, - zimbra-perl-io-compress, zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND), - zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b3ZAPPEND), zimbra-perl-libwww (>= 6.13-1zimbra8.7b4ZAPPEND), zimbra-perl-task-weaken, - zimbra-perl-uri, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b4ZAPPEND), zimbra-perl-mime-tools + zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND), + zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b4ZAPPEND), zimbra-perl-libwww (>= 6.13-1zimbra8.7b5ZAPPEND), zimbra-perl-task-weaken, + zimbra-perl-uri, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b5ZAPPEND), zimbra-perl-mime-tools Standards-Version: 3.9.5 Homepage: https://metacpan.org/release/MODNAME Package: zimbra-perl-MODNORMNAME Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, zimbra-perl-base, - zimbra-perl-class-inspector, zimbra-perl-io-compress, zimbra-perl-io-sessiondata, - zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND), zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b3ZAPPEND), zimbra-perl-libwww (>= 6.13-1zimbra8.7b4ZAPPEND), - zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b4ZAPPEND), zimbra-perl-mime-tools + zimbra-perl-class-inspector, zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-io-sessiondata, + zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND), zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b4ZAPPEND), zimbra-perl-libwww (>= 6.13-1zimbra8.7b5ZAPPEND), + zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b5ZAPPEND), zimbra-perl-mime-tools Description: SOAP::Lite - Perl's Web Services Toolkit SOAP::Lite is a collection of Perl modules which provides a simple and lightweight interface to the Simple Object Access Protocol (SOAP) both diff --git a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/rpm/SPECS/soap-lite.spec b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/rpm/SPECS/soap-lite.spec index 4629cc825..705381051 100644 --- a/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/rpm/SPECS/soap-lite.spec +++ b/thirdparty/perl-soap-lite/zimbra-perl-soap-lite/rpm/SPECS/soap-lite.spec @@ -1,20 +1,24 @@ Summary: SOAP::Lite - Perl's Web Services Toolkit Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-class-inspector, zimbra-perl-io-compress -BuildRequires: zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND -BuildRequires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b3ZAPPEND, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND -BuildRequires: zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-base, zimbra-perl-class-inspector +BuildRequires: zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND +BuildRequires: zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND +BuildRequires: zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b5ZAPPEND BuildRequires: zimbra-perl-mime-tools, zimbra-perl-xml-parser-lite -Requires: zimbra-perl-base, zimbra-perl-class-inspector, zimbra-perl-io-compress -Requires: zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND -Requires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b3ZAPPEND, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b4ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-class-inspector +Requires: zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-io-sessiondata, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND +Requires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b4ZAPPEND +Requires: zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-task-weaken, zimbra-perl-uri, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b5ZAPPEND Requires: zimbra-perl-mime-tools, zimbra-perl-xml-parser-lite AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -27,12 +31,15 @@ on client and server side. %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND - Updated dependencies perl-io-socket-ssl, perl-lwp-protocol-https, perl-libwww, perl-xml-parser -* Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +* Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - Updated dependencies perl-io-socket-ssl, perl-lwp-protocol-https, perl-libwww, perl-xml-parser -* Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +* Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependencies perl-io-socket-ssl, perl-lwp-protocol-https, perl-libwww, perl-xml-parser +* Sat Apr 25 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependencies zimbra-perl-io-compress,zimbra-perl-io-socket-ssl +- Updated dependencies zimbra-perl-lwp-protocol-https,zimbra-perl-libwww,zimbra-perl-xml-parser %prep %setup -n MODNAME-%{version} diff --git a/thirdparty/perl-socket-linux/zimbra-perl-socket-linux/debian/compat b/thirdparty/perl-socket-linux/zimbra-perl-socket-linux/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-socket-linux/zimbra-perl-socket-linux/debian/compat +++ b/thirdparty/perl-socket-linux/zimbra-perl-socket-linux/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-socket/zimbra-perl-socket/debian/compat b/thirdparty/perl-socket/zimbra-perl-socket/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-socket/zimbra-perl-socket/debian/compat +++ b/thirdparty/perl-socket/zimbra-perl-socket/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-swatchdog/Makefile b/thirdparty/perl-swatchdog/Makefile index b3a6c2fd8..60e69f897 100644 --- a/thirdparty/perl-swatchdog/Makefile +++ b/thirdparty/perl-swatchdog/Makefile @@ -7,7 +7,7 @@ pname := swatchdog pname_lc := swatchdog pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := http://downloads.sourceforge.net/project/swatch/swatchdog/$(pfile) +purl := https://fossies.org/linux/misc/$(pfile) zname := zimbra-perl-$(pname_lc) zspec := $(pname_lc).spec diff --git a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/changelog b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/changelog index 7c71debe7..b0405b30f 100644 --- a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/changelog +++ b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/changelog @@ -1,3 +1,9 @@ +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency perl-date-calc + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-ITERATIONZAPPEND) unstable; urgency=low * Initial Release. diff --git a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/compat b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/compat +++ b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/control b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/control index 9bc254358..5cc3c4ab1 100644 --- a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/control +++ b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/debian/control @@ -2,7 +2,7 @@ Source: zimbra-perl-MODNORMNAME Section: perl Priority: optional Maintainer: Zimbra Packaging Services -Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-date-calc, +Build-Depends: debhelper (>= 9), zimbra-perl-base, zimbra-perl-date-calc (>= 6.4-1zimbra8.7b2ZAPPEND), zimbra-perl-file-tail, zimbra-perl-date-manip, zimbra-perl-timedate Standards-Version: 3.9.5 Homepage: http://sourceforge.net/projects/swatch/ @@ -10,7 +10,7 @@ Homepage: http://sourceforge.net/projects/swatch/ Package: zimbra-perl-MODNORMNAME Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, - zimbra-perl-base, zimbra-perl-date-calc, zimbra-perl-file-tail, + zimbra-perl-base, zimbra-perl-date-calc (>= 6.4-1zimbra8.7b2ZAPPEND), zimbra-perl-file-tail, zimbra-perl-date-manip, zimbra-perl-timedate Description: swatchdog - Simple Log Watcher swatchdog.pl started out as swatch, the "simple watchdog" for activity diff --git a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/rpm/SPECS/swatchdog.spec b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/rpm/SPECS/swatchdog.spec index 80ffc4302..2c4d62960 100644 --- a/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/rpm/SPECS/swatchdog.spec +++ b/thirdparty/perl-swatchdog/zimbra-perl-swatchdog/rpm/SPECS/swatchdog.spec @@ -1,14 +1,14 @@ Summary: swatchdog - Simple Log Watcher Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2 Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-date-calc, zimbra-perl-file-tail +BuildRequires: zimbra-perl-base, zimbra-perl-date-calc >= 6.4-1zimbra8.7b2ZAPPEND, zimbra-perl-file-tail BuildRequires: zimbra-perl-date-manip, zimbra-perl-timedate -Requires: zimbra-perl-base, zimbra-perl-date-calc, zimbra-perl-file-tail +Requires: zimbra-perl-base, zimbra-perl-date-calc >= 6.4-1zimbra8.7b2ZAPPEND, zimbra-perl-file-tail Requires: zimbra-perl-date-manip, zimbra-perl-timedate AutoReqProv: no URL: http://sourceforge.net/projects/swatch/ @@ -20,6 +20,10 @@ been evolving into a utility that can monitor just about any type of log. The name has been changed to satisfy a request made by the old Swiss watch company. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency perl-date-calc + %define debug_package %{nil} %prep diff --git a/thirdparty/perl-task-weaken/zimbra-perl-task-weaken/debian/compat b/thirdparty/perl-task-weaken/zimbra-perl-task-weaken/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-task-weaken/zimbra-perl-task-weaken/debian/compat +++ b/thirdparty/perl-task-weaken/zimbra-perl-task-weaken/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-term-readkey/zimbra-perl-term-readkey/debian/compat b/thirdparty/perl-term-readkey/zimbra-perl-term-readkey/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-term-readkey/zimbra-perl-term-readkey/debian/compat +++ b/thirdparty/perl-term-readkey/zimbra-perl-term-readkey/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-timedate/Makefile b/thirdparty/perl-timedate/Makefile index 34a77e715..e0fd49c7e 100644 --- a/thirdparty/perl-timedate/Makefile +++ b/thirdparty/perl-timedate/Makefile @@ -50,6 +50,7 @@ build_deb: $(replace-pathinfo) debian/rules && \ $(CP) $(psrc_file) ../$(z_tgz) && \ $(TAR) xfz ../$(z_tgz) --strip-components=1 && \ + $(CP) $(PKG_ROOT)/patches/*.patch debian/patches/ && \ $(PKG_BUILD) clean: pkgrm diff --git a/thirdparty/perl-timedate/patches/timedate.patch b/thirdparty/perl-timedate/patches/timedate.patch new file mode 100644 index 000000000..81068fe36 --- /dev/null +++ b/thirdparty/perl-timedate/patches/timedate.patch @@ -0,0 +1,23 @@ +diff -ruN a/t/date.t b/t/date.t +--- a/t/date.t 2020-04-24 13:43:04.875656697 +0000 ++++ b/t/date.t 2020-04-24 13:43:25.543657280 +0000 +@@ -177,7 +177,7 @@ + + $x = time2str("%a %b %e %T %Y %Z",$time,'GMT'); + +- printf "%-40s\t%s\n", $_,$x,"\n"; ++ printf "%-40s\t%s\n", $_, $x; + + $y = str2time($x); + +diff -ruN a/t/getdate.t b/t/getdate.t +--- a/t/getdate.t 2020-04-24 13:46:19.035662176 +0000 ++++ b/t/getdate.t 2020-04-24 13:46:47.951662992 +0000 +@@ -156,7 +156,7 @@ + !; + + require Time::Local; +-my $offset = Time::Local::timegm(0,0,0,1,0,70); ++my $offset = Time::Local::timegm(0,0,0,1,0,1970); + + @data = split(/\n/, $data); diff --git a/thirdparty/perl-timedate/zimbra-perl-timedate/debian/compat b/thirdparty/perl-timedate/zimbra-perl-timedate/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-timedate/zimbra-perl-timedate/debian/compat +++ b/thirdparty/perl-timedate/zimbra-perl-timedate/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-timedate/zimbra-perl-timedate/debian/patches/series b/thirdparty/perl-timedate/zimbra-perl-timedate/debian/patches/series new file mode 100644 index 000000000..429d9c4bc --- /dev/null +++ b/thirdparty/perl-timedate/zimbra-perl-timedate/debian/patches/series @@ -0,0 +1 @@ +timedate.patch diff --git a/thirdparty/perl-unix-getrusage/zimbra-perl-unix-getrusage/debian/compat b/thirdparty/perl-unix-getrusage/zimbra-perl-unix-getrusage/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-unix-getrusage/zimbra-perl-unix-getrusage/debian/compat +++ b/thirdparty/perl-unix-getrusage/zimbra-perl-unix-getrusage/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-unix-syslog/zimbra-perl-unix-syslog/debian/compat b/thirdparty/perl-unix-syslog/zimbra-perl-unix-syslog/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-unix-syslog/zimbra-perl-unix-syslog/debian/compat +++ b/thirdparty/perl-unix-syslog/zimbra-perl-unix-syslog/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-uri/zimbra-perl-uri/debian/compat b/thirdparty/perl-uri/zimbra-perl-uri/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-uri/zimbra-perl-uri/debian/compat +++ b/thirdparty/perl-uri/zimbra-perl-uri/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-www-robotrules/zimbra-perl-www-robotrules/debian/compat b/thirdparty/perl-www-robotrules/zimbra-perl-www-robotrules/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-www-robotrules/zimbra-perl-www-robotrules/debian/compat +++ b/thirdparty/perl-www-robotrules/zimbra-perl-www-robotrules/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-namespacesupport/zimbra-perl-xml-namespacesupport/debian/compat b/thirdparty/perl-xml-namespacesupport/zimbra-perl-xml-namespacesupport/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-namespacesupport/zimbra-perl-xml-namespacesupport/debian/compat +++ b/thirdparty/perl-xml-namespacesupport/zimbra-perl-xml-namespacesupport/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-parser-lite/zimbra-perl-xml-parser-lite/debian/compat b/thirdparty/perl-xml-parser-lite/zimbra-perl-xml-parser-lite/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-parser-lite/zimbra-perl-xml-parser-lite/debian/compat +++ b/thirdparty/perl-xml-parser-lite/zimbra-perl-xml-parser-lite/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/changelog b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/changelog index 022e8cf3e..22c808528 100644 --- a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/changelog +++ b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=low * Updated dependency zimbra-perl-libwww -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-libwww + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-perl-libwww diff --git a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/compat b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/compat +++ b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/rpm/SPECS/xml-parser.spec b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/rpm/SPECS/xml-parser.spec index c96403221..5312b396e 100644 --- a/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/rpm/SPECS/xml-parser.spec +++ b/thirdparty/perl-xml-parser/zimbra-perl-xml-parser/rpm/SPECS/xml-parser.spec @@ -1,13 +1,13 @@ Summary: XML::Parser - A perl module for parsing XML documents Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, expat-devel, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-base, expat, zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-base, expat-devel, zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-base, expat, zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -17,8 +17,10 @@ This is a Perl extension interface to James Clark's XML parser, expat %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND -- Updated zimbra-perl-libwww +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND +- Updated dependency zimbra-perl-libwww +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +- Updated dependency zimbra-perl-libwww * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated zimbra-perl-libwww * Thu Sep 10 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND diff --git a/thirdparty/perl-xml-sax-base/zimbra-perl-xml-sax-base/debian/compat b/thirdparty/perl-xml-sax-base/zimbra-perl-xml-sax-base/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-sax-base/zimbra-perl-xml-sax-base/debian/compat +++ b/thirdparty/perl-xml-sax-base/zimbra-perl-xml-sax-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/changelog b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/changelog index 94f59b670..4e8c91da7 100644 --- a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/changelog +++ b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b5ZAPPEND) unstable; urgency=low * Updated dependency zimbra-perl-xml-parser -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-xml-parser + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-perl-xml-parser diff --git a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/compat b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/compat +++ b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/rpm/SPECS/xml-sax-expat.spec b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/rpm/SPECS/xml-sax-expat.spec index a6e93e10e..d1d40284e 100644 --- a/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/rpm/SPECS/xml-sax-expat.spec +++ b/thirdparty/perl-xml-sax-expat/zimbra-perl-xml-sax-expat/rpm/SPECS/xml-sax-expat.spec @@ -1,13 +1,13 @@ Summary: XML::SAX::Expat - SAX2 Driver for Expat (XML::Parser) Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.7b4ZAPPEND +Release: 1zimbra8.7b5ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-xml-sax, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-base, zimbra-perl-xml-sax, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-base, zimbra-perl-xml-sax, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-xml-sax, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b5ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -18,7 +18,9 @@ Expat (XML::Parser) %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b5ZAPPEND +- Updated dependency zimbra-perl-xml-parser +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND - Updated dependency zimbra-perl-xml-parser * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependency zimbra-perl-xml-parser diff --git a/thirdparty/perl-xml-sax/zimbra-perl-xml-sax/debian/compat b/thirdparty/perl-xml-sax/zimbra-perl-xml-sax/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-sax/zimbra-perl-xml-sax/debian/compat +++ b/thirdparty/perl-xml-sax/zimbra-perl-xml-sax/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/changelog b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/changelog index b0e782cab..421b31707 100644 --- a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/changelog +++ b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/changelog @@ -1,9 +1,15 @@ -zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=medium +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b4ZAPPEND) unstable; urgency=low * Updated dependency zimbra-perl-xml-sax-expat -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b3ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-xml-sax-expat + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl-MODNORMNAME (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-perl-xml-sax-expat diff --git a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/compat b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/compat +++ b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/rpm/SPECS/xml-simple.spec b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/rpm/SPECS/xml-simple.spec index 9c6321949..874d713d3 100644 --- a/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/rpm/SPECS/xml-simple.spec +++ b/thirdparty/perl-xml-simple/zimbra-perl-xml-simple/rpm/SPECS/xml-simple.spec @@ -1,13 +1,13 @@ Summary: XML::Simple - Easily read/write XML (esp config files) Name: zimbra-perl-MODNORMNAME Version: VERSION -Release: 1zimbra8.7b3ZAPPEND +Release: 1zimbra8.7b4ZAPPEND License: GPL+ or Artistic Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services Group: Development/Languages -BuildRequires: zimbra-perl-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b4ZAPPEND +BuildRequires: zimbra-perl-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b5ZAPPEND AutoReqProv: no URL: https://metacpan.org/release/MODNAME @@ -17,7 +17,9 @@ Easily read/write XML (esp config files) %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b4ZAPPEND +- Updated dependency zimbra-perl-xml-sax-expat +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b3ZAPPEND - Updated dependency zimbra-perl-xml-sax-expat * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND - Updated dependency zimbra-perl-xml-sax-expat diff --git a/thirdparty/perl-zmq-constants/zimbra-perl-zmq-constants/debian/compat b/thirdparty/perl-zmq-constants/zimbra-perl-zmq-constants/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-zmq-constants/zimbra-perl-zmq-constants/debian/compat +++ b/thirdparty/perl-zmq-constants/zimbra-perl-zmq-constants/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/perl-zmq-libzmq3/zimbra-perl-zmq-libzmq3/debian/compat b/thirdparty/perl-zmq-libzmq3/zimbra-perl-zmq-libzmq3/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/perl-zmq-libzmq3/zimbra-perl-zmq-libzmq3/debian/compat +++ b/thirdparty/perl-zmq-libzmq3/zimbra-perl-zmq-libzmq3/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/changelog b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/changelog index e99fc5047..0ea578c0e 100644 --- a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/changelog +++ b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/changelog @@ -1,3 +1,9 @@ +zimbra-pflogsumm (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-date-calc + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-pflogsumm (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/compat b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/compat +++ b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/control b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/control index c9dfc8aad..29eeda29c 100644 --- a/thirdparty/pflogsumm/zimbra-pflogsumm/debian/control +++ b/thirdparty/pflogsumm/zimbra-pflogsumm/debian/control @@ -11,7 +11,7 @@ Package: zimbra-pflogsumm Priority: optional Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-base, - zimbra-perl-base, zimbra-perl-date-calc + zimbra-perl-base, zimbra-perl-date-calc (>= 6.4-1zimbra8.7b2ZAPPEND) Description: Postfix Log Entry Summarizer pflogsumm.pl is designed to provide an over-view of postfix activity, with just enough detail to give the administrator diff --git a/thirdparty/pflogsumm/zimbra-pflogsumm/rpm/SPECS/pflogsumm.spec b/thirdparty/pflogsumm/zimbra-pflogsumm/rpm/SPECS/pflogsumm.spec index 2ab0c18c1..3fd9db3bf 100644 --- a/thirdparty/pflogsumm/zimbra-pflogsumm/rpm/SPECS/pflogsumm.spec +++ b/thirdparty/pflogsumm/zimbra-pflogsumm/rpm/SPECS/pflogsumm.spec @@ -1,11 +1,11 @@ Summary: Postfix Log Entry Summarizer Name: zimbra-pflogsumm Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2 Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services -Requires: zimbra-base, zimbra-perl-base, zimbra-perl-date-calc +Requires: zimbra-base, zimbra-perl-base, zimbra-perl-date-calc >= 6.4-1zimbra8.7b2ZAPPEND AutoReqProv: no URL: http://jimsun.linxnet.com/postfix_contrib.html @@ -14,6 +14,10 @@ pflogsumm.pl is designed to provide an over-view of postfix activity, with just enough detail to give the administrator a "heads up" for potential trouble spots. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-date-calc + %define debug_package %{nil} %prep diff --git a/thirdparty/php/zimbra-php/debian/compat b/thirdparty/php/zimbra-php/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/php/zimbra-php/debian/compat +++ b/thirdparty/php/zimbra-php/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/php/zimbra-php/debian/rules b/thirdparty/php/zimbra-php/debian/rules index a003c9f11..2ec0ee34e 100755 --- a/thirdparty/php/zimbra-php/debian/rules +++ b/thirdparty/php/zimbra-php/debian/rules @@ -5,10 +5,10 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: - ./configure --prefix=OZC \ + ./configure --prefix=OZC --disable-gcc-global-regs \ --with-apxs2=OZCB/apxs \ --with-config-file-path=/opt/zimbra/conf \ --with-pspell=OZC \ diff --git a/thirdparty/postfix-logwatch/zimbra-postfix-logwatch/debian/compat b/thirdparty/postfix-logwatch/zimbra-postfix-logwatch/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/postfix-logwatch/zimbra-postfix-logwatch/debian/compat +++ b/thirdparty/postfix-logwatch/zimbra-postfix-logwatch/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/postfix/patches/glibc-2.34.patch b/thirdparty/postfix/patches/glibc-2.34.patch new file mode 100644 index 000000000..679f6cf7c --- /dev/null +++ b/thirdparty/postfix/patches/glibc-2.34.patch @@ -0,0 +1,13 @@ +diff -ruN a/src/util/sys_defs.h b/src/util/sys_defs.h +--- a/src/util/sys_defs.h 2023-10-21 08:18:56.918936593 +0000 ++++ b/src/util/sys_defs.h 2023-10-21 08:20:26.404871904 +0000 +@@ -827,6 +827,9 @@ + #define HAVE_POSIX_GETPW_R + #endif + #endif ++#if HAVE_GLIBC_API_VERSION_SUPPORT(2, 34) ++#define HAS_CLOSEFROM ++#endif + + #endif + diff --git a/thirdparty/postfix/zimbra-postfix/debian/compat b/thirdparty/postfix/zimbra-postfix/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/postfix/zimbra-postfix/debian/compat +++ b/thirdparty/postfix/zimbra-postfix/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/postfix/zimbra-postfix/debian/patches/series b/thirdparty/postfix/zimbra-postfix/debian/patches/series index a40dfc3cb..4ea4e028c 100644 --- a/thirdparty/postfix/zimbra-postfix/debian/patches/series +++ b/thirdparty/postfix/zimbra-postfix/debian/patches/series @@ -2,3 +2,4 @@ postfix-main-cf-zimbra.patch stop-warning.patch postfix-ldap.patch lmdb-default.patch +glibc-2.34.patch diff --git a/thirdparty/postfix/zimbra-postfix/debian/rules b/thirdparty/postfix/zimbra-postfix/debian/rules index d463ab3ee..5749ce3e4 100755 --- a/thirdparty/postfix/zimbra-postfix/debian/rules +++ b/thirdparty/postfix/zimbra-postfix/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_clean: diff --git a/thirdparty/prepflog/zimbra-prepflog/debian/changelog b/thirdparty/prepflog/zimbra-prepflog/debian/changelog index 364d03794..589152eda 100644 --- a/thirdparty/prepflog/zimbra-prepflog/debian/changelog +++ b/thirdparty/prepflog/zimbra-prepflog/debian/changelog @@ -1,3 +1,9 @@ +zimbra-prepflog (VERSION-1zimbra8.7b2ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-date-calc + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-prepflog (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/prepflog/zimbra-prepflog/debian/compat b/thirdparty/prepflog/zimbra-prepflog/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/prepflog/zimbra-prepflog/debian/compat +++ b/thirdparty/prepflog/zimbra-prepflog/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/prepflog/zimbra-prepflog/debian/control b/thirdparty/prepflog/zimbra-prepflog/debian/control index 79f481b85..3aaefe885 100644 --- a/thirdparty/prepflog/zimbra-prepflog/debian/control +++ b/thirdparty/prepflog/zimbra-prepflog/debian/control @@ -11,7 +11,7 @@ Package: zimbra-prepflog Priority: optional Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, zimbra-base, - zimbra-perl-base, zimbra-perl-date-calc + zimbra-perl-base, zimbra-perl-date-calc (>= 6.4-1zimbra8.7b2ZAPPEND) Description: prepflog.pl - Pre-processor for pflogsumm The script sanitizes mail log files that are to be passed to pflogsumm or awstats disregarding the lines relating to the re-injection of messages into postfix. I diff --git a/thirdparty/prepflog/zimbra-prepflog/rpm/SPECS/prepflog.spec b/thirdparty/prepflog/zimbra-prepflog/rpm/SPECS/prepflog.spec index 845988944..837767705 100644 --- a/thirdparty/prepflog/zimbra-prepflog/rpm/SPECS/prepflog.spec +++ b/thirdparty/prepflog/zimbra-prepflog/rpm/SPECS/prepflog.spec @@ -1,11 +1,11 @@ Summary: prepflog.pl - Pre-processor for pflogsumm Name: zimbra-prepflog Version: VERSION -Release: ITERATIONZAPPEND +Release: 1zimbra8.7b2ZAPPEND License: GPL-2 Source: %{name}-%{version}.tar.gz Packager: Zimbra Packaging Services -Requires: zimbra-base, zimbra-perl-base, zimbra-perl-date-calc +Requires: zimbra-base, zimbra-perl-base, zimbra-perl-date-calc >= 6.4-1zimbra8.7b2ZAPPEND AutoReqProv: no URL: http://www.voipsupport.it/pmwiki/pmwiki.php?n=Linux.PrePflog @@ -18,6 +18,10 @@ party virus checker. If your postfix setup requires additional content filters resulting in 3 or more passages of the same message through postfix, this script will not work for you. +%changelog +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.7b2ZAPPEND +- Updated dependency zimbra-perl-date-calc + %define debug_package %{nil} %prep diff --git a/thirdparty/rabbitmq-server/zimbra-rabbitmq-server/debian/compat b/thirdparty/rabbitmq-server/zimbra-rabbitmq-server/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/rabbitmq-server/zimbra-rabbitmq-server/debian/compat +++ b/thirdparty/rabbitmq-server/zimbra-rabbitmq-server/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/rrdtool/Makefile b/thirdparty/rrdtool/Makefile index f6da5d3f6..45bfbb2d2 100644 --- a/thirdparty/rrdtool/Makefile +++ b/thirdparty/rrdtool/Makefile @@ -6,7 +6,7 @@ pvers := $(RRDTOOL_VERSION) pname := rrdtool pfile := $(pname)-$(pvers).tar.gz psrc_file := $(SRC_DIR)/$(pfile) -purl := https://oss.oetiker.ch/rrdtool/pub/$(pfile) +purl := https://oss.oetiker.ch/rrdtool/pub/archive/$(pfile) zname := zimbra-$(pname) zspec := $(pname).spec diff --git a/thirdparty/rrdtool/zimbra-rrdtool/debian/compat b/thirdparty/rrdtool/zimbra-rrdtool/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/rrdtool/zimbra-rrdtool/debian/compat +++ b/thirdparty/rrdtool/zimbra-rrdtool/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/rrdtool/zimbra-rrdtool/debian/rules b/thirdparty/rrdtool/zimbra-rrdtool/debian/rules index 15372516e..df95948d9 100755 --- a/thirdparty/rrdtool/zimbra-rrdtool/debian/rules +++ b/thirdparty/rrdtool/zimbra-rrdtool/debian/rules @@ -7,7 +7,7 @@ export PKG_CONFIG_PATH=OZCL/pkgconfig export DEB_CFLAGS_MAINT_APPEND=-fPIC %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ diff --git a/thirdparty/rsync/zimbra-rsync/debian/compat b/thirdparty/rsync/zimbra-rsync/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/rsync/zimbra-rsync/debian/compat +++ b/thirdparty/rsync/zimbra-rsync/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/rsync/zimbra-rsync/debian/rules b/thirdparty/rsync/zimbra-rsync/debian/rules index c97cbaebe..7202f38bf 100755 --- a/thirdparty/rsync/zimbra-rsync/debian/rules +++ b/thirdparty/rsync/zimbra-rsync/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ --localstatedir=$(ZIMBRA_HOME)/data/tmp diff --git a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/changelog b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/changelog index cb76f231c..828485e2f 100644 --- a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/changelog +++ b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/changelog @@ -1,15 +1,18 @@ -zimbra-spamassassin-rules (1.0.0-1zimbra8.8b6ZAPPEND) unstable; urgency=low +zimbra-spamassassin-rules (1.0.0-1zimbra8.8b7ZAPPEND) unstable; urgency=low * Updated spamassassin -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 - -zimbra-spamassassin-rules (1.0.0-1zimbra8.8b5ZAPPEND) unstable; urgency=low +zimbra-spamassassin-rules (1.0.0-1zimbra8.8b6ZAPPEND) unstable; urgency=low * Fix ZCS-11117, Upgraded spamassassin to 3.4.6 -- Zimbra Packaging Services Mon, 28 Mar 2022 22:26:24 +0000 +zimbra-spamassassin-rules (1.0.0-1zimbra8.8b5ZAPPEND) unstable; urgency=low + + * Updated dependency zimbra-perl-mail-spamassassin + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 zimbra-spamassassin-rules (1.0.0-1zimbra8.8b4ZAPPEND) unstable; urgency=low * Upgraded spamAssasin to 3.4.5 diff --git a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/compat b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/compat +++ b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/rpm/SPECS/spamassassin-rules.spec b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/rpm/SPECS/spamassassin-rules.spec index 151cfff24..f02a50f1c 100644 --- a/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/rpm/SPECS/spamassassin-rules.spec +++ b/thirdparty/spamassassin-rules/zimbra-spamassassin-rules/rpm/SPECS/spamassassin-rules.spec @@ -1,7 +1,7 @@ Summary: Default ruleset for SpamAssassin Name: zimbra-spamassassin-rules Version: 1.0.0 -Release: 1zimbra8.8b6ZAPPEND +Release: 1zimbra8.8b7ZAPPEND License: Apache-2.0 Requires: zimbra-mta-base, zimbra-perl-mail-spamassassin >= 3.4.6-1zimbra8.8b4ZAPPEND Packager: Zimbra Packaging Services @@ -14,10 +14,12 @@ AutoReqProv: no Default ruleset for SpamAssassin %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.8b6ZAPPEND +* Tue Jun 13 2023 Zimbra Packaging Services - VERSION-1zimbra8.8b7ZAPPEND - Updated spamassassin -* Mon Mar 28 2022 Zimbra Packaging Services - VERSION-1zimbra8.8b5ZAPPEND +* Mon Mar 28 2022 Zimbra Packaging Services - VERSION-1zimbra8.8b6ZAPPEND - Fix ZCS-11117, Upgraded spamassassin to 3.4.6 +* Tue Aug 10 2021 Zimbra Packaging Services - VERSION-1zimbra8.8b5ZAPPEND +-Updated dependency zimbra-perl-mail-spamassassin * Wed Apr 08 2021 Zimbra Packaging Services - VERSION-1zimbra8.8b4ZAPPEND -Upgraded spamAssasin to 3.4.5 * Sat Dec 05 2020 Zimbra Packaging Services - VERSION-1zimbra8.8b3ZAPPEND diff --git a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/changelog b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/changelog index 5b0c7f45f..b8ad997be 100644 --- a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/changelog +++ b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/changelog @@ -1,3 +1,9 @@ +zimbra-tcmalloc (VERSION-ITERATIONZAPPEND) unstable; urgency=medium + + * Upgraded tcmalloc to 2.13 + + -- Zimbra Packaging Services Tue, 26 Sep 2023 22:26:24 +0000 + zimbra-tcmalloc (VERSION-ITERATIONZAPPEND) unstable; urgency=medium * Initial Release. diff --git a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/compat b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/compat +++ b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/rules b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/rules index 504f83dd2..864bda61e 100755 --- a/thirdparty/tcmalloc/zimbra-tcmalloc/debian/rules +++ b/thirdparty/tcmalloc/zimbra-tcmalloc/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_OPTIONS=nocheck export DEB_LDFLAGS_MAINT_APPEND=-Wl,-rpath,OZCL %: - dh $@ + dh $@ --without autoreconf override_dh_auto_configure: ./configure --prefix=OZC \ diff --git a/thirdparty/tcmalloc/zimbra-tcmalloc/rpm/SPECS/tcmalloc.spec b/thirdparty/tcmalloc/zimbra-tcmalloc/rpm/SPECS/tcmalloc.spec index 0f52f28fe..cae673259 100644 --- a/thirdparty/tcmalloc/zimbra-tcmalloc/rpm/SPECS/tcmalloc.spec +++ b/thirdparty/tcmalloc/zimbra-tcmalloc/rpm/SPECS/tcmalloc.spec @@ -49,3 +49,7 @@ OZCL/*.so OZCI OZCL/*.la OZCL/pkgconfig + +%changelog +* Tue Sep 26 2023 Zimbra Packaging Services - VERSION-1zimbra8.7b1ZAPPEND +- Upgraded tcmalloc to 2.13 diff --git a/thirdparty/unbound/zimbra-unbound/debian/compat b/thirdparty/unbound/zimbra-unbound/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/unbound/zimbra-unbound/debian/compat +++ b/thirdparty/unbound/zimbra-unbound/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/thirdparty/zeromq/zimbra-zeromq/debian/compat b/thirdparty/zeromq/zimbra-zeromq/debian/compat index ec635144f..f599e28b8 100644 --- a/thirdparty/zeromq/zimbra-zeromq/debian/compat +++ b/thirdparty/zeromq/zimbra-zeromq/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/versions.def b/versions.def index e56c96a01..81f1ab7bd 100644 --- a/versions.def +++ b/versions.def @@ -6,7 +6,7 @@ APR_VERSION := 1.5.2 APR_UTIL_VERSION := 1.6.1 -ASPELL_VERSION := 0.60.7-rc1 +ASPELL_VERSION := 0.60.8 ASPELL-AR_VERSION := 1.2-0 ASPELL-AR_NORM := 1.2.0 ASPELL-CA_VERSION := 2.1.5-1 @@ -40,7 +40,7 @@ ASPELL-SV_NORM := 0.51.0 BDB_VERSION := 5.2.42 -BSD_VERSION := 0.7.0 +BSD_VERSION := 0.11.7 CBPOLICYD_VERSION := 2.1.0-beta @@ -85,16 +85,16 @@ LDAP_VERSION := 2.5.17 LIBART_VERSION := 2.3.21 -LIBEVENT_VERSION := 2.0.22 +LIBEVENT_VERSION := 2.1.12 LIBTOOL_VERSION := 2.2.6b LOGWATCH_AMAVIS := 1.51.03 LOGWATCH_POSTFIX := 1.40.03 -MEMCACHED_VERSION := 1.4.37 +MEMCACHED_VERSION := 1.6.21 -MARIADB_VERSION := 10.4.13 +MARIADB_VERSION := 10.1.25 MAVEN_VERSION := 3.3.9 @@ -129,7 +129,7 @@ SODIUM_VERSION := 1.0.19 SNMP_VERSION := 5.8 -TCMALLOC_VERSION := 2.4 +TCMALLOC_VERSION := 2.13 UNBOUND_VERSION := 1.17.1 diff --git a/zimbra/apache-base/zimbra-apache-base/debian/compat b/zimbra/apache-base/zimbra-apache-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/apache-base/zimbra-apache-base/debian/compat +++ b/zimbra/apache-base/zimbra-apache-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/apache-components/zimbra-apache-components/debian/compat b/zimbra/apache-components/zimbra-apache-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/apache-components/zimbra-apache-components/debian/compat +++ b/zimbra/apache-components/zimbra-apache-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/base/zimbra-base/debian/compat b/zimbra/base/zimbra-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/base/zimbra-base/debian/compat +++ b/zimbra/base/zimbra-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/core-components/zimbra-core-components/debian/compat b/zimbra/core-components/zimbra-core-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/core-components/zimbra-core-components/debian/compat +++ b/zimbra/core-components/zimbra-core-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/dnscache-base/zimbra-dnscache-base/debian/compat b/zimbra/dnscache-base/zimbra-dnscache-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/dnscache-base/zimbra-dnscache-base/debian/compat +++ b/zimbra/dnscache-base/zimbra-dnscache-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/dnscache-components/zimbra-dnscache-components/debian/compat b/zimbra/dnscache-components/zimbra-dnscache-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/dnscache-components/zimbra-dnscache-components/debian/compat +++ b/zimbra/dnscache-components/zimbra-dnscache-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/ldap-base/zimbra-ldap-base/debian/compat b/zimbra/ldap-base/zimbra-ldap-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/ldap-base/zimbra-ldap-base/debian/compat +++ b/zimbra/ldap-base/zimbra-ldap-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/ldap-components/zimbra-ldap-components/debian/compat b/zimbra/ldap-components/zimbra-ldap-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/ldap-components/zimbra-ldap-components/debian/compat +++ b/zimbra/ldap-components/zimbra-ldap-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/memcached-base/zimbra-memcached-base/debian/compat b/zimbra/memcached-base/zimbra-memcached-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/memcached-base/zimbra-memcached-base/debian/compat +++ b/zimbra/memcached-base/zimbra-memcached-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/mta-base/zimbra-mta-base/debian/compat b/zimbra/mta-base/zimbra-mta-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/mta-base/zimbra-mta-base/debian/compat +++ b/zimbra/mta-base/zimbra-mta-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/mta-components/zimbra-mta-components/debian/changelog b/zimbra/mta-components/zimbra-mta-components/debian/changelog index b64f361a0..f96a77514 100644 --- a/zimbra/mta-components/zimbra-mta-components/debian/changelog +++ b/zimbra/mta-components/zimbra-mta-components/debian/changelog @@ -72,9 +72,9 @@ zimbra-mta-components (1.0.15-1zimbra8.8b1ZAPPEND) unstable; urgency=medium zimbra-mta-components (1.0.14-1zimbra8.8b1ZAPPEND) unstable; urgency=medium - * Upgraded postfix to 3.6.1 + * Updated dependencies zimbra-perl-mail-spamassassin, zimbra-spamassassin-rules, cluebringer and Upgraded postfix to 3.6.1 - -- Zimbra Packaging Services Tue, 17 Aug 2021 22:26:24 +0000 + -- Zimbra Packaging Services Wed, 11 Aug 2021 00:00:00 +0000 zimbra-mta-components (1.0.13-1zimbra8.8b1ZAPPEND) unstable; urgency=medium diff --git a/zimbra/mta-components/zimbra-mta-components/debian/compat b/zimbra/mta-components/zimbra-mta-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/mta-components/zimbra-mta-components/debian/compat +++ b/zimbra/mta-components/zimbra-mta-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/mta-components/zimbra-mta-components/debian/control b/zimbra/mta-components/zimbra-mta-components/debian/control index e7aea3a06..746725660 100644 --- a/zimbra/mta-components/zimbra-mta-components/debian/control +++ b/zimbra/mta-components/zimbra-mta-components/debian/control @@ -9,11 +9,11 @@ Package: zimbra-mta-components Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, sqlite3, zimbra-mta-base, zimbra-altermime, zimbra-amavisd (>= 2.13.0-1zimbra8.7b2ZAPPEND), - zimbra-clamav (>= 1.0.6-1zimbra8.8b4ZAPPEND), - zimbra-clamav-db (>= 1.0.0-1zimbra8.7b2ZAPPEND), zimbra-cluebringer, zimbra-mariadb (>= 10.1.25-1zimbra8.7b3ZAPPEND), - zimbra-opendkim (>= 2.10.3-1zimbra8.7b7ZAPPEND), zimbra-perl-mail-spamassassin (>= 3.4.6-1zimbra8.8b4ZAPPEND), - zimbra-postfix (>= 3.6.14-1zimbra8.7b5ZAPPEND), - zimbra-spamassassin-rules (>= 1.0.0-1zimbra8.8b6ZAPPEND) + zimbra-clamav (>= 1.0.1-1zimbra8.8b4ZAPPEND), + zimbra-clamav-db (>= 1.0.0-1zimbra8.7b2ZAPPEND), zimbra-cluebringer (>= 2.1.0.0.cf484f1b93cf9965886cc89d33bdeee9c26426cb-1zimbra8.7b2ZAPPEND), zimbra-mariadb (>= 10.1.25-1zimbra8.7b3ZAPPEND), + zimbra-opendkim (>= 2.10.3-1zimbra8.7b7ZAPPEND), zimbra-perl-mail-spamassassin (>= 3.4.6-1zimbra8.8b5ZAPPEND), + zimbra-postfix (>= 3.6.1-1zimbra8.7b5ZAPPEND), + zimbra-spamassassin-rules (>= 1.0.0-1zimbra8.8b7ZAPPEND) Description: Zimbra components for MTA package Zimbra mta components pulls in all the packages used by zimbra-mta diff --git a/zimbra/mta-components/zimbra-mta-components/rpm/SPECS/mta-components.spec b/zimbra/mta-components/zimbra-mta-components/rpm/SPECS/mta-components.spec index 613c2a28a..4e9036ccc 100644 --- a/zimbra/mta-components/zimbra-mta-components/rpm/SPECS/mta-components.spec +++ b/zimbra/mta-components/zimbra-mta-components/rpm/SPECS/mta-components.spec @@ -4,11 +4,12 @@ Version: 10.1.0 Release: 1zimbra8.8b1ZAPPEND License: GPL-2 Requires: sqlite, zimbra-mta-base, zimbra-altermime, zimbra-amavisd >= 2.13.0-1zimbra8.7b2ZAPPEND -Requires: zimbra-clamav >= 1.0.6-1zimbra8.8b4ZAPPEND, zimbra-clamav-db >= 1.0.0-1zimbra8.7b2ZAPPEND -Requires: zimbra-cluebringer, zimbra-mariadb >= 10.1.25-1zimbra8.7b3ZAPPEND -Requires: zimbra-opendkim >= 2.10.3-1zimbra8.7b7ZAPPEND, zimbra-perl-mail-spamassassin >= 3.4.6-1zimbra8.8b4ZAPPEND -Requires: zimbra-postfix >= 3.6.14-1zimbra8.7b5ZAPPEND -Requires: zimbra-spamassassin-rules >= 1.0.0-1zimbra8.8b6ZAPPEND +Requires: zimbra-clamav >= 1.0.1-1zimbra8.8b4ZAPPEND, zimbra-clamav-db >= 1.0.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-cluebringer >= 2.1.0.0.cf484f1b93cf9965886cc89d33bdeee9c26426cb-1zimbra8.7b2ZAPPEND +Requires: zimbra-mariadb >= 10.1.25-1zimbra8.7b3ZAPPEND +Requires: zimbra-opendkim >= 2.10.3-1zimbra8.7b7ZAPPEND, zimbra-perl-mail-spamassassin >= 3.4.6-1zimbra8.8b5ZAPPEND +Requires: zimbra-postfix >= 3.6.1-1zimbra8.7b5ZAPPEND +Requires: zimbra-spamassassin-rules >= 1.0.0-1zimbra8.8b7ZAPPEND Packager: Zimbra Packaging Services Group: Development/Languages AutoReqProv: no @@ -44,8 +45,8 @@ zimbra-mta - Fix ZBUG-1457, updated zimbra-amavisd * Fri May 20 2022 Zimbra Packaging Services - 1.0.15 - Updated zimbra-clamav,zimbra-spamassassin-rules,zimbra-perl-mail-spamassassin -* Tue Aug 17 2021 Zimbra Packaging Services - 1.0.14 -- Upgraded postfix to 3.6.1 +* Wed Aug 11 2021 Zimbra Packaging Services - 1.0.14 +- Updated perl-mail-spamassassin,spamassassin-rules,cluebringer and Upgraded postfix to 3.6.1 * Thu Apr 15 2021 Zimbra Packaging Services - 1.0.13 - Updated clamav to 0.103.2 * Thu Apr 08 2021 Zimbra Packaging Services - 1.0.12 diff --git a/zimbra/os-requirements/UBUNTU.def b/zimbra/os-requirements/UBUNTU.def index cbb0c1a01..e63f4af93 100644 --- a/zimbra/os-requirements/UBUNTU.def +++ b/zimbra/os-requirements/UBUNTU.def @@ -1,5 +1,6 @@ -osdeps.UBUNTU20_64 := libgmp10, libperl5.30 -osdeps.UBUNTU18_64 := libgmp10, libperl5.26 -osdeps.UBUNTU16_64 := libgmp10, libperl5.22 -osdeps.UBUNTU14_64 := libgmp10, libperl5.18 -osdeps.UBUNTU12_64 := libgmp3c2, libperl5.14 +osdeps.UBUNTU22_64 := libgmp10, libperl5.34, libidn12 +osdeps.UBUNTU20_64 := libgmp10, libperl5.30, libidn11 +osdeps.UBUNTU18_64 := libgmp10, libperl5.26, libidn11 +osdeps.UBUNTU16_64 := libgmp10, libperl5.22, libidn11 +osdeps.UBUNTU14_64 := libgmp10, libperl5.18, libidn11 +osdeps.UBUNTU12_64 := libgmp3c2, libperl5.14, libidn11 diff --git a/zimbra/os-requirements/zimbra-os-requirements/debian/compat b/zimbra/os-requirements/zimbra-os-requirements/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/os-requirements/zimbra-os-requirements/debian/compat +++ b/zimbra/os-requirements/zimbra-os-requirements/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/os-requirements/zimbra-os-requirements/debian/control b/zimbra/os-requirements/zimbra-os-requirements/debian/control index 767601088..c101b3c71 100644 --- a/zimbra/os-requirements/zimbra-os-requirements/debian/control +++ b/zimbra/os-requirements/zimbra-os-requirements/debian/control @@ -8,7 +8,7 @@ Standards-Version: 3.9.5 Package: zimbra-os-requirements Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, - coreutils, file, libaio1, libexpat1, libidn11, libpcre3, libstdc++6, + coreutils, file, libaio1, libexpat1, libpcre3, libstdc++6, lsb-release, netcat-openbsd, pax, perl, procps, resolvconf, sudo, sysstat, unzip, zimbra-base, libsocket6-perl, rsyslog, net-tools, libcap2-bin, OSDEPS diff --git a/zimbra/osl/zimbra-osl/debian/compat b/zimbra/osl/zimbra-osl/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/osl/zimbra-osl/debian/compat +++ b/zimbra/osl/zimbra-osl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/perl-base/zimbra-perl-base/debian/compat b/zimbra/perl-base/zimbra-perl-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/perl-base/zimbra-perl-base/debian/compat +++ b/zimbra/perl-base/zimbra-perl-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/perl/zimbra-perl/debian/changelog b/zimbra/perl/zimbra-perl/debian/changelog index 195d524b9..6a46fae1c 100644 --- a/zimbra/perl/zimbra-perl/debian/changelog +++ b/zimbra/perl/zimbra-perl/debian/changelog @@ -1,10 +1,10 @@ -zimbra-perl (1.0.9-1zimbra8.7b1ZAPPEND) unstable; urgency=medium +zimbra-perl (1.0.10-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Updated perl-net-ldapapi, perl-zmq-libzmq3 -- Zimbra Packaging Services Mon, 04 Mar 2024 00:00:00 +0000 -zimbra-perl (1.0.8-1zimbra8.7b1ZAPPEND) unstable; urgency=medium +zimbra-perl (1.0.9-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Updated perl-net-ssleay, perl-dbd-mysql, perl-crypt-openssl-random * Updated perl-crypt-openssl-rsa, perl-io-socket-ssl, perl-net-http @@ -13,18 +13,27 @@ zimbra-perl (1.0.8-1zimbra8.7b1ZAPPEND) unstable; urgency=medium -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 -zimbra-perl (1.0.7-1zimbra8.7b1ZAPPEND) unstable; urgency=medium +zimbra-perl (1.0.8-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Upgraded Date-Manip to 6.90 -- Zimbra Packaging Services Tue, 7 Feb 2023 00:00:00 +0000 -zimbra-perl (1.0.6-1zimbra8.7b1ZAPPEND) unstable; urgency=medium +zimbra-perl (1.0.7-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Upgraded Compress::Raw::Zlib to 2.103 -- Zimbra Packaging Services Thu, 19 Jan 2023 00:00:00 +0000 +zimbra-perl (1.0.6-1zimbra8.7b1ZAPPEND) unstable; urgency=medium + + * Updated archive-zip,bit-vector,carp-clan,compress-raw-bzip2,compress-raw-zlib,config-inifiles,date-calc + * Updated dbd-mysql,http-cookies,http-daemon,http-message,http-negotiate,innotop + * Updated io-compress,io-socket-ssl,libwww,list-moreutils,lwp-protocol-https + * Updated net-http,net-server,soap-lite,swatchdog,xml-parser,xml-sax-expat,xml-simple + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-perl (1.0.5-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Updated perl-net-ssleay, perl-dbd-mysql, perl-crypt-openssl-random diff --git a/zimbra/perl/zimbra-perl/debian/compat b/zimbra/perl/zimbra-perl/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/perl/zimbra-perl/debian/compat +++ b/zimbra/perl/zimbra-perl/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/perl/zimbra-perl/debian/control b/zimbra/perl/zimbra-perl/debian/control index b97a10f3d..cc68bf094 100644 --- a/zimbra/perl/zimbra-perl/debian/control +++ b/zimbra/perl/zimbra-perl/debian/control @@ -7,36 +7,36 @@ Standards-Version: 3.9.5 Package: zimbra-perl Architecture: all -Depends: zimbra-perl-base, zimbra-perl-archive-zip, zimbra-perl-berkeleydb, - zimbra-perl-bit-vector, zimbra-perl-cache-fastmmap, zimbra-perl-canary-stability, - zimbra-perl-carp-clan, zimbra-perl-class-inspector, zimbra-perl-compress-raw-bzip2, - zimbra-perl-compress-raw-zlib (>= 2.103-1zimbra8.7b1ZAPPEND), zimbra-perl-config-inifiles, zimbra-perl-convert-asn1, +Depends: zimbra-perl-base, zimbra-perl-archive-zip (>= 1.53-1zimbra8.7b2ZAPPEND), zimbra-perl-berkeleydb, + zimbra-perl-bit-vector (>= 7.4-1zimbra8.7b2ZAPPEND), zimbra-perl-cache-fastmmap, zimbra-perl-canary-stability, + zimbra-perl-carp-clan (>= 6.08-1zimbra8.7b1ZAPPEND), zimbra-perl-class-inspector, zimbra-perl-compress-raw-bzip2 (>= 2.093-1zimbra8.7b1ZAPPEND), + zimbra-perl-compress-raw-zlib (>= 2.103-1zimbra8.7b1ZAPPEND), zimbra-perl-config-inifiles (>= 2.86-1zimbra8.7b2ZAPPEND), zimbra-perl-convert-asn1, zimbra-perl-convert-binhex, zimbra-perl-convert-tnef, zimbra-perl-convert-uulib, zimbra-perl-crypt-openssl-random (>= 0.11-1zimbra8.7b4ZAPPEND), zimbra-perl-crypt-openssl-rsa (>= 0.33-1zimbra8.8b1ZAPPEND), zimbra-perl-crypt-saltedhash, - zimbra-perl-data-uuid, zimbra-perl-date-calc, zimbra-perl-date-manip (>= 6.90-1zimbra8.7b1ZAPPEND), zimbra-perl-dbd-mysql (>= 4.050-1zimbra8.7b5ZAPPEND), + zimbra-perl-data-uuid, zimbra-perl-date-calc (>= 6.4-1zimbra8.7b2ZAPPEND), zimbra-perl-date-manip (>= 6.90-1zimbra8.7b1ZAPPEND), zimbra-perl-dbd-mysql (>= 4.050-1zimbra8.7b5ZAPPEND), zimbra-perl-dbd-sqlite, zimbra-perl-db-file, zimbra-perl-dbi, zimbra-perl-digest-hmac, zimbra-perl-digest-sha1, zimbra-perl-email-date-format, zimbra-perl-encode-detect, zimbra-perl-encode-locale, zimbra-perl-error, zimbra-perl-exporter-tiny, zimbra-perl-zmq-libzmq3 (>= 1.19-1zimbra8.7b2ZAPPEND), zimbra-perl-file-grep, zimbra-perl-file-libmagic, zimbra-perl-file-listing, zimbra-perl-filesys-df, zimbra-perl-file-tail, - zimbra-perl-geography-countries, zimbra-perl-html-parser, zimbra-perl-http-cookies, zimbra-perl-http-daemon, - zimbra-perl-http-date, zimbra-perl-http-message, zimbra-perl-http-negotiate, zimbra-perl-innotop (>= 1.9.1-1zimbra8.7b4ZAPPEND), - zimbra-perl-io-compress, zimbra-perl-io-html, zimbra-perl-io-sessiondata, zimbra-perl-io-socket-inet6, - zimbra-perl-io-socket-ip, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b3ZAPPEND), zimbra-perl-io-stringy, zimbra-perl-ip-country, + zimbra-perl-geography-countries, zimbra-perl-html-parser, zimbra-perl-http-cookies (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-http-daemon (>= 6.01-1zimbra8.7b2ZAPPEND), + zimbra-perl-http-date, zimbra-perl-http-message (>= 6.11-1zimbra8.7b2ZAPPEND), zimbra-perl-http-negotiate (>= 6.01-1zimbra8.7b2ZAPPEND), zimbra-perl-innotop (>= 1.9.1-1zimbra8.7b5ZAPPEND), + zimbra-perl-io-compress (>= 2.093-1zimbra8.7b1ZAPPEND), zimbra-perl-io-html, zimbra-perl-io-sessiondata, zimbra-perl-io-socket-inet6, + zimbra-perl-io-socket-ip, zimbra-perl-io-socket-ssl (>= 2.083-1zimbra8.7b4ZAPPEND), zimbra-perl-io-stringy, zimbra-perl-ip-country, zimbra-perl-json-pp, - zimbra-perl-libwww (>= 6.13-1zimbra8.7b4ZAPPEND), zimbra-perl-list-moreutils, zimbra-perl-lwp-mediatypes, - zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b3ZAPPEND), + zimbra-perl-libwww (>= 6.13-1zimbra8.7b5ZAPPEND), zimbra-perl-list-moreutils (>= 0.428-1zimbra8.7b1ZAPPEND), zimbra-perl-lwp-mediatypes, + zimbra-perl-lwp-protocol-https (>= 6.10-1zimbra8.7b4ZAPPEND), zimbra-perl-mail-dkim (>= 0.43-1zimbra8.8b1ZAPPEND), zimbra-perl-mail-spf, zimbra-perl-mailtools, zimbra-perl-math-bigint, zimbra-perl-mime-lite, zimbra-perl-mime-tools, zimbra-perl-mime-types, zimbra-perl-mozilla-ca, zimbra-perl-netaddr-ip, zimbra-perl-net-cidr, zimbra-perl-net-cidr-lite, zimbra-perl-net-dns, zimbra-perl-net-dns-resolver-programmable, - zimbra-perl-net-http (>= 6.09-1zimbra8.7b4ZAPPEND), zimbra-perl-net-ldap, zimbra-perl-net-ldapapi (>= 3.0.3-1zimbra8.7b3ZAPPEND), zimbra-perl-net-libidn, - zimbra-perl-net-server, + zimbra-perl-net-http (>= 6.09-1zimbra8.7b5ZAPPEND), zimbra-perl-net-ldap, zimbra-perl-net-ldapapi (>= 3.0.3-1zimbra8.7b3ZAPPEND), zimbra-perl-net-libidn, + zimbra-perl-net-server (>= 2.009-1zimbra8.7b1ZAPPEND), zimbra-perl-net-ssleay (>= 1.92-1zimbra8.8b1ZAPPEND), zimbra-perl-parent, zimbra-perl-proc-processtable, - zimbra-perl-soap-lite (>= 1.19-1zimbra8.7b4ZAPPEND), zimbra-perl-socket, - zimbra-perl-socket-linux, zimbra-perl-swatchdog, zimbra-perl-task-weaken, zimbra-perl-term-readkey, zimbra-perl-timedate, + zimbra-perl-soap-lite (>= 1.19-1zimbra8.7b5ZAPPEND), zimbra-perl-socket, + zimbra-perl-socket-linux, zimbra-perl-swatchdog (>= 3.2.4-1zimbra8.7b2ZAPPEND), zimbra-perl-task-weaken, zimbra-perl-term-readkey, zimbra-perl-timedate, zimbra-perl-unix-getrusage, zimbra-perl-unix-syslog, zimbra-perl-uri, zimbra-perl-www-robotrules, - zimbra-perl-xml-namespacesupport, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b4ZAPPEND), zimbra-perl-xml-parser-lite, zimbra-perl-xml-sax, - zimbra-perl-xml-sax-base, zimbra-perl-xml-sax-expat (>= 0.51-1zimbra8.7b4ZAPPEND), zimbra-perl-xml-simple (>= 2.25-1zimbra8.7b3ZAPPEND), + zimbra-perl-xml-namespacesupport, zimbra-perl-xml-parser (>= 2.44-1zimbra8.7b5ZAPPEND), zimbra-perl-xml-parser-lite, zimbra-perl-xml-sax, + zimbra-perl-xml-sax-base, zimbra-perl-xml-sax-expat (>= 0.51-1zimbra8.7b5ZAPPEND), zimbra-perl-xml-simple (>= 2.25-1zimbra8.7b4ZAPPEND), zimbra-perl-zmq-constants Description: Zimbra Perl Zimbra Perl is a meta package that can be used to install most all diff --git a/zimbra/perl/zimbra-perl/rpm/SPECS/perl.spec b/zimbra/perl/zimbra-perl/rpm/SPECS/perl.spec index 7cfa47d74..016d3c17c 100644 --- a/zimbra/perl/zimbra-perl/rpm/SPECS/perl.spec +++ b/zimbra/perl/zimbra-perl/rpm/SPECS/perl.spec @@ -1,44 +1,47 @@ Summary: Zimbra Perl Name: zimbra-perl -Version: 1.0.9 +Version: 1.0.10 Release: 1zimbra8.7b1ZAPPEND License: GPL-2 Packager: Zimbra Packaging Services Group: Development/Languages -Requires: zimbra-perl-base, zimbra-perl-archive-zip, zimbra-perl-berkeleydb -Requires: zimbra-perl-bit-vector, zimbra-perl-cache-fastmmap, zimbra-perl-canary-stability -Requires: zimbra-perl-carp-clan, zimbra-perl-class-inspector, zimbra-perl-compress-raw-bzip2 -Requires: zimbra-perl-compress-raw-zlib >= 2.103-1zimbra8.7b1ZAPPEND, zimbra-perl-config-inifiles, zimbra-perl-convert-asn1 +Requires: zimbra-perl-base, zimbra-perl-archive-zip >= 1.53-1zimbra8.7b2ZAPPEND, zimbra-perl-berkeleydb +Requires: zimbra-perl-bit-vector >= 7.4-1zimbra8.7b2ZAPPEND, zimbra-perl-cache-fastmmap, zimbra-perl-canary-stability +Requires: zimbra-perl-carp-clan >= 6.08-1zimbra8.7b1ZAPPEND, zimbra-perl-class-inspector +Requires: zimbra-perl-compress-raw-bzip2 >= 2.093-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-compress-raw-zlib >= 2.103-1zimbra8.7b1ZAPPEND, zimbra-perl-config-inifiles >= 2.86-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-convert-asn1 Requires: zimbra-perl-convert-binhex, zimbra-perl-convert-tnef, zimbra-perl-convert-uulib Requires: zimbra-perl-crypt-openssl-random >= 0.11-1zimbra8.7b4ZAPPEND, zimbra-perl-crypt-openssl-rsa >= 0.33-1zimbra8.8b1ZAPPEND Requires: zimbra-perl-crypt-saltedhash -Requires: zimbra-perl-data-uuid, zimbra-perl-date-calc, zimbra-perl-date-manip >= 6.90-1zimbra8.7b1ZAPPEND +Requires: zimbra-perl-data-uuid, zimbra-perl-date-calc >= 6.4-1zimbra8.7b2ZAPPEND, zimbra-perl-date-manip >= 6.90-1zimbra8.7b1ZAPPEND Requires: zimbra-perl-dbd-mysql >= 4.050-1zimbra8.7b5ZAPPEND Requires: zimbra-perl-dbd-sqlite, zimbra-perl-db-file, zimbra-perl-dbi, zimbra-perl-digest-hmac Requires: zimbra-perl-digest-sha1, zimbra-perl-email-date-format, zimbra-perl-encode-detect Requires: zimbra-perl-encode-locale, zimbra-perl-error, zimbra-perl-exporter-tiny, zimbra-perl-zmq-libzmq3 >= 1.19-1zimbra8.7b2ZAPPEND Requires: zimbra-perl-file-grep, zimbra-perl-file-libmagic, zimbra-perl-file-listing, zimbra-perl-filesys-df -Requires: zimbra-perl-file-tail, zimbra-perl-geography-countries, zimbra-perl-html-parser, zimbra-perl-http-cookies -Requires: zimbra-perl-http-daemon, zimbra-perl-http-date, zimbra-perl-http-message, zimbra-perl-http-negotiate -Requires: zimbra-perl-innotop >= 1.9.1-1zimbra8.7b4ZAPPEND -Requires: zimbra-perl-io-compress, zimbra-perl-io-html, zimbra-perl-io-sessiondata, zimbra-perl-io-socket-inet6 -Requires: zimbra-perl-io-socket-ip, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b3ZAPPEND, zimbra-perl-io-stringy, zimbra-perl-ip-country +Requires: zimbra-perl-file-tail, zimbra-perl-geography-countries, zimbra-perl-html-parser, zimbra-perl-http-cookies >= 6.01-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-http-daemon >= 6.01-1zimbra8.7b2ZAPPEND, zimbra-perl-http-date, zimbra-perl-http-message >= 6.11-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-http-negotiate >= 6.01-1zimbra8.7b2ZAPPEND +Requires: zimbra-perl-innotop >= 1.9.1-1zimbra8.7b5ZAPPEND +Requires: zimbra-perl-io-compress >= 2.093-1zimbra8.7b1ZAPPEND, zimbra-perl-io-html, zimbra-perl-io-sessiondata, zimbra-perl-io-socket-inet6 +Requires: zimbra-perl-io-socket-ip, zimbra-perl-io-socket-ssl >= 2.083-1zimbra8.7b4ZAPPEND, zimbra-perl-io-stringy, zimbra-perl-ip-country Requires: zimbra-perl-json-pp -Requires: zimbra-perl-libwww >= 6.13-1zimbra8.7b4ZAPPEND, zimbra-perl-list-moreutils, zimbra-perl-lwp-mediatypes -Requires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b3ZAPPEND +Requires: zimbra-perl-libwww >= 6.13-1zimbra8.7b5ZAPPEND, zimbra-perl-list-moreutils >= 0.428-1zimbra8.7b1ZAPPEND, zimbra-perl-lwp-mediatypes +Requires: zimbra-perl-lwp-protocol-https >= 6.10-1zimbra8.7b4ZAPPEND Requires: zimbra-perl-mail-dkim >= 0.43-1zimbra8.8b1ZAPPEND, zimbra-perl-mail-spf, zimbra-perl-mailtools, zimbra-perl-math-bigint Requires: zimbra-perl-mime-lite Requires: zimbra-perl-mime-tools, zimbra-perl-mime-types, zimbra-perl-mozilla-ca, zimbra-perl-netaddr-ip Requires: zimbra-perl-net-cidr, zimbra-perl-net-cidr-lite, zimbra-perl-net-dns, zimbra-perl-net-dns-resolver-programmable -Requires: zimbra-perl-net-http >= 6.09-1zimbra8.7b4ZAPPEND, zimbra-perl-net-ldap, zimbra-perl-net-ldapapi >= 3.0.3-1zimbra8.7b3ZAPPEND +Requires: zimbra-perl-net-http >= 6.09-1zimbra8.7b5ZAPPEND, zimbra-perl-net-ldap, zimbra-perl-net-ldapapi >= 3.0.3-1zimbra8.7b3ZAPPEND Requires: zimbra-perl-net-libidn -Requires: zimbra-perl-net-server +Requires: zimbra-perl-net-server >= 2.009-1zimbra8.7b1ZAPPEND Requires: zimbra-perl-net-ssleay >= 1.92-1zimbra8.8b1ZAPPEND, zimbra-perl-parent, zimbra-perl-proc-processtable -Requires: zimbra-perl-soap-lite >= 1.19-1zimbra8.7b4ZAPPEND, zimbra-perl-socket -Requires: zimbra-perl-socket-linux, zimbra-perl-swatchdog, zimbra-perl-task-weaken, zimbra-perl-term-readkey, zimbra-perl-timedate +Requires: zimbra-perl-soap-lite >= 1.19-1zimbra8.7b5ZAPPEND, zimbra-perl-socket +Requires: zimbra-perl-socket-linux, zimbra-perl-swatchdog >= 3.2.4-1zimbra8.7b2ZAPPEND, zimbra-perl-task-weaken, zimbra-perl-term-readkey, zimbra-perl-timedate Requires: zimbra-perl-unix-getrusage, zimbra-perl-unix-syslog, zimbra-perl-uri, zimbra-perl-www-robotrules -Requires: zimbra-perl-xml-namespacesupport, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b4ZAPPEND, zimbra-perl-xml-parser-lite, zimbra-perl-xml-sax -Requires: zimbra-perl-xml-sax-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b4ZAPPEND, zimbra-perl-xml-simple >= 2.25-1zimbra8.7b3ZAPPEND +Requires: zimbra-perl-xml-namespacesupport, zimbra-perl-xml-parser >= 2.44-1zimbra8.7b5ZAPPEND, zimbra-perl-xml-parser-lite, zimbra-perl-xml-sax +Requires: zimbra-perl-xml-sax-base, zimbra-perl-xml-sax-expat >= 0.51-1zimbra8.7b5ZAPPEND, zimbra-perl-xml-simple >= 2.25-1zimbra8.7b4ZAPPEND Requires: zimbra-perl-zmq-constants AutoReqProv: no @@ -50,16 +53,21 @@ of the Zimbra required perl modules. The current sole exception is the Mail::SpamAssassin module, as that is for MTA nodes only %changelog -* Mon Mar 04 2024 Zimbra Packaging Services - 1.0.9 +* Mon Mar 04 2024 Zimbra Packaging Services - 1.0.10 - Updated perl-net-ldapapi, perl-zmq-libzmq3 -* Tue Jun 13 2023 Zimbra Packaging Services - 1.0.8 +* Tue Jun 13 2023 Zimbra Packaging Services - 1.0.9 - Updated perl-net-ssleay, perl-dbd-mysql, perl-crypt-openssl-random, perl-crypt-openssl-rsa, perl-io-socket-ssl - Updated perl-net-http, perl-libwww, perl-lwp-protocol-https, perl-xml-parser, perl-soap-lite, perl-xml-sax-expat - Updated perl-xml-simple, perl-mail-dkim, perl-innotop -* Tue Feb 07 2023 Zimbra Packaging Services - 1.0.7 +* Tue Feb 07 2023 Zimbra Packaging Services - 1.0.8 - Upgraded Date-Manip to 6.90 -* Thu Jan 19 2023 Zimbra Packaging Services - 1.0.6 +* Thu Jan 19 2023 Zimbra Packaging Services - 1.0.7 - Upgraded Compress::Raw::Zlib to 2.103 +* Tue Aug 10 2021 Zimbra Packaging Services - 1.0.6 +- Updated archive-zip,bit-vector,carp-clan,compress-raw-bzip2,compress-raw-zlib,config-inifiles,date-calc +- Updated dbd-mysql,http-cookies,http-daemon,http-message,http-negotiate,innotop +- Updated io-compress,io-socket-ssl,libwww,list-moreutils,lwp-protocol-https +- Updated net-http,net-server,soap-lite,swatchdog,xml-parser,xml-sax-expat,xml-simple * Sat Dec 05 2020 Zimbra Packaging Services - 1.0.5 - Updated perl-net-ssleay, perl-dbd-mysql, perl-crypt-openssl-random, perl-crypt-openssl-rsa, perl-io-socket-ssl - Updated perl-net-http, perl-libwww, perl-lwp-protocol-https, perl-xml-parser, perl-soap-lite, perl-xml-sax-expat diff --git a/zimbra/proxy-base/zimbra-proxy-base/debian/compat b/zimbra/proxy-base/zimbra-proxy-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/proxy-base/zimbra-proxy-base/debian/compat +++ b/zimbra/proxy-base/zimbra-proxy-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/proxy-components/zimbra-proxy-components/debian/compat b/zimbra/proxy-components/zimbra-proxy-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/proxy-components/zimbra-proxy-components/debian/compat +++ b/zimbra/proxy-components/zimbra-proxy-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/snmp-base/zimbra-snmp-base/debian/compat b/zimbra/snmp-base/zimbra-snmp-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/snmp-base/zimbra-snmp-base/debian/compat +++ b/zimbra/snmp-base/zimbra-snmp-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/snmp-components/zimbra-snmp-components/debian/changelog b/zimbra/snmp-components/zimbra-snmp-components/debian/changelog index 4c810e69f..b1a8e7180 100644 --- a/zimbra/snmp-components/zimbra-snmp-components/debian/changelog +++ b/zimbra/snmp-components/zimbra-snmp-components/debian/changelog @@ -1,9 +1,15 @@ -zimbra-snmp-components (1.0.4-1zimbra8.7b1ZAPPEND) unstable; urgency=medium +zimbra-snmp-components (1.0.5-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-net-snmp -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 +zimbra-snmp-components (1.0.4-1zimbra8.7b1ZAPPEND) unstable; urgency=medium + + * Updated dependency zimbra-net-snmp + + -- Zimbra Packaging Services Tue, 10 Aug 2021 00:00:00 +0000 + zimbra-snmp-components (1.0.3-1zimbra8.7b1ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-net-snmp diff --git a/zimbra/snmp-components/zimbra-snmp-components/debian/compat b/zimbra/snmp-components/zimbra-snmp-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/snmp-components/zimbra-snmp-components/debian/compat +++ b/zimbra/snmp-components/zimbra-snmp-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/snmp-components/zimbra-snmp-components/rpm/SPECS/snmp-components.spec b/zimbra/snmp-components/zimbra-snmp-components/rpm/SPECS/snmp-components.spec index c3c5461dd..840036fbc 100644 --- a/zimbra/snmp-components/zimbra-snmp-components/rpm/SPECS/snmp-components.spec +++ b/zimbra/snmp-components/zimbra-snmp-components/rpm/SPECS/snmp-components.spec @@ -1,9 +1,9 @@ Summary: Zimbra components for snmp package Name: zimbra-snmp-components -Version: 1.0.4 +Version: 1.0.5 Release: 1zimbra8.7b1ZAPPEND License: GPL-2 -Requires: zimbra-snmp-base, zimbra-net-snmp >= 5.8-1zimbra8.7b3ZAPPEND +Requires: zimbra-snmp-base, zimbra-net-snmp >= 5.8-1zimbra8.7b4ZAPPEND Packager: Zimbra Packaging Services Group: Development/Languages AutoReqProv: no @@ -11,7 +11,9 @@ AutoReqProv: no %define debug_package %{nil} %changelog -* Tue Jun 13 2023 Zimbra Packaging Services - 1.0.4 +* Tue Jun 13 2023 Zimbra Packaging Services - 1.0.5 +- Updated zimbra-net-snmp +* Wed Aug 11 2021 Zimbra Packaging Services - 1.0.4 - Updated zimbra-net-snmp * Sat Dec 05 2020 Zimbra Packaging Services - 1.0.3 - Updated zimbra-net-snmp diff --git a/zimbra/spell-base/zimbra-spell-base/debian/compat b/zimbra/spell-base/zimbra-spell-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/spell-base/zimbra-spell-base/debian/compat +++ b/zimbra/spell-base/zimbra-spell-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/spell-components/zimbra-spell-components/debian/changelog b/zimbra/spell-components/zimbra-spell-components/debian/changelog index 1280ce491..b2d3cefb6 100644 --- a/zimbra/spell-components/zimbra-spell-components/debian/changelog +++ b/zimbra/spell-components/zimbra-spell-components/debian/changelog @@ -1,63 +1,69 @@ -zimbra-spell-components (2.0.14-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.15-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * ZCS-15706, Upgraded Apache to 2.4.62 -- Zimbra Packaging Services Fri, 23 Aug 2024 22:26:24 +0000 -zimbra-spell-components (2.0.13-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.14-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Upgraded PHP to 8.3.0 (ZBUG-3082) -- Zimbra Packaging Services Fri, 15 Dec 2023 21:56:52 +0000 -zimbra-spell-components (2.0.12-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.13-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Updated zimbra-httpd -- Zimbra Packaging Services Tue, 13 Jun 2023 05:12:55 +0000 -zimbra-spell-components (2.0.11-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.12-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * ZBUG-3354, Upgraded Apache to 2.4.57 -- Zimbra Packaging Services Mon, 17 Apr 2023 22:26:24 +0000 -zimbra-spell-components (2.0.10-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.11-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZBUG-3126 -- Zimbra Packaging Services Wed, 23 Nov 2022 22:26:24 +0000 -zimbra-spell-components (2.0.9-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.10-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZBUG-2819, Upgraded Apache to 2.4.54 -- Zimbra Packaging Services Tue, 18 Oct 2022 22:26:24 +0000 -zimbra-spell-components (2.0.8-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.9-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZCS-11149, Upgraded Apache to 2.4.53 -- Zimbra Packaging Services Tue, 15 Mar 2022 22:26:24 +0000 -zimbra-spell-components (2.0.7-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.8-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZBUG-2498, Update PHP to 7.4.27 -- Zimbra Packaging Services Mon, 14 Feb 2022 22:26:24 +0000 -zimbra-spell-components (2.0.6-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.7-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZBUG-2145, Added Catalan dictionary -- Zimbra Packaging Services Mon, 24 Jan 2022 22:26:24 +0000 -zimbra-spell-components (2.0.5-1zimbra8.8b1ZAPPEND) unstable; urgency=medium +zimbra-spell-components (2.0.6-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Fix ZBUG-2362, Upgraded Apache to 2.4.51 -- Zimbra Packaging Services Tue, 19 Oct 2021 22:26:24 +0000 +zimbra-spell-components (2.0.5-1zimbra8.8b1ZAPPEND) unstable; urgency=low + + * Updated zimbra-aspell + + -- Zimbra Packaging Services Wed, 11 Aug 2021 00:00:00 +0000 + zimbra-spell-components (2.0.4-1zimbra8.8b1ZAPPEND) unstable; urgency=medium * Updated dependency zimbra-httpd and zimbra-php diff --git a/zimbra/spell-components/zimbra-spell-components/debian/compat b/zimbra/spell-components/zimbra-spell-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/spell-components/zimbra-spell-components/debian/compat +++ b/zimbra/spell-components/zimbra-spell-components/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/spell-components/zimbra-spell-components/debian/control b/zimbra/spell-components/zimbra-spell-components/debian/control index c55d36cca..85ec3f0da 100644 --- a/zimbra/spell-components/zimbra-spell-components/debian/control +++ b/zimbra/spell-components/zimbra-spell-components/debian/control @@ -8,11 +8,15 @@ Standards-Version: 3.9.5 Package: zimbra-spell-components Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, - zimbra-spell-base, zimbra-aspell-ar, zimbra-aspell-ca, zimbra-aspell-da, zimbra-aspell-de, - zimbra-aspell-en, zimbra-aspell-es, zimbra-aspell-fr, zimbra-aspell-hi, - zimbra-aspell-hu, zimbra-aspell-it, zimbra-aspell-nl, zimbra-aspell-pl, - zimbra-aspell-pt-br, zimbra-aspell-ru, zimbra-aspell-sv, zimbra-httpd (>= 2.4.62-1zimbra8.7b5ZAPPEND), - zimbra-php (>= 8.3.0-1zimbra8.7b3ZAPPEND), zimbra-aspell-zimbra + zimbra-spell-base, zimbra-aspell-ar (>= 1.2.0-1zimbra8.7b2ZAPPEND), zimbra-aspell-ca, + zimbra-aspell-da (>= 1.4.42.1-1zimbra8.7b2ZAPPEND), zimbra-aspell-de (>= 20030222.1-1zimbra8.7b2ZAPPEND), + zimbra-aspell-en (>= 7.1.0-1zimbra8.7b2ZAPPEND), zimbra-aspell-es (>= 1.11.2-1zimbra8.7b2ZAPPEND), + zimbra-aspell-fr (>= 0.50.3-1zimbra8.7b2ZAPPEND), zimbra-aspell-hi (>= 0.02.0-1zimbra8.7b2ZAPPEND), + zimbra-aspell-hu (>= 0.99.4.2.0-1zimbra8.7b2ZAPPEND), zimbra-aspell-it (>= 2.2.20050523.0-1zimbra8.7b2ZAPPEND), + zimbra-aspell-nl (>= 0.50.2-1zimbra8.7b2ZAPPEND), zimbra-aspell-pl (>= 6.0.20061121.0-1zimbra8.7b2ZAPPEND), + zimbra-aspell-pt-br (>= 20090702.0-1zimbra8.7b2ZAPPEND), zimbra-aspell-ru (>= 0.99f7.1-1zimbra8.7b2ZAPPEND), + zimbra-aspell-sv (>= 0.51.0-1zimbra8.7b2ZAPPEND), zimbra-httpd (>= 2.4.62-1zimbra8.7b5ZAPPEND), + zimbra-php (>= 8.3.0-1zimbra8.7b3ZAPPEND), zimbra-aspell-zimbra (>= 1.0.0-1zimbra8.7b2ZAPPEND) Description: Zimbra components for spell package Zimbra spell components pulls in all the packages used by zimbra-spell diff --git a/zimbra/spell-components/zimbra-spell-components/rpm/SPECS/spell-components.spec b/zimbra/spell-components/zimbra-spell-components/rpm/SPECS/spell-components.spec index 0d88cba82..90c823288 100644 --- a/zimbra/spell-components/zimbra-spell-components/rpm/SPECS/spell-components.spec +++ b/zimbra/spell-components/zimbra-spell-components/rpm/SPECS/spell-components.spec @@ -1,13 +1,22 @@ Summary: Zimbra components for spell package Name: zimbra-spell-components -Version: 2.0.14 +Version: 2.0.15 Release: 1zimbra8.8b1ZAPPEND License: GPL-2 -Requires: zimbra-spell-base, zimbra-aspell-ar, zimbra-aspell-ca, zimbra-aspell-da, zimbra-aspell-de -Requires: zimbra-aspell-en, zimbra-aspell-es, zimbra-aspell-fr, zimbra-aspell-hi -Requires: zimbra-aspell-hu, zimbra-aspell-it, zimbra-aspell-nl, zimbra-aspell-pl -Requires: zimbra-aspell-pt-br, zimbra-aspell-ru, zimbra-aspell-sv, zimbra-httpd >= 2.4.62-1zimbra8.7b5ZAPPEND -Requires: zimbra-php >= 8.3.0-1zimbra8.7b3ZAPPEND, zimbra-aspell-zimbra +Requires: zimbra-spell-base, zimbra-aspell-ar >= 1.2.0-1zimbra8.7b2ZAPPEND, zimbra-aspell-ca +Requires: zimbra-aspell-da >= 1.4.42.1-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-de >= 20030222.1-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-en >= 7.1.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-es >= 1.11.2-1zimbra8.7b2ZAPPEND, zimbra-aspell-fr >= 0.50.3-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-hi >= 0.02.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-hu >= 0.99.4.2.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-it >= 2.2.20050523.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-nl >= 0.50.2-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-pl >= 6.0.20061121.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-pt-br >= 20090702.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-aspell-ru >= 0.99f7.1-1zimbra8.7b2ZAPPEND, zimbra-aspell-sv >= 0.51.0-1zimbra8.7b2ZAPPEND +Requires: zimbra-httpd >= 2.4.62-1zimbra8.7b5ZAPPEND +Requires: zimbra-php >= 8.3.0-1zimbra8.7b3ZAPPEND, zimbra-aspell-zimbra >= 1.0.0-1zimbra8.7b2ZAPPEND Packager: Zimbra Packaging Services Group: Development/Languages AutoReqProv: no @@ -19,26 +28,28 @@ Zimbra spell components pulls in all the packages used by zimbra-spell %changelog -* Fri Aug 23 2024 Zimbra Packaging Services - 2.0.14 +* Fri Aug 23 2024 Zimbra Packaging Services - 2.0.15 - ZCS-15706, Upgraded Apache to 2.4.62 -* Fri Dec 15 2023 Zimbra Packaging Services - 2.0.13 +* Fri Dec 15 2023 Zimbra Packaging Services - 2.0.14 - Upgraded PHP to 8.3.0 (ZBUG-3082) -* Tue Jun 13 2023 Zimbra Packaging Services - 2.0.12 +* Tue Jun 13 2023 Zimbra Packaging Services - 2.0.13 - Updated zimbra-httpd -* Mon Apr 17 2023 Zimbra Packaging Services - 2.0.11 +* Mon Apr 17 2023 Zimbra Packaging Services - 2.0.12 - ZBUG-3354, Upgraded Apache to 2.4.57 -* Wed Nov 23 2022 Zimbra Packaging Services - 2.0.10 +* Wed Nov 23 2022 Zimbra Packaging Services - 2.0.11 - Fix ZBUG-3126 -* Tue Oct 18 2022 Zimbra Packaging Services - 2.0.9 +* Tue Oct 18 2022 Zimbra Packaging Services - 2.0.10 - Fix ZBUG-2819, Upgraded Apache to 2.4.54 -* Tue Mar 15 2022 Zimbra Packaging Services - 2.0.8 +* Tue Mar 15 2022 Zimbra Packaging Services - 2.0.9 - Fix ZCS-11149, Upgraded Apache to 2.4.53 -* Mon Feb 14 2022 Zimbra Packaging Services - 2.0.7 +* Mon Feb 14 2022 Zimbra Packaging Services - 2.0.8 - Fix ZBUG-2498, Update PHP to 7.4.27 -* Tue Jan 24 2022 Zimbra Packaging Services - 2.0.6 +* Tue Jan 24 2022 Zimbra Packaging Services - 2.0.7 - Fix ZBUG-2145, Added Catalan dictionary -* Tue Oct 19 2021 Zimbra Packaging Services - 2.0.5 +* Tue Oct 19 2021 Zimbra Packaging Services - 2.0.6 - Fix ZBUG-2362, Upgraded Apache to 2.4.51 +* Wed Aug 11 2021 Zimbra Packaging Services - 2.0.5 +- Updated dependency zimbra-aspell * Tue Mar 16 2021 Zimbra Packaging Services - 2.0.4 - Updated dependency zimbra-httpd and zimbra-php * Sat Dec 05 2020 Zimbra Packaging Services - 2.0.3 diff --git a/zimbra/store-base/zimbra-store-base/debian/compat b/zimbra/store-base/zimbra-store-base/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/store-base/zimbra-store-base/debian/compat +++ b/zimbra/store-base/zimbra-store-base/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/zimbra/store-components/zimbra-store-components/debian/compat b/zimbra/store-components/zimbra-store-components/debian/compat index ec635144f..f599e28b8 100644 --- a/zimbra/store-components/zimbra-store-components/debian/compat +++ b/zimbra/store-components/zimbra-store-components/debian/compat @@ -1 +1 @@ -9 +10