View Issue Details

IDProjectCategoryView StatusLast Update
0001170bareos-coreGeneralpublic2020-04-14 13:11
Reportertuxmaster Assigned Toarogge  
PrioritynormalSeverityblockReproducibilityalways
Status closedResolutionfixed 
Platformx86_64OSFedoraOS Version31
Product Version19.2.4~rc1 
Summary0001170: Build fails on Fedora 31
DescriptionThe build fails with:
In file included from /builddir/build/BUILD/bareos-Release-19.2.4/core/src/ndmp/ndmjob_args.c:37:
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:41:55: error: unknown type name 'size_t'
   41 | void (*FormatCopyrightWithFsfAndPlanets)(char* out, size_t len, int FsfYear);
      | ^~~~~~
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:1:1: note: 'size_t' is defined in header '<stddef.h>'; did you forget to '#include <stddef.h>'?
  +++ |+#include <stddef.h>
    1 | /*
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:42:43: error: unknown type name 'FILE'
   42 | void (*PrintCopyrightWithFsfAndPlanets)(FILE* fh, int FsfYear);
      | ^~~~
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:1:1: note: 'FILE' is defined in header '<stdio.h>'; did you forget to '#include <stdio.h>'?
  +++ |+#include <stdio.h>
    1 | /*
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:43:38: error: unknown type name 'size_t'
   43 | void (*FormatCopyright)(char* out, size_t len, int StartYear);
      | ^~~~~~
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:43:38: note: 'size_t' is defined in header '<stddef.h>'; did you forget to '#include <stddef.h>'?
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:44:26: error: unknown type name 'FILE'
   44 | void (*PrintCopyright)(FILE* fh, int StartYear);
      | ^~~~
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:44:26: note: 'FILE' is defined in header '<stdio.h>'; did you forget to '#include <stdio.h>'?
/builddir/build/BUILD/bareos-Release-19.2.4/core/src/lib/version.h:45:1: warning: no semicolon at end of struct or union
   45 | };
      | ^
make[2]: *** [core/src/ndmp/CMakeFiles/ndmjob.dir/build.make:66: core/src/ndmp/CMakeFiles/ndmjob.dir/ndmjob_args.c.o] Error 1
make[2]: Leaving directory '/builddir/build/BUILD/bareos-Release-19.2.4/my-build'
make[1]: *** [CMakeFiles/Makefile2:1979: core/src/ndmp/CMakeFiles/ndmjob.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Additional InformationI have attached the build log.
TagsNo tags attached.

Activities

tuxmaster

tuxmaster

2020-02-01 12:19

reporter  

build.log (374,221 bytes)
arogge

arogge

2020-02-03 15:51

manager   ~0003726

That's weird. We're building on a real F31, too and we don't run into that problem.

As you're easily able to reproduce this, maybe you can provide a PR to patch this? Looks like just two includes and a semicolon are missing.
arogge

arogge

2020-02-26 17:01

manager   ~0003862

Closing due to no feedback from reporter. Please reopen if you have additional info.
tuxmaster

tuxmaster

2020-02-26 17:06

reporter   ~0003863

Yes I can reproduce it on every build.
In which line do you mean, that an "," is missing?
Then I will patch it and try it again.
arogge

arogge

2020-02-26 17:27

manager   ~0003864

in core/src/lib/version.h there are probably two includes missing:
#include <stddef.h>
#include <stdio.h>

Also in that same file there is a semicolon missing after the closing brace of the struct.

I still wonder why this fails when you build it. Our builds on Fedora 31 work just fine.
tuxmaster

tuxmaster

2020-02-26 17:53

reporter   ~0003865

I have patched the version file.
Now I get another error:
/builddir/build/BUILD/bareos-Release-19.2.6/my-build/core/src/ndmp/./src/ndmp/ndmjob_args.c:709: undefined reference to `kBareosVersionStrings'
collect2: error: ld returned 1 exit status

I use the mock tool for building, which creates an clean build environment. Which is the recommend way to build packages for the RedHat family.
I have attached my path, and all build logs, so you can reproduce it.
bareos-version.patch (627 bytes)   
diff -Nuar bareos-Release-19.2.6.org/core/src/lib/version.h bareos-Release-19.2.6/core/src/lib/version.h
--- bareos-Release-19.2.6.org/core/src/lib/version.h	2020-02-26 17:40:22.239573418 +0100
+++ bareos-Release-19.2.6/core/src/lib/version.h	2020-02-26 17:42:13.826920561 +0100
@@ -24,6 +24,9 @@
 #ifndef BAREOS_LIB_VERSION_H_
 #define BAREOS_LIB_VERSION_H_
 
+#include <stddef.h>
+#include <stdio.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -47,7 +50,7 @@
 extern const struct BareosVersionStrings kBareosVersionStrings;
 
 #ifdef __cplusplus
-}
+};
 #endif
 
 /* If this is set stdout will not be closed on startup */
bareos-version.patch (627 bytes)   
build-2.log (388,034 bytes)
installed_pkgs.log (53,925 bytes)   
gstreamer1-plugins-base-1.16.2-2.fc31.x86_64 1580985777 6797621 3dc8cfaeb636e6d46a0a5a66d519545a installed
perl-Getopt-Long-1:2.51-1.fc31.noarch 1565691471 140532 41ea0e518a0f3fd55605ebad771716e1 installed
rust-srpm-macros-13-1.fc31.noarch 1576871409 2439 8fd6fbe582c8bf204cc9e9b6409f939b installed
device-mapper-libs-1.02.165-1.fc31.x86_64 1571987727 427559 b485dc397556ed50f385734c6653611c installed
perl-IO-Compress-2.087-1.fc31.noarch 1565682640 819132 8a5deecd2e92c7495675ca580caaf286 installed
coreutils-common-8.31-6.fc31.x86_64 1571297730 10348911 f97b43dde4fbf57198668375e6e7ada0 installed
systemd-243.7-1.fc31.x86_64 1581427284 12885712 cfa4dfa5926b70dc54f76118bd94196c installed
perl-Test-Harness-1:3.42-440.fc31.noarch 1564157386 580666 574007c18e81ef51066ded93e5e0af61 installed
perl-srpm-macros-1-33.fc31.noarch 1564160494 862 901f7fd3db48b5ed69af3ce8e48eedab installed
at-spi2-core-2.34.0-1.fc31.x86_64 1568054322 532336 17718312669395659b9e3dbf08a37b7e installed
perl-Digest-SHA-1:6.02-440.fc31.x86_64 1564144544 119644 f3651f6f34eb4a4c277c66d71e154a40 installed
gnat-srpm-macros-4-10.fc31.noarch 1564038211 725 d413e1b9a302d7d563ddf151063f04a5 installed
chromium-libs-79.0.3945.130-1.fc31.x86_64 1579286110 357496372 29dce77bc270b999695acd911a69c46e installed
fontconfig-2.13.92-3.fc31.x86_64 1566983293 808278 be0bf1004961b104dab2ece92c9326cb installed
fedora-release-31-2.noarch 1571672509 691 9b21570b3e51fb389e5fe562cfeb23ef installed
libkcapi-hmaccalc-1.1.5-1.fc31.x86_64 1565701369 38165 83e53a86c1af045efb7a5f2f9ea4ad4b installed
perl-Module-CoreList-tools-1:5.20200120-1.fc31.noarch 1579593379 18980 d65c67c470750659da7d6337ceac0b35 installed
filesystem-3.12-2.fc31.x86_64 1564014932 0 8a5a2d5808ce4850fe3fd40a239a9c87 installed
libibverbs-20.1-6.fc31.x86_64 1579438445 801256 46cb397e75f6b5c91dcbfe24ee6eb517 installed
gmock-1.8.1-4.fc31.x86_64 1564067368 201083 ed4fdfc74bc0d2fa831133eaf3111148 installed
ncurses-libs-6.1-12.20190803.fc31.x86_64 1565169550 1057296 c5ec1d465e30f6522a010735c034779e installed
libradospp-devel-2:14.2.7-2.fc31.x86_64 1580708374 105924 bfcca221a5894b00618047b4b5abba47 installed
xcb-util-image-0.4.0-13.fc31.x86_64 1564242635 22885 efde4dc8c6464da70b91779d68383c8d installed
bash-5.0.11-1.fc31.x86_64 1575634080 7569377 e31b216fa82265ee44d1f3150215fc65 installed
libcephfs-devel-2:14.2.7-2.fc31.x86_64 1580708374 75690 4e496d6e0887bdeb0cb2d1615cab12d6 installed
libXau-devel-1.0.9-2.fc31.x86_64 1564084682 6518 49ab9de949f52adf8dd69903e40e7452 installed
xz-libs-5.2.4-6.fc31.x86_64 1564247130 179959 5eadc9e410628d85710f3398953246b1 installed
qt5-qtbase-devel-5.13.2-2.fc31.x86_64 1579521551 18359377 f0e89001ee475ad7e9c60ddc89033439 installed
libdrm-2.4.100-1.fc31.x86_64 1571319265 407918 58f88bdcbd06d4b19506bcf0347dc6ae installed
libdb-5.3.28-38.fc31.x86_64 1564086238 1962032 4ac630b82d0ac56c43de8f5546e4bdee installed
pam_wrapper-1.0.7-3.fc31.x86_64 1564135841 91519 29b934d3aada3f615fa3a8d9cd27c676 installed
mesa-libEGL-19.2.8-1.fc31.x86_64 1576706284 277721 6173704d134afa9ceff15e59fa497fd7 installed
libacl-2.2.53-4.fc31.x86_64 1563989674 48624 539fe174bd51274006b3cc8a0d6e75ed installed
readline-devel-8.0-3.fc31.x86_64 1564193537 542146 713eba68d77f89dfb47b6588eb19ade2 installed
perl-bignum-0.51-439.fc31.noarch 1564160043 91798 fd7326997fcff9534c762119798e4d76 installed
libcom_err-1.45.5-1.fc31.x86_64 1579182726 69345 0d7814506c876cf90f007568953ff858 installed
php-cli-7.3.14-1.fc31.x86_64 1579605295 14605107 f5655d840c85cb08f42a642512e5e76b installed
python3-rpm-generators-9-2.fc31.noarch 1564186872 56643 4a555d82cafc033837bc071da7692b95 installed
libzstd-1.4.4-1.fc31.x86_64 1579100019 722685 2f72ee17a87b65df0eeea2776dce7716 installed
passwd-0.80-7.fc31.x86_64 1575473091 453069 350cef173d533fc3f78fcd60d970df94 installed
perl-Config-Perl-V-0.32-441.fc31.noarch 1569583012 24452 8b9e99089c1c447f73fcbf8f2961672e installed
unzip-6.0-44.fc31.x86_64 1564233853 401246 54bb5fc64f0e6f4d3ad084a0bce774be installed
pamtester-0.1.2-15.fc31.x86_64 1564135867 32394 adb4a77f5b274ebf21c144d1be095c97 installed
perl-Test-0:1.31-449.fc31.noarch 1575031605 38818 815a05b73f7d1b0ec5c160cf07dfad55 installed
expat-2.2.8-1.fc31.x86_64 1568622776 268027 4e3d49a56acee018397cd257f7935e51 installed
perl-Compress-Bzip2-2.26-13.fc31.x86_64 1564141709 150170 e9d17139583923125415d8c252eb1636 installed
libcap-ng-0.7.10-1.fc31.x86_64 1569956138 55702 0d1c97fedeaadb3ca9016286a88d3dc0 installed
perl-Devel-Size-0.83-3.fc31.x86_64 1564144343 47414 f188f893fd82b913429e0e49319f367c installed
libutempter-1.1.6-17.fc31.x86_64 1564096592 59645 9aac0ed48f905f17c9bc3461a7528004 installed
perl-autodie-2.32-1.fc31.noarch 1579254103 219799 08cd53ca98fcd1bbd86d95937889d279 installed
libpsl-0.21.0-2.fc31.x86_64 1564093504 74788 2ff8341669688d53c5298947fd3ea45f installed
perl-Text-Template-1.56-2.fc31.noarch 1564158241 115574 66c4964adbf3699104ce0301f31a7a94 installed
dwz-0.12-11.fc31.x86_64 1564008798 231175 001140a6f19a30b8c319c981f06096d3 installed
perl-IPC-Cmd-2:1.04-2.fc31.noarch 1564148006 87237 a4da48dd27e6a92d8c8e93116c898d84 installed
sqlite-libs-3.30.0-1.fc31.x86_64 1570445722 1187636 38ac8396bee19ce2473b58a0745c8cf6 installed
perl-Thread-Queue-3.13-439.fc31.noarch 1564158352 29787 0bdebb7b11fd80f640f7aaff3e6784e2 installed
brotli-1.0.7-6.fc31.x86_64 1563997082 1534364 f6e09e67c986361c4f97f2caca8bb7bb installed
libtheora-1:1.1.1-24.fc31.x86_64 1564095953 693426 1f9b932029b59e7ed9ca38ba038351df installed
keyutils-libs-1.6-3.fc31.x86_64 1564080208 55631 e483c265f1284e4f8e84803fb28e6dca installed
glusterfs-client-xlators-7.2-1.fc31.x86_64 1579114682 4284112 3ad5a52c8afd4635d22fb696df6158f1 installed
libgpg-error-1.36-2.fc31.x86_64 1565801735 774893 54d145551024daf1ab47fde4ef57a250 installed
nss-sysinit-3.49.2-1.fc31.x86_64 1580117747 19167 d0cf663c8414da57fc68d6acc8117bea installed
pkgconf-pkg-config-1.6.3-2.fc31.x86_64 1564166926 463 63df6e5bc33ba44287f0e1c78d0a4a01 installed
libgudev-232-6.fc31.x86_64 1564087872 88573 865b343729d08a982ddaa35fe96ebb81 installed
p11-kit-trust-0.23.20-1.fc31.x86_64 1580317525 486729 3edc9a1b14764d412ec819858188d2c2 installed
perl-Term-Table-0.015-1.fc31.noarch 1574151346 78674 259184a1cf78e3816eae005b1a873b74 installed
perl-Software-License-0.103014-5.fc31.noarch 1564155153 465020 85e1d2bd1ea94686481bf84ca10a71df installed
libnsl2-1.2.0-5.20180605git4a062cf.fc31.x86_64 1564092258 137730 a10b01cc86381d834aa6c61dadde3521 installed
fipscheck-1.5.0-7.fc31.x86_64 1564015088 50507 39f882f4a15602f99337f043a8407963 installed
ca-certificates-2020.2.40-1.1.fc31.noarch 1580387588 978568 28d15c6dd944e2d64fd69ba624da58eb installed
perl-File-Fetch-0.56-439.fc31.noarch 1564145556 59880 62a4a175d1cc7d363a411fbd5f6d91f1 installed
libblkid-2.34-4.fc31.x86_64 1576514871 360569 d57ebcf522c72e707457652aa8db862e installed
libxkbcommon-x11-0.9.1-3.fc31.x86_64 1576210612 41088 fba50206c66ebe321198e0fea73f2aa9 installed
binutils-2.32-31.fc31.x86_64 1577985601 26022159 af9b7a212d8fb8fdd11870252ab97379 installed
python3-gluster-7.2-1.fc31.x86_64 1579114682 14943 c855fe6ab650baed66a2d5ae3976693a installed
libmount-2.34-4.fc31.x86_64 1576514871 435485 ab34e67aa4cbeb2cfbe12bc4e5bd8ae9 installed
pcre2-utf16-10.34-7.fc31.x86_64 1582187369 659277 b664965853c55d177ae6ecb8ef330969 installed
libarchive-3.4.2-1.fc31.x86_64 1581499306 889569 51b64e3087ed32c10a81e2ddc46665c0 installed
mariadb-connector-c-devel-3.1.7-1.fc31.x86_64 1580741703 183457 34e3a88006b89e914520d489cfa8d867 installed
libnghttp2-1.40.0-1.fc31.x86_64 1581001291 172460 9f3e7f3e8f2ca82922e89b5b1f43f423 installed
libuv-1:1.34.2-1.fc31.x86_64 1581001438 387291 2b64746ead4ca1eb3b3011fd81a27f44 installed
rpm-4.15.1-1.fc31.x86_64 1574156420 2972802 c94ce327f112e3dcce5af05d17073e42 installed
iptables-libs-1.8.3-7.fc31.x86_64 1576767209 159600 7265e6ee47263eb80029c0a826ea1050 installed
redhat-rpm-config-142-1.fc31.noarch 1572592157 164415 9e7f5ded812e491ce504cff1840d0a48 installed
libXrender-0.9.10-10.fc31.x86_64 1564084916 53651 4df611cb4c299f6676e9972198b4500f installed
rpm-build-4.15.1-1.fc31.x86_64 1574156420 315985 8ad8be80f6d082a29eef77efba0567c7 installed
libXdamage-1.1.4-17.fc31.x86_64 1564084772 34376 0eafc906727a8c0b99fdaf7255efcce8 installed
pcre2-10.34-7.fc31.x86_64 1582187369 732413 2abbde969e9632a375dc8513a620d3b3 installed
libXtst-1.2.3-10.fc31.x86_64 1564084911 39074 cbd2bf26d19ff2ecc1d9a5869e85caee installed
perl-libs-4:5.30.1-449.fc31.x86_64 1575031250 8008251 4bf0db545958384dcbc44cca0663998e installed
libXxf86vm-1.1.4-12.fc31.x86_64 1564085101 26432 fbabbadbde66a87ba0738f259f9cbe15 installed
perl-Scalar-List-Utils-3:1.53-439.fc31.x86_64 1572007725 130804 5c470c8b753c6103397a0dc73d15c695 installed
libXcomposite-0.4.4-17.fc31.x86_64 1564084731 39904 92ceed47bf21c8c39ca13cce0da88723 installed
libpng-2:1.6.37-2.fc31.x86_64 1564093249 229307 88b3a23cbdb3979463a4833c94cb2078 installed
libXScrnSaver-1.2.3-4.fc31.x86_64 1564084619 44149 5892c9687f0bcabfb58fdde999becfd3 installed
xorg-x11-proto-devel-2019.1-2.fc31.noarch 1564246007 1789822 0acf6aead9e0d4872d235484a4273bce installed
emacs-filesystem-1:26.3-1.fc31.noarch 1575995582 0 aaa244de2b56471ff51639e321b22519 installed
glusterfs-libs-7.2-1.fc31.x86_64 1579114682 1780592 0462744da72c7955473598b0c649de80 installed
iso-codes-4.3-2.fc31.noarch 1565961778 19022777 8d853d7471fee961e936236ec06ef0aa installed
perl-Term-ANSIColor-4.06-440.fc31.noarch 1564156378 89627 3baa9213b6b21f9abfc5abc725cee39d installed
rhash-1.3.8-2.fc31.x86_64 1564194491 320926 50299ddf99b552799f5d85153f47fe29 installed
kmod-libs-26-4.fc31.x86_64 1564082073 202160 14482ec004156be9bbbd96fa1deb34a8 installed
python3-html5lib-1:1.0.1-4.fc31.noarch 1564442939 1144550 77a1da4b59cc3d6e116116f834964c10 installed
perl-Errno-0:1.30-449.fc31.x86_64 1575031250 9519 d2b0ae637b37d8550ff545d5e079d0b9 installed
python3-urllib3-1.25.7-1.fc31.noarch 1573660038 662085 aaa8aa0e7e985bb36355383e647b4e43 installed
perl-threads-1:2.22-439.fc31.x86_64 1564160561 114541 d4c90fabf4ce05d419483cb760f24b11 installed
orc-0.4.30-1.fc31.x86_64 1569597123 613991 76f986d4fd070655bd47c9ac43f7d1ab installed
perl-macros-4:5.30.1-449.fc31.x86_64 1575031250 5643 a9b2c1d9bcdf2afc272d03b1149bf26b installed
cups-libs-1:2.2.12-3.fc31.x86_64 1571234691 746004 072367edbe77f481044924de9b714b04 installed
perl-File-Temp-1:0.230.900-439.fc31.noarch 1564145829 164979 3941098df2b2f98a9d0a57f9c0f54966 installed
lzo-minilzo-2.08-16.fc31.x86_64 1564346750 42207 37d861ce2a4365a7267f362b2c9b19e2 installed
perl-CPAN-Meta-Requirements-2.140-440.fc31.noarch 1564140851 70661 e73c5e0bd9772a8471dd5ba6409cb38c installed
libusbx-1.0.22-4.fc31.x86_64 1564096581 154073 54f55df1cdc3116a269da739c913d19f installed
perl-Digest-MD5-2.55-439.fc31.x86_64 1564144521 60679 cbc38cef3cbb1fc06c47da8de0642002 installed
man-db-2.8.4-5.fc31.x86_64 1564103483 2298254 b60066e37b524f55bd47782d9084c179 installed
perl-libnet-3.11-440.fc31.noarch 1564160239 277135 e66a2a61f20d729698ab47c63cd7b6e8 installed
glib-networking-2.62.3-1.fc31.x86_64 1578400365 554122 fa2ee50fab670acc75208c8866a73026 installed
minizip-compat-1.2.11-20.fc31.x86_64 1572358039 57165 06ae6fefb1b99364a4e44b21f5814087 installed
qt5-qtbase-common-5.13.2-2.fc31.noarch 1579521596 76 b6f7a866ffdc030a2b4f744896e91fcf installed
libmpc-1.1.0-4.fc31.x86_64 1564090835 141613 393c5e2a017b36bc5ebd6cc1ca87fc48 installed
mesa-libEGL-devel-19.2.8-1.fc31.x86_64 1576706284 98622 277d81448ae3b227716865c561c3c50c installed
perl-Compress-Raw-Bzip2-2.087-1.fc31.x86_64 1565610510 67124 3f6fcf784400f2348dc25808026efd81 installed
libev-4.27-1.fc31.x86_64 1564310557 113620 17e417ba393d199f19158b3a1523d59c installed
perl-Params-Check-1:0.38-439.fc31.noarch 1564152802 28459 d3e5a04025d51b74e17fd7f4c0f65162 installed
libaio-0.3.111-6.fc31.x86_64 1564085071 61348 c54febdc9aabe9845bd19cda51a3dc4d installed
perl-Term-Cap-1.17-439.fc31.noarch 1564156402 29853 99379f98ee89ff3eeb442a9f6ddd464a installed
cmake-data-3.16.4-1.fc31.noarch 1580988719 6298755 3a9b72ed26682f5a81686b027e2ccca9 installed
perl-Math-BigInt-1:1.9998.16-439.fc31.noarch 1564149803 705976 23c40abdc784db6422d9972abcc9f786 installed
gdk-pixbuf2-modules-2.40.0-1.fc31.x86_64 1570532705 326488 a603346f7c355a5e5d744cfc62b0ef63 installed
gstreamer1-1.16.2-1.fc31.x86_64 1577976373 4667877 b4c6a4772f5c3df739d2d40e956275c2 installed
perl-devel-4:5.30.1-449.fc31.x86_64 1575031250 7397221 5066f82153250d0a74a21895924f78ea installed
libedit-3.1-30.20191211cvs.fc31.x86_64 1576104031 249011 a9f8e08b0121578e276017fa86cc5142 installed
perl-encoding-4:2.22-440.fc31.x86_64 1577969181 147082 a2879d7bf51feb56a866cbec63ba9ef4 installed
glibc-devel-2.30-10.fc31.x86_64 1579277749 1231308 4d10964b29afa0703a98d44139865ba6 installed
qt5-rpm-macros-5.13.2-1.fc31.noarch 1576654997 1570 604713fdc054ee410c684ea514fb91b8 installed
python3-pyparsing-2.4.0-2.fc31.noarch 1564176302 584160 a7bcf439cac63288dd5535e272452ae4 installed
perl-libnetcfg-4:5.30.1-449.fc31.noarch 1575031605 18263 7b02f7cdfcacf0b0022f305979dc2b1a installed
libwayland-server-1.17.0-2.fc31.x86_64 1564237982 94100 11689b6653772ca36b16148350dac54f installed
perl-Encode-devel-4:3.02-440.fc31.x86_64 1577969181 102481 4129001b7ab7e0d2898ce738960c7aed installed
libxcb-1.13.1-3.fc31.x86_64 1564097244 1128424 218f701e47ac9df78edbe3b7741390f3 installed
pango-1.44.7-1.fc31.x86_64 1571996883 863266 d8ce1ed731410d5e7459ecce27c2da74 installed
groff-base-1.22.3-20.fc31.x86_64 1564065545 4226187 cadc0b33c3ea9eba1d22b9bec8682f5a installed
gpg-pubkey-3c3359c4-5c6ae44d 1550509133 0 (none) installed
perl-Encode-4:3.02-440.fc31.x86_64 1577969181 10235340 8b77bad65ce32dcc869154e9e2a84c7d installed
tzdata-2019c-2.fc31.noarch 1579484327 1892615 92c860c2c237cc35b5fde6f8f153a052 installed
perl-podlators-1:4.12-2.fc31.noarch 1564160465 288018 cd5a537602153da38283de3dd97c7354 installed
qt5-srpm-macros-5.13.2-1.fc31.noarch 1576654997 492 8f3f31d2fbffc07f2eca815ac4101bd6 installed
perl-Pod-Usage-4:1.69-439.fc31.noarch 1564153571 49723 aed29941df239143c69ad39bc79054d3 installed
libssh-config-0.9.3-1.fc31.noarch 1576063230 357 cccc4552a24627de65aa3096d6ad6744 installed
perl-ExtUtils-ParseXS-1:3.40-439.fc31.noarch 1564145361 404335 3a4b28b4aaaa41b1fab046f1e59c0f96 installed
python-setuptools-wheel-41.2.0-1.fc31.noarch 1567541674 354017 fb738a116002a4fd88c9b18df10e4e83 installed
perl-CPAN-Meta-2.150010-439.fc31.noarch 1564140820 610147 b77bbeb57e126cbfb11594574d064dc6 installed
pkgconf-m4-1.6.3-2.fc31.noarch 1564201503 14186 2719d88a11a145092946c2f13aab8fdd installed
perl-Module-Metadata-1.000037-1.fc31.noarch 1568026347 69186 8f83614cb3c44da3eb2e77ca620743b8 installed
openblas-srpm-macros-2-6.fc31.noarch 1564131325 104 5b72f4ecd4720c83a785a2fbdb73f4e8 installed
perl-IO-Zlib-1:1.10-449.fc31.noarch 1575031605 19772 10a222e1ba7c9462bc00ccf84ead23de installed
ncurses-base-6.1-12.20190803.fc31.noarch 1565169667 281668 b52760ff6d660cdbcfa6ae11853ad74d installed
perl-Pod-Html-0:1.24-449.fc31.noarch 1575031605 37959 f80ae715f7c292aa7b2366f974ffc59e installed
ghc-srpm-macros-1.5.0-1.fc31.noarch 1570000432 535 c5085221b1ed986b8e6eea5138fc4537 installed
abattis-cantarell-fonts-0.111-3.fc31.noarch 1563989706 734762 711a3397cba95f11a61efdeb62fdfd59 installed
fedora-gpg-keys-31-1.noarch 1570819844 103813 b18049e04092d0ad796466c726ef4a0d installed
gsettings-desktop-schemas-3.34.0-1.fc31.x86_64 1568067968 4328399 114f25fa1e94d333cbad18acc043a181 installed
fedora-repos-31-1.noarch 1570819844 8785 bfb2d0c27a7236495a7df9c3af1980bb installed
perl-Pod-Parser-1.63-440.fc31.noarch 1564153461 269557 3e13e4844fdaab5ea68a2b29efc3b099 installed
setup-2.13.6-1.fc31.noarch 1570614322 726694 eb3a641f8dde9fd2f12f5d3e9c4e828c installed
perl-DBI-1.642-5.fc31.x86_64 1564142833 1914712 e8bb948c765ae5b3153a04e414f2301f installed
basesystem-11-8.fc31.noarch 1563995158 0 510f6e822cbbf44557047667788d4796 installed
perl-Archive-Zip-1.67-1.fc31.noarch 1570435461 298252 7db6097cb642d0143ef8493f2e480cec installed
libselinux-2.9-5.fc31.x86_64 1565619201 189728 720a68bbdb349751a62be08f77e74737 installed
gtest-devel-1.8.1-4.fc31.x86_64 1564067368 1261546 71e093c481438d41d0a503e16571f207 installed
glibc-minimal-langpack-2.30-10.fc31.x86_64 1579277749 0 72c9c35ad334d8616830342adaa65411 installed
xcb-util-0.4.0-13.fc31.x86_64 1564242622 35751 dbe7dc55e63589b09cee7b12dcb7f5bf installed
glibc-2.30-10.fc31.x86_64 1579277749 17281629 f4842b403840945d988817b8da1084aa installed
xcb-util-keysyms-0.4.0-11.fc31.x86_64 1564242658 17297 50ad0689d33a27a0157f2e1786a7c922 installed
libsepol-2.9-2.fc31.x86_64 1564094791 774144 1b52a2b059c5c633a2e21f144c3e29d4 installed
xcb-util-wm-0.4.1-16.fc31.x86_64 1564242661 88059 a03ec5f186617625c875c08f0bf7f149 installed
bzip2-libs-1.0.8-1.fc31.x86_64 1565095398 83480 1b9f1804009b6bf970bb537eee0f0e98 installed
libxcb-devel-1.13.1-3.fc31.x86_64 1564097244 2717794 97cb72d0c5f01aa0d70534b7966ef383 installed
libstdc++-9.2.1-1.fc31.x86_64 1566921388 2274977 e1466eada089037321b137ee9d82df58 installed
libpciaccess-0.15-2.fc31.x86_64 1564093140 47441 f2375d2032b37435a95bc65237efaa39 installed
elfutils-libelf-0.178-7.fc31.x86_64 1578673368 924683 b9df86909143dd8c62e974a56023ea89 installed
libdrm-devel-2.4.100-1.fc31.x86_64 1571319265 577044 b3a6516996e0d7eac2d05a4c401495e7 installed
libuuid-2.34-4.fc31.x86_64 1576514871 38839 c2ca8fe5164148cf4e1d0c815e003877 installed
libglvnd-egl-1:1.1.1-5.fc31.x86_64 1564087552 91424 7921215f4c456ccc0c1c4f5196909294 installed
libattr-2.4.48-7.fc31.x86_64 1563994148 30186 564d2ca13d622cd10958192808e6e035 installed
libglvnd-gles-1:1.1.1-5.fc31.x86_64 1564087552 146880 99acd5f32899c272c774b10c954031dd installed
sed-4.5-4.fc31.x86_64 1564213393 774118 223b804ac31a81ffcde76a2b5e82ae97 installed
libacl-devel-2.2.53-4.fc31.x86_64 1563989674 60587 8bb897c2ed24682b8821d1f020353472 installed
readline-8.0-3.fc31.x86_64 1564193537 485139 845fbcbd00edead070c8cacc363437bf installed
perl-Math-BigInt-FastCalc-0.500.800-439.fc31.x86_64 1564149814 42122 90d5c45ee5aad1972129b95c095ee870 installed
libcap-2.26-6.fc31.x86_64 1564085579 150562 597c6b0275803f8956e381d625206845 installed
cpp-9.2.1-1.fc31.x86_64 1566921388 28365703 1db21ca827235e231d828b9aeec33c4d installed
libunistring-0.9.10-6.fc31.x86_64 1564096403 1713307 d834df4aab43ca93ee747fe476042fad installed
python3-isodate-0.6.0-2.fc31.noarch 1564183461 210414 70f13fac9ea9dedc7ac74cd2f39685bf installed
libidn2-2.3.0-1.fc31.x86_64 1573930144 260422 4dcb5272b903c3ad3e02c06671171b16 installed
perl-Devel-SelfStubber-0:1.06-449.fc31.noarch 1575031605 7873 93bc4fd3e9e4a47f64c292d4146f513f installed
mpfr-3.1.6-5.fc31.x86_64 1564112525 558113 a0f6593621df9a86319cb11c7fcda62b installed
perl-Memoize-0:1.03-449.fc31.noarch 1575031605 83488 be81f8448b64130ca05b6f0ac681f959 installed
file-libs-5.37-8.fc31.x86_64 1571989637 6918546 74c2c691d637b91a712b5461d4bf49b7 installed
perl-PerlIO-via-QuotedPrint-0.08-439.fc31.noarch 1564153235 6010 4108bd2bac970e0faf5bb653ef52eacc installed
alternatives-1.11-5.fc31.x86_64 1563999277 64350 09deb8ae20a051a7fa56913331348e21 installed
perl-experimental-0.020-439.fc31.noarch 1564160102 30759 d073dffc5233ea597253742d7862493a installed
findutils-1:4.6.0-24.fc31.x86_64 1564015012 1795521 5a7b6caa1074a3d298c1f3de7674d46f installed
perl-Text-Diff-1.45-7.fc31.noarch 1564158020 85716 838e5d228ca558fccbfc57417c3cc7be installed
lz4-libs-1.9.1-1.fc31.x86_64 1566118168 133631 686de9542eaf7b7655f525ee194aa28b installed
perl-Compress-Raw-Lzma-2.087-1.fc31.x86_64 1565621921 121750 8a5eeb43b1153949492419149aab5bd3 installed
audit-libs-3.0-0.15.20191104git1c2f876.fc31.x86_64 1572900218 294748 362d3d9c6043e7791ef280901699a848 installed
perl-Archive-Tar-2.36-1.fc31.noarch 1580718437 157471 05baa38dfeb419e4bf28c979ce4646d0 installed
shadow-utils-2:4.6-16.fc31.x86_64 1567432280 4222305 42eb41a84c1be3391b9d423c293387e1 installed
perl-Env-1.04-439.fc31.noarch 1564145026 26876 231232735887c4a58824d13d3ece0250 installed
libmetalink-0.1.3-9.fc31.x86_64 1564090509 81760 0baa76ce613ff9d4a11968699c84f47b installed
perl-IPC-System-Simple-1.25-24.fc31.noarch 1564148134 70459 062c390c2626ab8c6e8adb1d94c0ac66 installed
gdb-minimal-8.3.50.20190824-30.fc31.x86_64 1581452599 11178495 20bed47ef240568d814fd7f2f43ab25e installed
perl-Package-Generator-1.106-16.fc31.noarch 1564152701 31038 fef3682deb7c064833f1ddb6b89d6be4 installed
tar-2:1.32-2.fc31.x86_64 1564227116 3134685 9a510353aba69fe805840e3780886284 installed
perl-Text-Glob-0.11-9.fc31.noarch 1564158085 8826 747040bb6a9d87929271c4effdfe0fac installed
libdb-utils-5.3.28-38.fc31.x86_64 1564086238 411527 cb0d519ea9b55fd98152a984dbbe2002 installed
perl-Unicode-Collate-1.27-439.fc31.x86_64 1564159097 4985229 f482a0611fed011497113b796ec6e633 installed
zstd-1.4.4-1.fc31.x86_64 1579100019 1591494 417af9f913c9d9da3fcaafd217c615db installed
perl-ExtUtils-MM-Utils-2:7.44-1.fc31.noarch 1579094788 3226 df33e0d02e9b496b0d5281379aeaa1c7 installed
bzip2-1.0.8-1.fc31.x86_64 1565095398 100981 f31d5e893f0cd21d3bd13a72f516f545 installed
perl-Module-Loaded-1:0.08-449.fc31.noarch 1575031605 6042 7ba352d4d69ff64bf9a4ab539937418a installed
elfutils-default-yama-scope-0.178-7.fc31.noarch 1578673421 1810 f42b7b9f6c9e29aedc362e45952f8a58 installed
perl-utils-0:5.30.1-449.fc31.noarch 1575031605 128334 d55079d4ae110c5bb78a52f080cd3ea5 installed
elfutils-0.178-7.fc31.x86_64 1578673368 2890444 98657812a12fa9e246dbe416abc4cc89 installed
perl-File-Which-1.23-4.fc31.noarch 1564145823 30250 a22b0984ec4de95cffca5f287604a13b installed
cpio-2.12-12.fc31.x86_64 1564002469 984707 66767674043fb31e1b8de505c059c128 installed
flac-libs-1.3.3-1.fc31.x86_64 1565683521 579156 eebdf229c033b47431509adf78e87666 installed
gdbm-libs-1:1.18.1-1.fc31.x86_64 1570185613 123344 8213b0cd4c57270f55227be5b408113f installed
libvorbis-1:1.3.6-5.fc31.x86_64 1564096939 934391 3e01d40b343c7ec8dd05f1e377880ced installed
libatomic_ops-7.6.10-2.fc31.x86_64 1564085382 87506 e8ae9a433e51bfc1853d87cf407cd127 installed
libglvnd-opengl-1:1.1.1-5.fc31.x86_64 1564087552 204312 d9af438a6f748baeeb7044cba902898c installed
libgomp-9.2.1-1.fc31.x86_64 1566921388 343934 aa43c46f8cb74ae2d4050e0bbb7bf74f installed
nss-softokn-freebl-3.49.2-1.fc31.x86_64 1580117747 610066 0eb0f5dfaa1df3c10c3271a33b8bd49e installed
libgcrypt-1.8.5-1.fc31.x86_64 1567586852 1285422 6ed8d1c57318a682bad28daea6c9e375 installed
nss-3.49.2-1.fc31.x86_64 1580117747 1991905 a33ef7a8283a65afe83d9f11a1497a71 installed
pkgconf-1.6.3-2.fc31.x86_64 1564166926 73269 e222b0cd31d709bfba490c0a359ed0bf installed
avahi-libs-0.7-20.fc31.x86_64 1566501269 166016 93aa3ad35d58b4feb8b38346272f0474 installed
libsigsegv-2.11-8.fc31.x86_64 1564095050 50042 8ddef85e933e7f6626b117bb35667104 installed
json-glib-1.4.4-3.fc31.x86_64 1564078306 525747 d49a911187af8a41af1bfbf78c165288 installed
libtasn1-4.14-2.fc31.x86_64 1564095864 175983 a682aa9e0094b743337517f4444cdd07 installed
libuser-0.62-21.fc31.x86_64 1564096644 1997902 fdf2492c2a5e020bf8b3b6f9dde62635 installed
libtool-ltdl-2.4.6-31.fc31.x86_64 1564096162 73146 6e96ba2a4ebdd2ace9e270c52338a90f installed
perl-Importer-0.025-6.fc31.noarch 1564148232 94887 9cdf0e6eba5a4989881c63cbca0d0c25 installed
ncurses-6.1-12.20190803.fc31.x86_64 1565169550 662903 d52fd29595726eb6bdc7155425afc99b installed
perl-Test-Simple-3:1.302168-1.fc31.noarch 1567845711 1263375 8cf4a12feb8efc8dc036703a1bc5c2d1 installed
grep-3.3-3.fc31.x86_64 1564065246 805874 3c8af033eaf47bf099e7362423ed396c installed
perl-Data-Section-0.200007-8.fc31.noarch 1564143515 43064 b50acd99f9733935d19d911ceb1de465 installed
libtirpc-1.2.5-0.fc31.x86_64 1576873327 211748 1ad7fbd57544c9cd66d064243f151af7 installed
perl-Devel-Peek-0:1.28-449.fc31.x86_64 1575031250 48767 fdbebd8aa90fdcc47d672c46136d4136 installed
python-pip-wheel-19.1.1-7.fc31.noarch 1577998562 1241316 77c2314cb5b17924977f201133cb8f63 installed
fipscheck-lib-1.5.0-7.fc31.x86_64 1564015088 16257 baf9d2a8ba6cf3dc4186bfa23b20deb3 installed
coreutils-8.31-6.fc31.x86_64 1571297730 7654928 6ca8777aaef4feaf3855d66d046a2a72 installed
openssh-8.1p1-1.fc31.x86_64 1570625897 1998435 a0979608eb794719257052df0f38308f installed
python3-libs-3.7.6-2.fc31.x86_64 1580375022 33012716 12d483673122e306f34cdf320592f363 installed
git-core-2.24.1-1.fc31.x86_64 1576005089 30002357 0dfd19bb34d4dcf296dbb06634058500 installed
crypto-policies-20191128-2.gitcd267a5.fc31.noarch 1576518872 195446 4f17075d677bf19b17d77102437ff31a installed
libfastlz-0.1-14.2.fc31.x86_64 1573306991 90943 10c4aebfdde052272ebbc4c0e3a7bafb installed
gzip-1.10-1.fc31.x86_64 1565334544 369282 08e4dc6dbd4340837ec4fc8141a24529 installed
libxkbcommon-0.9.1-3.fc31.x86_64 1576210612 283062 8ff955ef4f6ca734b698a6c79f3d50ae installed
binutils-gold-2.32-31.fc31.x86_64 1577985601 2524760 4678c522b103121eaff10c81b6462df4 installed
systemd-rpm-macros-243.7-1.fc31.noarch 1581427335 5043 052201f60351d7dc79b8e210cf04c73d installed
libpwquality-1.4.2-1.fc31.x86_64 1572524723 408245 881e87ac1a531e5f2c08cf524bf3d7e3 installed
python3-rpm-macros-3-53.fc31.noarch 1581411862 2428 367e27d51158f63d3922bef8f0664903 installed
libfdisk-2.34-4.fc31.x86_64 1576514871 500507 b821a2b6cba2ede41a3ce6242ab4928b installed
glusterfs-extra-xlators-7.2-1.fc31.x86_64 1579114682 154120 6eb5fa476208a0448ea120356f1147ba installed
libssh-0.9.3-1.fc31.x86_64 1576063125 520083 29a86aa11b6feb95a144aed5d41291dd installed
php-common-7.3.14-1.fc31.x86_64 1579605295 13071306 b426bd5edc6138d07586623fd870c5fb installed
systemd-libs-243.7-1.fc31.x86_64 1581427284 1727382 486f02244d7318ec6f6e10eff0fef723 installed
mariadb-connector-c-config-3.1.7-1.fc31.noarch 1580741815 497 429ad8cb95af5a38f9a866e5a1c49b2a installed
cyrus-sasl-lib-2.1.27-2.fc31.x86_64 1564003947 740346 84950c2f769816862b4c0f70da79bd7f installed
xz-5.2.4-6.fc31.x86_64 1564247130 427280 11273e77a10bf63413fbdcf4a725543a installed
libcurl-7.66.0-1.fc31.x86_64 1568363208 615352 2cdef355b2655dd7215b926cb656c917 installed
rpm-libs-4.15.1-1.fc31.x86_64 1574156420 743136 6f4453ace696da6dd2aa8565c50ba8a0 installed
efi-srpm-macros-4-3.fc31.noarch 1564010129 41111 909826d5a4957fa0acdfd281dc6c37f5 installed
python-srpm-macros-3-53.fc31.noarch 1581411862 26500 fbcfc8dbe85cd25298b2fb1b2217e1b5 installed
rpm-build-libs-4.15.1-1.fc31.x86_64 1574156420 204112 834ed56e03351c28d6645a23ef407637 installed
util-linux-2.34-4.fc31.x86_64 1576514871 13318009 458f90eb6a0d68a10a172a2f7b0f86de installed
make-1:4.2.1-15.fc31.x86_64 1576017238 1443984 eeb0262a4f70c52fa1fd833af60a1797 installed
which-2.21-15.fc31.x86_64 1564238466 87462 7a9354cc31c100e112ea5b2ffe8e8e6c installed
pcre-8.43-3.fc31.x86_64 1581501700 522054 23d127303b6b2cf8064750a578000876 installed
perl-Exporter-5.74-1.fc31.noarch 1579520896 55358 7a102a02fedc342f27bbc3b98749e163 installed
perl-Carp-1.50-439.fc31.noarch 1564140982 47890 2112a7df9ab3decdd7bae1ee8cf2b835 installed
glib2-2.62.5-1.fc31.x86_64 1582038036 12913368 4b5d8ba9451fb52443a1fbae75b57971 installed
perl-parent-1:0.237-439.fc31.noarch 1564160427 9188 b6f7814a5d62c042522f78d5436013b9 installed
nspr-4.24.0-1.fc31.x86_64 1578043752 324830 c27a50b3aa34f83c53bc7f14ae6b1f75 installed
freetype-2.10.0-3.fc31.x86_64 1564016933 834275 46ece7f9e3db579eb3f819accf11871c installed
libX11-xcb-1.6.9-2.fc31.x86_64 1576041398 15400 04dcbae276eaca5e84fd46c221e3e29b installed
dbus-libs-1:1.12.16-3.fc31.x86_64 1564650671 390968 af53a21ec309f4dc106db238c9002e14 installed
perl-Time-HiRes-1.9760-439.fc31.x86_64 1564158443 121281 2a5e6a1fc513bd57f2a8d3973f747e06 installed
cmake-filesystem-3.16.4-1.fc31.x86_64 1580988666 0 95d36f1816c44574f867620b3e44be60 installed
gdk-pixbuf2-2.40.0-1.fc31.x86_64 1570532705 2624962 71390819d6b11558e25d69c2d60a3ff8 installed
alsa-lib-1.2.2-1.fc31.x86_64 1582117888 1419447 759095f8d23cf70da72aea8bb0ad73e3 installed
libogg-2:1.3.3-3.fc31.x86_64 1564092577 41871 2af80262a555d4c18063adfef50ea1c0 installed
atk-2.34.1-1.fc31.x86_64 1568110633 1291958 882d4f1e4fea848a51cc035a7b54b90a installed
perl-Socket-4:2.029-4.fc31.x86_64 1564155070 124153 adeae8f4327e2f1902c0f9ec980312f4 installed
perl-Text-Tabs+Wrap-2013.0523-439.fc31.noarch 1564158241 24828 8382964d30a9e42c0bd24ec36de6851c installed
perl-PathTools-3.78-439.fc31.x86_64 1564153001 182529 e9256ecd31b6d78d52927e38c35a5788 installed
perl-threads-shared-1.60-440.fc31.x86_64 1564160624 82408 803ece44f6f9e3f4bdd44bb724a60102 installed
perl-IO-0:1.40-449.fc31.x86_64 1575031250 150507 66fda7ce7cc930f1ce54868d99aa57e8 installed
perl-interpreter-4:5.30.1-449.fc31.x86_64 1575031250 14972994 06480f09f37de944dbf3113cf9f3d3c4 installed
perl-version-7:0.99.24-441.fc31.x86_64 1574697457 134797 8febdccbf2498bfff257b01d5e097bee installed
perl-MIME-Base64-3.15-439.fc31.x86_64 1564149493 45396 6928bbfa9de304bbc515ddef35d407c0 installed
perl-Storable-1:3.15-442.fc31.x86_64 1574694785 237051 58b893d8c6ff913e4a65e84a0a3f60ad installed
perl-Compress-Raw-Zlib-2.087-1.fc31.x86_64 1565611878 151448 7e33324c90be4b4a693c0a5c2f0a8fdb installed
perl-Digest-1.17-439.fc31.noarch 1564144429 26684 17755890317f0a2812e4c12d4a82530d installed
perl-Module-CoreList-1:5.20200120-1.fc31.noarch 1579593379 941493 711b8ea616719fb9990b39be0ad3e005 installed
perl-HTTP-Tiny-0.076-439.fc31.noarch 1564147553 150121 2e13b841f972b9430ee589f7242941c3 installed
perl-SelfLoader-0:1.25-449.fc31.noarch 1575031605 23927 8905bbf8f3a2bfa24ee7cd4add84fa5d installed
perl-Perl-OSType-1.010-440.fc31.noarch 1564153111 33835 30576a42d55dfe0441148b0214fff06d installed
mesa-libglapi-19.2.8-1.fc31.x86_64 1576706284 226144 6c6fa49faa388b6c3f6f032aa8bcae1a installed
python3-setuptools-41.2.0-1.fc31.noarch 1567541674 3001273 4b1b8e36e89d3a2dad5676b0b2131055 installed
kmod-26-4.fc31.x86_64 1564082073 467944 23e7f62d250e7860a8b97708593645e2 installed
perl-CPAN-Meta-YAML-0.018-440.fc31.noarch 1564140818 51721 94a9db0e490828dbf6c92a9b066e9838 installed
perl-Devel-PPPort-3.52-440.fc31.x86_64 1564144323 437538 e0170663b8904d8b7ef73e768abce0d3 installed
perl-Locale-Maketext-Simple-1:0.21-449.fc31.noarch 1575031605 14041 c05c671093dd2ecfb17769d83f1464d3 installed
perl-Params-Util-1.07-28.fc31.x86_64 1564152814 78995 4d5c50bfae1bd785c9f8daa47b7dbff0 installed
perl-Sub-Install-0.928-21.fc31.noarch 1564155757 35808 17878dcfbb6ad954bb3282059447bd55 installed
perl-DB_File-1.853-1.fc31.x86_64 1578301675 194196 fd3704edeb04cedca2a61539b3241838 installed
perl-Math-Complex-0:1.59-449.fc31.noarch 1575031605 88259 8c0d4fcc9fd72491bbb074f808ed6c24 installed
perl-Math-BigRat-0.2614-439.fc31.noarch 1564149796 105819 ffefb0a4f29dfe2bab3e76fa031a9c7c installed
libwayland-cursor-1.17.0-2.fc31.x86_64 1564237982 38644 f97233887820afc841e7ed9fa1148859 installed
zlib-devel-1.2.11-20.fc31.x86_64 1572358039 141056 aaed1a4aa80ea56bd89ba9c318fca599 installed
libuuid-devel-2.34-4.fc31.x86_64 1576514871 18038 0f728eaaa52a53fd44d33e739d66b6be installed
kernel-headers-5.5.5-200.fc31.x86_64 1582152631 5104460 c2faf9041a5204c12dad783787988265 installed
libxcrypt-devel-4.4.14-1.fc31.x86_64 1581962368 33465 af572a566e27e4eef7fa0e35412ed73f installed
hwdata-0.332-1.fc31.noarch 1580722529 7846838 baff47a328dcb288e2cbd66ba33e7e0e installed
cmake-rpm-macros-3.16.4-1.fc31.noarch 1580988719 6765 f5daeb9c6c59f63febe353b05d2c0d5a installed
pixman-0.38.4-1.fc31.x86_64 1568062746 699935 aa0e6461cf9f2d268f1d2ff23164bb59 installed
libxshmfence-1.3-5.fc31.x86_64 1564097474 16168 dd9eee39e727e0395490b115f86cff3c installed
libwayland-egl-1.17.0-2.fc31.x86_64 1564237982 17036 eab154fdedac054211f7cad5b1051fba installed
libXau-1.0.9-2.fc31.x86_64 1564084682 66004 b7805b54c3e788225f85a76c328fc664 installed
libICE-1.0.10-2.fc31.x86_64 1564084582 177966 2bafbf0f79cf5b44f6a6af1fc4d9b192 installed
gtest-1.8.1-4.fc31.x86_64 1564067368 495099 2f0b0736a7886203b5bce26e4d66dacc installed
cdparanoia-libs-10.2-30.fc31.x86_64 1563998768 122568 4040943accbfe2e8d13feebac942f948 installed
pipewire-libs-0.2.7-2.fc31.x86_64 1574955286 1481176 db378aef94dfabcc21aa69a2c003726f installed
device-mapper-1.02.165-1.fc31.x86_64 1571987727 358679 92377a2be1acb6e3d0110fea00c8f02a installed
cryptsetup-libs-2.3.0-1.fc31.x86_64 1581063661 1926151 19c14a2dee51d0b1e1bff91e9c2c3b1f installed
systemd-pam-243.7-1.fc31.x86_64 1581427284 343704 d7be451e285c26513a5c7542a982de2a installed
dbus-common-1:1.12.16-3.fc31.noarch 1564650786 11481 8bb44e866f7d639c8d5e348b8ec49b81 installed
glusterfs-7.2-1.fc31.x86_64 1579114682 2987249 9550da26d00457c2bba81bd4935d5091 installed
at-spi2-atk-2.34.1-1.fc31.x86_64 1570474803 277922 dcbe5ef8519e2707a349037715a1985b installed
chromium-libs-media-79.0.3945.130-1.fc31.x86_64 1579286110 8010575 a267db781ad7ccf4a6b7d4dbcdba4246 installed
glusterfs-api-7.2-1.fc31.x86_64 1579114682 234440 487d395b0c9939715cdc6f379006405d installed
libkcapi-1.1.5-1.fc31.x86_64 1565701369 85715 92e093db605874f52b35e47e3d773e76 installed
systemd-udev-243.7-1.fc31.x86_64 1581427284 8628988 c8401038316bf2551d13aa261dc4489f installed
rdma-core-20.1-6.fc31.x86_64 1579438445 105472 5cf4ab737624ac6033a4fc3098ecd0b3 installed
librdmacm-20.1-6.fc31.x86_64 1579438445 141405 a68f76f97c85b37b67ce488c290760fc installed
librados-devel-2:14.2.7-2.fc31.x86_64 1580708374 311879 fb65e899c3b1378a26aaf391d5e3e196 installed
libcephfs2-2:14.2.7-2.fc31.x86_64 1580708374 1517808 83a71af69c7a44217fd2143701233b79 installed
libradosstriper-devel-2:14.2.7-2.fc31.x86_64 1580708374 28604 081a2a8e9dfa1c1c15905687ccd5e229 installed
glusterfs-api-devel-7.2-1.fc31.x86_64 1579114682 60183 f2c71be1e6bf9194a9d5df922f2119d0 installed
logrotate-3.15.1-1.fc31.x86_64 1567172901 155856 c31eec838fe10530082d48f43d91db74 installed
perl-4:5.30.1-449.fc31.x86_64 1575031250 0 f27e9b4dd63985d01cddab0409a5e1d5 installed
jansson-devel-2.12-4.fc31.x86_64 1564836281 14576 b83d17e771e0a1c88d56f2a4d02145af installed
percona-xtrabackup-2.3.6-16.fc31.x86_64 1570069117 22803950 fb74318029ded78a8af0251a3f508be7 installed
lzo-devel-2.08-16.fc31.x86_64 1564346750 205212 a1b8fa4fe3b8f9d12d8818e3980b5b98 installed
python3-selenium-3.14.0-1.fc31.noarch 1578392981 1518736 f253e4b84b32f93e8d8c9f0c34c69c7c installed
mariadb-devel-3:10.3.21-3.fc31.x86_64 1578627564 4998831 39de6bb62ec4c1142f148e10dcfc740c installed
python3-devel-3.7.6-2.fc31.x86_64 1580375022 771107 dc293312a669946d8597f800e31aea52 installed
libfastlz-devel-0.1-14.2.fc31.x86_64 1573306991 41336 7e034293b8ef8c0c6f62730f63df3e37 installed
gmock-devel-1.8.1-4.fc31.x86_64 1564067368 985385 e2bb9ba98ba67c6cdee9c8244581ebaa installed
rpcgen-1.4-3.fc31.x86_64 1564194830 106188 2d2d13f8c1222b89bc5002319938a4e5 installed
mtx-1.3.12-21.fc31.x86_64 1564113200 466954 93df038319cfd92d9970ebf1bf1ff2e0 installed
perl-DBD-MySQL-4.050-4.fc31.x86_64 1564142756 372875 1faaceed128816e5d887fd746b47122b installed
libxslt-1.1.33-4.fc31.x86_64 1571041366 767407 ba1fc7a4159d85dbc57013b477bd7a0d installed
libwacom-1.1-2.fc31.x86_64 1573093247 75047 3ab0310bbc924267477fa5ae809c6b71 installed
libseccomp-2.4.2-2.fc31.x86_64 1576549722 355363 88439e4d459fa0ca22a1842cb0581b57 installed
libpcap-14:1.9.1-1.fc31.x86_64 1570794259 387914 f3d3b7ad4d3f4f48b4bc7d9a8d2cec49 installed
libX11-common-1.6.9-2.fc31.noarch 1576041441 1339608 f1937f6161d5c8c5817df93fc7fa24a6 installed
libXext-1.3.4-2.fc31.x86_64 1564084751 99150 7c955ec77e80b633dc212cd330701a23 installed
libXfixes-5.0.3-10.fc31.x86_64 1564084743 36703 1328208aadb89180b2c4fd67c1755e9c installed
cairo-1.16.0-6.fc31.x86_64 1563997837 1856599 da50f81b4258430b8ab16afe9c60cae8 installed
libXext-devel-1.3.4-2.fc31.x86_64 1564084751 101235 99c3b0f91e53718bb583247d00c49380 installed
libXi-1.7.10-2.fc31.x86_64 1564084823 85523 4d2fd8b5b0c71ab5b7d263c1bb126d46 installed
libXdamage-devel-1.1.4-17.fc31.x86_64 1564084772 2563 0efce6a07da02b4315583a18a6d9be67 installed
libXrandr-1.5.2-2.fc31.x86_64 1564084889 56306 c0d9a50c2d4d3ec20c0fb4483c852b80 installed
libXxf86vm-devel-1.1.4-12.fc31.x86_64 1564085101 12355 8f7a8b721722bb0b5beb2ef506ab3de5 installed
mesa-libGL-19.2.8-1.fc31.x86_64 1576706284 518136 03415994749fe9879e183767090b6355 installed
glx-utils-8.4.0-4.20181118git1830dcb.fc31.x86_64 1564106278 188366 894ed17a7e295edc5a2c7627ef2a1b31 installed
libXft-2.3.3-2.fc31.x86_64 1564084809 138768 3c7b25eabcc7c92099bae4ba7f82a2ef installed
libXinerama-1.1.4-4.fc31.x86_64 1564084821 19823 71944762e524e35510d6b6edf455377c installed
json-c-0.13.1-8.fc31.x86_64 1575028326 106938 f4d3d181c7ce04b341c1f4620a1f970f installed
adwaita-cursor-theme-3.34.3-1.fc31.noarch 1573212332 12033505 69fa1ed9e95f6a2a9ee44f67c3621449 installed
xml-common-0.6.3-53.fc31.noarch 1564213922 80250 c67948209659ecdeee4ccc658f1e10f7 installed
userspace-rcu-0.11.1-2.fc31.x86_64 1564234397 426886 8ddc6b419dede42192f6acaca3a2cf2e installed
sbc-1.4-3.fc31.x86_64 1564211181 272905 21d2d3ca05abb4d79c07728c2e0930b1 installed
qt-settings-31.0-1.fc31.noarch 1568164292 1164 b7d691cfd81d4748931b6cb8338a3e14 installed
python3-webencodings-0.5.1-8.fc31.noarch 1564188409 73576 3137c3254752c84924e5feddcb1e8d2b installed
python3-rdflib-4.2.1-11.fc31.noarch 1565768126 2777412 53432d1a8adc88df9e0b3c015d541c32 installed
python3-idna-2.8-2.fc31.noarch 1564183242 495214 e874b78175e97ac6e46ff489b66ac977 installed
procps-ng-3.3.15-6.fc31.x86_64 1564172230 989612 44f2cdd540562f49f96c40bd56dc066c installed
pciutils-3.6.2-3.fc31.x86_64 1564137127 228488 2c17d3cf8fedabfc132bd4e85b9362ad installed
opus-1.3.1-2.fc31.x86_64 1564133996 421072 28a04a5356043f420f1d789244c093d7 installed
gnutls-3.6.11-1.fc31.x86_64 1575238243 3565887 b2ca8dcfaeefee3c9440391a196d0832 installed
ncurses-c++-libs-6.1-12.20190803.fc31.x86_64 1565169550 194464 a3cdfc4ed40d6020914cf0f553ad887e installed
mtdev-1.1.5-15.fc31.x86_64 1564113164 30901 bbca713761cf8f0901ee5f0661602e6a installed
lzo-2.08-16.fc31.x86_64 1564346750 188221 9119486513ad612a6d41494569eb41af installed
libvisual-1:0.4.0-27.fc31.x86_64 1564096890 438944 c514f3b32be88af93a794af904de7af4 installed
libgusb-0.3.3-1.fc31.x86_64 1580405414 122487 77b971ecf2835b28acb0bf1d6e7654f8 installed
libpipeline-1.5.1-3.fc31.x86_64 1564093171 127213 b10a10865f6b9bee29cfe64037760305 installed
libnl3-3.5.0-1.fc31.x86_64 1567351231 1099552 b33d75d95957b3b4703cd383d0f3412a installed
libproxy-0.4.15-14.fc31.x86_64 1564093431 206982 42c844c07bd9868ce3869401f3a5034d installed
libsoup-2.68.3-1.fc31.x86_64 1575458089 1477904 34e38d5c4d9d22619d8fc43a8e06236e installed
libicu-63.2-3.fc31.x86_64 1564073357 33065733 024fe3ae4d4725d966d360b3945ad5f3 installed
qt5-qtbase-5.13.2-2.fc31.x86_64 1579521551 10192479 222b66764c09b212817230982c2f4d1f installed
libglvnd-devel-1:1.1.1-5.fc31.x86_64 1564087552 0 7234bc6c99352ea30f0cba02b09b3668 installed
mesa-libGL-devel-19.2.8-1.fc31.x86_64 1576706284 1485555 9ee77d3d59bdc2b8f5e0bdaf64683ed7 installed
libinput-1.15.2-1.fc31.x86_64 1582180432 641027 760be359ba444b4fbea26ca2e419629f installed
libepoxy-1.5.3-4.fc31.x86_64 1566487814 1293827 673510d22677fe65f8149a385f814183 installed
libthai-0.1.28-3.fc31.x86_64 1564095937 786428 1d57c42f19f96f72f1ca70fd4cf5cdc8 installed
lcms2-2.9-6.fc31.x86_64 1564344527 396281 67eed8434fac6c935fd462aa2d17f078 installed
jsoncpp-1.9.1-1.fc31.x86_64 1565973222 285184 7af858a3a7dcd837bb05aeaa452805f8 installed
cmake-3.16.4-1.fc31.x86_64 1580988666 26434996 d8dd1782849517c875370b4df4202e84 installed
libtiff-4.0.10-7.fc31.x86_64 1574787432 650472 2b83137182121f29fec33e80c3a8b527 installed
jansson-2.12-4.fc31.x86_64 1564836281 83206 2a0282f7ea5f68f6dc4f387e49ab7b0a installed
gcc-9.2.1-1.fc31.x86_64 1566921388 59824045 6e0f297766401c6edb32959f5f7ed5d9 installed
perl-ExtUtils-Install-2.14-440.fc31.noarch 1564145337 87726 c7913da2ed491b53df113ce1ffce6dca installed
perl-Filter-2:1.59-440.fc31.x86_64 1564145918 171811 d6f25cb821a5ff7056e8f31f2e93483b installed
perl-ExtUtils-Embed-0:1.35-449.fc31.noarch 1575031605 16859 db85a4eed354818655be57f6f27de1d2 installed
perl-ExtUtils-CBuilder-1:0.280234-1.fc31.noarch 1579610058 98649 9b3bd1cb97b1b07e167d417bf7ebd5a7 installed
perl-ExtUtils-Miniperl-0:1.09-449.fc31.noarch 1575031605 9993 699d5fefb5b6d0e64f7b7fe278736e35 installed
perl-Filter-Simple-0.95-439.fc31.noarch 1564145891 52058 92d86114f783b72c2a1f64cb0e87e38e installed
perl-inc-latest-2:0.500-14.fc31.noarch 1564160243 35854 1517fec4759b62ac2a15db9f66de9dcc installed
perl-CPAN-2.27-2.fc31.noarch 1564140827 1917413 90a09ac179afd65eee42c329ac9aa271 installed
hicolor-icon-theme-0.17-7.fc31.noarch 1564070523 73932 ba476abcca352e89bb6df2c88894c521 installed
harfbuzz-2.6.1-2.fc31.x86_64 1568793313 1971092 d80c76fabc190cbcf7852fe24087cf61 installed
qt5-qtbase-gui-5.13.2-2.fc31.x86_64 1579521551 19711131 ce5728feeacb8e841d427f2d9d4d80f0 installed
perl-Pod-Simple-1:3.39-2.fc31.noarch 1564153463 573496 dbc8f27bf68e74bfe4df6baa9ea5d7bc installed
libgcc-9.2.1-1.fc31.x86_64 1566921388 194880 e70b6d2cfa6246a34247e235c0afa38d installed
acl-2.2.53-4.fc31.x86_64 1563989674 217116 f167d5a13a3a55ec376a1ee69bb41dda installed
perl-Pod-Perldoc-3.28.01-442.fc31.noarch 1565934166 170963 a064d53e7718c2417969b506608f2755 installed
nim-srpm-macros-3-1.fc31.noarch 1576063404 1098 546dfc884bc1335b8bc98c1de8256ea4 installed
dbus-1:1.12.16-3.fc31.x86_64 1564650671 0 af4cee0565599f648b17a2d776164882 installed
perl-JSON-PP-1:4.04-2.fc31.noarch 1564148377 144621 d96d3e9700fcc69c207841217039c521 installed
publicsuffix-list-dafsa-20190417-2.fc31.noarch 1564174250 64992 e9414b24a86e880dd5d64a35ada70d06 installed
dbus-broker-21-6.fc31.x86_64 1564004553 433360 1016c3dc5412c57e2c71a28917860ae0 installed
perl-Module-Load-Conditional-0.70-1.fc31.noarch 1573472176 29526 a8c4e7074be9bec39c4d5abfe917a73e installed
ocaml-srpm-macros-5-6.fc31.noarch 1564128436 737 bc13325f635775ef794d9a435e96acd0 installed
gtk3-3.24.13-1.fc31.x86_64 1574889707 21287033 2a2e37cda27e29b9db242f2bd58a4868 installed
fontpackages-filesystem-1.44-25.fc31.noarch 1564016125 0 8b242cb1cba3454aeb0e287809c5d06b installed
fpc-srpm-macros-1.2-2.fc31.noarch 1564016336 128 90594f4e6aad249740023671a22273bc installed
glusterfs-devel-7.2-1.fc31.x86_64 1579114682 783022 572db2d87179dd1d96b9b891e1739ef4 installed
perl-Pod-Checker-4:1.73-439.fc31.noarch 1564153394 50344 1bef5d990615f6d3fec1af5ea77f8ea1 installed
fedora-release-common-31-2.noarch 1571672509 14359 ccc1fde07e6d5601c2d5f6a019ab1efc installed
dracut-049-27.git20181204.fc31.1.x86_64 1564007045 1053907 16dfbd8c23c11a49bdd3b8208bc5749f installed
perl-URI-1.76-5.fc31.noarch 1564158802 215577 ceba098f27482972ccaa0c34e4423c35 installed
librados2-2:14.2.7-2.fc31.x86_64 1580708374 14009096 d16bfa441965007a23a2124211640f6d installed
libSM-1.2.3-4.fc31.x86_64 1564344611 96507 69fcd3e3bdfce529d09106007fe29d26 installed
glibc-common-2.30-10.fc31.x86_64 1579277749 2769565 174ed87cf10ebed77649d814b4d06423 installed
libradosstriper1-2:14.2.7-2.fc31.x86_64 1580708374 1259656 ace410fde92966de727599e0ebd236da installed
xcb-util-renderutil-0.3.9-14.fc31.x86_64 1564242637 29658 14f1c199121fd3530dde02c3bfa73f80 installed
zlib-1.2.11-20.fc31.x86_64 1572358039 205655 95ae81bb69818e59e8ba5fbc9a7b9b5e installed
chromedriver-79.0.3945.130-1.fc31.x86_64 1579286110 2108670 007346a6db3f56af3720c7379056e7ad installed
systemtap-sdt-devel-4.2-1.fc31.x86_64 1574117834 189195 c7064de1ad775bc9f0f43e6139de8e28 installed
libxcrypt-4.4.14-1.fc31.x86_64 1581962368 272367 bfdb3f3ffe2ac7ddc0b25fb7a822430c installed
annobin-8.78-2.fc31.x86_64 1567588838 204472 9565ba7dac1c7a56873b939b6630e8ea installed
mesa-libgbm-19.2.8-1.fc31.x86_64 1576706284 67088 2b170a2fd13fae354f7168f9afd8a42d installed
gmp-1:6.1.2-10.fc31.x86_64 1550745445 1502516 39f69cee11b92362c7a3354378d47db6 installed
libtirpc-devel-1.2.5-0.fc31.x86_64 1576873327 257297 4fe31f1f09b3b2614399c5d1b46202d1 installed
libattr-devel-2.4.48-7.fc31.x86_64 1563994148 22205 16447280cbdd0025cc37939161b7b04e installed
popt-1.16-18.fc31.x86_64 1564169881 131342 316213b6d011f1dd20b86190148178e1 installed
libpq-devel-11.6-1.fc31.x86_64 1574694937 352401 261ae4553e43305d04a3a982f59d8a38 installed
perl-Data-OptList-0.110-11.fc31.noarch 1564143456 49891 7da75810dc7f54739d3bd5700c35bdc4 installed
libffi-3.1-23.fc31.x86_64 1564087048 58548 edee68ecdf5f5d36311fd5b6135cadeb installed
sqlite-devel-3.30.0-1.fc31.x86_64 1570445722 599242 a2bec9b79b0dd21454f161e3e769dce0 installed
chromium-common-79.0.3945.130-1.fc31.x86_64 1579286110 66250384 6d671817d5035fe28e909ab158120acd installed
p11-kit-0.23.20-1.fc31.x86_64 1580317525 1640244 c9ee8905e3283b520cf1f698be52f441 installed
pam-devel-1.3.1-21.fc31.x86_64 1576674834 607569 e9af4cdb42e4e94de3963eb72c10a509 installed
perl-Time-Piece-0:1.33-449.fc31.x86_64 1575031250 72451 c35c7e362d45e62232e5916dcf94a805 installed
file-5.37-8.fc31.x86_64 1571989637 99804 285bc59cfc370692d1c816a6af1b4385 installed
libcap-devel-2.26-6.fc31.x86_64 1564085579 16029 cdf3bd42a6b13b0dd9ec256b1a9d2b00 installed
perl-Algorithm-Diff-1.1903-14.fc31.noarch 1564138687 110533 790cda71a8d808bd2dd0faf147829f85 installed
lua-libs-5.3.5-6.fc31.x86_64 1564100711 260320 cf704dff3da51f76b9038a16abd7b152 installed
perl-IO-Compress-Lzma-2.087-1.fc31.noarch 1565685590 206661 d015f23ad9c85e7cb7784aaf13bd5ffe installed
libsemanage-2.9-3.fc31.x86_64 1565728736 320642 0356a756db522082ec64a4b81898c3c9 installed
perl-IPC-SysV-2.07-440.fc31.x86_64 1564148143 80600 69f878e73dd7b1b245fb26231651b2ea installed
zip-3.0-25.fc31.x86_64 1564249509 835197 48b96f424311c06eb42976e5b548abd7 installed
perl-Sub-Exporter-0.987-20.fc31.noarch 1564155648 142831 2b0da508c89900ca19b2a17e2932ab5a installed
patch-2.7.6-11.fc31.x86_64 1564411231 283697 bc99f61887ea9b41e5a4a47d01108e64 installed
perl-local-lib-2.000024-7.fc31.noarch 1564160279 120231 07b6556c5e6a25f61c9cf5dbf949688f installed
libxml2-2.9.10-3.fc31.x86_64 1581504282 1784628 52b0da4e04fbefc2e573a37870696e5d installed
perl-Sys-Syslog-0.36-1.fc31.x86_64 1571732210 101784 b17515109ba680a2a978d904f8ae96f3 installed
elfutils-libs-0.178-7.fc31.x86_64 1578673368 720951 ee965f01df6078e195c79c9e0f47d3de installed
perl-File-HomeDir-1.004-6.fc31.noarch 1564145601 123464 c765c8da2e12684bfb3331ec025ddcab installed
diffutils-3.7-3.fc31.x86_64 1564006009 1566101 86682b2278219c2f1e2bab4a4cb12770 installed
gtk-update-icon-cache-3.24.13-1.fc31.x86_64 1574889707 71741 350be254affca6c0568da3c2710fe2ea installed
gc-7.6.4-6.fc31.x86_64 1564020069 239464 396b422403cb6d456b42119a72096bc8 installed
nss-softokn-3.49.2-1.fc31.x86_64 1580117747 1798062 ff91e5fa166ce07a84d6faa4114f17fd installed
libpkgconf-1.6.3-2.fc31.x86_64 1564166926 77901 a0e0fe163c0423999eeb47fd2b9827d0 installed
jasper-libs-2.0.14-9.fc31.x86_64 1564076970 385970 a1b31e4ced8395b0eae0f2684ba40c3d installed
gawk-5.0.1-5.fc31.x86_64 1564019883 3002926 7e02a15d7b9584aea920e596c4bbf297 installed
perl-Attribute-Handlers-0:1.01-449.fc31.noarch 1575031605 39366 536436821a77aa485624fcf3d522c97f installed
libverto-0.3.0-8.fc31.x86_64 1564096673 32076 4144ee4206bf5e0dd7de36d69162bd58 installed
perl-MRO-Compat-0.13-9.fc31.noarch 1564149571 25912 632094034f05f40b6d0f13be8a2c2199 installed
krb5-libs-1.17-46.fc31.x86_64 1581002701 2260333 c4702e2ceca0f06069637e6ed5b5adea installed
perl-perlfaq-5.20200125-1.fc31.noarch 1580137597 743004 b62bf2e55e971eb6914474450a60291c installed
openssl-libs-1:1.1.1d-2.fc31.x86_64 1570120692 3862858 4efdb5d74f94255bcb691fedc5b3fc25 installed
openssh-clients-8.1p1-1.fc31.x86_64 1570625897 2741456 7ffaad90fdf9ce712b33e237b0892abb installed
python3-3.7.6-2.fc31.x86_64 1580375022 32029 ca312059ea766c40a5d029e602ee5eb4 installed
xkeyboard-config-2.28-1.fc31.noarch 1571972291 5683972 26202519683674d3cf6275e46d7e09f9 installed
cracklib-2.9.6-21.fc31.x86_64 1565362157 255359 fbdfeaf5730a4f585ec4ef4ae7d31ac6 installed
sqlite-3.30.0-1.fc31.x86_64 1570445722 1403868 87300f164041b523858c8572e8b1fb90 installed
pam-1.3.1-21.fc31.x86_64 1576674834 2828604 4a5b2b330f503cbeb2389ad449fd3113 installed
python-rpm-macros-3-53.fc31.noarch 1581411862 5476 9955bd6ebfab3e9cafcf17d24258e0fb installed
guile22-2.2.6-2.fc31.x86_64 1564069010 46061269 35c3824a4d2095c3f76c06d1a17a117e installed
mariadb-connector-c-3.1.7-1.fc31.x86_64 1580741703 556836 273157bd1d9cfc3105d31f956b9dc887 installed
openldap-2.4.47-3.fc31.x86_64 1564132479 1031518 327c8f5e28b8dd66a023ae69fa851637 installed
libwacom-data-1.1-2.fc31.noarch 1573093321 478821 d3e691902e54117a304051c700c7d0e6 installed
curl-7.66.0-1.fc31.x86_64 1568363208 700130 87f033c1bbb56ac46c17c70447a3dd23 installed
libpq-11.6-1.fc31.x86_64 1574694937 797146 1890556449a4bc5748a5b6ae2bb6558f installed
go-srpm-macros-3.0.8-4.fc31.noarch 1564064482 60262 b7ac6e1264a9c0e1e3178b27c1e80ea1 installed
libX11-1.6.9-2.fc31.x86_64 1576041398 1348200 86732354cf6031659bd9819637b4f8f3 installed
libsmartcols-2.34-4.fc31.x86_64 1576514871 290059 e87feac2ddde352a860b9332f0e1109a installed
libX11-devel-1.6.9-2.fc31.x86_64 1576041398 1074150 d298c1313b560926f7f4c3761d898eb1 installed
info-6.6-2.fc31.x86_64 1564228936 536756 5596dee409bc054d626d8cd9d4db36cb installed
libXfixes-devel-5.0.3-10.fc31.x86_64 1564084743 9249 a30b75a1b6a9a0b9a32a370b18d1c573 installed
ccache-3.7.6-1.fc31.x86_64 1574693039 667483 ac9db01959be48bf1f8479010ea24c96 installed
libXcursor-1.1.15-6.fc31.x86_64 1564084706 51735 3a26c6c33a7d1941a25bd04a85f31ade installed
shared-mime-info-1.15-1.fc31.x86_64 1573141287 2506728 f19e9714bf1290ad359bca99ee05ee6a installed
libglvnd-glx-1:1.1.1-5.fc31.x86_64 1564087552 696216 c1795c571434e169b2d85359822c688b installed
perl-Text-ParseWords-3.30-439.fc31.noarch 1564158173 13101 378b65ddc07f6657b17889a10d8c1da2 installed
cairo-gobject-1.16.0-6.fc31.x86_64 1563997837 44648 8057a8a3aa3cc01e720560ffdda17101 installed
libjpeg-turbo-2.0.2-5.fc31.x86_64 1573557868 658362 09b58ac44e34e7ffb0a90b1406b0154c installed
libXv-1.0.11-10.fc31.x86_64 1564084910 31151 b5673152aa732f86b1607cd069b8c649 installed
nss-util-3.49.2-1.fc31.x86_64 1580117747 226156 7e399677d2caaf40f24940ab32a3486d installed
adwaita-icon-theme-3.34.3-1.fc31.noarch 1573212332 11504252 88f674ad8ce1657764d6e369d857b17b installed
libglvnd-1:1.1.1-5.fc31.x86_64 1564087552 695848 91a37779ee0544bc9119551715a2c9da installed
lttng-ust-2.10.4-2.fc31.x86_64 1564100643 1164863 11eed790de27f1128e08b5dcc9f21518 installed
libwayland-client-1.17.0-2.fc31.x86_64 1564237982 68820 5efb9de0f75ddeb554e0f3244157a475 installed
qrencode-libs-4.0.2-4.fc31.x86_64 1564190465 163153 7d6669e95ed0a33da529ee1d3c3708e1 installed
perl-Unicode-Normalize-1.26-439.fc31.x86_64 1564159071 647695 c6e386a8e7cc693a31f49b449bfbb133 installed
python3-pysocks-1.7.0-2.fc31.noarch 1564186147 89318 980e0ff360ac7210317bdb461f466801 installed
perl-constant-1.33-440.fc31.noarch 1564160055 27106 272a5d5ae66f873b8ab2f2575c5c4fb4 installed
pciutils-libs-3.6.2-3.fc31.x86_64 1564137127 83227 3d984ce7605bd1da762ffe1224255b3c installed
perl-File-Path-2.16-439.fc31.noarch 1564145717 65103 9b27685ceba16d523f5b2e4344436ae0 installed
nettle-3.5.1-3.fc31.x86_64 1564116136 1109785 bae7acb6bad059d50351e137dd4e68dc installed
perl-Data-Dumper-2.174-440.fc31.x86_64 1564143240 111962 7aa00074cdd9189ccb2f63abd2b29e5f installed
ncurses-devel-6.1-12.20190803.fc31.x86_64 1565169550 841667 033202c40a0b0355eaeae2cddec7a5ab installed
perl-Time-Local-2:1.300-1.fc31.noarch 1580139349 67342 8d22ecac1171b7b6cc8f3b7f64c105d9 installed
libwebp-1.0.3-2.fc31.x86_64 1564097082 835599 d33dd131a391b6278c3a6319158b5fad installed
perl-ExtUtils-Manifest-1:1.72-439.fc31.noarch 1564145344 86471 fcfa67898d25c1e1c0963c94388da7b1 installed
libstdc++-devel-9.2.1-1.fc31.x86_64 1566921388 12012765 9cf654c770a2bc329f555ad3a9f530fd installed
perl-IO-Socket-IP-0.39-440.fc31.noarch 1564147915 99526 3d53749426e81710ecbb2d8fe9d1d421 installed
libmodman-2.0.1-20.fc31.x86_64 1564090744 74159 cdde3d0aa046954698e531c7930e3697 installed
perl-Module-Load-1:0.34-439.fc31.noarch 1564150417 15304 694fb537fb761ce9413bc55b20528421 installed
rest-0.8.1-6.fc31.x86_64 1564194230 201926 04a04acd5a92d45d34c9e63270ac58e5 installed
python3-six-1.12.0-2.fc31.noarch 1564187374 103441 e5cdfa165285520a45fda94cc55018eb installed
libglvnd-core-devel-1:1.1.1-5.fc31.x86_64 1564087552 41190 a9d1ebd8c2eacb94f79d3b70f42968f3 installed
perl-Text-Balanced-2.03-439.fc31.noarch 1564157945 156783 392bec25085f7cad6abaa2ef55effd57 installed
libevdev-1.8.0-1.fc31.x86_64 1566803449 155462 bccb879f49cb8092298f1f6e7aa7be21 installed
perl-Locale-Maketext-1.29-440.fc31.noarch 1564149160 174930 f60f7047be3f5c8fcb185efbf0085c5c installed
libdatrie-0.2.9-10.fc31.x86_64 1564086127 64975 102bff1957db46eb0ce9be699fb37be2 installed
perl-Pod-Escapes-1:1.07-439.fc31.noarch 1564153430 25764 e12a547a83b8feb9f73390c8cfeb67ef installed
colord-libs-1.4.4-2.fc31.x86_64 1564001169 875940 b9a443b2714af9074311884bf856cc31 installed
perl-ExtUtils-Command-2:7.44-1.fc31.noarch 1579094788 10095 ef1bb6cc1670df340baf98bf0e0e76ad installed
jbigkit-libs-2.1-17.fc31.x86_64 1564077264 117477 5ed9e494ea4fa5e086d62a9b458cce20 installed
perl-Net-Ping-0:2.71-449.fc31.noarch 1575031605 93516 488d34bbbd03ab7c74e1834a991e7718 installed
isl-0.16.1-9.fc31.x86_64 1564076018 3255113 f7c8b2d4fc1d9eec8bb305ea269f64a2 installed
mesa-khr-devel-19.2.8-1.fc31.x86_64 1576706284 10449 27f1b475e81bb0e39c4fc2cd28fb585a installed
perl-ExtUtils-MakeMaker-2:7.44-1.fc31.noarch 1579094788 746592 ebf9cd9e3c354a807a803241b448b2e0 installed
glibc-headers-2.30-10.fc31.x86_64 1579277749 2061975 d65e7655a8f3fbf6ee16eae87762a007 installed
gcc-c++-9.2.1-1.fc31.x86_64 1566921388 31051285 19b323b5b491b4087df051539b0bbca0 installed
fribidi-1.0.5-5.fc31.x86_64 1576041059 337357 d005dee9dd9559003263d8879654e8f3 installed
perl-open-0:1.11-449.fc31.noarch 1575031605 11789 1eb8863aafd134bf932b6176918737f3 installed
openssl-devel-1:1.1.1d-2.fc31.x86_64 1570120692 3509859 9fe2c0ca935b8624b28f9568804654f0 installed
perl-Module-Build-2:0.42.29-4.fc31.noarch 1564150132 670746 f1298580211615db0e59d3a8a2633227 installed
libargon2-20171227-3.fc31.x86_64 1563992534 56175 487f82441ffc2f170000e745216572d9 installed
graphite2-1.3.13-1.fc31.x86_64 1566514957 232809 0f3fd641364d90a3d4f3697ecaf353bf installed
less-551-2.fc31.x86_64 1564084444 352469 a03afe0d07657a1855efddde15014589 installed
installed_pkgs.log (53,925 bytes)   
arogge

arogge

2020-02-26 18:32

manager   ~0003867

What is your host system? What mock configuration are you using? The one shipped with mock or a different one? From which SPEC or src.rpm are you building?
tuxmaster

tuxmaster

2020-02-26 19:06

reporter   ~0003869

My Host system is an Fedora 31.lib
I using this the default fedora-31-x86_64 config to which I only add my repo which contains the needed libfastlz lib.
The used spec file have I added here.
bareos.spec (38,984 bytes)   
%bcond_with vmware
%if %{with vmware}
%global build_vmware 1
%else
%global build_vmware 0
%endif

%global _hardened_build 1
%global my_cmake my-build
%global my_cmake_vmware my-build_vmware
%global library_dir %{_libdir}/%{name}
%global backend_dir %{_libdir}/%{name}/backends
%global plugin_dir %{_libdir}/%{name}/plugins
%global script_dir %{_sharedstatedir}/%{name}/scripts
%global working_dir %{_sharedstatedir}/%{name}
%global pid_dir %{_sharedstatedir}/%{name}
%global bsr_dir %{_sharedstatedir}/%{name}
%global _subsysdir %{_localstatedir}/lock
%global daemon_user bareos
%global daemon_group bareos
%global director_daemon_user %{daemon_user}
%global storage_daemon_user %{daemon_user}
%global file_daemon_user root
%global storage_daemon_group %{daemon_group}
%global client_only 0
%global build_qt_monitor 1
%global build_sqlite3 1
%global glusterfs 1
%global droplet 1
%global have_git 1
%global ceph 1
%global python_plugins 1
%global webui 1
%global dscr Bareos - Backup Archiving Recovery Open Sourced. \
Bareos is a set of computer programs that permit you (or the system \
administrator) to manage backup, recovery, and verification of computer \
data across a network of computers of different kinds. In technical terms, \
it is a network client/server based backup program. Bareos is relatively \
easy to use and efficient, while offering many advanced storage management \
features that make it easy to find and recover lost or damaged files. \
Bareos source code has been released under the AGPL version 3 license.

Name:		bareos
Version:	19.2.6
Release:	1%{?dist}
License:	AGPLv3
URL:		http://www.bareos.org/
Source0:	%{name}-Release-%{version}.tar.gz
Patch0:		%{name}-version.patch

# fedora don't support it, to new for bareos
%if 0%{?fedora}
%global droplet 0
%if 0%{?fedora} >= 30
%global glusterfs 1
%endif
%endif

%if %{with vmware}
BuildRequires:	VMware-vix-disklib-devel
%endif

BuildRequires:	systemd
%{?systemd_requires}

%if 0%{?droplet}
BuildRequires:	pkgconfig(droplet-3.0)
%endif

%if 0%{?glusterfs}
BuildRequires:	pkgconfig(glusterfs-api)
%endif

%if 0%{?ceph}
BuildRequires:	libradosstriper-devel libcephfs-devel
%endif

%if 0%{?have_git}
BuildRequires:	git-core
%endif

%if 0%{?build_sqlite3}
BuildRequires:	pkgconfig(sqlite3)
%endif

%if 0%{?build_qt_monitor}
BuildRequires:	pkgconfig(Qt5)
%endif

%if 0%{?python_plugins}
BuildRequires:	python3-devel
%endif

%if 0%{?fedora}
BuildRequires:	rpcgen
%endif
BuildRequires:	pkgconfig(ncurses) pkgconfig(zlib) pkgconfig(openssl) pkgconfig(libcap) pkgconfig(jansson)
BuildRequires:	pam-devel glibc-devel readline-devel libstdc++-devel libacl-devel lzo-devel libfastlz-devel
BuildRequires:	mysql-devel postgresql-devel php-cli procps-ng pam_wrapper percona-xtrabackup
BuildRequires:	cmake3 perl gcc gcc-c++ make logrotate mtx passwd
BuildRequires:	glibc-common
BuildRequires:	pkgconfig(libtirpc) pkgconfig(gmock) 
#For the tests
BuildRequires:	pamtester chromedriver gtest-devel python3dist(selenium)


Summary:	Backup Archiving REcovery Open Sourced - metapackage
Requires:	%{name}-director = %{version}
Requires:	%{name}-storage = %{version}
Requires:	%{name}-client = %{version}

%description
%{dscr}


%package bconsole
Summary:	Bareos administration console (CLI)
Requires:	%{name}-common = %{version}

%package client
Summary:	Bareos client Meta-All-In-One package
Requires:	%{name}-bconsole = %{version}
Requires:	%{name}-filedaemon = %{version}

%package director
Summary:	Bareos Director daemon
Requires:	%{name}-common = %{version}
Requires:	%{name}-database-common = %{version}
Requires:	%{name}-database-tools
Requires(pre):	shadow-utils
Provides:	%{name}-dir = %{version}

%package storage
Summary:	Bareos Storage daemon
Requires:	%{name}-common = %{version}
Provides:	%{name}-sd = %{version}
Requires(pre): shadow-utils
Requires:	%{name}-tools

%if 0%{?droplet}
%package storage-droplet
Summary:	Object Storage support (through libdroplet) for the Bareos Storage daemon
Requires:	%{name}-common = %{version}
Requires:	%{name}-storage = %{version}
%endif

%if 0%{?glusterfs}
%package storage-glusterfs
Summary:	GlusterFS support for the Bareos Storage daemon
Requires:	%{name}-common = %{version}
Requires:	%{name}-storage = %{version}
Requires:	glusterfs
%endif

%if 0%{?ceph}
%package storage-ceph
Summary:	CEPH support for the Bareos Storage daemon
Requires:	%{name}-common = %{version}
Requires:	%{name}-storage = %{version}
%endif

%package storage-tape
Summary:	Tape support for the Bareos Storage daemon
Requires:	%{name}-common = %{version}
Requires:	%{name}-storage = %{version}
Requires:	mtx mt-st

%package storage-fifo
Summary:	FIFO support for the Bareos Storage backend
Requires:	%{name}-common = %{version}
Requires:	%{name}-storage = %{version}

%package filedaemon
Summary:	Bareos File daemon (backup and restore client)
Requires:	%{name}-common = %{version}
Provides:	%{name}-fd = %{version}
Requires(pre):	shadow-utils

%package common
Summary:	Common files, required by multiple Bareos packages
Requires:	openssl
Requires(pre):	shadow-utils
Provides:	%{name}-libs = %{version}

%package database-common
Summary:	Generic abstraction libs and files to connect to a database
Requires:	%{name}-common = %{version}
Requires:	%{name}-database-backend = %{version}
Requires:	openssl
Provides:	%{name}-sql = %{version}

%package database-postgresql
Summary:	Libs & tools for postgresql catalog
Requires:	%{name}-database-common = %{version}
Provides:	%{name}-catalog-postgresql = %{version}
Provides:	%{name}-database-backend = %{version}

%package	database-mysql
Summary:	Libs & tools for mysql catalog
Requires:	%{name}-database-common = %{version}
Provides:	%{name}-catalog-mysql = %{version}
Provides:	%{name}-database-backend = %{version}

%if 0%{?build_sqlite3}
%package database-sqlite3
Summary:	Libs & tools for sqlite3 catalog
Requires:	%{name}-database-common = %{version}
Provides:	%{name}-catalog-sqlite3 = %{version}
Provides:	%{name}-database-backend = %{version}
%endif

%package database-tools
Summary:	Bareos CLI tools with database dependencies (bareos-dbcheck, bscan)
Requires:	%{name}-common = %{version}
Requires:	%{name}-database-common = %{version}
Provides:	%{name}-dbtools = %{version}

%package tools
Summary:	Bareos CLI tools (bcopy, bextract, bls, bregex, bwild)
Requires:	%{name}-common = %{version}

%if 0%{build_qt_monitor}
%package traymonitor
Summary:	Bareos Tray Monitor (QT)
Conflicts:	%{name}-tray-monitor-gtk
Provides:	%{name}-tray-monitor-qt = %{version}
%endif

%package devel
Summary:	Devel headers
Requires:	%{name}-common = %{version}
Requires:	pkgconfig(zlib) pkgconfig(libcap) pkgconfig(openssl)
Requires:	libacl-devel postgresql-devel mariadb-devel
%if 0%{?build_sqlite3}
Requires:	pkgconfig(sqlite3)
%endif

%package regress-config
Summary:	Required files for bareos-regress
Requires:	%{name}-common = %{version}

%if 0%{?python_plugins}
%package director-python-plugin
Summary:	Python plugin for Bareos Director daemon
Requires:	%{name}-director = %{version}
Requires:	python2-sslpsk

%package filedaemon-python-plugin
Summary:	Python plugin for Bareos File daemon
Requires:	%{name}-filedaemon = %{version}
Requires:	python2-sslpsk

%package filedaemon-ldap-python-plugin
Summary:	LDAP Python plugin for Bareos File daemon
Requires:	%{name}-filedaemon = %{version}
Requires:	%{name}-filedaemon-python-plugin = %{version}
Requires:	python2-sslpsk

%package storage-python-plugin
Summary:	Python plugin for Bareos Storage daemon
Requires:	%{name}-storage = %{version}
Requires:	python2-sslpsk

%description director-python-plugin
%{dscr}

This package contains the python plugin for the director daemon

%description filedaemon-python-plugin
%{dscr}

This package contains the python plugin for the file daemon

%description filedaemon-ldap-python-plugin
%{dscr}

This package contains the LDAP python plugin for the file daemon

%description storage-python-plugin
%{dscr}

This package contains the python plugin for the storage daemon

%endif

%if 0%{?glusterfs}
%package filedaemon-glusterfs-plugin
Summary:	GlusterFS plugin for Bareos File daemon
Requires:	%{name}-filedaemon = %{version}

%description filedaemon-glusterfs-plugin
%{dscr}

This package contains the GlusterFS plugin for the file daemon

%endif

%if 0%{?ceph}
%package filedaemon-ceph-plugin
Summary:	CEPH plugin for Bareos File daemon
Requires:	%{name}-filedaemon = %{version}

%description filedaemon-ceph-plugin
%{dscr}

This package contains the CEPH plugins for the file daemon

%endif

%description client
%{dscr}

This package is a meta package requiring the packages
containing the fd and the console.

This is for client only installation.

%description bconsole
%{dscr}

This package contains the bconsole (the CLI interface program)

%description director
%{dscr}

This package contains the Director Service (Bareos main service daemon)

%description storage
%{dscr}

This package contains the Storage Daemon
(Bareos service to read and write data from/to media)

%description storage-tape
%{dscr}

This package contains the Storage Daemon tape support
(Bareos service to read and write data from/to tape media)

%if 0%{?droplet}
%description storage-droplet
%{dscr}

This package contains the Storage backend for Object Storage (through libdroplet).
%endif

%if 0%{?glusterfs}
%description storage-glusterfs
%{dscr}

This package contains the Storage backend for GlusterFS.
%endif

%if 0%{?ceph}
%description storage-ceph
%{dscr}

This package contains the Storage backend for CEPH.
%endif

%description storage-fifo
%{dscr}

This package contains the Storage backend for FIFO files.
This package is only required, when a resource "Archive Device = fifo"
should be used by the Bareos Storage Daemon.

%description filedaemon
%{dscr}

This package contains the File Daemon
(Bareos client daemon to read/write data from the backed up computer)

%description common
%{dscr}

This package contains the shared libraries that are used by multiple daemons
and tools.

%description database-common
%{dscr}

This package contains the shared libraries that abstract the catalog interface

%description database-postgresql
%{dscr}

This package contains the shared library to access postgresql as catalog db.

%description database-mysql
%{dscr}

This package contains the shared library to use mysql as catalog db.

%if 0%{?build_sqlite3}
%description database-sqlite3
%{dscr}

This package contains the shared library to use sqlite as catalog db.
%endif

%description database-tools
%{dscr}

This package contains Bareos database tools.

%description tools
%{dscr}

This package contains Bareos tools.

%if 0%{?build_qt_monitor}
%description traymonitor
%{dscr}

This package contains the tray monitor (QT based).
%endif

%description devel
%{dscr}

This package contains bareos development files.

%description regress-config
%{dscr}

This package contains required files for Bareos regression testing.

%if 0%{?webui}
%package webui
Summary:	Bareos webui
Requires:	httpd
Buildarch:	noarch

%description webui
%{dscr}
%endif


%prep
%autosetup -n %{name}-Release-%{version} -p1
mkdir %{my_cmake}
mkdir %{my_cmake_vmware}
#For the checks
sed -i "s/ctest/ctest3/g" core/CMakeLists.txt
sed -i "s|LD_LIBRARY_PATH=|LD_LIBRARY_PATH=%{buildroot}%{_libdir}/%{name}:|g" core/src/tests/CMakeLists.txt

%build
export MTX=/usr/sbin/mtx
pushd %{my_cmake}
%cmake3 \
  -DCMAKE_VERBOSE_MAKEFILE=ON \
  -DCMAKE_INSTALL_PREFIX:PATH=/usr \
  -DCMAKE_INSTALL_LIBDIR:PATH=/usr/lib \
  -DINCLUDE_INSTALL_DIR:PATH=/usr/include \
  -DLIB_INSTALL_DIR:PATH=/usr/lib \
  -DSYSCONF_INSTALL_DIR:PATH=/etc \
  -DSHARE_INSTALL_PREFIX:PATH=/usr/share \
  -DBUILD_SHARED_LIBS:BOOL=ON \
  -Dprefix=%{_prefix}\
  -Dlibdir=%{library_dir} \
  -Dsbindir=%{_sbindir} \
  -Dsbin-perm=755 \
  -Dsysconfdir=%{_sysconfdir} \
  -Dconfdir=%{_sysconfdir}/bareos \
  -Dmandir=%{_mandir} \
  -Ddocdir=%{_docdir}/%{name} \
  -Dhtmldir=%{_docdir}/%{name}/html \
  -Darchivedir=/var/lib/%{name}/storage \
  -Dbackenddir=%{backend_dir} \
  -Dscriptdir=%{script_dir} \
  -Dworkingdir=%{working_dir} \
  -Dplugindir=%{plugin_dir} \
  -Dpiddir=%{pid_dir} \
  -Dbsrdir=%{bsr_dir} \
  -Dlogdir=/var/log/bareos \
  -Dsubsysdir=%{_subsysdir} \
%if 0%{?python_plugins}
  -Dpython=yes \
%endif
  -Dsmartalloc=yes \
  -Ddisable-conio=yes \
  -Dreadline=yes \
  -Dbatch-insert=yes \
  -Ddynamic-cats-backends=yes \
  -Ddynamic-storage-backends=yes \
  -Dscsi-crypto=yes \
  -Dlmdb=yes \
  -Dndmp=yes \
  -Dbuild_ndmjob=yes \
  -Dipv6=yes \
  -Dacl=yes \
  -Dxattr=yes \
  -Dlockmgr=yes \
%if 0%{?build_qt_monitor}
  -Dtraymonitor=yes \
%endif
%if 0%{?client_only}
  -Dclient-only=yes \
%endif
  -Dpostgresql=yes \
  -Dmysql=yes \
%if 0%{?build_sqlite3}
  -Dsqlite3=yes \
%endif
  -Ddir-user=%{director_daemon_user} \
  -Ddir-group=%{daemon_group} \
  -Dsd-user=%{storage_daemon_user} \
  -Dsd-group=%{storage_daemon_group} \
  -Dfd-user=%{file_daemon_user} \
  -Dfd-group=%{daemon_group} \
  -Ddir-password="XXX_REPLACE_WITH_DIRECTOR_PASSWORD_XXX" \
  -Dfd-password="XXX_REPLACE_WITH_CLIENT_PASSWORD_XXX" \
  -Dsd-password="XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX" \
  -Dmon-dir-password="XXX_REPLACE_WITH_DIRECTOR_MONITOR_PASSWORD_XXX" \
  -Dmon-fd-password="XXX_REPLACE_WITH_CLIENT_MONITOR_PASSWORD_XXX" \
  -Dmon-sd-password="XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX" \
  -Dopenssl=yes \
  -Dbasename="XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX" \
  -Dhostname="XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX" \
  -Dsystemd=yes \
  -Dincludes=yes \
  ..

make %{?_smp_mflags}
%if 0%{?build_vmware}
popd
pushd %{my_cmake_vmware}
%cmake3 ../vmware
make %{?_smp_mflags}
%endif

%check
pushd %{my_cmake}
make check

%install
pushd %{my_cmake}
%make_install
#popd
%if 0%{?build_vmware}
pushd %{my_cmake_vmware}
%make_install
popd
%endif
install -d -m 755 %{buildroot}%{_datarootdir}/applications
install -d -m 755 %{buildroot}%{_datarootdir}/pixmaps
install -d -m 755 %{buildroot}%{backend_dir}
install -d -m 755 %{buildroot}%{working_dir}
install -d -m 755 %{buildroot}%{plugin_dir}

#change network target to network-online
for unit in $(ls %{buildroot}/%{_unitdir}); do
	sed -i "s/network\.target/network-online\.target/g" %{buildroot}/%{_unitdir}/${unit}
done

#Cleaning
for F in  \
%if 0%{?client_only}
    %{_mandir}/man1/bregex.1.gz \
    %{_mandir}/man1/bsmtp.1.gz \
    %{_mandir}/man1/bwild.1.gz \
    %{_mandir}/man8/%{name}-dbcheck.8.gz \
    %{_mandir}/man8/%{name}-dir.8.gz \
    %{_mandir}/man8/%{name}-sd.8.gz \
    %{_mandir}/man8/%{name}.8.gz \
    %{_mandir}/man8/bcopy.8.gz \
    %{_mandir}/man8/bextract.8.gz \
    %{_mandir}/man8/bls.8.gz \
    %{_mandir}/man8/bpluginfo.8.gz \
    %{_mandir}/man8/bscan.8.gz \
    %{_mandir}/man8/bscrypto.8.gz \
    %{_mandir}/man8/btape.8.gz \
    %{_sysconfdir}/logrotate.d/%{name}-dir \
    %{_sysconfdir}/rc.d/init.d/%{name}-dir \
    %{_sysconfdir}/rc.d/init.d/%{name}-sd \
    %{script_dir}/disk-changer \
    %{script_dir}/mtx-changer \
    %{_sysconfdir}/%{name}/mtx-changer.conf \
%endif
    %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}-dir \
    %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}-sd \
    %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/%{name}-fd \
    %{_sysconfdir}/rc.d/init.d/%{name}-dir \
    %{_sysconfdir}/rc.d/init.d/%{name}-sd \
    %{_sysconfdir}/rc.d/init.d/%{name}-fd \
    %{_sysconfdir}/init.d/%{name}-dir \
    %{_sysconfdir}/init.d/%{name}-sd \
    %{_sysconfdir}/init.d/%{name}-fd \
    %{script_dir}/%{name}_config \
    %{script_dir}/btraceback.dbx \
    %{script_dir}/btraceback.mdb \
    %{_docdir}/%{name}/INSTALL \
    %{_sbindir}/%{name}
do
rm -f "%{buildroot}/$F"
done

# remove links to libraries
# for i in #{buildroot}/#{_libdir}/libbareos*; do printf "$i: "; readelf -a $i | grep SONAME; done
find %{buildroot}/%{library_dir} -type l -name "libbareos*.so" -maxdepth 1 -exec rm {} \;

%if ! 0%{?python_plugins}
rm -f %{buildroot}/%{plugin_dir}/python-*.so
rm -f %{buildroot}/%{plugin_dir}/*.py*
rm -f %{buildroot}/%{_sysconfdir}/%{name}/%{name}-dir.d/plugin-python-ldap.conf
%endif

%if ! 0%{?glusterfs}
rm -f %{buildroot}/%{script_dir}/%{name}-glusterfind-wrapper
%endif


# remove man page if qt tray monitor is not built
%if !0%{?build_qt_monitor}
rm %{buildroot}%{_mandir}/man1/%{name}-tray-monitor.*
%endif

# Create the Readme files for the meta packages
[ -d %{buildroot}%{_docdir}/%{name}/ ] || install -d -m 755 %{buildroot}%{_docdir}/%{name}
echo "This meta package emulates the former bareos-client package" > %{buildroot}%{_docdir}/%{name}/README.%{name}-client
echo "This is a meta package to install a full bareos system" > %{buildroot}%{_docdir}/%{name}/README.%{name}


#Clean up
#Double installed files
for double in bregex bconsole bsmtp timelimit bwild;do
rm %{buildroot}%{_sbindir}/$double
done
rm -rf %{buildroot}%{_datadir}/%{name}-webui/tests
mkdir -p %{buildroot}%{_prefix}/lib/%{name}
find %{buildroot}%{_datadir}  \( -name ".coveralls.yml" -o -name ".gitignore" -o -name ".editorconfig" \) -delete 

%files
%defattr(-, root, root)
%{_docdir}/%{name}/README.%{name}

%files client
%defattr(-, root, root)
%dir %{_docdir}/%{name}
%{_docdir}/%{name}/README.%{name}-client


%files bconsole
# console package
%defattr(-, root, root)
%attr(0640, root, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/bconsole.conf
%{_bindir}/bconsole
%{_mandir}/man1/bconsole.1.gz

%if !0%{?client_only}

%files director
# dir package (bareos-dir)
%defattr(-, root, root)
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/catalog/MyCatalog.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/client/%{name}-fd.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/console/%{name}-mon.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/console/admin.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/director/%{name}-dir.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/Catalog.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/LinuxAll.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/SelfTest.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) "%{_sysconfdir}/%{name}/%{name}-dir.d/fileset/Windows All Drives.conf"
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/job/backup-bareos-fd.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/job/BackupCatalog.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/jobdefs/DefaultJob.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/job/RestoreFiles.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/messages/Daemon.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/messages/Standard.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/pool/Differential.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/pool/Full.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/pool/Incremental.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/pool/Scratch.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/profile/operator.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/profile/webui-admin.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/schedule/WeeklyCycleAfterBackup.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/schedule/WeeklyCycle.conf
%attr(0640, %{director_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/File.conf
%attr(0750, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/bareos-dir-export/
%if 0%{?build_qt_monitor}
%attr(0755, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/tray-monitor.d/director
%attr(0644, %{daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/tray-monitor.d/director/Director-local.conf
%endif
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}-dir
# we do not have any dir plugin but the python plugin
#%%{plugin_dir}/*-dir.so
%{script_dir}/delete_catalog_backup
%{script_dir}/make_catalog_backup
%{script_dir}/make_catalog_backup.pl
%{_sbindir}/%{name}-dir
%dir %{_docdir}/%{name}
%{_mandir}/man8/%{name}-dir.8.gz
%{_mandir}/man8/%{name}.8.gz
%{_unitdir}/%{name}-dir.service

# query.sql is not a config file,
# but can be personalized by end user.
# a rpmlint rule is add to filter the warning
%config(noreplace) %{script_dir}/query.sql

%files storage
# sd package (bareos-sd, bls, btape, bcopy, bextract)
%defattr(-, root, root)
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/autochanger
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/device
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/director
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/ndmp
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/messages
%attr(0750, %{storage_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-sd.d/storage
%attr(0640, %{storage_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-sd.d/device/FileStorage.conf
%attr(0640, %{storage_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-sd.d/director/%{name}-dir.conf
%attr(0640, %{storage_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-sd.d/director/%{name}-mon.conf
%attr(0640, %{storage_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-sd.d/messages/Standard.conf
%attr(0640, %{storage_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-sd.d/storage/%{name}-sd.conf
%if 0%{?build_qt_monitor}
%attr(0755, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/tray-monitor.d/storage
%attr(0644, %{daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/tray-monitor.d/storage/StorageDaemon-local.conf
%endif
%{_sbindir}/%{name}-sd
%{script_dir}/disk-changer
%{plugin_dir}/autoxflate-sd.so
%{_mandir}/man8/%{name}-sd.8.gz
%{_unitdir}/%{name}-sd.service
%attr(0775, %{storage_daemon_user}, %{daemon_group}) %dir %{_sharedstatedir}/%{name}/storage

%files storage-tape
# tape specific files
%defattr(-, root, root)
%{backend_dir}/libbareossd-gentape*.so
%{backend_dir}/libbareossd-tape*.so
%{script_dir}/mtx-changer
%config(noreplace) %{_sysconfdir}/%{name}/mtx-changer.conf
%{_mandir}/man8/bscrypto.8.gz
%{_mandir}/man8/btape.8.gz
%{_sbindir}/bscrypto
%{_sbindir}/btape
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/Tape.conf.example
%attr(0640, %{storage_daemon_user},  %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-sd.d/autochanger/autochanger-0.conf.example
%attr(0640, %{storage_daemon_user},  %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-sd.d/device/tapedrive-0.conf.example
%{plugin_dir}/scsicrypto-sd.so
%{plugin_dir}/scsitapealert-sd.so

%files storage-fifo
%defattr(-, root, root)
%{backend_dir}/libbareossd-fifo*.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/NULL.conf.example
%attr(0640, %{storage_daemon_user}, %{daemon_group})  %{_sysconfdir}/%{name}/%{name}-sd.d/device/NULL.conf.example

%if 0%{?droplet}
%files storage-droplet
%defattr(-, root, root)
%{backend_dir}/libbareossd-chunked*.so
%{backend_dir}/libbareossd-droplet*.so
%attr(0640, %{director_daemon_user},%{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/S3_Object.conf.example
%attr(0640, %{storage_daemon_user},%{daemon_group})  %{_sysconfdir}/%{name}/%{name}-sd.d/device/S3_ObjectStorage.conf.example
%dir %{_sysconfdir}/%{name}/bareos-sd.d/device/droplet/
%attr(0640, %{storage_daemon_user},%{daemon_group})  %{_sysconfdir}/%{name}/%{name}-sd.d/device/droplet/*.example
%endif

%if 0%{?glusterfs}
%files storage-glusterfs
%defattr(-, root, root)
%{backend_dir}/libbareossd-gfapi*.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/Gluster.conf.example
%attr(0640, %{storage_daemon_user}, %{daemon_group})  %{_sysconfdir}/%{name}/%{name}-sd.d/device/GlusterStorage.conf.example
%endif

%if 0%{?ceph}
%files storage-ceph
%defattr(-, root, root)
%{backend_dir}/libbareossd-rados*.so
%{backend_dir}/libbareossd-cephfs*.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/storage/Rados.conf.example
%attr(0640, %{storage_daemon_user}, %{daemon_group})  %{_sysconfdir}/%{name}/%{name}-sd.d/device/RadosStorage.conf.example
%endif
# not client_only
%endif

%files filedaemon
# fd package (bareos-fd, plugins)
%defattr(-, root, root)
%attr(0750, %{file_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-fd.d/
%attr(0750, %{file_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-fd.d/client
%attr(0750, %{file_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-fd.d/director
%attr(0750, %{file_daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-fd.d/messages
%attr(0640, %{file_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-fd.d/client/myself.conf
%attr(0640, %{file_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-fd.d/director/%{name}-dir.conf
%attr(0640, %{file_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-fd.d/director/%{name}-mon.conf
%attr(0640, %{file_daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-fd.d/messages/Standard.conf
%if 0%{?build_qt_monitor}
%attr(0755, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/tray-monitor.d/client
%attr(0644, %{daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/tray-monitor.d/client/FileDaemon-local.conf
%endif
%{_sbindir}/%{name}-fd
%{plugin_dir}/bpipe-fd.so
%{_mandir}/man8/%{name}-fd.8.gz
# tray monitor
%{_unitdir}/%{name}-fd.service

%files common
# common shared libraries (without db)
%defattr(-, root, root)
%attr(0755, root, %{daemon_group}) %dir %{_sysconfdir}/%{name}
%if !0%{?client_only}
# these directories belong to bareos-common,
# as other packages may contain configurations for the director.
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/catalog
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/client
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/console
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/counter
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/director
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/fileset
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/job
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/jobdefs
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/messages
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/pool
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/profile
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/schedule
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/%{name}-dir.d/storage
# tray monitor configurate is installed by the target daemons
%if 0%{?build_qt_monitor}
%attr(0755, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/tray-monitor.d
%endif
%endif
%dir %{backend_dir}
%{library_dir}/libbareos.so*
%{library_dir}/libbareosfind.so*
%{library_dir}/libbareoslmdb.so*
%if !0%{?client_only}
%{library_dir}/libbareosndmp.so*
%{library_dir}/libbareossd.so*
%endif
# generic stuff needed from multiple bareos packages
%dir /usr/lib/%{name}/
%dir %{script_dir}
%{script_dir}/%{name}-config
%{script_dir}/%{name}-config-lib.sh
%{script_dir}/%{name}-explorer
%{script_dir}/btraceback.gdb
%if "%{_libdir}" != "/usr/lib/"
%dir %{_libdir}/%{name}/
%endif
%dir %{plugin_dir}
%if !0%{?client_only}
%{_bindir}/bsmtp
%endif
%{_sbindir}/btraceback
%if !0%{?client_only}
%{_mandir}/man1/bsmtp.1.gz
%endif
%{_mandir}/man8/btraceback.8.gz
%attr(0770, %{daemon_user}, %{daemon_group}) %dir %{working_dir}
%attr(0750, %{daemon_user}, %{daemon_group}) %dir %{_localstatedir}/log/%{name}
%doc core/AGPL-3.0.txt core/LICENSE core/README.* CHANGELOG.* AUTHORS SPONSORS.*
#TODO: cmake does not create build directory
#doc build/

%if !0%{?client_only}

%files database-common
# catalog independent files
%defattr(-, root, root)
%{library_dir}/libbareossql*.so.*
%{library_dir}/libbareoscats*.so.*
%dir %{script_dir}/ddl
%dir %{script_dir}/ddl/creates
%dir %{script_dir}/ddl/drops
%dir %{script_dir}/ddl/grants
%dir %{script_dir}/ddl/updates
%{script_dir}/create_bareos_database
%{script_dir}/drop_bareos_database
%{script_dir}/drop_bareos_tables
%{script_dir}/grant_bareos_privileges
%{script_dir}/make_bareos_tables
%{script_dir}/update_bareos_tables
%{script_dir}/ddl/versions.map

%files database-postgresql
# postgresql catalog files
%defattr(-, root, root)
%{script_dir}/ddl/*/postgresql*.sql
%{backend_dir}/libbareoscats-postgresql.so*

%files database-mysql
# mysql catalog files
%defattr(-, root, root)
%{script_dir}/ddl/*/mysql*.sql
%{backend_dir}/libbareoscats-mysql.so*

%if 0%{?build_sqlite3}
%files database-sqlite3
# sqlite3 catalog files
%defattr(-, root, root)
%{script_dir}/ddl/*/sqlite3*.sql
%{backend_dir}/libbareoscats-sqlite3.so*
%endif

%files database-tools
# dbtools with link to db libs (dbcheck, bscan)
%defattr(-, root, root)
%{_sbindir}/%{name}-dbcheck
%{_sbindir}/bscan
%{_mandir}/man8/%{name}-dbcheck.8.gz
%{_mandir}/man8/bscan.8.gz

%files tools
# tools without link to db libs (bwild, bregex)
%defattr(-, root, root)
%{_bindir}/bregex
%{_bindir}/bwild
%{_sbindir}/bcopy
%{_sbindir}/bextract
%{_sbindir}/bls
%{_sbindir}/bpluginfo
%{_mandir}/man1/bwild.1.gz
%{_mandir}/man1/bregex.1.gz
%{_mandir}/man8/bcopy.8.gz
%{_mandir}/man8/bextract.8.gz
%{_mandir}/man8/bls.8.gz
%{_mandir}/man8/bpluginfo.8.gz

%if 0%{?build_qt_monitor}
%files traymonitor
%defattr(-,root, root)
%attr(0755, %{daemon_user}, %{daemon_group}) %dir %{_sysconfdir}/%{name}/tray-monitor.d/monitor
%attr(0644, %{daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/tray-monitor.d/monitor/%{name}-mon.conf
%config(noreplace) %{_sysconfdir}/xdg/autostart/%{name}-tray-monitor.desktop
%{_bindir}/%{name}-tray-monitor
%{_mandir}/man1/%{name}-tray-monitor.1.gz
%{_datarootdir}/applications/%{name}-tray-monitor.desktop
%{_datarootdir}/pixmaps/%{name}-tray-monitor.xpm
%endif

# client_only
%endif

%files devel
%defattr(-, root, root)
%{_includedir}/%{name}

%if 0%{?python_plugins}
%files filedaemon-python-plugin
%defattr(-, root, root)
%{plugin_dir}/python-fd.so
%{plugin_dir}/bareos-fd.py*
%{plugin_dir}/bareos-fd-local-fileset.py*
%{plugin_dir}/bareos-fd-mock-test.py*
%{plugin_dir}/BareosFdPluginBaseclass.py*
%{plugin_dir}/BareosFdPluginLocalFileset.py*
%{plugin_dir}/BareosFdWrapper.py*
%{plugin_dir}/bareos_fd_consts.py*

%files filedaemon-ldap-python-plugin
%defattr(-, root, root)
%{plugin_dir}/bareos-fd-ldap.py*
%{plugin_dir}/BareosFdPluginLDAP.py*
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/plugin-ldap.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/backup-ldap.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/restore-ldap.conf.example

%files director-python-plugin
%defattr(-, root, root)
%{plugin_dir}/python-dir.so
%{plugin_dir}/bareos-dir.py*
%{plugin_dir}/bareos_dir_consts.py*
%{plugin_dir}/BareosDirPluginBaseclass.py*
%{plugin_dir}/bareos-dir-class-plugin.py*
%{plugin_dir}/BareosDirWrapper.py*

%files storage-python-plugin
%defattr(-, root, root)
%{plugin_dir}/python-sd.so
%{plugin_dir}/bareos-sd.py*
%{plugin_dir}/bareos_sd_consts.py*
%{plugin_dir}/BareosSdPluginBaseclass.py*
%{plugin_dir}/BareosSdWrapper.py*
%{plugin_dir}/bareos-sd-class-plugin.py*

# python_plugins
%endif

%if 0%{?glusterfs}
%files filedaemon-glusterfs-plugin
%{script_dir}/%{name}-glusterfind-wrapper
%{plugin_dir}/gfapi-fd.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/plugin-gfapi.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/BackupGFAPI.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/RestoreGFAPI.conf.example
%endif

%if 0%{?ceph}
%files filedaemon-ceph-plugin
%{plugin_dir}/cephfs-fd.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/plugin-cephfs.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/BackupCephfs.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/RestoreCephfs.conf.example
%{plugin_dir}/rados-fd.so
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/fileset/plugin-rados.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/BackupRados.conf.example
%attr(0640, %{director_daemon_user}, %{daemon_group}) %{_sysconfdir}/%{name}/%{name}-dir.d/job/RestoreRados.conf.example
%endif

%files regress-config
%defattr(-, root, root)
%{script_dir}/%{name}
%{script_dir}/%{name}-ctl-*
%{_bindir}/timelimit
%{_sbindir}/btestls
# must be readable by package build user of bareos-regress.
%attr(0644, %{daemon_user}, %{daemon_group}) %config(noreplace) %{_sysconfdir}/%{name}/%{name}-regress.conf

%if 0%{?webui}
%files webui
%dir %{_datadir}/%{name}-webui
%dir %{_sysconfdir}/%{name}-webui
%{_datadir}/%{name}-webui/*
%config(noreplace) %{_sysconfdir}/%{name}-webui/configuration.ini
%config(noreplace) %{_sysconfdir}/%{name}-webui/directors.ini
%config(noreplace) %{_sysconfdir}/httpd/conf.d/bareos-webui.conf
%endif

#
# Define some macros for updating the system settings.
#

%global create_group() \
getent group %1 > /dev/null || groupadd -r %1 \
%nil

%global create_user() \
getent passwd %1 > /dev/null || useradd -r -c "%1 user" -d %{working_dir} -g %{daemon_group} -s /sbin/nologin %1 \
%nil

%post director
%{script_dir}/%{name}-config initialize_local_hostname
%{script_dir}/%{name}-config initialize_passwords
%{script_dir}/%{name}-config initialize_database_driver
%systemd_post %{name}-dir.service

%post storage
# pre script has already generated the storage daemon user,
# but here we add the user to additional groups
%{script_dir}/%{name}-config setup_sd_user
%{script_dir}/%{name}-config initialize_local_hostname
%{script_dir}/%{name}-config initialize_passwords
%systemd_post %{name}-sd.service


%post filedaemon
%{script_dir}/%{name}-config initialize_local_hostname
%{script_dir}/%{name}-config initialize_passwords
%systemd_post %{name}-fd.service

%post bconsole
%{script_dir}/bareos-config initialize_local_hostname
%{script_dir}/bareos-config initialize_passwords

%post common -p /sbin/ldconfig

%postun common -p /sbin/ldconfig

%post database-common -p /sbin/ldconfig

%postun database-common -p /sbin/ldconfig

%post database-postgresql -p /sbin/ldconfig

%postun database-postgresql -p /sbin/ldconfig

%post database-mysql -p /sbin/ldconfig

%postun database-mysql -p /sbin/ldconfig

%if 0%{?build_sqlite3}
%post database-sqlite3 -p /sbin/ldconfig

%postun database-sqlite3 -p /sbin/ldconfig
%endif


%if 0%{?build_qt_monitor}
%post traymonitor
%{script_dir}/bareos-config initialize_local_hostname
%{script_dir}/bareos-config initialize_passwords
%endif

%pre director
%create_group %{daemon_group}
%create_user  %{director_daemon_user}
exit 0

%pre storage
%create_group %{daemon_group}
%create_user  %{storage_daemon_user}
exit 0

%pre filedaemon
%create_group %{daemon_group}
%create_user  %{storage_daemon_user}
exit 0

%pre common
%create_group %{daemon_group}
%create_user  %{daemon_user}
exit 0

%preun director
%systemd_preun %{name}-dir.service

%preun storage
%systemd_preun %{name}-sd.service

%preun filedaemon
%systemd_preun %{name}-fd.service

%postun director
%systemd_postun_with_restart %{name}-dir.service

%postun storage
%systemd_postun_with_restart %{name}-sd.service

%postun filedaemon
%systemd_postun_with_restart %{name}-fd.service

%changelog
* Wed Feb 26  2020 Frank Büttner <bugzilla@terrortux.de> - 19.2.6-1
- Update to 19.2.6

* Mon Feb 03 2020 Frank Büttner <bugzilla@terrortux.de> - 19.2.5-1
- Update to 19.2.5

* Sat Feb 01 2020 Frank Büttner <bugzilla@terrortux.de> - 19.2.4-1
- Update to 19.2.4
- Use python3 only.

* Sat Jan 04 2020 Frank Büttner <bugzilla@terrortux.de> - 18.2.7-2 
- Restart storage daemon on update
- Restart director on update
- Add needed Python sslpsk module
- Change the permission for the log dir to 0750
- Require network-online instand of network target for the unit files
- Fix php build requires
- Add Fedora 31 

* Fri Dec 13 2019 Frank Büttner <bugzilla@terrortux.de> - 18.2.7-1
- Update to 18.2.7

* Sun Mar 31 2019 Frank Büttner <bugzilla@terrortux.de> 18.2.6-1
- Update to 18.2.6
- Remove old Fedora (<28) support
- Remove unneeded scripts

* Sun Jan 27 2019 Frank Büttner <bugzilla@terrortux.de> 18.2.4-1
- Build rc2
bareos.spec (38,984 bytes)   
tuxmaster

tuxmaster

2020-02-26 20:15

reporter   ~0003870

It looks like, ndmp is not linked again the bareos lib, which contains kBareosVersionStrings.
core/src/ndmp/CMakeLists.txt:
target_link_libraries(bareosndmp ${WRAP_LIBS} ${TIRPC_LIBRARIES})
target_link_libraries(ndmjob bareosndmp)
On both I can't see an link dependency to libbareos.

WRAP_LIBS is never filled with live.:
bareos-Release-19.2.6]$ grep -R WRAP_LIBS .
./core/src/ndmp/CMakeLists.txt:target_link_libraries(bareosndmp ${WRAP_LIBS} ${TIRPC_LIBRARIES})
arogge

arogge

2020-02-27 11:56

manager   ~0003874

The fastlz package is not required in 19.2 anymore (we integrated that into bareos core).
Could you check if building with the specfile from core/platforms/packaging/bareos.spec works? I'd like to find out if the problem is our buildsystem or the SPECfile. You can also grab the src.rpm from download.bareos.org and throw that one at your mock installation. That's using the mentined specfile and has the sources prepared according to the SPEC, so you don't need to recompress or anything.

and btw. thank you for taking the time to improve Bareos!
arogge

arogge

2020-02-27 11:57

manager   ~0003875

And before it forget that: if it doesn't build for you it is clearly a bug. We just need to find out why it builds for us and not for you and whether we want to invest the time to fix it ourselves.
tuxmaster

tuxmaster

2020-02-28 10:28

reporter   ~0003879

Before I can test the spec file an patch was needed. (Which I have included)
After that, rpmbuild -bs will thrown warning, but an srpm file was created:
rpmbuild -bs bareos-Release-19.2.6/core/platforms/packaging/bareos.spec
Warnung: extra tokens at the end of %endif directive in line 1190: %endif # not client_only

Warnung: extra tokens at the end of %endif directive in line 1372: %endif # client_only

Warnung: extra tokens at the end of %endif directive in line 1431: %endif # python_plugins

And the build fails also with:

/usr/bin/ld: CMakeFiles/ndmjob.dir/ndmjob_args.c.o: in function `ndmjob_version_info':
/builddir/build/BUILD/bareos-Release-19.2.6/my-build/core/src/ndmp/./src/ndmp/ndmjob_args.c:709: undefined reference to `kBareosVersionStrings'
collect2: error: ld returned 1 exit status
make[2]: *** [core/src/ndmp/CMakeFiles/ndmjob.dir/build.make:194: core/src/ndmp/ndmjob] Error 1
make[2]: Leaving directory '/builddir/build/BUILD/bareos-Release-19.2.6/my-build'
make[1]: *** [CMakeFiles/Makefile2:1981: core/src/ndmp/CMakeFiles/ndmjob.dir/all] Error 2
spec.patch (697 bytes)   
diff -Nuar bareos-Release-19.2.6.org/core/platforms/packaging/bareos.spec bareos-Release-19.2.6/core/platforms/packaging/bareos.spec
--- bareos-Release-19.2.6.org/core/platforms/packaging/bareos.spec	2020-02-28 10:19:03.210099778 +0100
+++ bareos-Release-19.2.6/core/platforms/packaging/bareos.spec	2020-02-28 10:22:05.641794679 +0100
@@ -5,8 +5,8 @@
 #
 
 Name: 		bareos
-Version: 	0.0.0
-Release: 	0
+Version: 	19.2.6
+Release: 	1
 Group: 		Productivity/Archiving/Backup
 License: 	AGPL-3.0
 BuildRoot: 	%{_tmppath}/%{name}-root
@@ -188,7 +188,7 @@
 BuildRequires: git-core
 %endif
 
-Source0: %{name}-%{version}.tar.bz2
+Source0: %{name}-Release-%{version}.tar.gz
 
 BuildRequires: pam-devel
 
spec.patch (697 bytes)   
tuxmaster

tuxmaster

2020-02-28 10:31

reporter   ~0003880

Her the build log of "our" spec file.
build-3.log (388,034 bytes)
tuxmaster

tuxmaster

2020-04-11 11:11

reporter   ~0003938

The kBareosVersionStrings error was result in an missing lib link. I have fixed it with:
https://github.com/bareos/bareos/pull/480
arogge

arogge

2020-04-14 13:11

manager   ~0003939

Patches applied to master and 19.2 branches.
Thank you very much for your contribution!

Issue History

Date Modified Username Field Change
2020-02-01 12:19 tuxmaster New Issue
2020-02-01 12:19 tuxmaster File Added: build.log
2020-02-03 15:51 arogge Assigned To => arogge
2020-02-03 15:51 arogge Status new => feedback
2020-02-03 15:51 arogge Note Added: 0003726
2020-02-26 17:01 arogge Status feedback => resolved
2020-02-26 17:01 arogge Resolution open => unable to reproduce
2020-02-26 17:01 arogge Note Added: 0003862
2020-02-26 17:01 arogge Status resolved => closed
2020-02-26 17:06 tuxmaster Status closed => new
2020-02-26 17:06 tuxmaster Resolution unable to reproduce => reopened
2020-02-26 17:06 tuxmaster Note Added: 0003863
2020-02-26 17:27 arogge Note Added: 0003864
2020-02-26 17:27 arogge Status new => feedback
2020-02-26 17:53 tuxmaster File Added: bareos-version.patch
2020-02-26 17:53 tuxmaster File Added: build-2.log
2020-02-26 17:53 tuxmaster File Added: installed_pkgs.log
2020-02-26 17:53 tuxmaster Note Added: 0003865
2020-02-26 17:53 tuxmaster Status feedback => assigned
2020-02-26 18:32 arogge Status assigned => feedback
2020-02-26 18:32 arogge Note Added: 0003867
2020-02-26 19:06 tuxmaster File Added: bareos.spec
2020-02-26 19:06 tuxmaster Note Added: 0003869
2020-02-26 19:06 tuxmaster Status feedback => assigned
2020-02-26 20:15 tuxmaster Note Added: 0003870
2020-02-27 11:56 arogge Note Added: 0003874
2020-02-27 11:57 arogge Note Added: 0003875
2020-02-28 10:28 tuxmaster File Added: spec.patch
2020-02-28 10:28 tuxmaster Note Added: 0003879
2020-02-28 10:31 tuxmaster File Added: build-3.log
2020-02-28 10:31 tuxmaster Note Added: 0003880
2020-04-11 11:11 tuxmaster Note Added: 0003938
2020-04-14 13:11 arogge Status assigned => resolved
2020-04-14 13:11 arogge Resolution reopened => fixed
2020-04-14 13:11 arogge Note Added: 0003939
2020-04-14 13:11 arogge Status resolved => closed