Bug#960121: Bug#960142: ITP: pyerfa -- Python bindings for ERFA routines
Dear Ole, sorry for the late reply Il 10/05/20 13:23, Ole Streicher ha scritto: > Dear Antonio, > > I would happily step back and leave the packaging for you, and only ask > to do it within the Debian Astro team (I just invited you there). I will be happy to prepare the package and maintain it if you can sponsor uploads. I will wait for the merge of a couple of PR upstream before starting the job. regards antonio > I > already created an (empty) git repository on salsa > > https://salsa.debian.org/debian-astro-team/pyerfa > > which you could fill. I can also sponsor the package when it is ready > for upload. > > My ITP was aloready closed by someone else as a duplicate, so just keep > your one open and take it as the real one. > > Best regards > > Ole > > On 10.05.20 12:26, Antonio Valentino wrote: >> Dear Ole, >> thank you for submitting an ITP for pyerfa. >> I'm also interested to this package (I'm also an upstream maintainer) so >> I could help with the maintenance if you are interested. My salsa user >> ID is antonio.valentino (please not that I'm not a DD/DM). >> >> >> Finally I also filed an ITP for the same package [1]. >> I'm going to close hat one as a duplicate. >> >> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960121 >> >> >> kind regards >> antonio >> >> Il 09/05/20 22:39, Ole Streicher ha scritto: >>> Package: wnpp >>> Severity: wishlist >>> Owner: Ole Streicher >>> X-Debbugs-Cc: debian-pyt...@lists.debian.org, >>> debian-de...@lists.debian.org, debian-as...@lists.debian.org >>> >>> * Package name: pyerfa >>> Version : TBD >>> Upstream Author : Astropy Developers >>> * URL : https://github.com/liberfa/pyerfa >>> * License : BSD-3-Clause >>> Programming Lang: Python >>> Description : Python bindings for ERFA routines >>> >>> PyERFA is the Python wrapper for the ERFA library (Essential Routines >>> for Fundamental Astronomy), a C library containing key algorithms for >>> astronomy, which is based on the SOFA library published by the >>> International Astronomical Union (IAU). All C routines are wrapped as >>> Numpy universal functions, so that they can be called with scalar or >>> array inputs. >>> >>> The project is a split of astropy._erfa module, developed in the context >>> of Astropy project, into a standalone package, and therefore will be a >>> dependency of upcoming Astropy releases. >>> >>> The packages will be maintained under Debian Astro team maintainance, >>> with the repository at >>> >>> https://salsa.debian.org/debian-astro-team/pyerfa >>> >>> Best regards >>> >>> Ole >>> > -- Antonio Valentino
Bug#921717: cyrus-imapd: FTBFS on arm*, i386, mipsel, ppc64el and s390x
Le 12/05/2020 à 01:04, John Paul Adrian Glaubitz a écrit : > On 5/12/20 1:01 AM, John Paul Adrian Glaubitz wrote: >> On 5/11/20 11:56 PM, Xavier wrote: >>> Could someone help us here ? I forwarded this bug to upstream ([1]) but >>> didn't receive any response for now. >>> >>> (Cc to RFH bug) >> >> The problem here is va_list. On some architectures, the calling convention >> doesn't seem to allow comparing va_list against NULL due to the way va_list >> is implemented on a particular architecture. > Correction: The va_list problem seems to affect ARM architectures only. > > The other architectures have testsuite failures which seem unrelated. > > Adrian Thanks a lot! I had to modify your patch: I had to declare a va_list "noargs" variable to fix the problem. Cheers, Xavier Description: fix for non x86 arch The problem here is va_list. On some architectures, the calling convention doesn't seem to allow comparing va_list against NULL due to the way va_list is implemented on a particular architecture. Author: John Paul Adrian Glaubitz Bug: https://github.com/cyrusimap/cyrus-imapd/issues/3040 Bug-Debian: https://bugs.debian.org/960263 Forwarded: https://github.com/cyrusimap/cyrus-imapd/issues/3040 Reviewed-By: Xavier Guimard Last-Update: 2020-05-12 --- a/imap/httpd.c +++ b/imap/httpd.c @@ -2350,7 +2350,7 @@ simple_hdr(txn, "Access-Control-Expose-Headers", hdr) static void comma_list_body(struct buf *buf, -const char *vals[], unsigned flags, va_list args) +const char *vals[], unsigned flags, int has_args, va_list args) { const char *sep = ""; int i; @@ -2358,11 +2358,11 @@ for (i = 0; vals[i]; i++) { if (flags & (1 << i)) { buf_appendcstr(buf, sep); -if (args) buf_vprintf(buf, vals[i], args); +if (has_args) buf_vprintf(buf, vals[i], args); else buf_appendcstr(buf, vals[i]); sep = ", "; } -else if (args) { +else if (has_args) { /* discard any unused args */ vsnprintf(NULL, 0, vals[i], args); } @@ -2377,7 +2377,7 @@ va_start(args, flags); -comma_list_body(&buf, vals, flags, args); +comma_list_body(&buf, vals, flags, 1, args); va_end(args); @@ -2512,6 +2512,7 @@ int i; time_t now; char datestr[30]; +va_list noargs; double cmdtime, nettime; const char **hdr, *sep; struct auth_challenge_t *auth_chal = &txn->auth_chal; @@ -3077,17 +3078,17 @@ } if (code == HTTP_SWITCH_PROT || code == HTTP_UPGRADE) { buf_printf(logbuf, "%supgrade=", sep); -comma_list_body(logbuf, upgrd_tokens, txn->flags.upgrade, NULL); +comma_list_body(logbuf, upgrd_tokens, txn->flags.upgrade, 0, noargs); sep = "; "; } if (txn->flags.te) { buf_printf(logbuf, "%stx-encoding=", sep); -comma_list_body(logbuf, te, txn->flags.te, NULL); +comma_list_body(logbuf, te, txn->flags.te, 0, noargs); sep = "; "; } if (txn->resp_body.enc.proc) { buf_printf(logbuf, "%scnt-encoding=", sep); -comma_list_body(logbuf, ce, txn->resp_body.enc.type, NULL); +comma_list_body(logbuf, ce, txn->resp_body.enc.type, 0, noargs); sep = "; "; } if (txn->location) {
Bug#921717: cyrus-imapd: FTBFS on arm*, i386, mipsel, ppc64el and s390x
Hi Xavier! On 5/12/20 10:09 AM, Xavier wrote: >>> The problem here is va_list. On some architectures, the calling convention >>> doesn't seem to allow comparing va_list against NULL due to the way va_list >>> is implemented on a particular architecture. >> Correction: The va_list problem seems to affect ARM architectures only. >> >> The other architectures have testsuite failures which seem unrelated. >> >> Adrian > > Thanks a lot! I had to modify your patch: I had to declare a va_list > "noargs" variable to fix the problem. Glad it works and thanks for the additional modifications and for testing it. It was actually a shot in the dark yesterday shortly before I went to bed :-). I'll have a look whether I can help with the testsuite failures as well in the evening or tomorrow. Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `-GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
Bug#959256: marked as done (ITP: php-horde-exception -- Horde Exception Handler)
Your message dated Tue, 12 May 2020 10:00:10 + with message-id and subject line Bug#959256: fixed in php-horde-exception 2.0.8-6 has caused the Debian Bug report #959256, regarding ITP: php-horde-exception -- Horde Exception Handler to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959256: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959256 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Exception Version : 2.0.8 Upstream Author : Chuck Hagenbuch , Jan Schneider , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Exception Handler This class provides the default exception handlers for the Horde Application Framework. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-exception Source-Version: 2.0.8-6 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-exception, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-exception package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:23:50 +0200 Source: php-horde-exception Binary: php-horde-exception Architecture: source all Version: 2.0.8-6 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-exception - Closes: 959256 Changes: php-horde-exception (2.0.8-6) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959256). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 51235b19f2e9087b48f15c70b91ebe3840d53e55 2141 php-horde-exception_2.0.8-6.dsc 0febd13de843186365cc67956a803f9cdf43cd0f 24402 php-horde-exception_2.0.8.orig.tar.gz 4d4280eb01c9f87516d85bcb2183c8a9fbe9e29e 3248 php-horde-exception_2.0.8-6.debian.tar.xz a229732eca16fcb1485679d595e8eda3e51de3a2 25508 php-horde-exception_2.0.8-6_all.deb c69a6f5345589b35991190e4aba909a503fb8c48 6215 php-horde-exception_2.0.8-6_amd64.buildinfo Checksums-Sha256: dc94b98ca94a1ef4bc60cc6a38beca8ce5cef211038a699c38f0c012043d262e 2141 php-horde-exception_2.0.8-6.dsc 35c720ab4e51a6d90b27a630e870174f3a23e98a354328fd821f4fa28a47d569 24402 php-horde-exception_2.0.8.orig.tar.gz a70f7f13ea7869ceb138cc16a356e812f7da4d195b0a95cdf219e067ba4e932a 3248 php-horde-exception_2.0.8-6.debian.tar.xz 4196e44455b571680fd3dbcf5feb5c7361f9ff0a41684be9bbf0cdd10d21ce86 25508 php-horde-exception_2.0.8-6_all.deb 3b08818037dd191eeb09f3d5e2262aac624ba4f092e051bf8ad6c34b9723b6b0 6215 php-horde-exception_2.0.8-6_amd64.buildinfo Files: 678b8531889ce2bd0c3153ff54804c72 2141 php optional php-horde-exception_2.0.8-6.dsc cc44aa94033f509c78b02ec024b00bd7 24402 php optional php-horde-exception_2.0.8.orig.tar.gz 16ae8dc4ecf6bf567e22d3579e404246 3248 php optional php-horde-exception_2.0.8-6.debian.tar.xz 58b7d97ae0a6240aeef7e950bcc93e50 25508 php optional php-horde-exception_2.0.8-6_all.deb b2306286ec04da2de87584240dc99986 6215 php optional php-horde-exception_2.0.8-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtYVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxcpYQAKbqzjCYw3QFxdoSTjTgGL3CpRv6 ZNLpZCG+0wLa/89Ttkhshmk86sQxrN/vt/fLfPWUgZ3DwbTvqA1iinyI10iRHyOn f0PPl+HWh/g9v5hLntZSMgBPiTKb1uredqf9NTFv4/sWcLUnSBGJtZRkFe19ypXK 9VFXlpeLAvT9egb1Pf9JDtx3irLPNv0phXzzE/rUp+bv/hQ42Ks4P3vE7mh4Akk+ JMqP+l3g3cGz0y161b/SbgLE3okEVd6uqwVQC7dWJgQZryKhIzhA6BAZF4HsFKXR fFL2mAWJURI95eSh0Hb5xcCqQF3PSU
Bug#959239: marked as done (ITP: php-horde-role -- PEAR installer role used to install Horde components)
Your message dated Tue, 12 May 2020 10:00:16 + with message-id and subject line Bug#959239: fixed in php-horde-role 1.0.1-16 has caused the Debian Bug report #959239, regarding ITP: php-horde-role -- PEAR installer role used to install Horde components to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959239: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959239 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Role Version : 1.0.1 Upstream Author : Michael Slusarz , Jan Schneider URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : PEAR installer role used to install Horde components Allows PEAR to install Horde components into a base Horde installation. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-role Source-Version: 1.0.1-16 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-role, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-role package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:03:37 +0200 Source: php-horde-role Binary: php-horde-role Architecture: source all Version: 1.0.1-16 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-role - Closes: 959239 Changes: php-horde-role (1.0.1-16) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959239). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 30d1f0a439c84c9770cb486eed857519bfb41f18 2023 php-horde-role_1.0.1-16.dsc 90e4634b8c5e9f3a58bd9ab527f94c2faf5a1dc9 11203 php-horde-role_1.0.1.orig.tar.gz 88e92954d83ed57669c925e2b5ca71edacb62e05 3452 php-horde-role_1.0.1-16.debian.tar.xz 443e9647d6540602359d7af457359160f119be4c 7616 php-horde-role_1.0.1-16_all.deb 92872bac46fb0210fbae1c6e0ce8128be0c3f565 6169 php-horde-role_1.0.1-16_amd64.buildinfo Checksums-Sha256: fba529a3dcdf71b4ea7a1b33c8bed25265dfe95b21aca724ce92b78720952d41 2023 php-horde-role_1.0.1-16.dsc 4bbb6faea7c4c64ebc67b772e3e10dacf5b6089258ca39efcaf008cc631d16c1 11203 php-horde-role_1.0.1.orig.tar.gz 7ca7eb32969cc12ea3e782fb8a1550765331b57174c2f34f83e31a437cfe0231 3452 php-horde-role_1.0.1-16.debian.tar.xz 16bf1a992fd2bd5dd410b2422d88497275be1df39354a27357407cf51405c6d4 7616 php-horde-role_1.0.1-16_all.deb 747bd934fb3c5fe2de8209e0a2f6a16536c0c914e1ca8bff003e341ce6422158 6169 php-horde-role_1.0.1-16_amd64.buildinfo Files: 95fd63134f79e15c153c46193b1d48a0 2023 php optional php-horde-role_1.0.1-16.dsc adcb3d7084662e37fed89cad6420e794 11203 php optional php-horde-role_1.0.1.orig.tar.gz 4c4e5a111f0ebb614452ee0da93e5bfa 3452 php optional php-horde-role_1.0.1-16.debian.tar.xz 3847229a6c3be72ba0173f7758dd622d 7616 php optional php-horde-role_1.0.1-16_all.deb e843df31924d64526b7c1e96cf059d7f 6169 php optional php-horde-role_1.0.1-16_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgt4VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxwZwP/jMTX8BbiqwWAGtCEwbHab6Yx1OA 3Iw1hQ+fDA/3aE32Sr8meHqBIFVeZWPdHY+6aSTurFUGa07vzpqn7iuKVaz/pPal qBTiPr7QBnq+5BvY9hi0RFRQOestPGVRvzxdh3C9U5zPVc+LZelQovsKEn0j/8dq s/x3hUWtZLwvm52Q4to2bRyRjamuPQm34HHf1Sf4FMDDkhL5oWo3ZZrTSJ6tNtB3 1DO1tfAY6hJJHuAMhxXi2Bbjo2Pbjq0EBafRiCZNxYsYPJ0GwacsXTnBkzUjK/cE rAqYsdCYur0xmb8ZsZIqdDLAuQA8Xj/L39P52uoUjlvA0szUFz7qF/BuZCybg3Fl wEetsC2aBrHyihTJCfxHC7+nvA+iV5pgq28R3Y8UXFEmppoe0VOkkBl/u
Bug#959254: marked as done (ITP: php-horde-date -- Horde Date package)
Your message dated Tue, 12 May 2020 10:00:09 + with message-id and subject line Bug#959254: fixed in php-horde-date 2.4.1-5 has caused the Debian Bug report #959254, regarding ITP: php-horde-date -- Horde Date package to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959254: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959254 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Date Version : 2.4.1 Upstream Author : Jan Schneider , Chuck Hagenbuch URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Date package Package for creating and manipulating dates. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-date Source-Version: 2.4.1-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-date, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-date package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:21:40 +0200 Source: php-horde-date Binary: php-horde-date Architecture: source all Version: 2.4.1-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-date - Closes: 959254 Changes: php-horde-date (2.4.1-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959254). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 7d2721e3ac2034ed081fd7fa397f13b37209d4fd 2086 php-horde-date_2.4.1-5.dsc b5c858974d366a6e91a86e3477c629ee0de58b6c 73961 php-horde-date_2.4.1.orig.tar.gz 6b8ee8a608d64707fa1efa85a16c0904f91f4bdf 3460 php-horde-date_2.4.1-5.debian.tar.xz 6af9dcfe4061da8ff437b2246097062e77e24e87 63440 php-horde-date_2.4.1-5_all.deb 62134fa63ff315ee47be3a3f413c79f20523dd36 6165 php-horde-date_2.4.1-5_amd64.buildinfo Checksums-Sha256: 9e263810c3a85354a05696899b79c2942d8d044a32da87fff70f05feee64b819 2086 php-horde-date_2.4.1-5.dsc 9f41ca0bb17579b85b02d6c6c779a527a2518143b33104b6d7a3900d53f7fb84 73961 php-horde-date_2.4.1.orig.tar.gz 209741338ad04ef16c43851add0854e60cb730e146f6804c4b8699ca1c9b2a5c 3460 php-horde-date_2.4.1-5.debian.tar.xz 27e45d4435ed1c42ea2673e8a17168f60462b9ce39e608d470b66908a5709bce 63440 php-horde-date_2.4.1-5_all.deb c8fa4eada90a77fc6bd8f62b640af312c6fabd46475b5ac46a771bde317cd24e 6165 php-horde-date_2.4.1-5_amd64.buildinfo Files: e23ea0f8891de728e62aadce4942062d 2086 php optional php-horde-date_2.4.1-5.dsc 77d9eacc0f38b0c458c49d3b41d1e552 73961 php optional php-horde-date_2.4.1.orig.tar.gz bd7ae576e0ae2880a7c0aa4f1d736037 3460 php optional php-horde-date_2.4.1-5.debian.tar.xz df24e1af4a7fb3a422d42c40f6f99a49 63440 php optional php-horde-date_2.4.1-5_all.deb f731ed4339db9cad01e0c7bc2fe9aa82 6165 php optional php-horde-date_2.4.1-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtQVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxeJcQALPGWHS6FK4CnemYxCpE+r9TSUyQ hZevAAp1B/MY3f1U+trM/wXe07XUKtMIxpuRzQU60BDxDc1zldCNNLtvEiw5EwN4 FjrZVsJI95rkQF1vn3LoIFYaeGdOwWuTdFQanAnQbKrm5vSxGfBnHQP0SOd0CwUi X2HK3hIvmqt2sAJj7drI/LBiNGoxl8fYIaTnrnuLbSyK1dZc+bSXqq8HfwwiPpnO VekpQwL8F9tRCGb57oMYepja/5Yog1dT91Ew1L86nyDuZywNREwqrY6XKELlj1c7 b7eyjE8kGovzCdxAeTf3xI1v8+Wc/RW7ksdFhiek+E1oUu4RTQwNLNOBsUt41HLM 2+Vh98kpktsaxOrUDWX9KpWz/p6MOt5whNd+4dysqs2VWe1vIevc02wd5jLH4FBK D6A1zLObNfbs5cj8jxqq8mqKaQnvtWNph8MgTVwoz2pmfDxGe7F8vNV8r4FVOodC j/t7bLF+lrSW9VfHA0vmmhYXjhsXRdaLk4ff
Bug#959255: marked as done (ITP: php-horde-db -- Horde Database Libraries)
Your message dated Tue, 12 May 2020 10:00:09 + with message-id and subject line Bug#959255: fixed in php-horde-db 2.4.0-5 has caused the Debian Bug report #959255, regarding ITP: php-horde-db -- Horde Database Libraries to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959255: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959255 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Db Version : 2.4.0 Upstream Author : Mike Naberezny , Chuck Hagenbuch , Jan Schneider URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : Horde Database Libraries Horde database/SQL abstraction layer . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-db Source-Version: 2.4.0-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-db, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-db package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:22:32 +0200 Source: php-horde-db Binary: php-horde-db Architecture: source all Version: 2.4.0-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-db - Closes: 959255 Changes: php-horde-db (2.4.0-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959255). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: d5ba9252fd0c731b628d4008b27aec25f330d62c 2125 php-horde-db_2.4.0-5.dsc db1c856d23e4349073a747f34350b8472724ef9b 96916 php-horde-db_2.4.0.orig.tar.gz 0cb743e626ee816fc68713d78abf4d56235d976b 4576 php-horde-db_2.4.0-5.debian.tar.xz 37e51a902c56deeda1dfef75a42c18a29f1e3478 73712 php-horde-db_2.4.0-5_all.deb 2e643c59d8d80d1f07631d0c2b6d569b618814ca 6145 php-horde-db_2.4.0-5_amd64.buildinfo Checksums-Sha256: c5d66293009374a7e3a077af0c38ef06cd51b20e8622778a3af4618a3b3d6f7e 2125 php-horde-db_2.4.0-5.dsc 69fecc955c21b9d5ae2d604c32edb6da48ba9f1305e55dd0187355bca59b2a06 96916 php-horde-db_2.4.0.orig.tar.gz 5757b193d83af80f586753fb50b9d0275d0c469c814db2109eede5b2e2d0 4576 php-horde-db_2.4.0-5.debian.tar.xz c816ad2813d3b442f075f4c7d3032e67b568a71ac5faffda90f599a3fce449f7 73712 php-horde-db_2.4.0-5_all.deb 0aeb3d76f68cee431695590d5d3d7ebcb50dba2f4f5859ca1b1a4af0b203e416 6145 php-horde-db_2.4.0-5_amd64.buildinfo Files: b802c857bee3021dcd212b9351c2db89 2125 php optional php-horde-db_2.4.0-5.dsc dbbab99f2c8eb6d12868ce1b7edbd9ac 96916 php optional php-horde-db_2.4.0.orig.tar.gz ee62bf5d3c8cdd28ea96589996cccbd9 4576 php optional php-horde-db_2.4.0-5.debian.tar.xz 753caa51e80c3a2090cc27304049044c 73712 php optional php-horde-db_2.4.0-5_all.deb 96367f3f7dc794141acd1f9c0922c96a 6145 php optional php-horde-db_2.4.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtUVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxoUYP/j+sZ3Mh4bZ7JjBBR2TZIo5yc6Sk B7gxwvN9Vqk/BIcme1mHQ/zrGJ9LKAygP7KRfx8ic0fmkmrVlWAu3QDadgMnndkp 2uKJ/M+6PGveVtSbZfW78uxC9sBc+x+4nMb1kWw2EWYNeUbn6OsHOtL8dbDZj7qf cIV2JsaBCXFQ3MPIFU5v8CbAFEQ0OKAszGLXS3Tk+R6NphJHVx9/zunE5Og5XIM4 InYnEfxHOJ2WJAY2g6zySKFSfr+H+JOeC8Xyt+57eA5RGL+ZQsGU17eyXqzXshQX QoDNQI0H67MUogqqwoahN7X44Wkg0Z4xxtIB4bTxSKuDYv87fx6y8GepvZUFjS6v x+kqMD/Mc2HdTAzlCqG/KHQGO9X0AA/dDfIVz4GubR7MCtwsEvigGHSSPtKtLJDG 646wKbgn8jQfVq6bEikLfkQILvlIuKAkZDadbSyGYLTzs/3mmYwNAfwWu+/cdehv IxANhVsO+vo2RoF0FMjyachcTIqoVNl9L935aQY4V4D7W2boSkuecoqQV5Jc+
Bug#959252: marked as done (ITP: php-horde-css-parser -- Horde CSS Parser)
Your message dated Tue, 12 May 2020 10:00:09 + with message-id and subject line Bug#959252: fixed in php-horde-css-parser 1.0.11-6 has caused the Debian Bug report #959252, regarding ITP: php-horde-css-parser -- Horde CSS Parser to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959252: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959252 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Css_Parser Version : 1.0.11 Upstream Author : Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde CSS Parser This package provides access to the Sabberworm CSS Parser from within the Horde framework. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-css-parser Source-Version: 1.0.11-6 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-css-parser, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-css-parser package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 May 2020 00:27:53 +0200 Source: php-horde-css-parser Binary: php-horde-css-parser Architecture: source all Version: 1.0.11-6 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-css-parser - Closes: 959252 Changes: php-horde-css-parser (1.0.11-6) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959252). . * d/tests/control: Stop using deprecated needs-recommends restriction. * d/rules: Drop unneeded doc files from /usr/share/php. * d/copyright: + Add myself as copyright holder of debian/* and phase out Mathieu Parent. + Fix upstream code's path name for the bundled code. Checksums-Sha1: d90f72c6c7d49d6f852cba29e6b2cbc018a437d3 2159 php-horde-css-parser_1.0.11-6.dsc 6c9aefe71dd485eb3cf702347331f3b7f01685dc 81943 php-horde-css-parser_1.0.11.orig.tar.gz 87bb7bd43bb27c99220863edba543f4ee2c35415 4072 php-horde-css-parser_1.0.11-6.debian.tar.xz 9be00e0294a2265a1dfaf648c890c9f153544cf8 70292 php-horde-css-parser_1.0.11-6_all.deb 6bca309f6caf34b82636cc284030ebf06171a487 6233 php-horde-css-parser_1.0.11-6_amd64.buildinfo Checksums-Sha256: bd802695cd158f4720e03ca59e38d15ccbc644a27dfe38d99ebf483b2e397d75 2159 php-horde-css-parser_1.0.11-6.dsc d62a21a604e9af9d1e30df79c48a8a5a7754eefcc5b51bd883e3cd44b8c83a61 81943 php-horde-css-parser_1.0.11.orig.tar.gz 75c192e48d900176da764bea9fdb776610ad5fa656ab4634b6b1d39c46d45e53 4072 php-horde-css-parser_1.0.11-6.debian.tar.xz d8b337dd528eab471171c8ba8d3a2baed6deb2ce6ff0f8bb026dcc9be3788962 70292 php-horde-css-parser_1.0.11-6_all.deb 04fe95c60f30d78156a1c4e2b1923c98089ed640eabfd7d9a855f60f0a726bec 6233 php-horde-css-parser_1.0.11-6_amd64.buildinfo Files: cd063b6cd311d265ec723fc026ca3ebe 2159 php optional php-horde-css-parser_1.0.11-6.dsc fc2eaea741825e8977bb3018a320f127 81943 php optional php-horde-css-parser_1.0.11.orig.tar.gz 80080c9a877bc36661dd1c73b700c1ff 4072 php optional php-horde-css-parser_1.0.11-6.debian.tar.xz 5e9efd6aec655dca1069d5df5d9f50b3 70292 php optional php-horde-css-parser_1.0.11-6_all.deb 9733d9eec7a36691546e2071351e1d58 6233 php optional php-horde-css-parser_1.0.11-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wmBgVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxK3gQAIWMr6bhu40S2kMhf6kGvitaZy2g Gb31dvBLuGCXqlZyQIRuLSbgfOrgvwEB8N8gVG5hxWopJbuxzuM5QXkfqwzaX7kw FBkrwARZrPKIJDGeiIpCA9iXL1pfc4GvRhAu3VlU6Rx5tkhYt+F7A3zsex3kqKCG 7/yGQen4wnCvbjMD4P/vScvahksoHflPXrUHozhrndOEWCEScn3lvfQYWaOmxUEw V3Z55Ywvc8D6Yid3PcOaWC46KQA6DtsOroivNxQBJdk/Cqf1J4tVtotlOZZYJAd+ NdGkJKMdgPkEkdWG1G/YZXTp11UFhxeCa2Z1p11Xr/L3y6eegcPSz7+szJOwPG19 907CNHo6rFf6GULte4/
Bug#959261: marked as done (ITP: php-horde-injector -- Horde dependency injection container)
Your message dated Tue, 12 May 2020 10:00:12 + with message-id and subject line Bug#959261: fixed in php-horde-injector 2.0.5-8 has caused the Debian Bug report #959261, regarding ITP: php-horde-injector -- Horde dependency injection container to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959261 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Injector Version : 2.0.5 Upstream Author : Chuck Hagenbuch URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : Horde dependency injection container A depedency injection container for Horde. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-injector Source-Version: 2.0.5-8 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-injector, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-injector package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 May 2020 00:20:59 +0200 Source: php-horde-injector Binary: php-horde-injector Architecture: source all Version: 2.0.5-8 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-injector - Closes: 959261 Changes: php-horde-injector (2.0.5-8) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959261). . * d/tests/control: Stop using deprecated needs-recommends restriction. * debian/patches: + Add 2001_spelling-fix-in-packages-xml.patch and avoid typo in d/control's LONG_DESCRIPTION. Checksums-Sha1: 336ba0a7f9d41bab18f08042259dada5d327cad8 2130 php-horde-injector_2.0.5-8.dsc 24e0266287d253ec37fb45944d372dea99578d1f 21867 php-horde-injector_2.0.5.orig.tar.gz 48e0ddb1b286864e05d09de941eeae1923a90b5f 4120 php-horde-injector_2.0.5-8.debian.tar.xz 9df06a1d2ad355faf69777cbf067a554fbd79a08 23884 php-horde-injector_2.0.5-8_all.deb 2aab982d59acfc0beb609692cf2ba368c777575c 6205 php-horde-injector_2.0.5-8_amd64.buildinfo Checksums-Sha256: 6067d4a8090b558ae17d6e4a04c3c40681ea67590bb507aae147925e88581c95 2130 php-horde-injector_2.0.5-8.dsc 527f637bf9e223764fa07ceef66558e72a820a8868c204e751145e8b03d2d54b 21867 php-horde-injector_2.0.5.orig.tar.gz 56c6adeb52773ac56e5ac5279c2cecfe3d1a1cddcb4cd9fa5421a477552ac4d6 4120 php-horde-injector_2.0.5-8.debian.tar.xz d63e426d0db1dca45d459e6983e1c59e10a06bc3961e684bdb82346c9ee803b8 23884 php-horde-injector_2.0.5-8_all.deb dc35377a810546f8483d20f79ed4720aef23fb36ee744b777a21c4348e3e594c 6205 php-horde-injector_2.0.5-8_amd64.buildinfo Files: 7e3e29f717e1a381ebf0d4d9dd6070d4 2130 php optional php-horde-injector_2.0.5-8.dsc 39c84c059a473823f070372b5b29dc77 21867 php optional php-horde-injector_2.0.5.orig.tar.gz 932d720b8b168c2433a3fa1d572999be 4120 php optional php-horde-injector_2.0.5-8.debian.tar.xz fee59d3520b94d97e4e0c11bd20d52ae 23884 php optional php-horde-injector_2.0.5-8_all.deb ee0e81e043b0a91516f039eba7e1c33f 6205 php optional php-horde-injector_2.0.5-8_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wlf8VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxUEAQAJYEvjPURDmshReEAdVoSdQOzUSk /81p9/q/kVhOgEDJL9/QMGDJVjKymOEesEFqxkBiitPyWA+yQicXYLml8+/nYfjW 7N+6Mn32n8T+BFjaqURUwcOH06vtirpzCjXJQKT+n+ipFvKtuxDtTp/LqRMd+M95 op5eO3aJq3lKHAK1y8UBXJeRru1Z2t+oTWfgfUHN3xZgWNzTX2c4aWhJLME6c+Ks MsJCIeP+HDq9R6h78SdWZ+poCo4y8eNEmuEYWIElgxd8dEY4Nddnnm60bPeydHXS uBqb/71saQZFXTO7ZMkGPlebNde5nzXr+7RPElw6y5QOO0OB6ZK8OuSTZWHExwXQ CmdxAXTpy8I9v3RdS5jK9TPQfxJ8GSeVpWWHLYUK5f5CYeL2DDDpvOhePa42vC3B VQFpgiN6qBzj/mRp5GRHemdc0seZ0OvIdarpUK+YPDYi0NCC+309nvRXJW8Y85Eo w0iWYZ5I3BlYtl8DS6eAwyTO44tshhgNVspjRoDDNpNphsvCvNE/y
Bug#959263: marked as done (ITP: php-horde-lock -- Horde Resource Locking System)
Your message dated Tue, 12 May 2020 10:00:13 + with message-id and subject line Bug#959263: fixed in php-horde-lock 2.1.4-5 has caused the Debian Bug report #959263, regarding ITP: php-horde-lock -- Horde Resource Locking System to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959263: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959263 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Lock Version : 2.1.4 Upstream Author : Ben Klang URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Resource Locking System The Horde resource locking system. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-lock Source-Version: 2.1.4-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-lock, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-lock package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:30:39 +0200 Source: php-horde-lock Binary: php-horde-lock Architecture: source all Version: 2.1.4-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-lock - Closes: 959263 Changes: php-horde-lock (2.1.4-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959263). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 2b9b7807c3518d5a58b661222b733bc94413d801 2086 php-horde-lock_2.1.4-5.dsc 16960d0b983cacb72bdd0e69e4a6adb817cdd744 17580 php-horde-lock_2.1.4.orig.tar.gz a78ff0c22e76c26a3ed6be4805671ff51d471dc9 3212 php-horde-lock_2.1.4-5.debian.tar.xz 2852a75b083389dad903c74b8b742dcdfa46adb6 14364 php-horde-lock_2.1.4-5_all.deb 661759f2beccbf2420758f01ff890396977003d4 6165 php-horde-lock_2.1.4-5_amd64.buildinfo Checksums-Sha256: 0ab70effabf9d854937f99539ec03dec12f011207b92a81eb71fa51fbe073ae8 2086 php-horde-lock_2.1.4-5.dsc 7e57bf9f222d83aa7934396a2f4ef6655290c2a2956c7d069c5d202d40f942ec 17580 php-horde-lock_2.1.4.orig.tar.gz eacd351c09c75066709568a71b0457317c996577b261b4b714f6248f216609df 3212 php-horde-lock_2.1.4-5.debian.tar.xz af85390dacf08b8a382eb1c4867c7587930710ff5903e4a02d91ee0654fb3931 14364 php-horde-lock_2.1.4-5_all.deb f829da003432fbff0001a97f746319e2565629135c89e1ca04eb7b36d98c07d4 6165 php-horde-lock_2.1.4-5_amd64.buildinfo Files: 3d2a873efff68dadd1a1a2cd9a15b410 2086 php optional php-horde-lock_2.1.4-5.dsc 841608c6a929b4205f0437771273656b 17580 php optional php-horde-lock_2.1.4.orig.tar.gz a55b2a842550de98cbcb20a829336fa0 3212 php optional php-horde-lock_2.1.4-5.debian.tar.xz 75dc5bc3db590dc0f1e645af2498cd6c 14364 php optional php-horde-lock_2.1.4-5_all.deb bc75bd409438f3419487d1ef15e051cd 6165 php optional php-horde-lock_2.1.4-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtoVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxVFwQAILvu1jXMXmt9c0YhaRHqLu8fWkR 3Pz8aEsOCreyEOY9my1Hf+rPj8mwvDa7j1oUrl+xq/Y7IcTdxnA7hozVYJhbU7jv pDgVkohdANYV0HA0Ln5dWkZA507KWJc+wjsNNN/mqVkJwMSm5AzDZqwlVjiuvA5v H2i0c0zItqIUBoHSW3S+caGmJychUZQopLwgi4dqxuMCcKzXUmm3GTZ+GsSH+rHY 6+yjGAHcN/0iZXBtZl+k+/JQfjMjdByIx3pFatXgN3qe7gfYjund4XHV6NIsyspR X3nzcAxvQHzYHcn0G7ev80qozZwrR7aPCRYFmRG2P9x8boQ7qazNEYYwkZ3axVri Uk6mUK1UJl9198uxEOTkM8itAovOQ500B7WkE8DtLCxb50TPEuoFKkZrkE8nB55V CajP8vVhjFOJ1bcBvozlVKek+i15P6/ZSepAR7bhGoXMj1+x6dKXTPgIBGSNOQUw 4REeC46IcBf4qHNEGejBF3LS43ud4UeKq9/d8vB4PxZ/4Fv
Bug#959257: marked as done (ITP: php-horde-group -- Horde User Groups System)
Your message dated Tue, 12 May 2020 10:00:10 + with message-id and subject line Bug#959257: fixed in php-horde-group 2.1.1-6 has caused the Debian Bug report #959257, regarding ITP: php-horde-group -- Horde User Groups System to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959257: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959257 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Group Version : 2.1.1 Upstream Author : Jan Schneider , Chuck Hagenbuch URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde User Groups System Package for managing and accessing the Horde groups system. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-group Source-Version: 2.1.1-6 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-group, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-group package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:24:40 +0200 Source: php-horde-group Binary: php-horde-group Architecture: source all Version: 2.1.1-6 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-group - Closes: 959257 Changes: php-horde-group (2.1.1-6) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959257). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 049a9bafb1328e81dc79acafb257a1fd2e8482d9 2097 php-horde-group_2.1.1-6.dsc f16373dbacca32a1f3d31a913c23d6a82e96c312 23174 php-horde-group_2.1.1.orig.tar.gz f87a37186f8dd762650aa891e768431ece01533d 3212 php-horde-group_2.1.1-6.debian.tar.xz f5a753423b741890b285116461a59d80acdd7d95 19888 php-horde-group_2.1.1-6_all.deb 5310700f26cdcb0147d979b54e13a16ea6c327f0 6175 php-horde-group_2.1.1-6_amd64.buildinfo Checksums-Sha256: c7a106f4eedcba829c4a703992ab36cec886a9084cd04c7f620e4e83ab25a191 2097 php-horde-group_2.1.1-6.dsc 93c9353644e8df2dc5eb726752d942acc72e6e1ec9f3b672f3b216eb2e45621d 23174 php-horde-group_2.1.1.orig.tar.gz 7614a87352a0e19f05ba6a74fac4b0dd03aa9deb1d22f975abe47e2c1011e345 3212 php-horde-group_2.1.1-6.debian.tar.xz cb467e7abb0cc56252dd7f9e1d85dcb0f467026b0343f40027c7eac3d47ee8a3 19888 php-horde-group_2.1.1-6_all.deb 2c0a0004b09879b5354ecd72b494628781d9ac5fcd8db49c8b9b5e0d1143e9f6 6175 php-horde-group_2.1.1-6_amd64.buildinfo Files: d62063743cbd8fa0334dbbb8eb27c93f 2097 php optional php-horde-group_2.1.1-6.dsc dc18ab1ca6f3ce6c2149820af11faf0f 23174 php optional php-horde-group_2.1.1.orig.tar.gz 95df36b9e8f851b2489763364061d3d6 3212 php optional php-horde-group_2.1.1-6.debian.tar.xz 080421fa2d2a247801f9e03a8159684a 19888 php optional php-horde-group_2.1.1-6_all.deb 3b662676f6e3709e8429d53ad756458b 6175 php optional php-horde-group_2.1.1-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtYVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxfHEP/1aS64Txics1U7MPJrUc5vjxszsA W0G6SOpS+0osVP4iZvYuWLz9wjT5dEriJ7+Ym1OF6o7dm1Uoh8x+o7rNI4L30bEn KJynvxo6fG602tX2+DNftT2oOPb0m3CrszDR1tk7YG2Irug/QTS7qcMY+NyEuXFH TIvJ0fbIeoY9ZK0ClivPc8v6dRBRg0JBRah8ra8b9Tsve/JC5anB2Gfahb+3ki0B R3Tj/lpG6UExlrIykxX6QHeSOrxM+fFxuHmaRLujVvNC7BINqZX1rNJkhEoZtB4c QzSlz9dy6fL5FAgfKSciK4Mi5dQvir1BPhSE1dybfPEPocLUkvyxK0TwFdyl3tHj ihTeZFrN203f1teJmUXa8NlpfwmzoM4MYLqQA0pE9C+564VXBNQM/z4zYJ1nyKQt 3k/85urSRUraD+NKoyLCBaeYWAIhAFGUTyZXjbgmvRM0quz
Bug#959260: marked as done (ITP: php-horde-idna -- IDNA backend normalization package)
Your message dated Tue, 12 May 2020 10:00:11 + with message-id and subject line Bug#959260: fixed in php-horde-idna 1.1.1-5 has caused the Debian Bug report #959260, regarding ITP: php-horde-idna -- IDNA backend normalization package to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959260: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959260 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Idna Version : 1.1.1 Upstream Author : Michael Slusarz URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : IDNA backend normalization package Normalized access to various backends providing IDNA (Internationalized Domain Names in Applications) support. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-idna Source-Version: 1.1.1-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-idna, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-idna package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:27:27 +0200 Source: php-horde-idna Binary: php-horde-idna Architecture: source all Version: 1.1.1-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-idna - Closes: 959260 Changes: php-horde-idna (1.1.1-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959260). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 8e07a526ce1e582c1b70eb57f417c733db4a9bb5 2016 php-horde-idna_1.1.1-5.dsc b306b43aedfc0c89350c5e5e35974580fbb76c4b 9835 php-horde-idna_1.1.1.orig.tar.gz dff6f63a4bda413acc1a5bd8a2e4caf3fbfe71cc 2784 php-horde-idna_1.1.1-5.debian.tar.xz 85725a0026e43316c26bd7618377a5d09d2cd485 13608 php-horde-idna_1.1.1-5_all.deb d0f4627653c845caec86439e15a3bfa0a9021f8e 6165 php-horde-idna_1.1.1-5_amd64.buildinfo Checksums-Sha256: 13c073c2a379d6f88c8ddd5857f3a7b948701402bf58297a413469060436643d 2016 php-horde-idna_1.1.1-5.dsc d8d8938ff02ac6a4e66c6710175eecf1152cc8d27e69ee82515707eda6bb7573 9835 php-horde-idna_1.1.1.orig.tar.gz 4d7925567709501ef5c30c05911e3d0ebe307cb95845408101948704e41a59e6 2784 php-horde-idna_1.1.1-5.debian.tar.xz ae0ca9488c323eee3f3f6181f1deb8a530631f66d799cc07b43a74949e4f2cbb 13608 php-horde-idna_1.1.1-5_all.deb 6eede8389abf6097b8e7fbea70200fb3170fbecee2359948b05193d2b06ff339 6165 php-horde-idna_1.1.1-5_amd64.buildinfo Files: f1b2860fc51828528c0f817c01fad4b4 2016 php optional php-horde-idna_1.1.1-5.dsc 4e00504b9e51aef71717a5c2ccfbca93 9835 php optional php-horde-idna_1.1.1.orig.tar.gz e918723462ae8af40ad583fa41462e40 2784 php optional php-horde-idna_1.1.1-5.debian.tar.xz eb83d2b511f855f14f2f78ccddbc88db 13608 php optional php-horde-idna_1.1.1-5_all.deb bf50af3eecb67163e3bb522b981b2a79 6165 php optional php-horde-idna_1.1.1-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtgVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxYRIQAKh8TVq7CE9/QBSIEPeiFZsjJrzc S6DLov5TtZAgXFefoTGuE0JFXdnm5xYjSZ1R3MXS1N7VYvl/Sf9VpbPC4vvp4tWH bsizzgBiiNEKUkPODF4EKIzFt3nvwYmakILnuUCDnanE6qvKdKsvJczzN4Mu8gf7 O/Aj/kMuBZIHtmugqoWfyNi/6d1ovmIJVJMudAFLjonqC/+xbm95krfeO7Gjbu7L H5Kv337W3wImA90iyolnmcl9SGceGc7t2UH39BT9eWP2JgQuBaqFJg7/wHoM6YWJ IbbG8T8D8l+G1NDzMpUyEEiu99W2WTv/R8oXvBjbr+vUs5DO+HmKtPIMIcNKuFCt 9jNnTlpIjv73cX5eJPvLBLmf208PGPJT2YTpMn2u18uks9a9Y4FPzgkhDk88ceip th9aYpPVi01euE6dOa
Bug#959258: marked as done (ITP: php-horde-history -- API for tracking the history of an object)
Your message dated Tue, 12 May 2020 10:00:11 + with message-id and subject line Bug#959258: fixed in php-horde-history 2.3.6-7 has caused the Debian Bug report #959258, regarding ITP: php-horde-history -- API for tracking the history of an object to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959258: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959258 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_History Version : 2.3.6 Upstream Author : Chuck Hagenbuch URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : API for tracking the history of an object The Horde_History API provides a way to track changes on arbitrary pieces of data in Horde applications. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-history Source-Version: 2.3.6-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-history, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-history package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:25:23 +0200 Source: php-horde-history Binary: php-horde-history Architecture: source all Version: 2.3.6-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-history - Closes: 959258 Changes: php-horde-history (2.3.6-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959258). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 86890931010c565b38034124c455fbe254ee9c93 2119 php-horde-history_2.3.6-7.dsc e165b1bd7fb3fcdc60c146c3b981e54fbadf4192 26205 php-horde-history_2.3.6.orig.tar.gz e4b133cf11cbfd82cb03d809f8808cc70f307b45 3300 php-horde-history_2.3.6-7.debian.tar.xz 27b056df46cc5498162e7d42ec97f95cca76 21976 php-horde-history_2.3.6-7_all.deb 973df1a5530bc568681455e4673e20fcc2c69529 6195 php-horde-history_2.3.6-7_amd64.buildinfo Checksums-Sha256: fb9342514895b5a51a7979702ea50237e54a9a2d1000368467aff09316229012 2119 php-horde-history_2.3.6-7.dsc fde5aab663ef6a64091b963351a5379630fcf15d7c55726ce65a9d69b912cc5f 26205 php-horde-history_2.3.6.orig.tar.gz 82d4e25566ddaa39075e6d20390b6c222f27b83d2d4f930b8493d035c753e539 3300 php-horde-history_2.3.6-7.debian.tar.xz c80ef58bcdfeba09283b6a66d83c807fb4729a022088b2478cd9a90fb4184931 21976 php-horde-history_2.3.6-7_all.deb 368422dda7c01d5c34ed15aa85119ffd07a7dc35e3529bdb0ce3e2e641fdf7a1 6195 php-horde-history_2.3.6-7_amd64.buildinfo Files: 4a7b8b56c689773daa0c7553311bde3f 2119 php optional php-horde-history_2.3.6-7.dsc f4f30a640a2a17da52e21563363e0243 26205 php optional php-horde-history_2.3.6.orig.tar.gz a7792b86d5b4b22416ee83ecf8037d04 3300 php optional php-horde-history_2.3.6-7.debian.tar.xz 1025e3cf13a8c10a4765e93d4ab0c30c 21976 php optional php-horde-history_2.3.6-7_all.deb e59ca570cc0be3d713c9d42e811dd9cd 6195 php optional php-horde-history_2.3.6-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtcVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxz2sQAIzItzxpmIwIdb6OC53SmXf48AU1 3RMgHlBz8ka570aHwd7TFaFUsX9fJmJimVG9qBYqNQxe25RtSncRKpnFXw/e5gLX gDtpHm+8/y90CpNHyEevznUMJ4E6smmg+QsPD5v/yN4sziKPGuBugun0W1iy3G08 lxs1Gpf8fFuiZQA11oQyvS32vF4Y8hbmM/arz5qJrmm7KTZ0TnxR1K4JLrdLFwDJ dEKCwCCAT66kbZx9R+o5VlzxUIffIV0yKtf9H/+H+av5fZApLUOy9Llgu8C8EmMy SDTOxPmT2D8Dv6i1UJKgvoF9PSX6ojyv7pRtAbKh0NptRrX3mZo4HW2U6Ffk3w
Bug#959266: marked as done (ITP: php-horde-mail -- Mail library)
Your message dated Tue, 12 May 2020 10:00:14 + with message-id and subject line Bug#959266: fixed in php-horde-mail 2.6.5-3 has caused the Debian Bug report #959266, regarding ITP: php-horde-mail -- Mail library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959266: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959266 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Mail Version : 2.6.5 Upstream Author : Michael Slusarz URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : Mail library Provides interfaces for sending e-mail messages and parsing e-mail addresses. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-mail Source-Version: 2.6.5-3 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-mail, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-mail package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 May 2020 00:07:32 +0200 Source: php-horde-mail Binary: php-horde-mail Architecture: source all Version: 2.6.5-3 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-mail - Closes: 959266 Changes: php-horde-mail (2.6.5-3) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959266). . * d/tests/control: Stop using deprecated needs-recommends restriction. * d/copyright: + Add myself as copyright holder of debian/* and phase out Mathieu Parent. + Fix typo in Upstream-Name: field. Checksums-Sha1: 30a31038f998b3f7921073f2893d947d675f513c 2093 php-horde-mail_2.6.5-3.dsc 540dc225adc8c6cdca105f8e77e484d34d2d3ce4 38569 php-horde-mail_2.6.5.orig.tar.gz 8e981146c89d48f6012e495a9dd0a5c41aff4e1b 4432 php-horde-mail_2.6.5-3.debian.tar.xz 0db4110726fe65412459786755396a436653fc0f 41180 php-horde-mail_2.6.5-3_all.deb e61798540baa86a232aa6547f14819fffec2032e 6165 php-horde-mail_2.6.5-3_amd64.buildinfo Checksums-Sha256: cf0a47869848d062284c244de3aeea1588225cd8435d8e1e8b2e170c2bd4984b 2093 php-horde-mail_2.6.5-3.dsc c1904b9417217c92f30c9c7c9b39c6765cb7281ed4f154ccd97f737997411592 38569 php-horde-mail_2.6.5.orig.tar.gz ca7a4163cc7b2ea9572427bc587dda3c140d777d5975b2c2558338958cdf7beb 4432 php-horde-mail_2.6.5-3.debian.tar.xz 7dda35c36f09e4f714930d5ddfe203ecb8e4d240b186f3fdd178546603d1b464 41180 php-horde-mail_2.6.5-3_all.deb f49c87128de0a5d2e65c3245a9b01bf28c8a77895d6d78eba02685ddf192765c 6165 php-horde-mail_2.6.5-3_amd64.buildinfo Files: 11bb0eb5cd3f8f01ba361b2ac0201d54 2093 php optional php-horde-mail_2.6.5-3.dsc 032b0e6d7335b238fa2d6a9ec0e6fbb8 38569 php optional php-horde-mail_2.6.5.orig.tar.gz 42cf2b0e15f028471a5bf7e611e72053 4432 php optional php-horde-mail_2.6.5-3.debian.tar.xz b74cbc0c32affb2da6c7ddbad44337a4 41180 php optional php-horde-mail_2.6.5-3_all.deb 62ef39ec141ebe83d8d613355666eda7 6165 php optional php-horde-mail_2.6.5-3_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wmKQVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxLkEP/13q/eoVW6Me7nVVyaU9r9Gow/Fu rxPMa9ef0fT7kV/VU2sdW4kuqfQlBjmpG+WCxuZvWnSF4+ACibEfJYjUxjbdSkG0 8YCMcACfdu1Nc/a+DAtGBYwOeJPxR8gRHgaOMntX4w52w1/q2fIoo1G4a2cl1wBP HB5KXdR8nG7UxF/ev3CToQivqY0LiaEBqgvWxXDnmzKF9/GkGabZuRDkCtmQKfgv rx8mVK86b4NRjeB7oZdxd+e0bwp6YFDjjudJwtB9Iv2uOEIHS93FCxXQL4HvS20i 7UAT3qkmvF06j3d6O4thtf4DSRS5xkW4fPPxF3e+6U4l+o0e8FIXVx3t6pskxfT5 tYXnmTkyTFFuckkkEQWgdP2bL10uHeHlTVglECiv4yJzZUeM6ifVyBqRj0cmMXNA VTm5RWIF9r38T17kJ21sDxw/HxAtlhlz+4tdqDc0Fa4ql7r9jPY7zGI+ruIvSxqr hyf6CvFr77Z1fU1wo4xnpO5noA4B+M9A7qOa8hLuCg4m6Qd9+vHqSR0GWl8rKFPF KgyTzHreWWQ6IE6jkAbU7aWLLMU5rQz3nIuP+L4lWpmqzmgYIEq9gq9Z9Sa93As6 ulKIUZk9zbA6tJiIOC6+x9UY/Dy3
Bug#959265: marked as done (ITP: php-horde-logintasks -- Horde Login Tasks System)
Your message dated Tue, 12 May 2020 10:00:14 + with message-id and subject line Bug#959265: fixed in php-horde-logintasks 2.0.7-6 has caused the Debian Bug report #959265, regarding ITP: php-horde-logintasks -- Horde Login Tasks System to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959265: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959265 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_LoginTasks Version : 2.0.7 Upstream Author : Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Login Tasks System An API for dealing with tasks run upon login to Horde applications. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-logintasks Source-Version: 2.0.7-6 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-logintasks, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-logintasks package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:32:10 +0200 Source: php-horde-logintasks Binary: php-horde-logintasks Architecture: source all Version: 2.0.7-6 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-logintasks - Closes: 959265 Changes: php-horde-logintasks (2.0.7-6) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959265). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 020b6b11d76b3d4c82144e421a5d9118f7c354ee 2152 php-horde-logintasks_2.0.7-6.dsc 3942f91598a62a10044e21c055e635fec046f954 30230 php-horde-logintasks_2.0.7.orig.tar.gz 389a7a8c47a0db7c4f266c84e0d2267846be7158 3248 php-horde-logintasks_2.0.7-6.debian.tar.xz 8a6e934de2cf8eb1e304b22542f3cb6f13e032fa 29612 php-horde-logintasks_2.0.7-6_all.deb 5571765d1174450f1a721a1d269058b0e0ad4e37 6225 php-horde-logintasks_2.0.7-6_amd64.buildinfo Checksums-Sha256: 541957e4858a02461c976b31da1e998ac1403d2ffd4fa2e1bf2cb17a608a1e05 2152 php-horde-logintasks_2.0.7-6.dsc 4c20378f8f9290f0b4747b7871cfd3081974c098bd6c78ce9ddfdd4360b03189 30230 php-horde-logintasks_2.0.7.orig.tar.gz 9579070842b960cea04e8ea8d23ecb432e9a9fe02f597c54a24e55512dbe3a33 3248 php-horde-logintasks_2.0.7-6.debian.tar.xz f44b66b9e996cc19c84c7d77882318b0127f3acda1230ffd3d9f352a5ae52d28 29612 php-horde-logintasks_2.0.7-6_all.deb d81362101683f3199e6781205b8f3825bd118e723facaa0127a40602eb42274f 6225 php-horde-logintasks_2.0.7-6_amd64.buildinfo Files: cc387f57f58001c1e8117d8c4177a047 2152 php optional php-horde-logintasks_2.0.7-6.dsc 28ac8fef97c667637af2d05d5234d8b6 30230 php optional php-horde-logintasks_2.0.7.orig.tar.gz b1448b498b19f67110f2c7b6639b3390 3248 php optional php-horde-logintasks_2.0.7-6.debian.tar.xz fe98d84c89df6d45934d3e62874a1054 29612 php optional php-horde-logintasks_2.0.7-6_all.deb 023263d48f82204a63918516dc17328d 6225 php optional php-horde-logintasks_2.0.7-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtsVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxg1MP/0wplLwlcnwqlddfacRkGfSm3NKi FZm74I3HcM7CTygXqB6xvQZRHBlUMz2sVh+SYFuHHpK2Z2IsiBM+66sa/hwXCgAh qs1wLOW2vFmQTqWl83l/EBbKMgEaDChMFGpz+iX1rFmkzzLkEf1Ya1W8ltoChT1q HQ3GcRuFp16A7/fcI1PEx7iUGglcJf2Qjckhr8BYCQY52OZ1OkrEQwLE7dCbbr3G Y4yZDwlH33bOpvVGbRrDKB0nN7bd96ZXmdH3otMbM8WciulcrCIe5LbrtYRd5myF IFzF+AyzhWQLewCyVJDCXPjnauHJlwKwDT+yYtlcQuQEv1TlYbHb7Q1D/XE
Bug#959262: marked as done (ITP: php-horde-javascriptminify -- Javascript Minification)
Your message dated Tue, 12 May 2020 10:00:12 + with message-id and subject line Bug#959262: fixed in php-horde-javascriptminify 1.1.5-5 has caused the Debian Bug report #959262, regarding ITP: php-horde-javascriptminify -- Javascript Minification to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959262: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959262 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_JavascriptMinify Version : 1.1.5 Upstream Author : Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Javascript Minification Abstracted interface to various javascript minification backends. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-javascriptminify Source-Version: 1.1.5-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-javascriptminify, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-javascriptminify package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:29:54 +0200 Source: php-horde-javascriptminify Binary: php-horde-javascriptminify Architecture: source all Version: 1.1.5-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-javascriptminify - Closes: 959262 Changes: php-horde-javascriptminify (1.1.5-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959262). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/control: Use secure URI in Homepage: field. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 1fb82f46d4ee3594aecc097f43fe5e8691f2d7a5 2152 php-horde-javascriptminify_1.1.5-5.dsc 9336d06bd48f8a0dbdde21751a7ef1064e213c5f 15419 php-horde-javascriptminify_1.1.5.orig.tar.gz 1a3b47f0f00632afc6887e149d510e69cddcf0d6 2728 php-horde-javascriptminify_1.1.5-5.debian.tar.xz 8995b5041117ef9fe32a466057246f9585ff00e3 11160 php-horde-javascriptminify_1.1.5-5_all.deb 4cfc52209a7ebab3ec58ef33c636f7025d9e15dd 6285 php-horde-javascriptminify_1.1.5-5_amd64.buildinfo Checksums-Sha256: 863baa5ac729445f741274ca3ff5b1e93354ddce5c69cb496c9ffb16d3dd118c 2152 php-horde-javascriptminify_1.1.5-5.dsc aeb1f7249611ad7ccdb382b2f8c0599cd48523677c862e7c90a4a336ecc86879 15419 php-horde-javascriptminify_1.1.5.orig.tar.gz df73936f455099fb75a70960241ed09c2fe3de5d993f282f72f3bacb74b14cd3 2728 php-horde-javascriptminify_1.1.5-5.debian.tar.xz 6f46d8065f749a3b44436e7215a26cef64e5037fd1269cd82d522167ea1f108a 11160 php-horde-javascriptminify_1.1.5-5_all.deb cfbabc316b85151c55a77292191025798ad4afed4de93b251f5cc94139315288 6285 php-horde-javascriptminify_1.1.5-5_amd64.buildinfo Files: 67576e39dc72a225cbcfe56ef94907e9 2152 php optional php-horde-javascriptminify_1.1.5-5.dsc 587fec3d3eb0929e9e1c51875560b07f 15419 php optional php-horde-javascriptminify_1.1.5.orig.tar.gz c138c1ab279c96dcd1256c9452290ba0 2728 php optional php-horde-javascriptminify_1.1.5-5.debian.tar.xz 133b9657009b5d5ba7d7dd7a2ed5059c 11160 php optional php-horde-javascriptminify_1.1.5-5_all.deb a296c72c59fb3b8ed029011e1de8176f 6285 php optional php-horde-javascriptminify_1.1.5-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtkVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxnXkQAKYwi/ziQc/StoMGNdEyazwcD0Fm zsHqGBSQRrW07yVS5DB2BP0Nt2pvjRfvuTnQmvMcmQh43i+66XjD3fyS96BqTeyM 14VGeavuhwA3TCtgM6dTG0m8oXV2/+OEmJuPb6UTMsZCqXCS1kreTst
Bug#959264: marked as done (ITP: php-horde-log -- Horde Logging library)
Your message dated Tue, 12 May 2020 10:00:13 + with message-id and subject line Bug#959264: fixed in php-horde-log 2.3.0-5 has caused the Debian Bug report #959264, regarding ITP: php-horde-log -- Horde Logging library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959264: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959264 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Log Version : 2.3.0 Upstream Author : Chuck Hagenbuch , Mike Naberezny URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : Horde Logging library Horde Logging package with configurable handlers, filters, and formatting. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-log Source-Version: 2.3.0-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-log, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-log package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:31:27 +0200 Source: php-horde-log Binary: php-horde-log Architecture: source all Version: 2.3.0-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-log - Closes: 959264 Changes: php-horde-log (2.3.0-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959264). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: ce30b88c9f71e5bc80e24b5773baa4bb3d0e812b 2075 php-horde-log_2.3.0-5.dsc 6387ecbdd272fecee9afd8c9fb57b00d3a28676d 14806 php-horde-log_2.3.0.orig.tar.gz 6f44119c05f6d089e14f082c7895d8c833ce2f1c 3976 php-horde-log_2.3.0-5.debian.tar.xz 453543786b697d2b3c021b872827ab09db015745 20148 php-horde-log_2.3.0-5_all.deb 037106ad85285079ef578f804e52327f7bcc071c 6155 php-horde-log_2.3.0-5_amd64.buildinfo Checksums-Sha256: 864c45f4bd22cfa25a9160547bd6daba924be053cbb5bf24ee269ea2cd66da97 2075 php-horde-log_2.3.0-5.dsc 18c63b0edf1d06707ca4cd071994dd997f4e7e2c45b9ba658bf4e2c57cd0c538 14806 php-horde-log_2.3.0.orig.tar.gz 3faf20e4a3fc7442c9b4eff0e5ef17f5848c7460ba3508702ce2592b276f0b77 3976 php-horde-log_2.3.0-5.debian.tar.xz 4de91bf7088a2831957f033648ca7587d344dd41588b9a852b74442daf616998 20148 php-horde-log_2.3.0-5_all.deb 4fefb1130d3103ca6b4cd80f651e6cfca8714bd5bd814990f65ccb432c4231f1 6155 php-horde-log_2.3.0-5_amd64.buildinfo Files: af0f8e6da2253e8b67e2cb601cbefb06 2075 php optional php-horde-log_2.3.0-5.dsc d9056eb17ec10bdfff63ee87b03f6a5d 14806 php optional php-horde-log_2.3.0.orig.tar.gz 69b6aa38ecb16a718e566754ca668daf 3976 php optional php-horde-log_2.3.0-5.debian.tar.xz 2e9e9cef58ad09a3ee811ba9686d781c 20148 php optional php-horde-log_2.3.0-5_all.deb 779cad3037daf8ec3950c04d08886a16 6155 php optional php-horde-log_2.3.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtoVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxeXAP/jsrUcJwhE+9kNpl2ZDbCWdWw6ux jOOB6LzzPgZnzzq1utNqHDfAtpNNIB4zoS0VEqaEczNS5uQ/OCy1Uw+fPdgz+JhP bcenV6LcbEd08MxmWQHs/R1aF8joWDOlTx1WVoERzikiW3GfrCZQuo/lXzpONVZf Or90rud7SPVbvU6cxqRtYrfQu+2PFHIx0jv/acJVogttk0t2fiK0VNvHcTsU37pf mpLgSFhVrGwtkIUhD6sIRKQRTEmYCBdI5DgyWZLjq2bsDLEE+kbxvxQAjQaD5je+ 1L8B3xQYQjAo1IIF7QM+Q7mPpCCuluXjvyLd7acsF8w5FNHLP67jSTNd9G4bl97u Spt1yHxImixbQSQ0gPWOVKtXiE0bIzbRWGyGbmQrdoPq3LYOWx0U+DwlqDb9CMcN R7EhShZFqn/8UWsz7xrtutEcbEDDnOt8GScqDghk1hAy/ZhPPcKYgXIKA4lCIHy+ gZerza6TLMA2sK5YJ6Wh
Bug#959259: marked as done (ITP: php-horde-icalendar -- iCalendar and vCard library)
Your message dated Tue, 12 May 2020 10:00:11 + with message-id and subject line Bug#959259: fixed in php-horde-icalendar 2.1.8-3 has caused the Debian Bug report #959259, regarding ITP: php-horde-icalendar -- iCalendar and vCard library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959259: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959259 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Icalendar Version : 2.1.8 Upstream Author : Jan Schneider , Chuck Hagenbuch , Michael J Rubinsky URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : iCalendar and vCard library An API for dealing with iCalendar data. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-icalendar Source-Version: 2.1.8-3 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-icalendar, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-icalendar package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:26:34 +0200 Source: php-horde-icalendar Binary: php-horde-icalendar Architecture: source all Version: 2.1.8-3 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-icalendar - Closes: 959259 Changes: php-horde-icalendar (2.1.8-3) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959259). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: eb3c25d271975f3131c257ba89242679272d8092 2144 php-horde-icalendar_2.1.8-3.dsc 28a04229f7e417450efb9f7af7bb8b7164dbf55e 108647 php-horde-icalendar_2.1.8.orig.tar.gz 6b63a790f9c1c1f74ee8ff811f484cbcc7338f29 3396 php-horde-icalendar_2.1.8-3.debian.tar.xz 9801b29e3cc35f3791cb929de8fe5661b8101e59 58648 php-horde-icalendar_2.1.8-3_all.deb 04f9cc3dfab8acf914262cfa87f51dd886c4075d 6215 php-horde-icalendar_2.1.8-3_amd64.buildinfo Checksums-Sha256: ce041ed6886f6e84f0b4c32fb54b6200c9c759a70380b5dca4954e7ca07cdc22 2144 php-horde-icalendar_2.1.8-3.dsc 00fc5df67c51007878a127f8cb417051d126e5e1ebce0cd14bccc2e503b3f281 108647 php-horde-icalendar_2.1.8.orig.tar.gz 6aad57dcf3c84a476a5111d84560dbcd2ffe2ae94217cc99bb46db1b1e232c52 3396 php-horde-icalendar_2.1.8-3.debian.tar.xz 631bf468ac59fa16f6a2f83c01e2a97d2fbcb62ca7e775e9722a67950ed1044c 58648 php-horde-icalendar_2.1.8-3_all.deb dd64f20ef99ade2a428f14476ca28c550a5605f1c6166a73bb6e7eb10678402e 6215 php-horde-icalendar_2.1.8-3_amd64.buildinfo Files: ceaeb783af94bfb170deb71d170e59f8 2144 php optional php-horde-icalendar_2.1.8-3.dsc 9e641a10ad201baf18f506366bf490c5 108647 php optional php-horde-icalendar_2.1.8.orig.tar.gz b73f6c156fd1614d8c3ee8c0e9b33126 3396 php optional php-horde-icalendar_2.1.8-3.debian.tar.xz f06e8a3470cb9893b54362850305ccc1 58648 php optional php-horde-icalendar_2.1.8-3_all.deb 9fcfa5196aaebffaecdf1b212df74a55 6215 php optional php-horde-icalendar_2.1.8-3_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtgVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxswIQALG+Kj+nqXR1pP0ALlcbmRwRoPIC sORYlxpXqnqcleImkihaUDLlkL+QHG8HFMyK0G4vShMyVtMuFFcSXbycddMoajmh TQAmMJ+4DukiSJ5TLrDjxNj1Rb4Z8w6OztkH/BAtBIWJ+lgzA0iiVuzacoWdBLSL unn8cnG2kYXy/gp4npkbkWznKgfBqOTkGdPVfF3YMGBgr91NAsG19X4zUFBEtptt +Lw5p8d0FSrBeDUSDjg9yQHn2kuQht0PREayk2EMNxuDh5bvqPBA/eNbxlCYM4h1 XBwrMy5RmJkxrAy+uKlf97HQFkU2cOx7K7/Ve7axBGYVxQvRCV3G3z7Kvtem02Xs
Bug#959270: marked as done (ITP: php-horde-notification -- Horde Notification System)
Your message dated Tue, 12 May 2020 10:00:15 + with message-id and subject line Bug#959270: fixed in php-horde-notification 2.0.4-7 has caused the Debian Bug report #959270, regarding ITP: php-horde-notification -- Horde Notification System to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959270: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959270 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Notification Version : 2.0.4 Upstream Author : Jan Schneider URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Notification System A library implementing a subject-observer pattern for raising and showing messages of different types and to different listeners. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-notification Source-Version: 2.0.4-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-notification, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-notification package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:38:33 +0200 Source: php-horde-notification Binary: php-horde-notification Architecture: source all Version: 2.0.4-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-notification - Closes: 959270 Changes: php-horde-notification (2.0.4-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959270). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: cf70a70650a173d9bc5d9419cf8d0c372dccc6bc 2174 php-horde-notification_2.0.4-7.dsc 16924638d441f02af96f9dcd148b78a05b346ae7 21018 php-horde-notification_2.0.4.orig.tar.gz 8d20c449c43da403d39a902eacea10e19286dc58 3188 php-horde-notification_2.0.4-7.debian.tar.xz f368504089033a66a7caa299bf3e9ec5389bc15f 16728 php-horde-notification_2.0.4-7_all.deb 2abec9d35b84ff8bd28253564e33ba26c8b81d79 6245 php-horde-notification_2.0.4-7_amd64.buildinfo Checksums-Sha256: bcf98d2c967ff59cf7ed37dfa14a4e22076603edaf206bf68c424e0159f863e5 2174 php-horde-notification_2.0.4-7.dsc ad325f0efb32a2cb940f80f024ad8df8c831b463f161301168e799b33c5d8020 21018 php-horde-notification_2.0.4.orig.tar.gz 0df956dda1c3e34a50c2430d6765aa3d2473d15fac23f788d3e092586196ac35 3188 php-horde-notification_2.0.4-7.debian.tar.xz d84463ac1cbc81f1fa2965f6f91c1a5c5b1ab2daa3ea0e715a6d0ed584a1ea67 16728 php-horde-notification_2.0.4-7_all.deb 9a6a5d07ac3ed6d2cefe33a9b3e6d0ae7b7fdc8f05bb153448d1a602550794f2 6245 php-horde-notification_2.0.4-7_amd64.buildinfo Files: ab2086fd77cb18b2e11d9c5022967713 2174 php optional php-horde-notification_2.0.4-7.dsc c3bb5f0db798bbf5b5ed0469c09f51f7 21018 php optional php-horde-notification_2.0.4.orig.tar.gz 90af84f58c1dc7867b528786c9fa33a2 3188 php optional php-horde-notification_2.0.4-7.debian.tar.xz f6907071ac3cfb2bc9f10d58f73b986c 16728 php optional php-horde-notification_2.0.4-7_all.deb 256ed55bc481bb6fd4115aadaf9c3a6e 6245 php optional php-horde-notification_2.0.4-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtwVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx7jQP/0ZY9V3XQ7Awvl+OsxQ0YStjfVVv c8PGhRMBegBWyIBqeQ3QjmQzVga5TjARVMLKYb0Tek+qRLIpjrq+El28vxLanIMd x39rffPaI6QPeqfz8NGrc5HNaRbk9rXyosvV3YTD8IFG7/kI5riAjilBDUePOttn Ew6eQUUkbLtEYrJ6NxJ2bCxUbIY5z7we9k2FR4HwG0M9EYmlENfG6MuU4lH4fHda 81UMzhLE2j
Bug#959286: marked as done (ITP: php-horde-url -- Horde Url class)
Your message dated Tue, 12 May 2020 10:00:22 + with message-id and subject line Bug#959286: fixed in php-horde-url 2.2.6-5 has caused the Debian Bug report #959286, regarding ITP: php-horde-url -- Horde Url class to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959286: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959286 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Url Version : 2.2.6 Upstream Author : Jan Schneider , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Url class This class represents a single URL and provides methods for manipulating URLs. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-url Source-Version: 2.2.6-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-url, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-url package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:53:18 +0200 Source: php-horde-url Binary: php-horde-url Architecture: source all Version: 2.2.6-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-url - Closes: 959286 Changes: php-horde-url (2.2.6-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959286). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 595d561bfd4898da426804f77bb358e70b1ae527 2076 php-horde-url_2.2.6-5.dsc bb4a87081e3d832ad083f500a4fc9f8fc38f459a 16479 php-horde-url_2.2.6.orig.tar.gz 2c3992806b2146aa1434ed53a875075f7a24be6c 3268 php-horde-url_2.2.6-5.debian.tar.xz 297994ad62c952cc0377e8a7a3a863558e336556 13280 php-horde-url_2.2.6-5_all.deb fd16383f1aa50f39c19ed5ee318e8db6ebb472fd 6155 php-horde-url_2.2.6-5_amd64.buildinfo Checksums-Sha256: e5bafb45b72b31e1aafa74e531da1866f036657664b70bc3013ead2e4a4f9475 2076 php-horde-url_2.2.6-5.dsc cca3773b3f70e71bc6120e499e20b9e91ce0f582366053f32f79d02e021fe617 16479 php-horde-url_2.2.6.orig.tar.gz 103e873f3fda3bee3890cf0aba3bc18bf29c2154d7325628fd0d8d5a55977bd1 3268 php-horde-url_2.2.6-5.debian.tar.xz 547878ddfe8d3b472f6b6cfb232320ca5d17811dfe0150b0ccc204514b0930a7 13280 php-horde-url_2.2.6-5_all.deb 4e8b53f88642e62dd3f3c27c964231311355e8550e51441742163a68ce0bb5ed 6155 php-horde-url_2.2.6-5_amd64.buildinfo Files: d22ebbb4abac4ceebed03e6cbdc8cd8f 2076 php optional php-horde-url_2.2.6-5.dsc 80b2a6fcaf810b38e607b95ec1d949bb 16479 php optional php-horde-url_2.2.6.orig.tar.gz ab2c8ff93cbb1c6d602e92e9e696c192 3268 php optional php-horde-url_2.2.6-5.debian.tar.xz 4608f491b6d81c1ac3892cebfeabc74e 13280 php optional php-horde-url_2.2.6-5_all.deb 9f322e2062dded22cf1620552c2600bd 6155 php optional php-horde-url_2.2.6-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguYVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxyKYP/3atXzSVp0B4+HjjmDphWulclQY4 EN912h1MNzW/RxIXhtyUA5SbAja8bS0Xu/Ah62xENhjwbY3G9DuHNAxFavRXRH1b 7Fa55ROhKZcRyZlledmwuVNzrlPhVIoQZDm2j2d28WsOnC3tAr6OTiPCHp3mMXoZ RB15LvD6CkHRhc6KbY2dwaoapqfR1HQNYyQCr5V+YNMz40XuK/D2fpuie9BNVjch VWI5VQC7lnryp1ey17T/mufr1pHJsfWffnFKwp7V9vuBc6o7WQlndU2egYIKAg7r SDb6Oo71xyrWCV0POXzvEUT6VB+miS91n9GjmLTwydFGwMxRMye7CC5kCrmb5rpW XUDe5W+u3h91SjvzQP3og4UdR7/C7Sqi1KnXRW+fuGMaQp2nefcWGKikM5gmsYLr 8RzD7CuBTI3Acr9tyA0G74P0iy8EiOEU99PfKeqrAWxMAj7kgA9Tx4MCPtm3SU6m j0L2xqFmV2PQfAjOuJj3XiLCBSKH0VZhs
Bug#959283: marked as done (ITP: php-horde-text-flowed -- Horde API for flowed text as per RFC 3676)
Your message dated Tue, 12 May 2020 10:00:21 + with message-id and subject line Bug#959283: fixed in php-horde-text-flowed 2.0.3-8 has caused the Debian Bug report #959283, regarding ITP: php-horde-text-flowed -- Horde API for flowed text as per RFC 3676 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959283: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959283 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Text_Flowed Version : 2.0.3 Upstream Author : Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde API for flowed text as per RFC 3676 The Horde_Text_Flowed:: class provides common methods for manipulating text using the encoding described in RFC 3676 ('flowed' text). . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-text-flowed Source-Version: 2.0.3-8 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-text-flowed, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-text-flowed package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:51:11 +0200 Source: php-horde-text-flowed Binary: php-horde-text-flowed Architecture: source all Version: 2.0.3-8 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-text-flowed - Closes: 959283 Changes: php-horde-text-flowed (2.0.3-8) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959283). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 075fa407876cce417d2074d50882d3fa7fcd12e2 2163 php-horde-text-flowed_2.0.3-8.dsc 447b221176ffa4f6f42477b75cb29fc5a849a742 14273 php-horde-text-flowed_2.0.3.orig.tar.gz 00157788e6711d1a1a02f0f0bdead70a1c6a83b2 4184 php-horde-text-flowed_2.0.3-8.debian.tar.xz c43fca8b14d680079ff8851227269b12878ff880 10808 php-horde-text-flowed_2.0.3-8_all.deb 8137bdeb932d50c272d057cc79f8c1cce609bfc3 6235 php-horde-text-flowed_2.0.3-8_amd64.buildinfo Checksums-Sha256: 823459e5057ebc77909d2eb5e0205116526c8fc52a8e6b6a99e2641fe6273bb2 2163 php-horde-text-flowed_2.0.3-8.dsc 3ede13d184f6152ffdaa78924bdb815e5f89ad1822c78752f6141d4b853d2124 14273 php-horde-text-flowed_2.0.3.orig.tar.gz 98665bf248f89f996d5e6ceb94805210f44b9cc9bb38f5b06cc366aea7752eb4 4184 php-horde-text-flowed_2.0.3-8.debian.tar.xz 369fff4eb0f485c1ec42381fb45cd0a2838f367d1d410ff3def9563b73f10f79 10808 php-horde-text-flowed_2.0.3-8_all.deb 0a1d7bc0734ecbbe462ed8c0a8b4ee9e5202ce64b8ce02e53e190f955d5218cf 6235 php-horde-text-flowed_2.0.3-8_amd64.buildinfo Files: f62be6ba533258be6183ef3f55cee7a6 2163 php optional php-horde-text-flowed_2.0.3-8.dsc 4ed93101d2ebbacabe830bb6d8f5e710 14273 php optional php-horde-text-flowed_2.0.3.orig.tar.gz 942e35335ff42ce8f5d4cfdf9e171947 4184 php optional php-horde-text-flowed_2.0.3-8.debian.tar.xz 357dd425b86ecd09a9e781bb56c7e4a4 10808 php optional php-horde-text-flowed_2.0.3-8_all.deb 85b3ff624d3974637c6152d9060f92c5 6235 php optional php-horde-text-flowed_2.0.3-8_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguQVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxIKkP/0IN0k6YgUqutrhokv1awZx6OSvd ykQHWl7OofrfAfX6IszaBiGJE1Xz51aIlnC96w99Ja9Pi32r3+gTZGQeemW9UK09 wh+Cj2RSEWC5aABQ5CagH0TlM1UxyKYD4FW3IWK2SeJCTgiudNALjxqbNXeRFg3D Kt2YbdL5SbnSqbO8bHsk0g4twTYHh0xOZmp3aKqWk4CW1lQ/hC+0vQOspD7g3g
Bug#959273: marked as done (ITP: php-horde-secret -- Secret Encryption API)
Your message dated Tue, 12 May 2020 10:00:17 + with message-id and subject line Bug#959273: fixed in php-horde-secret 2.0.6-7 has caused the Debian Bug report #959273, regarding ITP: php-horde-secret -- Secret Encryption API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959273: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959273 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Secret Version : 2.0.6 Upstream Author : Chuck Hagenbuch , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Secret Encryption API An API for encrypting and decrypting small pieces of data with the use of a shared key. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-secret Source-Version: 2.0.6-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-secret, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-secret package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:41:03 +0200 Source: php-horde-secret Binary: php-horde-secret Architecture: source all Version: 2.0.6-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-secret - Closes: 959273 Changes: php-horde-secret (2.0.6-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959273). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: dd412cc4e363041030910472dbfd994b51a4c581 2108 php-horde-secret_2.0.6-7.dsc 9efd96ada00a73d2ab307c8e4cefe1520da8a945 13638 php-horde-secret_2.0.6.orig.tar.gz 92c3e59e829ba6e7221b684fbe5a5914db430e74 3212 php-horde-secret_2.0.6-7.debian.tar.xz 688cb3aa0bbd1dce84487ea4234f7031224cc1b1 11432 php-horde-secret_2.0.6-7_all.deb 4942ec6ba907d5fee03f027c36a3633c96832cbd 6185 php-horde-secret_2.0.6-7_amd64.buildinfo Checksums-Sha256: 07d10753ae8255f7fd31f215d594861d156d046912ebbe5868f1c8529ccb6ba1 2108 php-horde-secret_2.0.6-7.dsc bb0b01c5db32c83daec183a635d5c1360249e92ce064ebc12d645e8c4556aa99 13638 php-horde-secret_2.0.6.orig.tar.gz 050102c60a4446e102307bea87453afd8bbb4bfd32548ab19cb19befd9063c98 3212 php-horde-secret_2.0.6-7.debian.tar.xz 35807dfd3876e167fc67206a6868a32fd96ac9ee4e3abef37beb7ec353cd929c 11432 php-horde-secret_2.0.6-7_all.deb aaec66e44e1a93b15bedf368f230f16a6dd4fe3c31d020ef4087c619fd386294 6185 php-horde-secret_2.0.6-7_amd64.buildinfo Files: c014b1c624a276456c93040bb793da0d 2108 php optional php-horde-secret_2.0.6-7.dsc 0c721e86e9cdcb32191307695711cb4c 13638 php optional php-horde-secret_2.0.6.orig.tar.gz 751e61d1302bf2df347f3a31e5c47d0a 3212 php optional php-horde-secret_2.0.6-7.debian.tar.xz f22b6c13be3a6a55de272ba910503611 11432 php optional php-horde-secret_2.0.6-7_all.deb 6e4afdaa90a7897e0ad9648bc16536a0 6185 php optional php-horde-secret_2.0.6-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgt8VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxhpMQAJya2Zv9nnYBlNFQlcMFYIgnmoY2 4Bsr3YtiPzK+H8FMzXiio4xypZMktywP6xcuLoGcCuNkoiGY3HkCzIiVXR7VfY1K NyFwqZNKPymZZKUj/pipCg6pBv/YD6B6TkG69kETvtF+peKg2bEvZkuRfrk1ete1 j4OwduAutG0RDBP9hD+6Z9DHO2BpiOSKZhIoR+tz7wkPtJ8wCQW6ZCfr7gWtpupU ED9qN3jGWjduajBTcR4Ha1CPII6y+UqBQU2uVXtlRQ4GCJHckhKL6zj5d0Dv8Df6 SHMwLSh4hxRCrOOvrgoV7sOAezWDdAjqQORG+aIzzLgmf5movpuI5AbctOjAv2ZF NOqHJ+IP2HYGxuY88tmP9c8snc3lX4Zopt5VLicNlJifiOTSh4zF0sequqJbyZ
Bug#959275: marked as done (ITP: php-horde-sessionhandler -- Horde Session Handler API)
Your message dated Tue, 12 May 2020 10:00:17 + with message-id and subject line Bug#959275: fixed in php-horde-sessionhandler 2.2.9-5 has caused the Debian Bug report #959275, regarding ITP: php-horde-sessionhandler -- Horde Session Handler API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959275: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959275 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_SessionHandler Version : 2.2.9 Upstream Author : Chuck Hagenbuch , Jan Schneider , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Session Handler API Horde_SessionHandler defines an API for implementing custom session handlers for PHP. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-sessionhandler Source-Version: 2.2.9-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-sessionhandler, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-sessionhandler package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:42:26 +0200 Source: php-horde-sessionhandler Binary: php-horde-sessionhandler Architecture: source all Version: 2.2.9-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-sessionhandler - Closes: 959275 Changes: php-horde-sessionhandler (2.2.9-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959275). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: e5210fc17ff58466ff5c800c270ad81d7a5b3779 2196 php-horde-sessionhandler_2.2.9-5.dsc 8c8d7c0cfb283c1d1cb873f230029faba68202d9 24709 php-horde-sessionhandler_2.2.9.orig.tar.gz 0340181b3afa1741e6b22a709e116907da39437e 3320 php-horde-sessionhandler_2.2.9-5.debian.tar.xz f03cefa6c8346cf053457af66746c6288d9f 22928 php-horde-sessionhandler_2.2.9-5_all.deb a8d6af1500da3e7eff8eb8cb6ff56fa31e224442 6265 php-horde-sessionhandler_2.2.9-5_amd64.buildinfo Checksums-Sha256: 2184604dd76f0dde604f5b7ba72a8b2ea2007c3a0165ca400bd2b3eaba8a6f0f 2196 php-horde-sessionhandler_2.2.9-5.dsc 8f0ef6ba8503f40783d3807f0a1a79fc9f8ffae051da0089187f5afc9be7f354 24709 php-horde-sessionhandler_2.2.9.orig.tar.gz 7925916a032f0835e3a0b5dbc9e9a5889ea52ef844243e84c683931c347c7ee4 3320 php-horde-sessionhandler_2.2.9-5.debian.tar.xz 4e5155256dfec797d7afa21ceafae462b3b02771686cc61bad3665c3547f9e54 22928 php-horde-sessionhandler_2.2.9-5_all.deb 2fe307ba3a2e323793930d90d178ad72dc9e8724a5731a38130b92ce24a08217 6265 php-horde-sessionhandler_2.2.9-5_amd64.buildinfo Files: 485d46406e8ea6396311d3c4f164be8e 2196 php optional php-horde-sessionhandler_2.2.9-5.dsc ebf9bad3db409508011bb3ae04bc9c3a 24709 php optional php-horde-sessionhandler_2.2.9.orig.tar.gz c7eadbbe1bd808281d3794b1c99a8fe6 3320 php optional php-horde-sessionhandler_2.2.9-5.debian.tar.xz 5705e67d7bf65a995d15780114298300 22928 php optional php-horde-sessionhandler_2.2.9-5_all.deb 69d861a8f3cf16048c3ac6e0dba4ce0c 6265 php optional php-horde-sessionhandler_2.2.9-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguAVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxJk8QALdt3iNvGODf+if1D4sPqJyjIujA 5Vh3Cmjbo0pM8SzDDXW2EdXR13S87rhwMcBVKfQZfTYr9iBPAs2Vi7lcg4v+OJaV iFmpkBWq4Lweoqm8Zjasj8+AXQmT4gdVndBNDpdDrDYQGJxLUQx5KBoF2tc0eA2j 1SZinznlJIzzygeB5kqDOTcZFTGSWqU
Bug#959279: marked as done (ITP: php-horde-stream-wrapper -- PHP stream wrappers library)
Your message dated Tue, 12 May 2020 10:00:19 + with message-id and subject line Bug#959279: fixed in php-horde-stream-wrapper 2.1.4-4 has caused the Debian Bug report #959279, regarding ITP: php-horde-stream-wrapper -- PHP stream wrappers library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959279: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959279 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Stream_Wrapper Version : 2.1.4 Upstream Author : Chuck Hagenbuch , Michael Slusarz URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : PHP stream wrappers library A collection of stream wrappers. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-stream-wrapper Source-Version: 2.1.4-4 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-stream-wrapper, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-stream-wrapper package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:44:56 +0200 Source: php-horde-stream-wrapper Binary: php-horde-stream-wrapper Architecture: source all Version: 2.1.4-4 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-stream-wrapper - Closes: 959279 Changes: php-horde-stream-wrapper (2.1.4-4) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959279). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 1d5278aa2c2001f20ef5b6d46e6f11454930c1c8 2193 php-horde-stream-wrapper_2.1.4-4.dsc 2badfb8a6fcb285964ccc7f161be11554b81b727 5668 php-horde-stream-wrapper_2.1.4.orig.tar.gz 6716a8a9aaf716401d6c6b9af29dd5bbdf409f8a 3772 php-horde-stream-wrapper_2.1.4-4.debian.tar.xz 75904127768986737f83cf2aafc393e7327fede0 11016 php-horde-stream-wrapper_2.1.4-4_all.deb ff995f1ecc6ccd1a448f831bb8d88fa6769cde40 6265 php-horde-stream-wrapper_2.1.4-4_amd64.buildinfo Checksums-Sha256: 0f53a92098b1bf63a24d471635197999c51741cff89c80e818f6deae0ea5bd31 2193 php-horde-stream-wrapper_2.1.4-4.dsc 5a6f9f3e4415e6e83afcf0dae0bbb929608d58d3283d4dd8b5f38095c8cf4ccb 5668 php-horde-stream-wrapper_2.1.4.orig.tar.gz 376b17e682b14541919b4ea1b8a4e8658bf7f0541d1d63583d150f204896cd78 3772 php-horde-stream-wrapper_2.1.4-4.debian.tar.xz 5bc8f4cd940ce46a9414aab11879e5ec588d5965b540143ea1c1cfd7ff02c561 11016 php-horde-stream-wrapper_2.1.4-4_all.deb 038e367d78b60a5e82cb4d2223add318f5c65f39d00e837714690bf486fb1780 6265 php-horde-stream-wrapper_2.1.4-4_amd64.buildinfo Files: 3814e1bba89cad982b8021a90c24d884 2193 php optional php-horde-stream-wrapper_2.1.4-4.dsc 17f90441cfd60a7f540c0639264e2104 5668 php optional php-horde-stream-wrapper_2.1.4.orig.tar.gz 1f85b2c218bb6b297d99266debd5d231 3772 php optional php-horde-stream-wrapper_2.1.4-4.debian.tar.xz 3e95e052e9ab169b4d6722261f87d70a 11016 php optional php-horde-stream-wrapper_2.1.4-4_all.deb 6319930224136ab71314c9d116c6b80b 6265 php optional php-horde-stream-wrapper_2.1.4-4_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguIVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx3ZwP/RSvI+5H5cHlGO/UdGsoRZ+HIy0Z OIuVJ1Ty4NzxAU4RIwgvTuDm+nZdXOWWpQlxBx2jROtOkymoagQ7A+EtYtH+3Wi2 2+HSYavrp2+3/mOvSZuCFnm2yxaBicP1IrYwbR1Q/Q805j8AmP/N/gWqjoBBv17R BCn0yU6UOjZG7OeY5r+Zi/iFkimy5Xpb/6HXj7YLsp1JJyAvCicPtSs7b3vIPc5h 2gi8u4xG4PH1xOhX8zuSnFk0HWbDhJa
Bug#959269: marked as done (ITP: php-horde-nls -- Native Language Support (NLS))
Your message dated Tue, 12 May 2020 10:00:14 + with message-id and subject line Bug#959269: fixed in php-horde-nls 2.2.1-5 has caused the Debian Bug report #959269, regarding ITP: php-horde-nls -- Native Language Support (NLS) to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959269: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959269 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Nls Version : 2.2.1 Upstream Author : Chuck Hagenbuch , Jan Schneider URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Native Language Support (NLS) Common methods for handling language data, timezones, and hostname->country lookups. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-nls Source-Version: 2.2.1-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-nls, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-nls package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:37:45 +0200 Source: php-horde-nls Binary: php-horde-nls Architecture: source all Version: 2.2.1-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-nls - Closes: 959269 Changes: php-horde-nls (2.2.1-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959269). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 5c05638b6b7844a25d0f528177b87c7b93979b8b 2011 php-horde-nls_2.2.1-5.dsc 3b4e4475a2532867552abb2fdea48bd8f75be50c 448774 php-horde-nls_2.2.1.orig.tar.gz bfe4bb9bfd0e7827c16b5a9fec39641b860e74aa 2960 php-horde-nls_2.2.1-5.debian.tar.xz 5792de667fbd62b9f4e89d5301b4843c303f8635 209324 php-horde-nls_2.2.1-5_all.deb 6501bd0c5c516f935db8c0e2df46a1dc6e297160 6158 php-horde-nls_2.2.1-5_amd64.buildinfo Checksums-Sha256: 43936219d0b19d9770f675444a9ab4dc8b0da49d001d377c6c2d3a7a3da052d1 2011 php-horde-nls_2.2.1-5.dsc 8f08e8192b09ffd15615b452a3159d9e4bae98dccb52ba88efa0402288eee853 448774 php-horde-nls_2.2.1.orig.tar.gz d1cf5ef4556bc372f143a5dad48abc7690cc95528111c2546e7164eae6c98d87 2960 php-horde-nls_2.2.1-5.debian.tar.xz ebed81e40540f4857334e4bd5d3b1288a49380fea3b7b20cf9998ee16c78 209324 php-horde-nls_2.2.1-5_all.deb 08b28e9a32dc3c88ff0c10ec5950874afcb4d4662d1b4ca7ca579f0ee80f8b3b 6158 php-horde-nls_2.2.1-5_amd64.buildinfo Files: 0ee16a3fb90dd5da543fc0a8eeeaf776 2011 php optional php-horde-nls_2.2.1-5.dsc 83fcdd4b852e82f08f4d071dadd16849 448774 php optional php-horde-nls_2.2.1.orig.tar.gz 5ba29e4b523daf2d01087532129d5bcf 2960 php optional php-horde-nls_2.2.1-5.debian.tar.xz a7f4c782d94d660a29fd46713620b27a 209324 php optional php-horde-nls_2.2.1-5_all.deb 9b013c047fc6c77626697ac3ccedb585 6158 php optional php-horde-nls_2.2.1-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgtsVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxkL0P/jyLiwzLHhPEFVpSTmHC8R7MfQpo pr1BH06pa35r92mzsPvbufaDJnCGywneev84cdXajTDBIFYzeXiTxL4TNWuIbaFX JVILO0ouclonjTeInhIfvVaJCoWKXc63wlz9TeWnZQu5HIGBTsZjN8ooZsapjVgm rqoyZGuH8JLwPNkxQXW+tQNDMTx40XHBdK8E53qn/XzdH2n98fZ24dayBxr8YOY/ Aj2fGPj84HnhbsDPUw+TI8mnBnnjQlfLx9DG9wW5MC1ciTA+vKoZuFVB27JJxdf/ +uLPiEXo9fXBGR1rHZYokog5flCsrKdmoikv8oy/NeufhgIZC2wasuugsOduwN6L iH2rKKTPet2jrAVPcnqlqOKcfg6jlOQYcT3/m+sZvyltmU9ndgFoK3hSo99hNTz3 vWwdmdrMVfiLiUu4T677ud6/y2GouL9QvFPPdtR4+KtvrdcWaqJhHQs8S
Bug#959276: marked as done (ITP: php-horde-share -- Horde Shared Permissions System)
Your message dated Tue, 12 May 2020 10:00:18 + with message-id and subject line Bug#959276: fixed in php-horde-share 2.2.0-5 has caused the Debian Bug report #959276, regarding ITP: php-horde-share -- Horde Shared Permissions System to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959276: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959276 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Share Version : 2.2.0 Upstream Author : Jan Schneider , Chuck Hagenbuch , Michael J Rubinsky URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Shared Permissions System Horde_Share provides an interface to all shared resources a user owns or has access to. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-share Source-Version: 2.2.0-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-share, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-share package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:43:05 +0200 Source: php-horde-share Binary: php-horde-share Architecture: source all Version: 2.2.0-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-share - Closes: 959276 Changes: php-horde-share (2.2.0-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959276). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 122e4b5c6899070b374bc7be330e05917ce33214 2097 php-horde-share_2.2.0-5.dsc eb85b301f58fa5f64f14ce8dd63647a72fe7ae3a 61899 php-horde-share_2.2.0.orig.tar.gz 0ef8d6b35da56cc034cbf7951cafbe6ade880055 3380 php-horde-share_2.2.0-5.debian.tar.xz f131206342d4e36f56a7a1ada2eabe32df977938 51432 php-horde-share_2.2.0-5_all.deb 5c94b9162ff34e6428f249de261ec606a86bcc11 6175 php-horde-share_2.2.0-5_amd64.buildinfo Checksums-Sha256: f19b4699fb136644a058c0084888eccd9c6fa3caa6bc0395a6b43e23f6d820a4 2097 php-horde-share_2.2.0-5.dsc a1aacdef5080237130e337ff5179d23b9c578bc830300949ba045e30d5665397 61899 php-horde-share_2.2.0.orig.tar.gz 7d508c31051ed3bef4686059bbcd2231762ba99cac193e8c881711b20668 3380 php-horde-share_2.2.0-5.debian.tar.xz bf8fc9e2e1bf2621a0e8e6eb69a02e892eab082c6a502089fc18141a0f760cf4 51432 php-horde-share_2.2.0-5_all.deb c13fc56791e1fda19cd7fbbe37c6a99d1b2e77938eb4dcd157ed6065ad63295b 6175 php-horde-share_2.2.0-5_amd64.buildinfo Files: a61b02b69e3e5987695add00b65d 2097 php optional php-horde-share_2.2.0-5.dsc 0085705c24d02a403873397b6897105b 61899 php optional php-horde-share_2.2.0.orig.tar.gz 859953b2a38ebe2a664ba9be822c590b 3380 php optional php-horde-share_2.2.0-5.debian.tar.xz 48ed4624e2612713372a6897709bf7f0 51432 php optional php-horde-share_2.2.0-5_all.deb 4ea7dcfe118f823f8d75fe1afcfe411d 6175 php optional php-horde-share_2.2.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguEVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxX50QAJpB7tZ9yPMv8TdJmxkwleHupLPt sHw/Pgv6yujuHtBTZfk8NrxCnZIxhY+MEV7jSgkgu8Ov66d2r+sa3b4j+F886iMx ZnTZe3I+IFv9X8vIGWpCTmPQcQjq1ro3xj82vdLbcILWW6tL+A2LY3tJYf5ZaRrg +48YNTYrjVmGzIKHfi+NGuKgULuge3rhVu97CAJcztBeKs5ShC6UfyR15P9QOYf9 64EEiGeP/VQdZeuxlojBQi1aAZchOxFUhWqC3VQAXloJjfWbc/c5sKNiwyXv3YP8 Ac+Vg2LVfygUX+C1qZojec151iKHCrmneUnTrqTDyWx64bBe5OEKXFPaBquk6ji1 wcq0og6fqm78/1PJHHOvEtQi3lLKt2Pu7JApJzBxyjk6M1LZi
Bug#959272: marked as done (ITP: php-horde-prefs -- Horde Preferences API)
Your message dated Tue, 12 May 2020 10:00:16 + with message-id and subject line Bug#959272: fixed in php-horde-prefs 2.9.0-5 has caused the Debian Bug report #959272, regarding ITP: php-horde-prefs -- Horde Preferences API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959272: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959272 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Prefs Version : 2.9.0 Upstream Author : Michael Slusarz , Chuck Hagenbuch , Jan Schneider URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Preferences API The Horde_Prefs package provides a common abstracted interface into the various preferences storage mediums. It also includes all of the functions for retrieving, storing, and checking preference values. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-prefs Source-Version: 2.9.0-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-prefs, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-prefs package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:40:10 +0200 Source: php-horde-prefs Binary: php-horde-prefs Architecture: source all Version: 2.9.0-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-prefs - Closes: 959272 Changes: php-horde-prefs (2.9.0-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959272). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 0a49d8eb927361f9e06e481435ba4a6e2af09916 2097 php-horde-prefs_2.9.0-5.dsc bf0f9cf1b05b1cca3f1cc8482e95b0412ee87f60 54916 php-horde-prefs_2.9.0.orig.tar.gz 4fa9567f4387ee1346027378c5bb45747a6b367a 3396 php-horde-prefs_2.9.0-5.debian.tar.xz 1e834f2a8da11fe404b27e418eea54ca72314603 54716 php-horde-prefs_2.9.0-5_all.deb a333d84f6e510cdc9e152f227bd19a1d77c56d63 6175 php-horde-prefs_2.9.0-5_amd64.buildinfo Checksums-Sha256: 2ad5be0312d25edd3c1ecbe15f07ba0a721313c6af4418a2e366fa47fb22e9ea 2097 php-horde-prefs_2.9.0-5.dsc f5fea4144f825075a0305a107bcb0bac6d0f0bb11c55e14ef1e0b07a51600340 54916 php-horde-prefs_2.9.0.orig.tar.gz 55b8dac8caa55038df16a4ee9e8cc664719dc1fe76ba8402c607dbb1418a3ce4 3396 php-horde-prefs_2.9.0-5.debian.tar.xz fc4dd65f75e9cac56c398ab82881d6fc979e00cae97297f95fd0e444e4b0306e 54716 php-horde-prefs_2.9.0-5_all.deb 5351aa7b774176cbf4647171a849825ae6d5d69ccb4bc0a98ba7c8eaed533cd3 6175 php-horde-prefs_2.9.0-5_amd64.buildinfo Files: dfe7831db70b35757364586710ea1123 2097 php optional php-horde-prefs_2.9.0-5.dsc d8981fa684f274419360bab0848c76d8 54916 php optional php-horde-prefs_2.9.0.orig.tar.gz 2034e609b1f53783bcaeab8051b55670 3396 php optional php-horde-prefs_2.9.0-5.debian.tar.xz 5eabfe38884f3aaf97b53e9a5fa8f49f 54716 php optional php-horde-prefs_2.9.0-5_all.deb 5cd9bda3e40faf32a3ef283c5fde483d 6175 php optional php-horde-prefs_2.9.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgt0VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxbu8QAKHgUulSy1YxWAc9HGSp03qPhvtY 5o0fg4kFTH2T2EzEkfGDNlAWOMhwpaePb4P9cVeVWcEj6uzUfTmjCGfBrZU1HJFj S2e2yN20vprDvVvbod7Ee5Z0zpK3AG1BT2QtFXjW1Jo5V1HRodyotJUHbAEe2Kre eG8DP+EtI0cuq0vooF8wdOiaTApMFi726UwCbvoZE3u1Y48URFQO4M1oE++tpvar m5x1Dne/xKadzVLjpzAu5L/gN1x6WtQidIUwW+SnUhI9sY1xW+Oh69k+HfbRPGV7 5CHJfp29RVAS/LAuTOE
Bug#959271: marked as done (ITP: php-horde-perms -- Permissions library)
Your message dated Tue, 12 May 2020 10:00:15 + with message-id and subject line Bug#959271: fixed in php-horde-perms 2.1.8-2 has caused the Debian Bug report #959271, regarding ITP: php-horde-perms -- Permissions library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959271: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959271 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Perms Version : 2.1.8 Upstream Author : Jan Schneider , Chuck Hagenbuch URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Permissions library The Perms package provides an interface to the Horde permissions system. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-perms Source-Version: 2.1.8-2 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-perms, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-perms package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:39:25 +0200 Source: php-horde-perms Binary: php-horde-perms Architecture: source all Version: 2.1.8-2 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-perms - Closes: 959271 Changes: php-horde-perms (2.1.8-2) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959271). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: b1ac719e86ff21748aff8f36a07e0abb6bdc0683 2097 php-horde-perms_2.1.8-2.dsc 09bbb72dc290e3e1a91786b5dc4c4a52a3f0ba06 38068 php-horde-perms_2.1.8.orig.tar.gz 2e76ce87c18cfa537a0b9131974c4217745221ac 3296 php-horde-perms_2.1.8-2.debian.tar.xz 0f9bf44dc18e6e652515553d57023c91e665772d 40960 php-horde-perms_2.1.8-2_all.deb 3d7895a99ebc9a1ea00b45d5915b55932abfbe8c 6175 php-horde-perms_2.1.8-2_amd64.buildinfo Checksums-Sha256: ee11be19dbce49556f35f7f87b09a08af5c6f436059bb96007fcacf6fceeb3bb 2097 php-horde-perms_2.1.8-2.dsc af8ebc7e4c54cc0c159ae67d5493d7b3312843d6280e029ba35119d254297b1b 38068 php-horde-perms_2.1.8.orig.tar.gz 67a0157073ea929db61b1d5b0977ba32bfd07daeae5bbd2ae594d644945d2807 3296 php-horde-perms_2.1.8-2.debian.tar.xz c6087a50bc93c0c95a3f54ce27daa821ea591e66c1a127cab6c2f3a332800d82 40960 php-horde-perms_2.1.8-2_all.deb 91fab81d6efb37edf44089cd21e169b02823c80ebf877d9f859393231b092f79 6175 php-horde-perms_2.1.8-2_amd64.buildinfo Files: 193ef6dbf5461459afb094bb9a80f549 2097 php optional php-horde-perms_2.1.8-2.dsc 77849e64aa9d5b3d63b8e7ff127ec1b7 38068 php optional php-horde-perms_2.1.8.orig.tar.gz cd9b9f4a6ad2650b55f8ef79e264343f 3296 php optional php-horde-perms_2.1.8-2.debian.tar.xz c607943758299e9e0af2884e8205bedd 40960 php optional php-horde-perms_2.1.8-2_all.deb b8ed3b80e6b0e8901f7e9196f13d15db 6175 php optional php-horde-perms_2.1.8-2_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgt0VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx4BEP/0ZMs/VSfyBU7W/MkXh8BXztVfuo TxvvJdmLeFG6WOXbJPDZILCsvzS8cD2ihQBvoS2N+HQbq6g5GCE+UOe3kA95/vr1 HqaJ2vuvsB5o5tpOSihRKK5/GwiyXhTqcoUmcxV8+pDTB07+gOfhn5p8ceOBlaTP Nss1KMMIbcQ04PK2x649QXbTED4VuaBhx3qJiBWg46cp6l6EIwY+0PmlVPi8RoDB 4Tc71kS+yjXCbBRERobfOLfHz5HyQurTNheQ9QG+DQcXf/o16Oyq5z2jFYPXzw16 z1N3i/rKuvgunJmmRq8H2g7OiUORmhUZsGRk+F2AYNKscCV4RTIq6oyauvqpdaMI D9I/zCYWscN6u8zNkn+OC8jdl0ltC2VFD339op4veP/emx1IPT8B8auWDCj9tI7x 3mnqgSdzweDRvF6n/IZ48hL8JmU1kAeNtzexOflMexnp
Bug#959278: marked as done (ITP: php-horde-stream-filter -- Horde Stream filters)
Your message dated Tue, 12 May 2020 10:00:19 + with message-id and subject line Bug#959278: fixed in php-horde-stream-filter 2.0.4-7 has caused the Debian Bug report #959278, regarding ITP: php-horde-stream-filter -- Horde Stream filters to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959278: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959278 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Stream_Filter Version : 2.0.4 Upstream Author : Chuck Hagenbuch , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Stream filters A collection of various stream filters. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-stream-filter Source-Version: 2.0.4-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-stream-filter, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-stream-filter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:44:21 +0200 Source: php-horde-stream-filter Binary: php-horde-stream-filter Architecture: source all Version: 2.0.4-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-stream-filter - Closes: 959278 Changes: php-horde-stream-filter (2.0.4-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959278). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/control: Use secure URI in Homepage field. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: d7be67df43ed6326c31ed46801b2e30d148ca573 2186 php-horde-stream-filter_2.0.4-7.dsc d42a9a549d5577ad8b03377dc4478b3e2688a742 13535 php-horde-stream-filter_2.0.4.orig.tar.gz dc144e2d594a6e98df33607108152b1f129e776b 3172 php-horde-stream-filter_2.0.4-7.debian.tar.xz 1188c9e67d0379fb91138e8a9136974312af71f4 10184 php-horde-stream-filter_2.0.4-7_all.deb 84d78ddb0a230df70cf1ec6694c6640a353a018f 6255 php-horde-stream-filter_2.0.4-7_amd64.buildinfo Checksums-Sha256: 71161e6cb9bbf18dce7f9b2b4051593d00ca488ac2b77e552093350612e8 2186 php-horde-stream-filter_2.0.4-7.dsc caad33718af31a9afbb752bc8881a926dc11b0ace45afb56e4dd839b385e29b4 13535 php-horde-stream-filter_2.0.4.orig.tar.gz c1b03a60c46d2f0253eeaed73e392647fb2c0903b25af62b6d6856db55241002 3172 php-horde-stream-filter_2.0.4-7.debian.tar.xz 1092de943eba15423606f8255aad9a373576e581d5010552ce4db414cfa4a7f0 10184 php-horde-stream-filter_2.0.4-7_all.deb 5ae74f9d802bd6c9671f32a6c1c9b93632afdff8f4bc5f99787e6ad0b9829c98 6255 php-horde-stream-filter_2.0.4-7_amd64.buildinfo Files: e5ab4db414e40b4b9b1295e3c7017a53 2186 php optional php-horde-stream-filter_2.0.4-7.dsc 46ef9f11c889f93af5bcccf96842be2e 13535 php optional php-horde-stream-filter_2.0.4.orig.tar.gz 7a4dc5f20043164296446c042454f54e 3172 php optional php-horde-stream-filter_2.0.4-7.debian.tar.xz 3d0d3efa3c0dde6f96b0616ac3ee8b51 10184 php optional php-horde-stream-filter_2.0.4-7_all.deb efef26aba6f4e72c341feed45a94eabc 6255 php optional php-horde-stream-filter_2.0.4-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguIVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxQ1gP/iw2t+po0sidOTfN4IopiyOp0vCp cnAnoN8+EWZr6YcOLNME7+bvemoi9zQT/09Ec2RT7wBkfwEgB7JHvwHD7kYokYIt 4n+7ewFd/T8ApP5FGefhjcjOMCA+64koT7O7TBNdXTApbi5iyPexJ7Ih4C2dZnTP bpKyOEbs7lxzh7KZccooby8M/M2ClPgtU0St31l4cegA8ZN3kgF1b64EvEyh1JNY MoBNegKSyAJNTsr
Bug#959282: marked as done (ITP: php-horde-text-filter -- Text filtering and conversion library)
Your message dated Tue, 12 May 2020 10:00:20 + with message-id and subject line Bug#959282: fixed in php-horde-text-filter 2.3.6-4 has caused the Debian Bug report #959282, regarding ITP: php-horde-text-filter -- Text filtering and conversion library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959282: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959282 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Text_Filter Version : 2.3.6 Upstream Author : Jan Schneider , Chuck Hagenbuch , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Text filtering and conversion library Common methods for fitering and converting text. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-text-filter Source-Version: 2.3.6-4 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-text-filter, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-text-filter package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:49:53 +0200 Source: php-horde-text-filter Binary: php-horde-text-filter Architecture: source all Version: 2.3.6-4 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-text-filter - Closes: 959282 Changes: php-horde-text-filter (2.3.6-4) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959282). . [ Mathieu Parent ] * Actually the patch is applied upstream . [ Mike Gabriel ] * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 944130f9314aed015a16fa4eb143ae2b91d4c768 2172 php-horde-text-filter_2.3.6-4.dsc 8871419e4666b3ab1ac99170c37411ee8729e4c8 54976 php-horde-text-filter_2.3.6.orig.tar.gz 9789a448b096bbdbc191517a005a78ad38e15500 4120 php-horde-text-filter_2.3.6-4.debian.tar.xz d474f2fca4fc39edd67bd42bc1b73ff547bd9a0c 49620 php-horde-text-filter_2.3.6-4_all.deb d9c50102304bc3a1338c479f5ad5e8da37b04687 6235 php-horde-text-filter_2.3.6-4_amd64.buildinfo Checksums-Sha256: 7812bff959c5b9ba3af10f9c94b1f5fde35433f4706aec22302c15366c22636d 2172 php-horde-text-filter_2.3.6-4.dsc 43208a82eff253354bd5893cad5a2b7bf708a8c28deda050c0ebd5af93ddb76e 54976 php-horde-text-filter_2.3.6.orig.tar.gz 489b093fe1b6cdb961570ecc9a7bbee6b3606a3c8d16e8b992dfbb36475aba22 4120 php-horde-text-filter_2.3.6-4.debian.tar.xz 5f18c7d16e4ff07dd3140e499b8e984a6af7624e4726a935de4866969a70b57e 49620 php-horde-text-filter_2.3.6-4_all.deb 82002740dbaeda71ff5ca1d94e40613431629876c41b970a948a441cfb121fb2 6235 php-horde-text-filter_2.3.6-4_amd64.buildinfo Files: a68da8dfd665e8705c2e372c6e5c4a73 2172 php optional php-horde-text-filter_2.3.6-4.dsc d1c1867a102a8831d56ad1bee8549bc1 54976 php optional php-horde-text-filter_2.3.6.orig.tar.gz b61c9388bb6faa136e024c6b7cc1f0f0 4120 php optional php-horde-text-filter_2.3.6-4.debian.tar.xz dec5086ca15d6a6ba84fc68f66c06fbf 49620 php optional php-horde-text-filter_2.3.6-4_all.deb 44db624f2f004a15c7d94e66be6fc32c 6235 php optional php-horde-text-filter_2.3.6-4_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguQVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxVmQP/iXFENFRlj52adDdWOc7wnQmaoAN uqFd9tvRBQEZ071piKrw9uDImwYnJC3a5cCKX0BmiNf+1t6wI+ql1xVxCATPb27h FeBu4Hx7KbPEnaQ0SzKOdMp90n5gDGg6ykD+WBuHt/Ol92zRbCR4bWnW1nMSKPSc 0quPuts5Xk1Th6me93lXxC6e/rpAgF1KU
Bug#959277: marked as done (ITP: php-horde-stream -- Horde stream handler)
Your message dated Tue, 12 May 2020 10:00:18 + with message-id and subject line Bug#959277: fixed in php-horde-stream 1.6.3-7 has caused the Debian Bug report #959277, regarding ITP: php-horde-stream -- Horde stream handler to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959277: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959277 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Stream Version : 1.6.3 Upstream Author : Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde stream handler An object-oriented interface to assist in creating and storing PHP stream resources, and to provide utility methods to access and manipulate the stream contents. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-stream Source-Version: 1.6.3-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-stream, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-stream package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:43:42 +0200 Source: php-horde-stream Binary: php-horde-stream Architecture: source all Version: 1.6.3-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-stream - Closes: 959277 Changes: php-horde-stream (1.6.3-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959277). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 087ee245a597e89673ac06547a940788cad75fc4 2108 php-horde-stream_1.6.3-7.dsc cecaecb101f8a5cc5f374200a95b6d63d0504f5b 18014 php-horde-stream_1.6.3.orig.tar.gz 038fa45c06d2876ccc68753fb5eb6667bd59dc9a 3116 php-horde-stream_1.6.3-7.debian.tar.xz 516a1e27a90cc59d5f6fb3e8c257a61a11e5d9f3 14284 php-horde-stream_1.6.3-7_all.deb 35161bb89aef0068433980b8511415c624114864 6185 php-horde-stream_1.6.3-7_amd64.buildinfo Checksums-Sha256: d88bab867b86efd9e63f34cd7b86e965f950b077867476e85b22080f0fdfb923 2108 php-horde-stream_1.6.3-7.dsc 0c1e320c17f25c142eb8aa4d7e259b50ce5843870dc1819eb64c6de7924f9a55 18014 php-horde-stream_1.6.3.orig.tar.gz 9cef59b80344d2d2619bd28c6a48e6b3a0371812716a6697a2e60470e3dccd19 3116 php-horde-stream_1.6.3-7.debian.tar.xz 6f9e9adfae19f72cddbfeaa73a41e2efd9412e2c6fa84bf95d04bea396bc14f2 14284 php-horde-stream_1.6.3-7_all.deb faabf06a9d7177d50c07f90d4c6e31842e7f2ac88e9f1fae909aa9e46eeec2f8 6185 php-horde-stream_1.6.3-7_amd64.buildinfo Files: 8504cbdfb9fa90dbb87f80a5025c2e67 2108 php optional php-horde-stream_1.6.3-7.dsc f4264b82a6d07c143d1192f750b702f5 18014 php optional php-horde-stream_1.6.3.orig.tar.gz 31a87adb390f6939cf05765df83ed2d8 3116 php optional php-horde-stream_1.6.3-7.debian.tar.xz 8783c218436fbcb2c8440083e3c7026d 14284 php optional php-horde-stream_1.6.3-7_all.deb 2966dd79746545bdd0467eb5613945cc 6185 php optional php-horde-stream_1.6.3-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguEVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxNQkP/2p6u5b+EjAtBTcQQS7jgT1SI37z 0wqp0nduAaQQ3b2KRlSUz2rdoKEUMVpScjmrU8UI3SImFM4a8IhVeK8NA4FcUKfJ OC5pQQpOW4oWJ1scVcgZQ+b3EtKTwVcWt/yAGr2+u9n+KQg2DA8E/BaSsPTZvgr/ UdwimuCvUaMYRw7FZO6Q9GSVnfYpzW6rMv7c0JTVpVsyJU9cajk2DY4pNl18DANM XaAYdV7aKbBj5Zvjc0bJWvbfParsaIRpd92t6uyFa4s/k2g/kXB3f2/VaPpQwBDt UVgubpHlEILZAZ3U2hWJ4fuKrVq6tZvlWsYuT1/9f9cuQ+FphVuoVTU7l55UPst0 hTeXkaih
Bug#959280: marked as done (ITP: php-horde-support -- Horde support package)
Your message dated Tue, 12 May 2020 10:00:20 + with message-id and subject line Bug#959280: fixed in php-horde-support 2.2.0-5 has caused the Debian Bug report #959280, regarding ITP: php-horde-support -- Horde support package to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959280: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959280 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Support Version : 2.2.0 Upstream Author : Chuck Hagenbuch , Jan Schneider , Michael Slusarz URL : http://horde.org/ License : BSD-2-Clause Programming Lang: PHP Description : Horde support package Support classes not tied to Horde but is used by it. These classes can be used outside of Horde as well. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-support Source-Version: 2.2.0-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-support, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-support package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:46:04 +0200 Source: php-horde-support Binary: php-horde-support Architecture: source all Version: 2.2.0-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-support - Closes: 959280 Changes: php-horde-support (2.2.0-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959280). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 7bf85b393e0b12ad386278a742279cfa3cf1adba 2119 php-horde-support_2.2.0-5.dsc c89cbb8258d1f09d67d60687e4dbf6ac39715e75 24787 php-horde-support_2.2.0.orig.tar.gz 8b442ea7672e21ba94e3f2171c3778f56fd352d8 3808 php-horde-support_2.2.0-5.debian.tar.xz 9aa9ae3524530d1fb94c07e636ee93280da465b5 26212 php-horde-support_2.2.0-5_all.deb 49b873ec2b3b6264fce7cb78b41c1eddb8bb8cec 6195 php-horde-support_2.2.0-5_amd64.buildinfo Checksums-Sha256: 7866bea9b29d6e644ab88cf6a0a1a0238f7273398bef43b8901e25f8679a0127 2119 php-horde-support_2.2.0-5.dsc f7c62e7d20c0452625ade40d51ced3c811692cc06a24e402cff1412fb7a34a81 24787 php-horde-support_2.2.0.orig.tar.gz 2509ac5a39626e2a2702b14aa149cbe1ea94c6e63b36b4a9604ade9621922e4d 3808 php-horde-support_2.2.0-5.debian.tar.xz 399c1c2010111abc1824d5e7f951e86451969871e091c2ca53d2976d0a25b6c8 26212 php-horde-support_2.2.0-5_all.deb 353475aa80ed23541ba5d284682a49fc2e285770c58543c7cf8d96c28f317b29 6195 php-horde-support_2.2.0-5_amd64.buildinfo Files: 6c8c095e5fc6e73d2f0ffce8f22a09ae 2119 php optional php-horde-support_2.2.0-5.dsc 8d6689bc5067ee534437f751e67871fd 24787 php optional php-horde-support_2.2.0.orig.tar.gz 73f68a3b8e88e2bbfdcc6ffacc345c86 3808 php optional php-horde-support_2.2.0-5.debian.tar.xz 9bdb6a7fe72bbc6c8982a95fe4b240e3 26212 php optional php-horde-support_2.2.0-5_all.deb 148343ef152b127eeb6a0afe261e219e 6195 php optional php-horde-support_2.2.0-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguMVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxTVoQAIRZ5MawOb27ENlyQso+NezYfWB0 AhI4+0EUJhbJh4v3BqY2IhSsz7ktu6D1Kmy5EBly7UGAC/U3iE7Re2nucBv1lc1W 4uNiM9u8Y3WZuM5Ict7w2FiTMWx8SM8m8ggRDErVEQyTUNQmNXyzohyhV3h9d1mx +rVfCyt29HBAqSmjYhO/55goZ7lcuxT1GO9RDeJ18rxCVaXUqRBrvjIMxHUYhEan nPTx0HbvkK/lVr+ePknARD75dsrW8xp6jdMCQIANHjuoZxyEmA1HZQnCHn6wcJLe 2Hx1BTtuyie6lxbnCnIJijGFxaD7GQgshE7L/L4LvbdHy4WK8/5Rc8D61MQUEnh
Bug#959274: marked as done (ITP: php-horde-serialize -- Data Encapulation API)
Your message dated Tue, 12 May 2020 10:00:17 + with message-id and subject line Bug#959274: fixed in php-horde-serialize 2.0.5-7 has caused the Debian Bug report #959274, regarding ITP: php-horde-serialize -- Data Encapulation API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959274: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959274 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Serialize Version : 2.0.5 Upstream Author : Chuck Hagenbuch , Jan Schneider , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Data Encapulation API An interface to various methods of encapsulating data. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-serialize Source-Version: 2.0.5-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-serialize, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-serialize package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:41:46 +0200 Source: php-horde-serialize Binary: php-horde-serialize Architecture: source all Version: 2.0.5-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-serialize - Closes: 959274 Changes: php-horde-serialize (2.0.5-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959274). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 350cc4d24e8e27c4d1bdb79e51af48da3a001b07 2141 php-horde-serialize_2.0.5-7.dsc ca08a87f08f16356f3a0837d6b45ff5702ce2d94 16090 php-horde-serialize_2.0.5.orig.tar.gz f3ab454e66f6c0dcc7ae11d8432b01d452b8421e 3204 php-horde-serialize_2.0.5-7.debian.tar.xz 713ab56f98d3284ba050443f8e043c9db1f3b5dd 11220 php-horde-serialize_2.0.5-7_all.deb e17034ac211139b50e2a9bc26eebbc8ac929b68e 6215 php-horde-serialize_2.0.5-7_amd64.buildinfo Checksums-Sha256: d3166a5335462e7788f9196fb3b5d0e8cdf7afed053ec254d1c11125a3d2f592 2141 php-horde-serialize_2.0.5-7.dsc 663cd8672a43e3fa6805741d7a3e43bce3f4a59e5ca85e227e60680f22c60375 16090 php-horde-serialize_2.0.5.orig.tar.gz 67aeaaed9f4a141ad5b16fa47fb6f71b46e684ae1674ba568e0df8bc300cc175 3204 php-horde-serialize_2.0.5-7.debian.tar.xz 3bd2810ea42000e4e89be8ab4e645e54adb6882552528600a5cfe0d2a3e03fc6 11220 php-horde-serialize_2.0.5-7_all.deb 6a9077ca5ac6b18a0c88cc669c91c188371658e27857aae717c054ab354df2eb 6215 php-horde-serialize_2.0.5-7_amd64.buildinfo Files: 8e8613bb9109a4892507c5e2d539a909 2141 php optional php-horde-serialize_2.0.5-7.dsc 3117ec5d742a8c8c7602a599015f894a 16090 php optional php-horde-serialize_2.0.5.orig.tar.gz f5d48d750d0834649cee0df96b64e1e3 3204 php optional php-horde-serialize_2.0.5-7.debian.tar.xz 15ec8ef67a318d348151a1cb12d467f1 11220 php optional php-horde-serialize_2.0.5-7_all.deb c768c1040e35579a06414dabb22fa619 6215 php optional php-horde-serialize_2.0.5-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgt8VHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxtHcP/1rTOK46BVWWyov7CDjBwHuptCgw lewDVkDwl++TZ7b2H1Ymh0W3n+g5wkAaXkDu6e27g4kIhYu0S7HDnVzXmyAmBn4G lRjjwlyI5mUWDuCQIVHla3cOPmysK7WEvE6fQg8LrQqUVqXl+akZSQpMSN/ZQo7G agFFb+lztbqQP2MZqKe69p6NmK8WVtyosJ6uPPgkOPSbJqaegqnqXz1mPWaVR4Lq b5n7fYSxhfnPzIMRCwBGlu6Wlt0A+hufuXpa7a9J3lSX6yn93i9nnzfUQZP3g0oi bOjeIOSq1uCl9gRe0AQx2UcJtvjHJsQ54pr3/uUZZNDBR0S8mlnWIisN4YNAGeF2 mpk
Bug#959284: marked as done (ITP: php-horde-token -- Horde Token API)
Your message dated Tue, 12 May 2020 10:00:21 + with message-id and subject line Bug#959284: fixed in php-horde-token 2.0.9-6 has caused the Debian Bug report #959284, regarding ITP: php-horde-token -- Horde Token API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959284: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959284 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Token Version : 2.0.9 Upstream Author : Chuck Hagenbuch , Gunnar Wrobel URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Token API The Horde_Token:: class provides a common abstracted interface into the various token generation mediums. It also includes all of the functions for retrieving, storing, and checking tokens. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-token Source-Version: 2.0.9-6 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-token, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-token package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:52:00 +0200 Source: php-horde-token Binary: php-horde-token Architecture: source all Version: 2.0.9-6 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-token - Closes: 959284 Changes: php-horde-token (2.0.9-6) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959284). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 2d19059d482e404c499e576e66090c384cdebbf9 2097 php-horde-token_2.0.9-6.dsc a2ed902f6f8b24bbf1464a1729a45994c55811e3 31728 php-horde-token_2.0.9.orig.tar.gz 8bbccf359aff3a6938a09a63c63eb467af69daad 3232 php-horde-token_2.0.9-6.debian.tar.xz d1dab9fe6b72dea2ddfb325398f21830f66a5f37 32872 php-horde-token_2.0.9-6_all.deb e5a99a7d1207ec4afb8e7262fa17410989c6b624 6175 php-horde-token_2.0.9-6_amd64.buildinfo Checksums-Sha256: ff6596cc26b9d6a85e755d2930593273e9120b5492239b166509c1e094931706 2097 php-horde-token_2.0.9-6.dsc 3a10c70db713b9a360d7a9c7e61f3ea2301262fbf07a19d57fc7e323c0ed224e 31728 php-horde-token_2.0.9.orig.tar.gz ccba2e54e8131b12c5a70269b7f2e6802a8b5d30f063d7f65673c1b2e5e279c6 3232 php-horde-token_2.0.9-6.debian.tar.xz 9623f865e3363184ce1734dbb240b4c4df1bc67ac76289d162a5ddbd38c9049c 32872 php-horde-token_2.0.9-6_all.deb 26a7aea29654a618de5514d20e201727e51c4754aaa2b9d9abf432e799b7e57b 6175 php-horde-token_2.0.9-6_amd64.buildinfo Files: 00a55f6ca883eaff7a09ee81792eebef 2097 php optional php-horde-token_2.0.9-6.dsc 0f9f879dd5d60efcf1c1370ab85c38f8 31728 php optional php-horde-token_2.0.9.orig.tar.gz 703eb504263f5daaefbd5ff02ce1d9cd 3232 php optional php-horde-token_2.0.9-6.debian.tar.xz fdb39cbc3d8b3f6f67e871f7da64b376 32872 php optional php-horde-token_2.0.9-6_all.deb daf16d2cbd2705f78883bfe32c9b689d 6175 php optional php-horde-token_2.0.9-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguUVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxk5sP/RYAa2aOhtMKeZrSgTKKoOju9Ej1 k15ePGnIgD9oT1h21kaKyYMK/yh5taLLEzOfdjhulR0HAAdl7zGIs8gW2o6kFeBE hh/5lP25XOyk6umiab5NJel33IWLORdrsfXgPX1GuHW/pfclMxYVJPCFWYsOOGw0 qSnDF27Ct4G8Dvuvb7RxeviAhnIY9xVTTCfWDKK1BSGRqbIx19e7E6i+YPgbLPmb eWvvSe9F0ZqsjDWRIyh6IlOZjnD41/HKcrUWRmK5TERKrU6xdgJnYwXj/5TkOlKR no+qgwwV+LdZ6SoNw8m+a3+rlVOiZs3N4BY73AfdxRoy3TTo8NJgyxIDmPpyLka
Bug#959285: marked as done (ITP: php-horde-translation -- Horde translation library)
Your message dated Tue, 12 May 2020 10:00:21 + with message-id and subject line Bug#959285: fixed in php-horde-translation 2.2.2-5 has caused the Debian Bug report #959285, regarding ITP: php-horde-translation -- Horde translation library to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959285: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959285 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Translation Version : 2.2.2 Upstream Author : Jan Schneider URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde translation library Translation wrappers. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-translation Source-Version: 2.2.2-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-translation, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-translation package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:52:43 +0200 Source: php-horde-translation Binary: php-horde-translation Architecture: source all Version: 2.2.2-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-translation - Closes: 959285 Changes: php-horde-translation (2.2.2-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959285). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: ff50434f280948a074478f97456e86897e0d4368 2163 php-horde-translation_2.2.2-5.dsc 06d10a83e8068669825a8d4b2623d381a5854e4a 15959 php-horde-translation_2.2.2.orig.tar.gz cf3098aa7c536c5733ab75e5c342bfa5af283d04 3204 php-horde-translation_2.2.2-5.debian.tar.xz a2f431abb7373bb4d9c4d985f2dd45abbb34c297 12288 php-horde-translation_2.2.2-5_all.deb 9ad1cdca5ae273b3569cce894d5554bb291a9dcf 6235 php-horde-translation_2.2.2-5_amd64.buildinfo Checksums-Sha256: 3eef844bfdbd9e1546677adaaa35cc0914efc6f7acaece19d5593d1698e436e2 2163 php-horde-translation_2.2.2-5.dsc 50d75561c2e05bb5c19c7b11f6a1e8e0fc8fcebdf49719ad0471034db0b85d21 15959 php-horde-translation_2.2.2.orig.tar.gz e257cb8a2e343ad0f93e48649e0222168fa1642cce700ca7322881ad4e545ed6 3204 php-horde-translation_2.2.2-5.debian.tar.xz a9018614ef6c7c04d18345369a9648d119c77e5fc8d56a57a7b6fc32c5da6eaf 12288 php-horde-translation_2.2.2-5_all.deb f942817c22e3aac5df629f12c006c1b7ca6985a257016e758761a4d80aff2cb4 6235 php-horde-translation_2.2.2-5_amd64.buildinfo Files: 6ae61f96f76aab28eda57c332dc4b00b 2163 php optional php-horde-translation_2.2.2-5.dsc 71e15823c4044b88ee9d8f74e559c1e3 15959 php optional php-horde-translation_2.2.2.orig.tar.gz 89f1bd8e0ed59e403ae629a313c608b2 3204 php optional php-horde-translation_2.2.2-5.debian.tar.xz 4dd7ec5de64a1331e31b0c9650b58dd3 12288 php optional php-horde-translation_2.2.2-5_all.deb 98147983ef96f39579bd355e7096a8b8 6235 php optional php-horde-translation_2.2.2-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wguYVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxdEEP/1y8HAAUycx5NvPwhtkp4Q3MFr03 A2Xg1ipaQfhxam1nRRCnfZBLpjgm8Vr09v5jOTQFtgUv+csNefd+xbm1xgO6U8c5 LwnftpLE+emEkuJPlX54S/Ml0opULMi6vxe2QjVvgUQN6UzA3Z8HcQO+p7AXE4Gv Su4dtqc/2EqKSa7yB2yILdpvi8k0uWn2IcJ00lM/Uy588lTXMX4bSr1aY1N7aKL4 f833T9vTdEOopCaqdGU2VHnVzv5pjUs5wBiFbmMLOacXvU+2gHHofAiEBEOvvOXZ WKevU2vbb4ePW005mxhkFzjFt6Z6aUsePLxKD50VEsMFkjhCLtOg3RASGs8tBqJI hNM7get31NCW7jN
Bug#959287: marked as done (ITP: php-horde-util -- Horde Utility Libraries)
Your message dated Tue, 12 May 2020 10:00:22 + with message-id and subject line Bug#959287: fixed in php-horde-util 2.5.8-5 has caused the Debian Bug report #959287, regarding ITP: php-horde-util -- Horde Utility Libraries to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959287: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959287 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_Util Version : 2.5.8 Upstream Author : Chuck Hagenbuch , Jan Schneider , Michael Slusarz URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde Utility Libraries These classes provide functionality useful for all kind of applications. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-util Source-Version: 2.5.8-5 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-util, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-util package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 21:58:00 +0200 Source: php-horde-util Binary: php-horde-util Architecture: source all Version: 2.5.8-5 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-util - Closes: 959287 Changes: php-horde-util (2.5.8-5) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959287). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: d214b23d037ad51925d6c78a2f0a18cbd3de 2095 php-horde-util_2.5.8-5.dsc 4ff7334ecb65593b44a607c948129b677b982859 36540 php-horde-util_2.5.8.orig.tar.gz 25797639c42ae17bcb238c055f00700be48ca69c 3604 php-horde-util_2.5.8-5.debian.tar.xz d977cf1d31be3caa812ab3e8385f4dd6a1967261 32584 php-horde-util_2.5.8-5_all.deb 73fddccf2a274bba059c561debd9544b37ae8fac 6165 php-horde-util_2.5.8-5_amd64.buildinfo Checksums-Sha256: 19fc961779fd9743dd8aa2aac9b352c20f3f77fffdf1e774a066fecb964f7ce9 2095 php-horde-util_2.5.8-5.dsc 4b24186a3dbefa04eb9bca885d4cd5e246db19b2b2df8c66e46f507234ecfd4c 36540 php-horde-util_2.5.8.orig.tar.gz 7f5be723e7165888efb05ce81629bbb9885fc5a11030d4e3312901e1bbbcdb3d 3604 php-horde-util_2.5.8-5.debian.tar.xz 6e98f16ca1102e7591a336d8420cbf596aa1c8551e71b667f8ba150760d78a39 32584 php-horde-util_2.5.8-5_all.deb f68c6fa0cce1856d3ff40f0045bc03165f9c7fea5d2441385243e00ebbbd4ecb 6165 php-horde-util_2.5.8-5_amd64.buildinfo Files: d12257f9197c95229c0baf1745c7d1d7 2095 php optional php-horde-util_2.5.8-5.dsc 0e43bee7d573a5871d88584c1800b114 36540 php optional php-horde-util_2.5.8.orig.tar.gz 06ecc06dde51f6f58b29aaf28adab892 3604 php optional php-horde-util_2.5.8-5.debian.tar.xz 211569fb45b9990f8c5a2af6ed136984 32584 php optional php-horde-util_2.5.8-5_all.deb f4aa0ecd370d92c08b8b36d6ea982140 6165 php optional php-horde-util_2.5.8-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgucVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx6qMP/itY/o5/vMonlBIOzUimKLcUWBXi l0M34aJhHsQfiq8FMIa+fBoZivnZnIcFie8Ao8LjZM/OEAZjPZLqDsFWi089kZ// /ZsVJost+gfJfQPEeqgzHbRn2PAKT95fD2TI0X8eSgGxDgn2zmEFglHC6L1A6cb9 OlV2nA4bkFx2maK4X3LVIy48AaEse9qKnqXefKUwbQf+5D6ftHT2nZPnvwtwvW+l Eddx7ZQ3yuuEjyNB2c8MO0GlRAZtYvasz6YRINzAx0cIViRmL+rGkViiiMeZC/Ip d4kiQ8pjW6SX7NO7AkeOillyU61C1pOCEplt8UTKaKxSB9sFWe8FZ3k736ugFaZg Nl8TMVihXY/h4Ajt4SHpwVUW3/qOueFNW9VG3c7Fy0cvTM78d1FkXcuQ0P1IwHm4 H2hrbXTSqE2uUGimXIDLmNYb/UReR5ptsV+X9aykU8m62
Bug#959288: marked as done (ITP: php-horde-view -- Horde View API)
Your message dated Tue, 12 May 2020 10:00:23 + with message-id and subject line Bug#959288: fixed in php-horde-view 2.0.6-7 has caused the Debian Bug report #959288, regarding ITP: php-horde-view -- Horde View API to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 959288: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959288 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel Package name: Horde_View Version : 2.0.6 Upstream Author : Chuck Hagenbuch , Mike Naberezny URL : http://horde.org/ License : LGPL-2.1 Programming Lang: PHP Description : Horde View API A simple View pattern implementation. . Unfortunately, this package has recently been removed from Debian unstable. . I am planning to re-upload this package and pick up maintenance of Horde in Debian.. --- End Message --- --- Begin Message --- Source: php-horde-view Source-Version: 2.0.6-7 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of php-horde-view, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 959...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated php-horde-view package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 04 May 2020 22:00:49 +0200 Source: php-horde-view Binary: php-horde-view Architecture: source all Version: 2.0.6-7 Distribution: unstable Urgency: medium Maintainer: Horde Maintainers Changed-By: Mike Gabriel Description: php-horde-view - Closes: 959288 Changes: php-horde-view (2.0.6-7) unstable; urgency=medium . * Re-upload to Debian. (Closes: #959288). . * d/control: Add to Uploaders: Mike Gabriel. * d/control: Drop from Uploaders: Debian QA Group. * d/control: Bump Standards-Version: to 4.5.0. No changes needed. * d/control: Add Rules-Requires-Root: field and set it to 'no'. * d/copyright: Update copyright attributions. * d/upstream/metadata: Add file. Comply with DEP-12. Checksums-Sha1: 0acd7bdd3402990f8635da080b9a06ecab941e2c 2086 php-horde-view_2.0.6-7.dsc 4ea657bfe9c2f8f9283f9150c82356700fb49d5e 43952 php-horde-view_2.0.6.orig.tar.gz c7667f5c29a42624228999fc1c70534eacd393d4 3868 php-horde-view_2.0.6-7.debian.tar.xz 936074cf72f1edc5a2e74fdab0056b68773e3b1a 34104 php-horde-view_2.0.6-7_all.deb da37434a5a28167f69a0b37adc5c785b2fb4f714 6165 php-horde-view_2.0.6-7_amd64.buildinfo Checksums-Sha256: 33a1d8df702b008637d56aee9dfc3cc64ab806f91129cf9b739527739296574f 2086 php-horde-view_2.0.6-7.dsc f1723929224f2876de05dc76cf6094d5c7c84a8adb18dc1fbc4c00f40b193c43 43952 php-horde-view_2.0.6.orig.tar.gz 783adac12c6f3a77ee66b2eac78e7ad8eab617d0c408e541cb4d03e8df258dfc 3868 php-horde-view_2.0.6-7.debian.tar.xz 4aac88810869b1b41a7fa80c7dc06089a20b8be2f7216f27f4a55d4509977f46 34104 php-horde-view_2.0.6-7_all.deb 6c79fe80f257b78c2ce9f6713a7ac60037a3b864c2759fe167f6c4d63b50b846 6165 php-horde-view_2.0.6-7_amd64.buildinfo Files: 36e1ed09a6475bfc54357112f688 2086 php optional php-horde-view_2.0.6-7.dsc 40e23d446ca2e4bcb69383a695e30793 43952 php optional php-horde-view_2.0.6.orig.tar.gz 9335c45e3bc0981fef4951cb98de9428 3868 php optional php-horde-view_2.0.6-7.debian.tar.xz 30f16bc8490e95eb4c035e3b6d8d8d14 34104 php optional php-horde-view_2.0.6-7_all.deb 26f8f486a232ba3a34fcbd665a3a9034 6165 php optional php-horde-view_2.0.6-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAl6wgugVHHN1bndlYXZl ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx3PoP/jRHS+uASPf0DuhGhmWY58uOL9Ry Js+N2s+ihcnMZ32qyzJj/bP9WlqBThYfliiEal8SdOCOTYjLaFCdwMCVbJ6OB+qN 6EeWICMssJCxPFt54xahl4zvMlcehFbfGiQ450NxCWr33pzBk8wKwfvsQTE6YUNv YOoAXIYvSK7MTl/cnOzA53NnpQKckLSIYcs0r7Tt4M+6E5qtQve5/ZO3rHfbzQ7/ nQocTXJj/xcFFPDKvvuI9+fJ+0kNx1gs3S3GfjME2tWiYnT9mmlVhL9kORtUyJGP kvye9zN/znKOYRf10tgdoNITWZbwniGy4osQcpe7QDahIZiW1dDHJnUmpht6tDVD GGf2sh5KjXVbPySZ9Y4ft2iQcKfJQkGh4KVgdeCRuaRzA1U2IX9GbBTCHwdAULHc AWgdcnfu67Pc3UO7oM+VFOgjtpfoXhbRZ3B3WxYg7YKauB8WYoAIMdG0s2qdLd8U y+qCV6jP755LEXO1TqoSyJ4j7aMSe8CRc9ugnuS344uc07+PH9
Bug#960408: ITP: r-other-ascat -- Allele-Specific Copy Number Analysis of Tumours
Package: wnpp Severity: wishlist Subject: ITP: r-other-ascat -- Allele-Specific Copy Number Analysis of Tumours Package: wnpp Owner: Andreas Tille Severity: wishlist * Package name: r-other-ascat Version : 2.5.2 Upstream Author : Peter Van Loo, Gro Nielsen, Jiqiu Cheng, Stefan * URL : https://github.com/Crick-CancerGenomics/ascat * License : GPL-3 Programming Lang: GNU R Description : Allele-Specific Copy Number Analysis of Tumours ASCAT (allele-specific copy number analysis of tumors) is a allele- specific copy number analysis of the in vivo breast cancer genome. It can be used to accurately dissect the allele-specific copy number of solid tumors, simultaneously estimating and adjusting for both tumor ploidy and nonaberrant cell admixture. Remark: This package is maintained by Debian R Packages Maintainers at https://salsa.debian.org/r-pkg-team/r-other-ascat
Bug#960417: ITP: purple-mm-sms -- libpurple plugin for SMS
Package: wnpp Severity: wishlist Owner: Arnaud Ferraris * Package name: purple-mm-sms Version : 0.1.4 Upstream Author : Andrea Schaefer * URL : https://source.puri.sm/Librem5/purple-mm-sms * License : GPL Programming Lang: C Description : libpurple plugin for SMS purple-mm-sms is a libpurple plugin which adds the ability to communicate via SMS using ModemManager. This package is useful for mobile phone and/or 4G modem users, most notably those using the Phosh "ecosystem". It will be maintained inside the DebianOnMobile team.
Bug#960389: ITP: python-configclass -- A Python class to hold configuration values
Package: wnpp Owner: Iñaki Malerba Severity: wishlist * Package name: python-configclass Version : 0.2.0 Upstream Author : Eduardo Naufel Schettino * URL : https://github.com/schettino72/configclass * License : MIT Programming Lang: Python Description : A Python class to hold configuration values Config is a dict where existing items can be modified but no items can be added. It has make() method so you can easily created derived configs where duplicated values will be merged according to mergedict.ConfigDict.merge(). Needed as a dependency to close an RC bug in src:doit -- - ina -- - ina signature.asc Description: OpenPGP digital signature
Bug#960423: ITP: takari-polyglot-maven -- modules to enable Maven usage in others JVM languages
Package: wnpp Severity: wishlist Owner: Sudip Mukherjee X-Debbugs-CC: debian-j...@lists.debian.org * Package name: takari-polyglot-maven Version : 0.4.5 Upstream Author : * URL : https://github.com/takari/polyglot-maven * License : EPL-1.0 Programming Lang: Java Description : modules to enable Maven usage in others JVM languages Polyglot Maven harnesses the power of Maven through modern implementations of the JVM language like Groovy, Scala, Clojure and JRuby. The old package "polyglot-maven" is already in Debian, the new update has changed the package name. If we update Debian version of polyglot-maven then that will break the build of many other packages. So, as discussed in https://lists.debian.org/debian-java/2020/05/msg00017.html, this ITP is to package the new version as a separate package so that other packages which needs new polyglot-maven can use this (like #792149). I can maintain this under the umbrella of java-team. -- Regards Sudip
Bug#960425: O: arcanist-clang-format-linter -- clang-format linter for Arcanist
Package: wnpp Severity: normal I intend to orphan the arcanist-clang-format-linter package. The package description is: This package allows to use clang-format as a linter for arcanist to enforce style over a C/C++/Objective-C codebase. -- Cheers, Andrej
Processed: ITP: r-other-ascat -- Allele-Specific Copy Number Analysis of Tumours
Processing commands for cont...@bugs.debian.org: > owner 960408 Andreas Tille Bug #960408 [wnpp] ITP: r-other-ascat -- Allele-Specific Copy Number Analysis of Tumours Owner recorded as Andreas Tille . > End of message, stopping processing here. Please contact me if you need assistance. -- 960408: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960408 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#960428: ITP: blingfire -- Bing's Finite State machine and REgular expression manipulation library
Package: wnpp Severity: wishlist Owner: Mo Zhou * Package name: blingfire Upstream Author : Microsoft * URL : https://github.com/microsoft/BlingFire * License : MIT Programming Lang: C++, python Description : Bing's Finite State machine and REgular expression manipulation library useful as a preprocessing tool for computational linguistics. This library will be maintained by Debian Deep Learning Team.
Bug#960429: RFP: trilium -- hierarchical note taking application that uses Zettelkasten method
Package: wnpp Severity: wishlist * Package name: trilium Version : 0.42.1 Upstream Author : zadam * URL : https://github.com/zadam/trilium * License : AGPLv3 Programming Lang: javascript Description : hierarchical note taking application that uses Zettelkasten method This method allows you to connect ideas easily https://www.reddit.com/r/Zettelkasten/comments/b566a4/what_is_a_zettelkasten/ This include server side to be able to sync from different places The only similar package i can find is nvpy which is very limited in functionality This guy discusses a similar editor: https://www.youtube.com/watch?v=vxOffM_tVHI
Bug#960229: [DRE-maint] Bug#960229: RFP: pdfbeads -- utility to take scanned page images and convert them to a single PDF file
Dear Georg, First of all, thank you very much for your very kind messages. On May 11 2020, Georg Faerber wrote: > On 20-05-11 15:22:04, Rogério Brito wrote: > > Thanks for the kind message. I gave it a shot with gem2deb and I > > produced a (very) preliminary package. It is at: > > > > https://github.com/rbrito/pkg-pdfbeads > > Did you import the latest upstream release? The gemspec tells > "2014-01-30", which was quite some time ago. It seems that that's the last release that was made and, indeed, that's quite some time ago. > Did you try to build the package? Did it work? Yes, I both built the package, installed it and started using it. In conjunction with some other tools, it works very well! Oh, regarding your other email, I have a salsa login and it is rbrito. Thanks, Rogério Brito. -- Rogério Brito : rbrito@{ime.usp.br,gmail.com} : GPG key 4096R/BCFC http://cynic.cc/blog/ : github.com/rbrito : profiles.google.com/rbrito DebianQA: http://qa.debian.org/developer.php?login=rbrito%40ime.usp.br
Bug#960229: [DRE-maint] Bug#960229: RFP: pdfbeads -- utility to take scanned page images and convert them to a single PDF file
On Mon, May 11, 2020 at 10:45:52PM +, Georg Faerber wrote: > (Adding the Ruby team to the loop.) > > Hi team, Rogério, > > On 20-05-11 15:22:04, Rogério Brito wrote: > > On May 10 2020, Georg Faerber wrote: > > > On 20-05-10 17:24:12, Rogério Brito wrote: > > > > Since I don't know much ruby, I guess that it would be best to > > > > have people from the Ruby team maintain and/or package it. I am > > > > even willing to co-maintain it, if necessary, but, again, my > > > > knowledge of Ruby is minimal. > > > > > > If you're interested in learning (on your own) and improving your > > > Ruby packaging skills, I'm happy to give you any help necessary. > > > > Thanks for the kind message. I gave it a shot with gem2deb and I > > produced a (very) preliminary package. It is at: > > > > https://github.com/rbrito/pkg-pdfbeads > > > > The changelog, in particular, is very cluttered and should be cleaned, > > among other things. Regarding ruby-specific packaging stuff, I would > > love to get comments and/or corrections. > > > > The package providing jbig2 should, really, be a Recommends instead of > > a Suggests, but since it is not in Debian yet, I left it as is for the > > time being. > > > > > Let me know in case you're interested. > > > > While I'm not sure if I am able to maintain this package (let's say > > that some use asks for a new feature), I won't know how to proceed. > > > > Assistance and opinions is highly appreciated. > > I would like to mentor Rogério and help them "learning by doing". To > make this easier, an account on salsa.d.o with (limited) access to the > team and/or the repo makes sense, IMHO. > > Thoughts? Rogério is a long time Debian contributor so I don't see a problem even with giving him full access to the salsa group. signature.asc Description: PGP signature
Processed: ITP: blingfire -- Bing's Finite State machine and REgular expression manipulation library
Processing commands for cont...@bugs.debian.org: > close 960428 Bug #960428 [wnpp] ITP: blingfire -- Bing's Finite State machine and REgular expression manipulation library Marked Bug as done > stop Stopping processing here. Please contact me if you need assistance. -- 960428: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960428 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#960443: ITP: purple-xmpp-http-upload -- HTTP File Upload plugin for libpurple
Package: wnpp Severity: wishlist Owner: Arnaud Ferraris * Package name: purple-xmpp-http-upload Version : 0.2.1 Upstream Author : Dmitry Kosenkov * URL : https://github.com/Junker/purple-xmpp-http-upload * License : GPL Programming Lang: C Description : HTTP File Upload plugin for libpurple purple-xmpp-http-upload is a libpurple plugin implementing HTTP File Upload (XEP-0363 specification) for the XMPP protocol. I intend to maintain this package.
Bug#946187: ITP: starship -- any news?
I'm a happy user of starship and I will love to see it in debian. Is there any news about this package? Any blockers? Thanks for working on it. -- meskio | http://meskio.net/ -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- My contact info: http://meskio.net/crypto.txt -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Nos vamos a Croatan. signature.asc Description: signature
Bug#960434: ITP: varlink -- point-to-point IPC protocol and interface description format
Package: wnpp Severity: wishlist Owner: Jason Francis * Package name: varlink Version : 19 Upstream Author : Kay Sievers * URL : https://www.varlink.org/ * License : Apache-2.0 Programming Lang: C Description : point-to-point IPC protocol and interface description format Varlink is an interface description format and protocol that aims to make services accessible to both humans and machines in the simplest feasible way. A varlink interface combines the classic UNIX command line options, STDIN/OUT/ERROR text formats, man pages, service metadata and provides the equivalent over a single file descriptor, a.k.a. “FD3”. Varlink is plain-text, type-safe, discoverable, self-documenting, remotable, testable, easy to debug. Varlink is accessible from any programming environment. --- Submission Notes: Varlink is a small IPC protocol intended to be a very simple peer-to-peer alternative to D-Bus. A minimal implementation has already been adopted by the systemd project and integrated into their codebase; however I am submitting this ITP in order to package the official C reference implementation that includes a shared library and command line utility. Another package named "kanshi" that I contribute to upstream is looking at using this library, and it would be nice to have it ready in Debian for when a new version is published. I'm not sure what package team this would fall under, but I've been testing some Debian packaging already which is up on my github: https://github.com/cyclopsian/libvarlink/tree/debian-19/debian
Bug#960457: ITP: busco -- benchmarking sets of universal single-copy orthologs
Package: wnpp Severity: wishlist Subject: ITP: busco -- benchmarking sets of universal single-copy orthologs Package: wnpp Owner: Andreas Tille Severity: wishlist * Package name: busco Version : 4.0.6 Upstream Author : Evgeny Zdobnov * URL : https://gitlab.com/ezlab/busco * License : MIT Programming Lang: Python Description : benchmarking sets of universal single-copy orthologs Assessing genome assembly and annotation completeness with Benchmarking Universal Single-Copy Orthologs (BUSCO). . * Automated selection of lineages issued from https://www.orthodb.org/ * Automated download of all necessary files and datasets to conduct a run * Use prodigal for non-eukaryotic genomes Remark: This package is maintained by Debian Med Packaging Team at https://salsa.debian.org/med-team/busco
Bug#960460: ITP: wys -- A daemon to bring up and take down PulseAudio loopbacks for phone call audio
Package: wnpp Severity: wishlist Owner: Henry-Nicolas Tourneur * Package name: wys Version : 0.1.7 Upstream Author : Bob Ham * URL : https://source.puri.sm/Librem5/wys/ * License : GPL Programming Lang: C Description : A daemon to bring up and take down PulseAudio loopbacks for phone call audio A daemon to bring up and take down PulseAudio loopbacks for phone call audio. Wys was written to manage call audio in the Librem 5 phone with a Gemalto PLS8. It may be useful for other systems. Wys is pronounced "weece" to rhyme with "fleece". Packaging this software is aimed at improving Librem5 support in Debian.
Processed: ITP: busco -- benchmarking sets of universal single-copy orthologs
Processing commands for cont...@bugs.debian.org: > owner 960457 Andreas Tille Bug #960457 [wnpp] ITP: busco -- benchmarking sets of universal single-copy orthologs Owner recorded as Andreas Tille . > End of message, stopping processing here. Please contact me if you need assistance. -- 960457: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960457 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#882696: marked as done (RFA: rhythmbox-ampache -- play audio streams from an Ampache server)
Your message dated Tue, 12 May 2020 20:59:51 + with message-id and subject line Bug#960204: Removed package(s) from unstable has caused the Debian Bug report #882696, regarding RFA: rhythmbox-ampache -- play audio streams from an Ampache server to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 882696: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882696 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: normal I request an adopter for the rhythmbox-ampache package. The package description is: Rhythmbox-Ampache is a plugin for Rhythmbox music player that allows it to stream directly from an instance of an Ampache music streaming server. . Ampache is a web-based audio file manager implemented with PHP and MySQL which allows viewing, editing, and playing audio files via the web. It has support for playlists, artist and album views, album art, random or vote-based play and per-user play-tracking/theming. Playback may be via HTTP, on-the-fly transcoding and downsampling, Mpd/Icecast, or integrated Flash player. Multiple Ampache servers can be linked together using XML-RPC. The software is fully localized in many languages. --- End Message --- --- Begin Message --- Version: 0.11.1+svn43-1+rm Dear submitter, as the package rhythmbox-ampache has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/960204 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
Processed: your mail
Processing commands for cont...@bugs.debian.org: > block 960337 by 960462 Bug #960337 [wnpp] ITP: libevpath -- Event transport middleware 960337 was blocked by: 960297 960055 960034 960027 960320 960337 was blocking: 960339 Added blocking bug(s) of 960337: 960462 > End of message, stopping processing here. Please contact me if you need assistance. -- 960337: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960337 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#959838: ITP: opencensus-java -- Stats collection and distributed tracing framework
Control: retitle -1 ITP: opencensus-java -- Stats collection and distributed tracing framework Control: owner -1 Andreas Tille Control: tags -1 help I've started packaging in https://salsa.debian.org/java-team/opencensus-java to support bazel packaging. Unfortunately I have no idea how to fix all the (Build-)Depends of the gradle build. I was following a hint given on debian-java list to find out some dependency relations via gradle build --info and added some of the modules I was able to detect from the gradle cache but this did not helped much. I would be happy if someone could lend a helping hand since I have the feeling that my attempt looks a bit fruitless. The package is relevant to get bazel packaged which would open the chance to package tensorflow which is used in several packages that help fighting COVID-19 and thus is part of the Debian Med COVID-19 sprint. Kind regards Andreas. -- http://fam-tille.de
Processed: ITP: opencensus-java -- Stats collection and distributed tracing framework
Processing control commands: > retitle -1 ITP: opencensus-java -- Stats collection and distributed tracing > framework Bug #959838 [wnpp] RFP: opencensus-java -- Stats collection and distributed tracing framework Changed Bug title to 'ITP: opencensus-java -- Stats collection and distributed tracing framework' from 'RFP: opencensus-java -- Stats collection and distributed tracing framework'. > owner -1 Andreas Tille Bug #959838 [wnpp] ITP: opencensus-java -- Stats collection and distributed tracing framework Owner recorded as Andreas Tille . > tags -1 help Bug #959838 [wnpp] ITP: opencensus-java -- Stats collection and distributed tracing framework Added tag(s) help. -- 959838: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959838 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#960464: RFP: datajoint -- a framework for scientific workflow management based on relational principles
Package: wnpp Severity: wishlist * Package name: datajoint-python Version : 0.12.5 Upstream Author : DataJoint team * URL : https://github.com/datajoint/datajoint-python * License : LGPL-2 Programming Lang: Python Description : a framework for scientific workflow management based on relational principles DataJoint for Python is a framework for scientific workflow management based on relational principles. DataJoint is built on the foundation of the relational data model and prescribes a consistent method for organizing, populating, computing, and querying data.
Bug#888705: abseil-cpp packaging
On Thursday, May 7, 2020, at 6:32 PM +0200, László Böszörményi (GCS) wrote: > If I understand correctly, you retained src:abseil. If not and using > src:abseil-cpp then you need a new repository named after that. Which > way should I go? If it’s all right with you, I’d prefer to stick with src:abseil. That more closely matches the way the terminology is used within Google – “Abseil” is unambiguously the C++ project, and “Abseil Python” is its Python counterpart. Benjamin
Processed: control
Processing commands for cont...@bugs.debian.org: > retitle 927362 ITP: blingfire -- lightning fast Finite State machine and Bug #927362 [wnpp] RFP: blingfire -- lightning fast Finite State machine and Changed Bug title to 'ITP: blingfire -- lightning fast Finite State machine and' from 'RFP: blingfire -- lightning fast Finite State machine and'. > owner 927362 ! Bug #927362 [wnpp] ITP: blingfire -- lightning fast Finite State machine and Owner recorded as Mo Zhou . > thanks Stopping processing here. Please contact me if you need assistance. -- 927362: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927362 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#960464: RFP: datajoint -- a framework for scientific workflow management based on relational principles
Hi, I would like to ITP. This could be maintained under Debian Sience Team umbrella If there are not any objections I'll start the ITP workflow Cheers, Arias Emmanuel @eamanu yaerobi.com
Bug#960470: ITP: python-inquirer -- Collection of common interactive command line user interfaces in python
Package: wnpp Severity: wishlist Owner: Kienan Stewart * Package name: python-inquirer Version : 2.6.3 Upstream Author : Miguel Ángel García * URL : https://github.com/magmax/python-inquirer * License : MIT Programming Lang: Python Description : Collection of common interactive command line user interfaces in python This package provides a library of common interactive CLI interfaces based on Inquirer.js. This library should ease the process of asking end user questions, parsing, validating answers, managing hierarchical prompts and providing error feedback. I will need to find a sponsor to upload this package.
Bug#960471: ITP: prophet -- Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.
Package: wnpp Severity: wishlist Owner: Mo Zhou * Package name: prophet Upstream Author : Facebook * URL : https://github.com/facebook/prophet * License : MIT Programming Lang: Py, R Description : Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. Time series analysis tool. Will be maintained by debian science team.
Bug#960472: ITP: python-readchar -- Python library to portable read single characters and key-strokes
Package: wnpp Severity: wishlist Owner: Kienan Stewart * Package name: python-readchar Version : 2.0.0 Upstream Author : Miguel Ángel García * URL : https://github.com/magmax/python-readchar * License : MIT Programming Lang: Python Description : Python library to portable read single characters and key-strokes The library provides a small class which sets up the key id for various platforms to provide a unified interface for developers to use when reading keystrokes in Python. This package is a dependency of python-inquirer. I will need to find a sponsor for the upload of this package.
Bug#951270: marked as done (ITP: dmarcts-report-parser -- Perl based tool to parse DMARC reports)
Your message dated Wed, 13 May 2020 04:00:10 + with message-id and subject line Bug#951270: fixed in dmarcts-report-parser 1.0+git20190809.1.bb5dd8b6-3 has caused the Debian Bug report #951270, regarding ITP: dmarcts-report-parser -- Perl based tool to parse DMARC reports to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 951270: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951270 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: wnpp Severity: wishlist Owner: Mike Gabriel * Package name: dmarcts-report-parser Version : 1.0+git20190809.1.bb5dd8b6 Upstream Author : Techsneeze.com * URL : https://github.com/techsneeze/dmarcts-report-parser/ * License : GPL-3+ Programming Lang: Perl Description : Perl based tool to parse DMARC reports This DMARC reports parser is based on John Levine's rddmarc, extended by the following features: . * Allows one to read messages from an IMAP server and not only from the local filesystem. * Store much more XML values into the database (for example the missing SPF and DKIM results from the policy_evaluated section) and also the entire XML for later reference. * Needed database tables and columns are created automatically, user only needs to provide a database. The database schema is compatible to the one used by rddmarc, but extends it by additional fields. Users can switch from rddmarc to dmarcts-report-parser without having to do any changes to the database by themselves. --- End Message --- --- Begin Message --- Source: dmarcts-report-parser Source-Version: 1.0+git20190809.1.bb5dd8b6-3 Done: Mike Gabriel We believe that the bug you reported is fixed in the latest version of dmarcts-report-parser, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 951...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mike Gabriel (supplier of updated dmarcts-report-parser package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 28 Apr 2020 09:17:42 +0200 Source: dmarcts-report-parser Binary: dmarcts-report-parser Architecture: source all Version: 1.0+git20190809.1.bb5dd8b6-3 Distribution: unstable Urgency: medium Maintainer: Mike Gabriel Changed-By: Mike Gabriel Description: dmarcts-report-parser - Perl based tool to parse DMARC reports Closes: 951270 Changes: dmarcts-report-parser (1.0+git20190809.1.bb5dd8b6-3) unstable; urgency=medium . * 3rd initial upload to Debian. (Closes: #951270). * debian/copyright: + Fix licensing (BSD-3-clause -> BSD-2-clause). Checksums-Sha1: b56b7bee0bb94a24fa4d336bddc702601a9bf45a 2158 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3.dsc fccba706cd883a146cdf000ba44cd9843d8d7647 27688 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6.orig.tar.xz 673cc25ae3f58d34789e4be1dd3f9cbb70e5ca00 5076 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3.debian.tar.xz 4aae4177c3caf94b706fd6ecdda49efb7c7046b4 23296 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3_all.deb 3889a2cada7f5e9cfd4bc5f769b817ffb721629d 5844 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3_amd64.buildinfo Checksums-Sha256: 2fc52730a14dd8e3683ba54afe119f5b052c3b6c6662c61e7af7f2650c03933a 2158 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3.dsc 379aa26d0d85b1b876dd574b7359352e058285a6f582a893dcabceab4ba7f79f 27688 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6.orig.tar.xz 9076cc472f48bf8626e498810aaabac104164a604cb87f101ad82876de02cdba 5076 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3.debian.tar.xz 75f7288cca0bb5447883e805c84b42116d36321908ab787f08bd12b75b4eadbe 23296 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3_all.deb ace12e482b711e262b91849dff610a4f1911385e0cce779c83c18506c8673a9a 5844 dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3_amd64.buildinfo Files: 5b09eaf8536ec83064bbd59b31ac0b9f 2158 admin optional dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6-3.dsc d28227a4b061718ca23d774d9949fe62 27688 admin optional dmarcts-report-parser_1.0+git20190809.1.bb5dd8b6.orig.tar.xz 48881bada98f7414c55520ccd24be2cc 507
Processed: ITP: prophet -- Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.
Processing commands for cont...@bugs.debian.org: > close 960471 Bug #960471 [wnpp] ITP: prophet -- Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. Marked Bug as done > stop Stopping processing here. Please contact me if you need assistance. -- 960471: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960471 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#953403: ITP: golang-k8s-sigs-structured-merge-diff -- Test cases and implementation for "server-side apply"
On Mon, Mar 9, 2020 at 11:42 AM Tong Sun wrote: > > Package: wnpp > Severity: wishlist > Owner: Tong Sun > > * Package name: golang-k8s-sigs-structured-merge-diff > Version : 3.0.0-1 > Upstream Author : Kubernetes SIGs > * URL : https://github.com/kubernetes-sigs/structured-merge-diff > * License : Apache-2.0 > Programming Lang: Go > Description : Implementation for "server-side apply" > > Structured Merge and Diff. It implements the Kubernetes "APPLY" operation, > apart from the PUT/PATCH operations. > > Dependency of github.com/google/go-containerregistry & > github.com/GoogleContainerTools/container-diff. > Are you still working on it? Since it's a tiny library, can I just take it? -- Shengjing Zhu