Your message dated Tue, 29 May 2018 17:50:09 +0000
with message-id <[email protected]>
and subject line Bug#899198: fixed in openhpi 3.6.1-4
has caused the Debian Bug report #899198,
regarding openhpi FTCBFS: various configure.ac issues
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.)
--
899198: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=899198
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: openhpi
Version: 3.6.1-3.1
Tags: patch upstream
User: [email protected]
Usertags: rebootstrap
Control: block -1 by 899152
openhpi fails to cross build from source for a number of reasons. The
first issue is that it determines sizeof int as "" during cross
compilation. configure.ac as a separate code path for cross compilation
and that code path is broken as it fails calling AC_CHECK_SIZEOF.
Then it fails finding libraries with pkg-config as it uses the build
architecture pkg-config rather than the host one. Using
PKG_PROG_PKG_CONFIG mostly fixes that. Except that configure.ac also
sets PKG_CONFIG_PATH in a few cases and that breaks pkg-config's cross
wrapper.
Finally the cross build fails the same way as a native build: #899152.
The attached patch fixes the cross issues mentioned above. Please
consider applying it.
Helmut
From: Helmut Grohne <[email protected]>
Subject: fix cross compilation
The OH_SET_SIZES macro relies on the usual autoconf sizeof cache variables
during cross compilation, but it never ensure that they are initialized.
pkg-config must be called with $ac_tool_prefix and PKG_PROG_PKG_CONFIG takes
care of that. Setting PKG_CONFIG_PATH breaks the pkg-config-cross-wrapper.
Don't do that.
Index: openhpi-3.6.1/acinclude.m4
===================================================================
--- openhpi-3.6.1.orig/acinclude.m4
+++ openhpi-3.6.1/acinclude.m4
@@ -22,30 +22,39 @@
if test "x$cross_compiling" != "xno"; then
if test "x$OH_SIZEOF_UCHAR" = x; then
+ AC_CHECK_SIZEOF([unsigned char])
OH_SIZEOF_UCHAR=$ac_cv_sizeof_uchar
fi
if test "x$OH_SIZEOF_USHORT" = x; then
+ AC_CHECK_SIZEOF([unsigned short])
OH_SIZEOF_USHORT=$ac_cv_sizeof_ushort
fi
if test "x$OH_SIZEOF_UINT" = x; then
+ AC_CHECK_SIZEOF([unsigned int])
OH_SIZEOF_UINT=$ac_cv_sizeof_uint
fi
if test "x$OH_SIZEOF_CHAR" = x; then
+ AC_CHECK_SIZEOF([char])
OH_SIZEOF_CHAR=$ac_cv_sizeof_char
fi
if test "x$OH_SIZEOF_SHORT" = x; then
+ AC_CHECK_SIZEOF([short])
OH_SIZEOF_SHORT=$ac_cv_sizeof_short
fi
if test "x$OH_SIZEOF_INT" = x; then
+ AC_CHECK_SIZEOF([int])
OH_SIZEOF_INT=$ac_cv_sizeof_int
fi
if test "x$OH_SIZEOF_LLONG" = x; then
+ AC_CHECK_SIZEOF([long long])
OH_SIZEOF_LLONG=$ac_cv_sizeof_longlong
fi
if test "x$OH_SIZEOF_FLOAT" = x; then
+ AC_CHECK_SIZEOF([float])
OH_SIZEOF_FLOAT=$ac_cv_sizeof_float
fi
if test "x$OH_SIZEOF_DOUBLE" = x; then
+ AC_CHECK_SIZEOF([double])
OH_SIZEOF_DOUBLE=$ac_cv_sizeof_double
fi
else
Index: openhpi-3.6.1/configure.ac
===================================================================
--- openhpi-3.6.1.orig/configure.ac
+++ openhpi-3.6.1/configure.ac
@@ -85,9 +85,9 @@
dnl Check for GLIB
-AC_CHECK_PROG([found_pkg_config],[pkg-config],[yes])
+PKG_PROG_PKG_CONFIG
-if test "x$found_pkg_config" != "xyes"; then
+if test "x$PKG_CONFIG" = "x"; then
OH_CHECK_FAIL(pkg-config,pkg-config)
fi
PKG_CFG_SETPATH
@@ -103,7 +103,7 @@
GTHREAD=gthread-2.0
GMODULE=gmodule-2.0
-if pkg-config --atleast-version $GLIB_REQUIRED_VERSION $GLIB; then
+if $PKG_CONFIG --atleast-version $GLIB_REQUIRED_VERSION $GLIB; then
:
else
AC_MSG_ERROR([
@@ -111,15 +111,15 @@
*** GLIB is always available from ftp://ftp.gtk.org/.])
fi
-exact_version=`pkg-config --modversion $GLIB`;
-GLIB_CFLAGS=`pkg-config --cflags $GLIB`
-GLIB_LIBS=`pkg-config --libs $GLIB`
-GLIB_ONLY_CFLAGS=`pkg-config --cflags $GLIB`
-GLIB_ONLY_LIBS=`pkg-config --libs $GLIB`
-GMODULE_ONLY_CFLAGS=`pkg-config --cflags $GMODULE`
-GMODULE_ONLY_LIBS=`pkg-config --libs $GMODULE`
-GTHREAD_CFLAGS=`pkg-config --cflags $GTHREAD`
-GTHREAD_LIBS=`pkg-config --libs $GTHREAD`
+exact_version=`$PKG_CONFIG --modversion $GLIB`;
+GLIB_CFLAGS=`$PKG_CONFIG --cflags $GLIB`
+GLIB_LIBS=`$PKG_CONFIG --libs $GLIB`
+GLIB_ONLY_CFLAGS=`$PKG_CONFIG --cflags $GLIB`
+GLIB_ONLY_LIBS=`$PKG_CONFIG --libs $GLIB`
+GMODULE_ONLY_CFLAGS=`$PKG_CONFIG --cflags $GMODULE`
+GMODULE_ONLY_LIBS=`$PKG_CONFIG --libs $GMODULE`
+GTHREAD_CFLAGS=`$PKG_CONFIG --cflags $GTHREAD`
+GTHREAD_LIBS=`$PKG_CONFIG --libs $GTHREAD`
# On some versions of Solaris the pkg-config file for gthread-2.0 contains a
@@ -258,12 +258,12 @@
dnl We really need to make ipmi enablement be contigent on OpenIPMI
dnl
-if PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --atleast-version 1.4.20 OpenIPMI; then
+if $PKG_CONFIG --atleast-version 1.4.20 OpenIPMI; then
have_openipmi=yes
AC_CHECK_LIB([OpenIPMI], [ipmi_smi_setup_con], [have_openipmi=yes])
- OPENIPMI_CFLAGS=`PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --cflags OpenIPMI`
+ OPENIPMI_CFLAGS=`$PKG_CONFIG --cflags OpenIPMI`
AC_SUBST(OPENIPMI_CFLAGS)
- OPENIPMI_LIBS=`PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --libs OpenIPMI`
+ OPENIPMI_LIBS=`$PKG_CONFIG --libs OpenIPMI`
AC_SUBST(OPENIPMI_LIBS)
fi
--- End Message ---
--- Begin Message ---
Source: openhpi
Source-Version: 3.6.1-4
We believe that the bug you reported is fixed in the latest version of
openhpi, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Mohan Devarajulu <[email protected]> (supplier of updated openhpi
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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Thu, 24 May 2018 16:28:12 -0600
Source: openhpi
Binary: libopenhpi3 libopenhpi-dev openhpid openhpi-clients
openhpi-plugin-ilo2-ribcl openhpi-plugin-ipmi openhpi-plugin-ipmidirect
openhpi-plugin-oa-soap openhpi-plugin-slave openhpi-plugin-test-agent
openhpi-plugin-snmp-bc openhpi-plugin-sysfs openhpi-plugin-watchdog
openhpi-plugin-simulator openhpi-plugin-dynamic-simulator openhpi
Architecture: source amd64 all
Version: 3.6.1-4
Distribution: unstable
Urgency: medium
Maintainer: Mohan Devarajulu <[email protected]>
Changed-By: Mohan Devarajulu <[email protected]>
Description:
libopenhpi-dev - OpenHPI libraries (development files)
libopenhpi3 - OpenHPI libraries (runtime and support files)
openhpi - SAF's HPI: Abstracted interface for managing computer hardware
openhpi-clients - OpenHPI example client programs
openhpi-plugin-dynamic-simulator - OpenHPI plugin module for a dynamic
simulator
openhpi-plugin-ilo2-ribcl - OpenHPI plugin module for HP's ProLiant rackmount
servers
openhpi-plugin-ipmi - OpenHPI plugin module for OpenIPMI
openhpi-plugin-ipmidirect - OpenHPI plugin module for direct IPMI over LAN
(RMCP) or SMI
openhpi-plugin-oa-soap - OpenHPI plugin module for HP's BladeSystem c-Class
openhpi-plugin-simulator - OpenHPI plugin module for a simulator that works
without hardware
openhpi-plugin-slave - OpenHPI plugin module for slave plugin
openhpi-plugin-snmp-bc - OpenHPI plugin module for IBM's BladeCenter or RSA
over SNMP
openhpi-plugin-sysfs - OpenHPI plugin module for the sysfs filesystem
openhpi-plugin-test-agent - OpenHPI plugin module for test agent plugin
openhpi-plugin-watchdog - OpenHPI plugin module for the Linux watchdog
interface
openhpid - OpenHPI daemon, supports gathering of manageability information
Closes: 899152 899198
Changes:
openhpi (3.6.1-4) unstable; urgency=medium
.
* Moved openhpi-plugin-sysfs to optional to avoid lintian warning
* Moved openhpi to optional to avoid lintian warning
* Fix openhpi FTCBHS: various configure.ac issues (Closes: #899198)
* Fix FTBFS: ipmi.h:85:2: error: unknown type name 'selector_t'
(Closes: #899152)
Checksums-Sha1:
c1f0a1c64869f20f8687e59353b7955b76d86232 3115 openhpi_3.6.1-4.dsc
b483c0b1d9ecdcd36e312ced492c761878ef94b0 16576 openhpi_3.6.1-4.debian.tar.xz
2dd1b339e5d4a270a488ca2652749d119362c7d4 932580
libopenhpi-dev_3.6.1-4_amd64.deb
e124bae9ca997d5ded7c37460c3624eace9f6ce4 498620
libopenhpi3-dbgsym_3.6.1-4_amd64.deb
5de1e486d04659b66311c318d7c2900f48d4cf17 151960 libopenhpi3_3.6.1-4_amd64.deb
b822d4fa0a15144cf7a5773aa85e41db238c7560 1105024
openhpi-clients-dbgsym_3.6.1-4_amd64.deb
5305250040ee39f28f6d218eef1f2c8ebbb3c93d 241988
openhpi-clients_3.6.1-4_amd64.deb
a492214556c494ea04935feb4f8c612a78734298 505656
openhpi-plugin-dynamic-simulator-dbgsym_3.6.1-4_amd64.deb
8f8ed8e219fddad8a26c46e2aac561434ed8d144 114768
openhpi-plugin-dynamic-simulator_3.6.1-4_amd64.deb
4697c2ce3ef46b43395b578189979e782ea12144 158700
openhpi-plugin-ilo2-ribcl-dbgsym_3.6.1-4_amd64.deb
cdfd0e3bd0e345c267837d2b8e2ca73fcaf11ec4 346992
openhpi-plugin-ilo2-ribcl_3.6.1-4_amd64.deb
a6b0d1b9f80fd738db77c59b71939224491bef4f 439608
openhpi-plugin-ipmi-dbgsym_3.6.1-4_amd64.deb
25e5eee38dddf225ed9753e5f6849f9a9eb5d77c 110760
openhpi-plugin-ipmi_3.6.1-4_amd64.deb
e7c04e2dd8d2200be6c1bacc18d54b27f988db4d 589044
openhpi-plugin-ipmidirect-dbgsym_3.6.1-4_amd64.deb
7bb4fef62ecc62cacd9e1589337c73d97f5b8c1c 140028
openhpi-plugin-ipmidirect_3.6.1-4_amd64.deb
272192dbd7d6857f70592f161152a25e885a29db 580160
openhpi-plugin-oa-soap-dbgsym_3.6.1-4_amd64.deb
427f7b9ba86a2f1f3f0f6e366fdbbc08f08e7c3c 886780
openhpi-plugin-oa-soap_3.6.1-4_amd64.deb
95f5976f6e3012541d3d5db0051e1f43dbf411c9 179788
openhpi-plugin-simulator-dbgsym_3.6.1-4_amd64.deb
5c31387af0d4c8a88731a4acea23842c6c670cb6 47008
openhpi-plugin-simulator_3.6.1-4_amd64.deb
34bef8238154e173cd711c05c0df4b0c47c3624d 202304
openhpi-plugin-slave-dbgsym_3.6.1-4_amd64.deb
80c1ca11dbf0418feea1097ec64d987bcde7e893 43664
openhpi-plugin-slave_3.6.1-4_amd64.deb
b9ca35ed764607d29164669b512dfd396242f12e 520976
openhpi-plugin-snmp-bc-dbgsym_3.6.1-4_amd64.deb
533d24e0684937df796cb1827a10a3ade815369e 855816
openhpi-plugin-snmp-bc_3.6.1-4_amd64.deb
f6f5ef72db86dc6ae28c299dc306b603b90f54ca 32644
openhpi-plugin-sysfs-dbgsym_3.6.1-4_amd64.deb
fbdf63a434b97677f23be9d8c9d8c7aa91361ac6 32896
openhpi-plugin-sysfs_3.6.1-4_amd64.deb
cf2af07389327fa44ca96098fdb64a66cfcca81a 1258488
openhpi-plugin-test-agent-dbgsym_3.6.1-4_amd64.deb
5e6fa7939f19ee8cdef5ef05758b265002e54d93 118284
openhpi-plugin-test-agent_3.6.1-4_amd64.deb
28d555292dfdf3fe6e7da9df051ff00e2b8f31c0 28288
openhpi-plugin-watchdog-dbgsym_3.6.1-4_amd64.deb
c9e764318a131891cd1847e8122a8bbaeea62009 31516
openhpi-plugin-watchdog_3.6.1-4_amd64.deb
8d303675a28ea1a2e193acc808cd41ed1b59290b 27400 openhpi_3.6.1-4_all.deb
bc0553d45b903b9bc70cbd22d98bd9c5b6f275ce 15132 openhpi_3.6.1-4_amd64.buildinfo
50e05a0e968717b4eef466ba29a0cf9eb6fb6b47 324660
openhpid-dbgsym_3.6.1-4_amd64.deb
d86b697cd41d05e5545967b4d76ad6cd97359882 89040 openhpid_3.6.1-4_amd64.deb
Checksums-Sha256:
632d9ec9e63874a1c43368b4545bb336bdd8461ae32e503252fe0916ab8cdcf0 3115
openhpi_3.6.1-4.dsc
c1a72a23e789c1ffa6263ff1518b3fb54a0342062a3c8de5a87567f9063573b1 16576
openhpi_3.6.1-4.debian.tar.xz
73f849991011828190f6587d22e451e680571ff2d54b764237d307503f936c26 932580
libopenhpi-dev_3.6.1-4_amd64.deb
e30b9ef3a61941f29c6d5162649575ce0eab30d0b844a1f7a0a21da456a3d4ff 498620
libopenhpi3-dbgsym_3.6.1-4_amd64.deb
d0c9b2ed8d0343d2947bb8c6b730eb9afa9c39d0c8db4af9606d71f011be9979 151960
libopenhpi3_3.6.1-4_amd64.deb
91ea6348ffb3269d75d41c04d1baa5193329f2c0135caa7597f668c0030e0738 1105024
openhpi-clients-dbgsym_3.6.1-4_amd64.deb
6243977ed7f199062ef40c81fa6e6f9d202090aa361eb9ccb49dfdd61c03f848 241988
openhpi-clients_3.6.1-4_amd64.deb
cbbe384ce6ddfa8d0ae3ce4bfd6f07de0053645833f78c528bc133ac6b6b9e42 505656
openhpi-plugin-dynamic-simulator-dbgsym_3.6.1-4_amd64.deb
07da5f7d9c1777de01a93743e22c4089a4cb2590a3659bd37f22018a98f1232d 114768
openhpi-plugin-dynamic-simulator_3.6.1-4_amd64.deb
c6b43523551fb16c918d9c8d327ca60349d559010943d87976fb66cd0724662d 158700
openhpi-plugin-ilo2-ribcl-dbgsym_3.6.1-4_amd64.deb
9df9669c8786e8d93d0a44a5cf63c04c12da9f355ac3b2752a9b5473401ee02b 346992
openhpi-plugin-ilo2-ribcl_3.6.1-4_amd64.deb
45444b26647694c135f4b0f9b07d4e91d93bfbe7e8bed541a368c441ba405a8d 439608
openhpi-plugin-ipmi-dbgsym_3.6.1-4_amd64.deb
1cf0f8d0f6b73b4253fffe08ecf425985838ad22d7158fecccb1a16ff4646dc0 110760
openhpi-plugin-ipmi_3.6.1-4_amd64.deb
ae5c5e5dae704161afa164a5f046be2c9863d338c96a322b364e31f0b29195c7 589044
openhpi-plugin-ipmidirect-dbgsym_3.6.1-4_amd64.deb
f3e0e605cfaaf47d55ac39981484aba09b865c55e4a07e41312a6be9e433c4ac 140028
openhpi-plugin-ipmidirect_3.6.1-4_amd64.deb
abfbcf538ba027bace21b9d4d22a43145cc63dc80263a7e24593f027b91f712d 580160
openhpi-plugin-oa-soap-dbgsym_3.6.1-4_amd64.deb
85af9b853f6fa80d6f31bfdf6963f2d83c313754bafc92f1fdf1467df5495829 886780
openhpi-plugin-oa-soap_3.6.1-4_amd64.deb
cacfb36ca46f9eeb9c15c841973bcf50dc9183831a07f8eaf2fbaf48939fbb8d 179788
openhpi-plugin-simulator-dbgsym_3.6.1-4_amd64.deb
a1296b69c1a83ed6c21eee14286778dcc8325c092c40bdfda39a020e359fd06c 47008
openhpi-plugin-simulator_3.6.1-4_amd64.deb
5b02e4db1bf4149356f414af146ce73974aeba9b74ff4e466564a8661ab64c8b 202304
openhpi-plugin-slave-dbgsym_3.6.1-4_amd64.deb
ca41c3bd662e1eb7363c263fc8dd1e6d2a92f710876b85f84561ed60f49a40af 43664
openhpi-plugin-slave_3.6.1-4_amd64.deb
bbf744cdb629398ec83fdeb00fff5d296947c4398a655b9237451e57aa24281d 520976
openhpi-plugin-snmp-bc-dbgsym_3.6.1-4_amd64.deb
87b0567641e8922d76532daf4f08b8d9b68c29a9d4620a3e94b3148022a89d77 855816
openhpi-plugin-snmp-bc_3.6.1-4_amd64.deb
ad7e1d2048bdf41d0b00c89fd719d640db9ec0355b4f51433c35f886e65b4a4c 32644
openhpi-plugin-sysfs-dbgsym_3.6.1-4_amd64.deb
9b3bd0e0b5a9077b1e4ffe8c4370a387968230919748dd2649a5d10ff534e6d1 32896
openhpi-plugin-sysfs_3.6.1-4_amd64.deb
3d56b9ce3b8cf8d8772257409225e1052e0d0efc7d8d571ece4963186c43fd40 1258488
openhpi-plugin-test-agent-dbgsym_3.6.1-4_amd64.deb
94d11155ef19596b659280d62f1742e21763b4738f293acfee242f6567698cea 118284
openhpi-plugin-test-agent_3.6.1-4_amd64.deb
6ae0b4125ba6043bf91a28ce12184fc603cbee1a52d97285dd8f56a5119427d6 28288
openhpi-plugin-watchdog-dbgsym_3.6.1-4_amd64.deb
03e575f6f0f4002ae6f389ac311d5fe1c93341e8a10790fc71a7ce5161878d88 31516
openhpi-plugin-watchdog_3.6.1-4_amd64.deb
4d8ecba8b0d577f7a6831cdc2ae231cfd5b4b49a411668871d365799d74c2e9f 27400
openhpi_3.6.1-4_all.deb
7abf1025541f0db43ddfb3000420ae65044032dc5c6042a873da401743e33f49 15132
openhpi_3.6.1-4_amd64.buildinfo
db96d599ca3226a4b58829900f597a1997d5ebec8563a067ad9457101f9515b9 324660
openhpid-dbgsym_3.6.1-4_amd64.deb
33d7ed338823a138b9d88090e24862902a0290c1638846f2d09d357f4c1d6aaa 89040
openhpid_3.6.1-4_amd64.deb
Files:
2ecc00e40317a5b2760bcef265f0753f 3115 admin optional openhpi_3.6.1-4.dsc
1d35767edf71e358b7e575246439d99e 16576 admin optional
openhpi_3.6.1-4.debian.tar.xz
4efbcc05cb49966aea7005e43bf69672 932580 libdevel optional
libopenhpi-dev_3.6.1-4_amd64.deb
8612ced39db5c33f74b862a486cf8ffd 498620 debug optional
libopenhpi3-dbgsym_3.6.1-4_amd64.deb
55a5cb1472df7899bab3c982df7e930e 151960 libs optional
libopenhpi3_3.6.1-4_amd64.deb
97d28d02e89ba0567366e8a0db0bc807 1105024 debug optional
openhpi-clients-dbgsym_3.6.1-4_amd64.deb
6addb5a8fbdc67c31c56ed6a4a59b0cc 241988 admin optional
openhpi-clients_3.6.1-4_amd64.deb
0cb87baa13f6635fa8d8fc6de9fa259c 505656 debug optional
openhpi-plugin-dynamic-simulator-dbgsym_3.6.1-4_amd64.deb
90641dbb835ff92835570e312fa44587 114768 libs optional
openhpi-plugin-dynamic-simulator_3.6.1-4_amd64.deb
afca41ac795ddd4b9f2a76bf51e80c39 158700 debug optional
openhpi-plugin-ilo2-ribcl-dbgsym_3.6.1-4_amd64.deb
07d435ecb319baace2ce8d1f6473378f 346992 libs optional
openhpi-plugin-ilo2-ribcl_3.6.1-4_amd64.deb
7fb9379fe6fdaac8126dc61e15e68d5a 439608 debug optional
openhpi-plugin-ipmi-dbgsym_3.6.1-4_amd64.deb
c4328582f7039f40c4da85ec673eb8bb 110760 libs optional
openhpi-plugin-ipmi_3.6.1-4_amd64.deb
5768586fe4d06acb4f9e035670cb93b8 589044 debug optional
openhpi-plugin-ipmidirect-dbgsym_3.6.1-4_amd64.deb
5a4fbbf1da7e3f5a93b79bd6628c6b42 140028 libs optional
openhpi-plugin-ipmidirect_3.6.1-4_amd64.deb
c0ab71e09af369249dce7332e99a40d5 580160 debug optional
openhpi-plugin-oa-soap-dbgsym_3.6.1-4_amd64.deb
3cf9215afda2d03d6b146e68f3229d2a 886780 libs optional
openhpi-plugin-oa-soap_3.6.1-4_amd64.deb
3ff8b6847742196845e635bd2f8f19d3 179788 debug optional
openhpi-plugin-simulator-dbgsym_3.6.1-4_amd64.deb
558af25a74b24fd9b9936d2966661d70 47008 libs optional
openhpi-plugin-simulator_3.6.1-4_amd64.deb
26352a393d6a0b7ae948c743b180a23a 202304 debug optional
openhpi-plugin-slave-dbgsym_3.6.1-4_amd64.deb
743eb61e5c25320332a92a301e651cce 43664 libs optional
openhpi-plugin-slave_3.6.1-4_amd64.deb
c742d6abe9a04565f0b537af453b12c0 520976 debug optional
openhpi-plugin-snmp-bc-dbgsym_3.6.1-4_amd64.deb
489202e4128ba84c33df6e21c5c3303d 855816 libs optional
openhpi-plugin-snmp-bc_3.6.1-4_amd64.deb
5b4afc2135ce4afe8814e143269047d9 32644 debug optional
openhpi-plugin-sysfs-dbgsym_3.6.1-4_amd64.deb
aad2b026ae41a3df3522c58bf20ac0ae 32896 libs optional
openhpi-plugin-sysfs_3.6.1-4_amd64.deb
afdbe91b99aad7ec7390f79cca8897e9 1258488 debug optional
openhpi-plugin-test-agent-dbgsym_3.6.1-4_amd64.deb
9a0dd0a8d77d9a2504995cde620beee4 118284 libs optional
openhpi-plugin-test-agent_3.6.1-4_amd64.deb
9c3e292f799250f69effa97c1945eef9 28288 debug optional
openhpi-plugin-watchdog-dbgsym_3.6.1-4_amd64.deb
8e6e6b803c5950c0a4cbf361aaa66699 31516 libs optional
openhpi-plugin-watchdog_3.6.1-4_amd64.deb
833e4d87b6094abb2341eb314209b808 27400 admin optional openhpi_3.6.1-4_all.deb
33a000623c811a680f2414d8c04556d8 15132 admin optional
openhpi_3.6.1-4_amd64.buildinfo
b303b33b915c9843eaf468857242f3df 324660 debug optional
openhpid-dbgsym_3.6.1-4_amd64.deb
635cf4154b18a8c757b693358e94db89 89040 admin optional
openhpid_3.6.1-4_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCgAGBQJbCJT+AAoJEEV+9D8+vGX0BdAP/2t543u2NHCfsqQUlAcbH5HG
OSf/Bcmef3IJLP6EhGHTm5c73EqqIm3xf1NvL7gyjkyPAlAGEY1CiqnFUBl6Ekug
kPhRsAySxSi027yp1174SMk29KXYU4CjQAK1MJOMIAULdTcNGR2sqlpxsrGsE21n
4ZL6ygQxnrZNurwrMJRJtRxaHYDgDaRuPmrBDS/esxAEv8fEerip0snuECqBOcNQ
SfqKi/VRNRiWg/x9Q39WqCP4vkzdTz3vVypvZ9aPUJK/K8d96QJw0eLPsyHprYUe
c2O49VH5IbS+kxF0d0X47HXdMVo/W5cpau7MYsKEGhaNK1XXiwG+gO1LkQ5BhhoO
xQfdl8Y/9avAPh8TYxRCzqxLI4pkCKwJOwpcYTIdYtCNCndlR3RwNSfdh5zPKqwo
PGvaRm1f+uaJo3CVkQebjSk/v42sr1ePWIPHWsK5d8PQPcQF8R//DTnKJz2sw152
F8PrDlOw8NgxODon+Qn0oo712xmY38waeCmcrHsBTDa9hfQCPICSBf17Qsafd8BL
9RFyRjo3fYA+00LQpmbK/xbxx75Z1avuvLUVDrEaVIRMIFUX/6QxjqAPHbUzC/hB
PAJtcTaMy/QGUarcNr+hAGxp2G3UOLx0RikDwZfjVe+ZRbaIzTMQh4admCF4TArQ
xSlBXZf4x8zlgsm9+OPv
=bf8+
-----END PGP SIGNATURE-----
--- End Message ---