Your message dated Thu, 8 Aug 2024 12:18:46 +0100
with message-id <[email protected]>
and subject line re: stress-ng: unused build-dependency on libgcrypt20-dev
has caused the Debian Bug report #1071956,
regarding stress-ng: unused build-dependency on libgcrypt20-dev
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1071956: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071956
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: stress-ng
Version: 0.17.08-1
Severity: normal
Tags: patch
stress-ng build-depends on libgcrypt20-dev but afaict does not use
libgcrypt.
(sid)ametzler@argenau:/dev/shm/GCRY/stress-ng-0.17.08$ grep -rli gcry
.travis.yml
Dockerfile
stress-crypt.c
README.md
debian/changelog
debian/control
debian/.debhelper/generated/stress-ng/dh_installchangelogs.dch.trimmed
and the only match for gcrypt in stress-crypt.c is:
#else
stressor_info_t stress_crypt_info = {
.stressor = stress_unimplemented,
.class = CLASS_CPU | CLASS_COMPUTE,
.opt_set_funcs = opt_set_funcs,
.verify = VERIFY_ALWAYS,
.help = help,
.unimplemented_reason = "built without gcrypt library"
};
#endif
which is the else to
#if defined(HAVE_LIB_CRYPT) && \
(defined(HAVE_CRYPT_H) || \
defined(__FreeBSD__))
i.e. a typo, should read crypt.
cu Andreas
--- End Message ---
--- Begin Message ---
This has been fixed in the V0.18.01 release, c.f. upstream fix:
commit 2dd688f2762ca660ad4711d2baf0df6b9dc0054b
Author: Colin Ian King <[email protected]>
Date: Tue Jun 11 08:24:46 2024 +0100
lib: remove build dependency on libgcrypt20
The crypt functions don't require libgcrypt20, but instead
libcrypt-dev,
fix this. (Closes: #1071956)
Kudos to Andreas Metzler for noticing and reporting this.
Colin
--- End Message ---