Your message dated Fri, 24 Apr 2015 18:03:53 +0000
with message-id <e1ylhxb-0005da...@franck.debian.org>
and subject line Bug#779758: fixed in clamav 0.98.6+dfsg-2
has caused the Debian Bug report #779758,
regarding clamav: Transition to libsystemd
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.)


-- 
779758: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779758
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: clamav
Version: 0.98.6+dfsg-1
Severity: normal
User: pkg-systemd-maintain...@lists.alioth.debian.org
Usertags: libsystemd

Hi!

In systemd v209, released over a year ago, the various libsystemd-* libraries
(libsystemd-journal.so, libsystemd-login.so, libsystem-daemon.so,
libsystemd-id128.so) were merged into a single libsystemd.so library to reduce
code duplication and avoid cyclic dependencies [1].

Your package declares a build-dependency on either libsystemd-daemon-dev,
libsystemd-login-dev or libsystemd-journal-dev.

Please update your package so it can be built against libsystemd.


Updating the configure check / build system
===========================================
If your package use pkg-config and autotools, a typical configure check
looks like:

 PKG_CHECK_MODULES(FOO, libsystemd-login)
All you need to do, is change that to
 PKG_CHECK_MODULES(FOO, libsystemd)


If there are checks for libsystemd-journal, libsystemd-login and
libsystemd-journal, you can merge that into a single check:

 PKG_CHECK_MODULES(FOO, libsystemd-login)
 PKG_CHECK_MODULES(BAR, libsystemd-daemon)
 PKG_CHECK_MODULES(BAZ, libsystemd-journal)
=>
 PKG_CHECK_MODULES(FOO, libsystemd)

BAR_{CFLAGS,LIBS} and BAZ_{CFLAGS,LIBS} need to be updated accordingly.

If you/upstream wants to support building against older versions of systemd,
you can update the configure check as follows:

 PKG_CHECK_MODULES(FOO, libsystemd-login)
=>
 PKG_CHECK_MODULES(FOO, libsystemd,, [PKG_CHECK_MODULES(FOO, libsystemd-login)])

See [2] as an example how to do that.


Updating Build-Depends
======================
Please replace the Build-Depends on libsystemd-*-dev with libsystemd-dev [3].
I would recommend against adding alternative Build-Depends against the old
dev packages. This is not necessary, since libsystemd-dev is already provided
in jessie.


Backports
=========
Debian jessie already ships with libsystemd-dev, so this change is safe
regarding backports.


Upstream
========
Please consider forwarding this upstream. In some cases upstream might already
have a fix for that


Thanks for considering.


Michael,
on behalf of the pkg-systemd team.


[1] 
http://lists.freedesktop.org/archives/systemd-devel/2014-February/017146.html
[2] 
http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=8f6317f88a3ca3f42cf72137bb033b4a020b7b82
[3] 
http://anonscm.debian.org/cgit/pkg-utopia/network-manager.git/commit/?id=69b95405b07fc2a5833dfcbe18c9229706c2104e

--- End Message ---
--- Begin Message ---
Source: clamav
Source-Version: 0.98.6+dfsg-2

We believe that the bug you reported is fixed in the latest version of
clamav, 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 779...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Cadhalpun <andreas.cadhal...@googlemail.com> (supplier of updated 
clamav 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: Fri, 24 Apr 2015 18:38:50 +0200
Source: clamav
Binary: clamav-base clamav-docs clamav-dbg clamav libclamav-dev libclamav6 
clamav-daemon clamdscan clamav-testfiles clamav-freshclam clamav-milter
Architecture: source all amd64
Version: 0.98.6+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org>
Changed-By: Andreas Cadhalpun <andreas.cadhal...@googlemail.com>
Description:
 clamav     - anti-virus utility for Unix - command-line interface
 clamav-base - anti-virus utility for Unix - base package
 clamav-daemon - anti-virus utility for Unix - scanner daemon
 clamav-dbg - debug symbols for ClamAV
 clamav-docs - anti-virus utility for Unix - documentation
 clamav-freshclam - anti-virus utility for Unix - virus database update utility
 clamav-milter - anti-virus utility for Unix - sendmail integration
 clamav-testfiles - anti-virus utility for Unix - test files
 clamdscan  - anti-virus utility for Unix - scanner client
 libclamav-dev - anti-virus utility for Unix - development files
 libclamav6 - anti-virus utility for Unix - library
Closes: 778445 778507 779758 781088
Changes:
 clamav (0.98.6+dfsg-2) unstable; urgency=medium
 .
   [ Andreas Cadhalpun ]
   * Fix variable name mismatch in clamav-milter.postinst in order to
     make preseeding work correctly. (Closes: #778445)
   * Fix clamav-daemon installability with custom PidFile.
     Thanks to Andy Dorman for the bug report and patch. (Closes: #778507)
   * Rename DEBCONFILE to DEBCONFFILE in clamav-freshclam.postinst making it
     consistent with the other postinst scripts.
   * Build against libsystemd-dev. (Closes: #779758)
   * Drop 'XS-Testsuite: autopkgtest' from debian/control.
     Debhelper automatically adds the Testsuite field.
     This fixes the lintian warning xs-testsuite-header-in-debian-control.
   * Shorten debian/copyright. This fixes some lintian warnings:
      - dep5-copyright-license-name-not-unique
      - wildcard-matches-nothing-in-dep5-copyright
      - unused-file-paragraph-in-dep5-copyright
   * Use pathfind to avoid hardcoding paths.
     This fixes command-with-path-in-maintainer-script lintian warnings.
 .
   [ Sebastian Andrzej Siewior ]
   * Replace ” with " in debian/common_functions (Closes: #781088)
   * Drop __DATE__ from tfm to make the package build reproducible with
     -Werror=date-time. With this change faketime is no longer required.
Checksums-Sha1:
 a5eec054b8670183cec10af2a2136407852f78fd 3075 clamav_0.98.6+dfsg-2.dsc
 975356ffb5f3dc806263742a67ab8d2956e5bb18 242884 
clamav_0.98.6+dfsg-2.debian.tar.xz
 772b6e39d90dab6da10d5818eade203129d6fc7b 279748 
clamav-base_0.98.6+dfsg-2_all.deb
 7bdfa07bac526cfc7a9e8899991cfa907ed81031 916592 
clamav-docs_0.98.6+dfsg-2_all.deb
 9720d7ce3ce581b1df5a8f5a8fb832805352be36 2422904 
clamav-dbg_0.98.6+dfsg-2_amd64.deb
 b5089e09a960c0e6b6f2423dd4c1478bf799e1d9 321996 clamav_0.98.6+dfsg-2_amd64.deb
 ad5dad7d006165d04597cdd996cef49a57750888 241574 
libclamav-dev_0.98.6+dfsg-2_amd64.deb
 816f86f4ea6dc06f83f04ad814cd8383ea653846 920406 
libclamav6_0.98.6+dfsg-2_amd64.deb
 4767b476c21c60785c5c2ec1252b04acc98affa8 418096 
clamav-daemon_0.98.6+dfsg-2_amd64.deb
 ded22d7084c58bc74a8f20e1c66e8f2fab730542 295004 
clamdscan_0.98.6+dfsg-2_amd64.deb
 106caccf881380ff9bb1932a77cf5d837e809682 3093596 
clamav-testfiles_0.98.6+dfsg-2_all.deb
 acd19038ebb6f79890a71c82e81e4e2a35ecf003 345640 
clamav-freshclam_0.98.6+dfsg-2_amd64.deb
 77096e9a3ffd70fdc19d7ca5d9dd4787155696f6 384108 
clamav-milter_0.98.6+dfsg-2_amd64.deb
Checksums-Sha256:
 0eabdc831a7a725a1d88d43fb37c8c5352fe2fd55ffed8d24217d57682cb31cd 3075 
clamav_0.98.6+dfsg-2.dsc
 ee8aaaaae9e5ab5878b95f371e15f9836278ad31f032bc48bfa65d3b0fc6476f 242884 
clamav_0.98.6+dfsg-2.debian.tar.xz
 35b1c3342dc2feda6ed7c7a5ad6f4f675cdb40ab079a2430b61048e1feb401e5 279748 
clamav-base_0.98.6+dfsg-2_all.deb
 5c54dffad52b6573e490d777c9c31dd0a1e6fd5089ff0ca68db0e8e1b628516f 916592 
clamav-docs_0.98.6+dfsg-2_all.deb
 4c985f1db5da303dc31e52941c83eec1fb08327a1742a5b3691a51785cbce600 2422904 
clamav-dbg_0.98.6+dfsg-2_amd64.deb
 6b15d3ddb15df0feea52509cddb18de65d047e35e80a917aeb044500d415841a 321996 
clamav_0.98.6+dfsg-2_amd64.deb
 6ae02f0f44ec022ffade50a7b0b4cee751bab87d80c2dee7ef27044116c2c68c 241574 
libclamav-dev_0.98.6+dfsg-2_amd64.deb
 634e9037df45a04c4eebfd12556ccf3a249f5e58111cba9d147369e02b38d394 920406 
libclamav6_0.98.6+dfsg-2_amd64.deb
 305e25800b049310a9c3bc0fbf0669a8fb7d99cfb7e0832f6df1d116c890f6a8 418096 
clamav-daemon_0.98.6+dfsg-2_amd64.deb
 585433f75b14584c07201f5a6aafb65c396a4ecf44b189c9ac7cba56fcd7aade 295004 
clamdscan_0.98.6+dfsg-2_amd64.deb
 6d2932ed829d43de6e86a1dfa68d943d6cc3d478393920efc3caab8dfdeb26a8 3093596 
clamav-testfiles_0.98.6+dfsg-2_all.deb
 8e3007905faff51d14e796b1962d88512f441fc025e695c25b518a582890d4d2 345640 
clamav-freshclam_0.98.6+dfsg-2_amd64.deb
 04be07b1f48cfc622e1232b3d8d6eb200a1f7fe106c8ae3700573a58bace9ad7 384108 
clamav-milter_0.98.6+dfsg-2_amd64.deb
Files:
 cca70693d7d3bce7905bc08b8af84263 3075 utils optional clamav_0.98.6+dfsg-2.dsc
 421360cf916e7476644f1366554515d1 242884 utils optional 
clamav_0.98.6+dfsg-2.debian.tar.xz
 4d335f5f6b464953ec2f30b8e7f54f67 279748 utils optional 
clamav-base_0.98.6+dfsg-2_all.deb
 222f05c1c594bf05d3a8e53ba2081ddf 916592 doc optional 
clamav-docs_0.98.6+dfsg-2_all.deb
 924f610de197cdd346cc2ebb369fda4c 2422904 debug extra 
clamav-dbg_0.98.6+dfsg-2_amd64.deb
 256b795f47e8e43537d2aeb125fb1bd4 321996 utils optional 
clamav_0.98.6+dfsg-2_amd64.deb
 b4a5746818e50da6e813660ebb4c555f 241574 libdevel optional 
libclamav-dev_0.98.6+dfsg-2_amd64.deb
 33979d0793a6e002486a119d707d0a20 920406 libs optional 
libclamav6_0.98.6+dfsg-2_amd64.deb
 ecee7093e79f3325687afd4bd5587065 418096 utils optional 
clamav-daemon_0.98.6+dfsg-2_amd64.deb
 85dd4e3416fa8181a91c2adbb4b3cc4a 295004 utils optional 
clamdscan_0.98.6+dfsg-2_amd64.deb
 b3aab155825ff7a687165ef074ba0dfe 3093596 utils optional 
clamav-testfiles_0.98.6+dfsg-2_all.deb
 7b620bbc6d9131d146b12787668994a0 345640 utils optional 
clamav-freshclam_0.98.6+dfsg-2_amd64.deb
 6e7249ea97391a96a9fd2d28af8095ce 384108 utils extra 
clamav-milter_0.98.6+dfsg-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJVOoJ4AAoJEHjX3vua1ZrxzEkP/3yjvBAyj+m2/f56dHuL/6jL
ldCaafrb9nyYkD5cFluFsNo1ePXSEYxyWpvFIQNdjY8YM3RoFQ8aFOKrwqe+Mvrl
xwcMgK4R+mIwoblQpC6nQ3d/G19zDBIunjZEyf3eBQQ8QDM5afjHq2SPn3LoQGdS
Nvefbkg/jaUgbKuTJke/Ug9HAdtmjM7bAyc8jw0NEo3R8Kn7ThBB3+59BE+JLIY2
5jo97h1QpLB6S9zfBuX60doGQZRyMAPoyNiujMcLDJS+sm+Oqxw0hFKF+xOfCV6J
LnKNtiMjPo+weRC/2mji2td7MheHQIfPTRN2skUHytFA96ousg8XbOITkRifssOk
RuZLBEdR6quAiOhggvTcNM/f5xPpAkSxz+khvqkADMGeX1N2PbYHGznDGH3k8aUd
MeI0ql6/GaHaCYADtgzVfh0Kl2TB5m2H/rvOE/GxkmSDTjv3gAFPztyN/kUwd8pI
kRg7CDm8PDE3nQV1FluJIL98ERHZeBLrPK/1I6X3wQd898hQ6Rv3mTllR755uf/z
o/ecavm+5DLqV5g8ZxQgPG4/UshgwtSbZtLWDQ5LkmGRg+zS4+ppXBCpVbFSKZ1Q
tjSdaw+0Ib1vX33wqnL5M8AhAdlmltWpULKpi5Z6ymXyFqkSELFfuisqcusX14jP
1A+MGpi3pdSBbcYsoKf3
=lfBI
-----END PGP SIGNATURE-----

--- End Message ---
_______________________________________________
Pkg-clamav-devel mailing list
Pkg-clamav-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-clamav-devel

Reply via email to