From arekm at maven.pl Tue May 3 22:59:14 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Tue, 3 May 2016 22:59:14 +0200 Subject: python rebuild procedure? Message-ID: <201605032259.14224.arekm@maven.pl> What's the rebuild procedure in case of openssl bump after this change? commit 9a0fad23f3d83106291fc38815d3fa40a2063ee7 Author: Elan Ruusam?e Date: Fri Mar 4 10:10:31 2016 +0200 openssl 1.0.2g rebuild, strict openssl version dep See recent openssh/python/python3 build logs. -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From glen at pld-linux.org Tue May 3 23:12:10 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 4 May 2016 00:12:10 +0300 Subject: python rebuild procedure? In-Reply-To: <201605032259.14224.arekm@maven.pl> References: <201605032259.14224.arekm@maven.pl> Message-ID: <5729142A.8070404@pld-linux.org> not sure, maybe the strict dep can be dropped as last time it was due broken openssl build breaking sslv2 symbols. but i'd rather keep it strict dep, as it has been broken several times in the past if openssl was upgraded because rpm doesn't support forward library dependencies. i.e if python was compiled with openssl 1.0.0 being installed at compile time then having the same old python installed but openssl upgraded to 1.1.1 installed will still work, but not opposite way. or something like such scenario. somebody suggested to add version map to openssl like debian does, but that was just left as the discussion, nothing actually implemented. the threads are several years old so it takes time to find those. On 03.05.2016 23:59, Arkadiusz Mi?kiewicz wrote: > What's the rebuild procedure in case of openssl bump after this change? > > > commit 9a0fad23f3d83106291fc38815d3fa40a2063ee7 > Author: Elan Ruusam?e > Date: Fri Mar 4 10:10:31 2016 +0200 > > openssl 1.0.2g rebuild, strict openssl version dep > > > See recent openssh/python/python3 build logs. > -- glen From glen at pld-linux.org Wed May 4 11:11:07 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 4 May 2016 12:11:07 +0300 Subject: python3 optional deps Message-ID: <5729BCAB.3040402@pld-linux.org> can someone check (and fix?) why those optional deps: https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 extras_require = { ':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5', ':python_version < "3.3"': 'ipaddress >= 1.0.16', } end up in python3 egg and therefore rpm deps: 1. error:[python-docker.spec ] python3-docker-1.8.1-1.noarch: req python3egg(backports.ssl-match-hostname) >= 3.5 not found 2. error:[python-docker.spec ] python3-docker-1.8.1-1.noarch: req python3egg(ipaddress) >= 1.0.16 not found spec itself is here: https://github.com/pld-linux/python-docker/blob/auto/th/python-docker-1.8.1-1/python-docker.spec -- glen From glen at pld-linux.org Wed May 4 11:17:44 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 4 May 2016 12:17:44 +0300 Subject: python rebuild procedure? In-Reply-To: <201605032259.14224.arekm@maven.pl> References: <201605032259.14224.arekm@maven.pl> Message-ID: <5729BE38.6070908@pld-linux.org> On 03.05.2016 23:59, Arkadiusz Mi?kiewicz wrote: > What's the rebuild procedure in case of openssl bump after this change? python2 fixed, python3 looks like broken due other reasons, fails with install even without tests. -- glen From jajcus at jajcus.net Wed May 4 12:07:39 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Wed, 4 May 2016 12:07:39 +0200 Subject: python rebuild procedure? In-Reply-To: <5729BE38.6070908@pld-linux.org> References: <201605032259.14224.arekm@maven.pl> <5729BE38.6070908@pld-linux.org> Message-ID: On 2016-05-04 11:17, Elan Ruusam?e wrote: > On 03.05.2016 23:59, Arkadiusz Mi?kiewicz wrote: >> What's the rebuild procedure in case of openssl bump after this change? > > python2 fixed, python3 looks like broken due other reasons, fails with > install even without tests. That could be because of the recent changes to python3.spec by Jan, which I knew they are breaking something, but I couldn't tell what. Does python3.spec build with older python3? Jacek From glen at pld-linux.org Wed May 4 13:25:30 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 4 May 2016 14:25:30 +0300 Subject: python rebuild procedure? In-Reply-To: References: <201605032259.14224.arekm@maven.pl> <5729BE38.6070908@pld-linux.org> Message-ID: <5729DC2A.9020605@pld-linux.org> On 04.05.2016 13:07, Jacek Konieczny wrote: > That could be because of the recent changes to python3.spec by Jan, > which I knew they are breaking something, but I couldn't tell what. seems builds now after arekm changes (whatever they were) -- glen From arekm at maven.pl Wed May 4 13:28:38 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Wed, 4 May 2016 13:28:38 +0200 Subject: python rebuild procedure? In-Reply-To: <5729DC2A.9020605@pld-linux.org> References: <201605032259.14224.arekm@maven.pl> <5729DC2A.9020605@pld-linux.org> Message-ID: <201605041328.38070.arekm@maven.pl> On Wednesday 04 of May 2016, Elan Ruusam?e wrote: > On 04.05.2016 13:07, Jacek Konieczny wrote: > > That could be because of the recent changes to python3.spec by Jan, > > which I knew they are breaking something, but I couldn't tell what. > > seems builds now after arekm changes (whatever they were) poldek -uGv python3-modules --nodeps --force, after that it builds (--without tests) -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From adwol at zonk.pl Thu May 5 21:57:45 2016 From: adwol at zonk.pl (Adam Osuchowski) Date: Thu, 5 May 2016 21:57:45 +0200 Subject: ruby-mail conflicts Message-ID: <20160505195745.6b8b4567@zonk.pl> poldek:/all-avail> freshen ruby-mail Processing dependencies... ruby-mail-2.5.4-3.noarch obsoleted by ruby-mail-2.6.4-1.noarch error: ruby-mail-2.6.4-1.noarch (cap ruby-mail = 2.6.4-1) conflicts with installed ruby-rails-3.2.19-3.noarch (ruby-mail >= 2.6) There are 1 package to install, 1 to remove: I ruby-mail-2.6.4-1.noarch R ruby-mail-2.5.4-3.noarch This operation will use 809.7KB of disk space. Need to get 226.0KB of archives (226.0KB to download). error: 1 conflicts There were errors Is ruby-mail package obsoleted by ruby-rails? If so, why didn't old version be removed? From jajcus at jajcus.net Fri May 6 09:11:26 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Fri, 6 May 2016 09:11:26 +0200 Subject: python3 optional deps In-Reply-To: <5729BCAB.3040402@pld-linux.org> References: <5729BCAB.3040402@pld-linux.org> Message-ID: On 2016-05-04 11:11, Elan Ruusam?e wrote: > > can someone check (and fix?) why those optional deps: > https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 > > > > > extras_require = { > > ':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5', > > ':python_version < "3.3"': 'ipaddress >= 1.0.16', > > } > > > > end up in python3 egg and therefore rpm deps: They will end up in the egg, that is the design. Those should not be converted to rpm deps, though. And for python3 package these deps are useless even in the egg-info. I guess the python dependency generator should be fixed in our RPM, to ignore the 'extras' dependencies (or to make them 'suggest', skipping the ':python_version' ones. The easy fix for python-docker.spec would be to strip those from docker_py-1.8.1-py3.5.egg-info/requires.txt (everything from the first '['). Jacek From glen at pld-linux.org Fri May 6 09:41:41 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 6 May 2016 10:41:41 +0300 Subject: python3 optional deps In-Reply-To: References: <5729BCAB.3040402@pld-linux.org> Message-ID: <572C4AB5.4060800@pld-linux.org> On 06.05.2016 10:11, Jacek Konieczny wrote: > > I guess the python dependency generator should be fixed in our RPM, to > ignore the 'extras' dependencies (or to make them 'suggest', skipping > the ':python_version' ones. is there python module to parse the egg info? or just manual parsing each time btw, maybe it's better to extract the python dependency generators as separate package, out of rpm sourcetree? it would be a lot simplier to maintain, than patching patch patching the previous patch. our patches will likely never end up upstream. -- glen From jajcus at jajcus.net Fri May 6 10:47:57 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Fri, 6 May 2016 10:47:57 +0200 Subject: python3 optional deps In-Reply-To: <572C4AB5.4060800@pld-linux.org> References: <5729BCAB.3040402@pld-linux.org> <572C4AB5.4060800@pld-linux.org> Message-ID: <7785aa5d-eae0-bb9a-214d-1083305e7ba1@jajcus.net> On 2016-05-06 09:41, Elan Ruusam?e wrote: > On 06.05.2016 10:11, Jacek Konieczny wrote: >> >> I guess the python dependency generator should be fixed in our RPM, to >> ignore the 'extras' dependencies (or to make them 'suggest', skipping >> the ':python_version' ones. > is there python module to parse the egg info? or just manual parsing > each time > > btw, maybe it's better to extract the python dependency generators as > separate package, out of rpm sourcetree? > it would be a lot simplier to maintain, than patching patch patching the > previous patch. our patches will likely never end up upstream. Feel free to separate it :-) I can try to fix it then. Jacek From glen at pld-linux.org Fri May 6 10:59:17 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 6 May 2016 11:59:17 +0300 Subject: python3 optional deps In-Reply-To: <7785aa5d-eae0-bb9a-214d-1083305e7ba1@jajcus.net> References: <5729BCAB.3040402@pld-linux.org> <572C4AB5.4060800@pld-linux.org> <7785aa5d-eae0-bb9a-214d-1083305e7ba1@jajcus.net> Message-ID: <572C5CE5.7070607@pld-linux.org> On 06.05.2016 11:47, Jacek Konieczny wrote: > > Feel free to separate it :-) sure. suggest package name? looks like there's just one file to move: /usr/lib/rpm/pythoneggs.py or just move it to rpm-build-macros package? -- glen From jajcus at jajcus.net Fri May 6 13:36:15 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Fri, 6 May 2016 13:36:15 +0200 Subject: python3 optional deps In-Reply-To: <572C5CE5.7070607@pld-linux.org> References: <5729BCAB.3040402@pld-linux.org> <572C4AB5.4060800@pld-linux.org> <7785aa5d-eae0-bb9a-214d-1083305e7ba1@jajcus.net> <572C5CE5.7070607@pld-linux.org> Message-ID: <9dda8ba8-9f62-d705-7da0-ff4bdae56924@jajcus.net> On 2016-05-06 10:59, Elan Ruusam?e wrote: > On 06.05.2016 11:47, Jacek Konieczny wrote: >> >> Feel free to separate it :-) > sure. suggest package name? rpm-pythonprov? It is already a separate package, just built with whole RPM. > > looks like there's just one file to move: > /usr/lib/rpm/pythoneggs.py [jajcus at jajo ~]$ rpm -ql rpm-pythonprov /usr/lib/rpm/pythondeps.sh /usr/lib/rpm/pythoneggs.py Jacek From n3npq at mac.com Fri May 6 14:48:26 2016 From: n3npq at mac.com (Jeff Johnson) Date: Fri, 06 May 2016 08:48:26 -0400 Subject: python3 optional deps In-Reply-To: <572C4AB5.4060800@pld-linux.org> References: <5729BCAB.3040402@pld-linux.org> <572C4AB5.4060800@pld-linux.org> Message-ID: <23EA140E-B69B-47B9-A3F5-6F480E01A5E4@mac.com> On May 6, 2016, at 3:41 AM, Elan Ruusam?e wrote: > On 06.05.2016 10:11, Jacek Konieczny wrote: >> >> I guess the python dependency generator should be fixed in our RPM, to ignore the 'extras' dependencies (or to make them 'suggest', skipping the ':python_version' ones. > is there python module to parse the egg info? or just manual parsing each time > > btw, maybe it's better to extract the python dependency generators as separate package, out of rpm sourcetree? > it would be a lot simplier to maintain, than patching patch patching the previous patch. our patches will likely never end up upstream. > Submit any patches for rpm you wish. Meanwhile, rpm cannot carry extractors for every possible dependency forever, that simply does not scale. 73 de Jeff From bszx-pld at bszx.eu Sat May 7 11:16:33 2016 From: bszx-pld at bszx.eu (Bartek Szady) Date: Sat, 7 May 2016 11:16:33 +0200 Subject: man-pages-4.05-1.noarch conflicts with lirc-0.9.3a-1.x86_64 Message-ID: <572DB271.7080600@bszx.eu> Processing dependencies... man-pages-4.02-1.noarch obsoleted by man-pages-4.05-1.noarch man-pages-posix-4.02-1.noarch obsoleted by man-pages-posix-4.05-1.noarch There are 2 packages to install, 2 to remove: I man-pages-4.05-1.noarch man-pages-posix-4.05-1.noarch R man-pages-4.02-1.noarch man-pages-posix-4.02-1.noarch This operation will use 57.5KB of disk space. Need to get 11.0MB of archives. Executing pm-command.sh --upgrade -vh --root / --define _check_dirname_deps 1... Preparing... ########################################### [100%] error: Install/Erase problems: file /usr/share/man/man4/lirc.4.gz from install of man-pages-4.05-1.noarch conflicts with file from package lirc-0.9.3a-1.x86_64 There were errors From qboosh at pld-linux.org Sun May 8 21:52:07 2016 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Sun, 8 May 2016 21:52:07 +0200 Subject: python3 optional deps In-Reply-To: References: <5729BCAB.3040402@pld-linux.org> Message-ID: <20160508195207.GA1714@mail> On Fri, May 06, 2016 at 09:11:26AM +0200, Jacek Konieczny wrote: > On 2016-05-04 11:11, Elan Ruusam?e wrote: > > > >can someone check (and fix?) why those optional deps: > >https://github.com/docker/docker-py/blob/1.8.1/setup.py#L14-L17 > > > > > > > > > > extras_require = { > > > > ':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5', > > > > ':python_version < "3.3"': 'ipaddress >= 1.0.16', > > > > } > > > > > > > >end up in python3 egg and therefore rpm deps: > > They will end up in the egg, that is the design. Those should not be > converted to rpm deps, though. And for python3 package these deps are > useless even in the egg-info. The other problem IIRC is that even python3egg dependencies with python_version conditions are resolved using system python2 version (because python dependency generator is run with python2). -- Jakub Bogusz http://qboosh.pl/ From qboosh at pld-linux.org Tue May 10 06:25:51 2016 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Tue, 10 May 2016 06:25:51 +0200 Subject: man-pages-4.05-1.noarch conflicts with lirc-0.9.3a-1.x86_64 In-Reply-To: <572DB271.7080600@bszx.eu> References: <572DB271.7080600@bszx.eu> Message-ID: <20160510042551.GB5623@mail> On Sat, May 07, 2016 at 11:16:33AM +0200, Bartek Szady wrote: > Processing dependencies... > man-pages-4.02-1.noarch obsoleted by man-pages-4.05-1.noarch > man-pages-posix-4.02-1.noarch obsoleted by man-pages-posix-4.05-1.noarch > There are 2 packages to install, 2 to remove: > I man-pages-4.05-1.noarch man-pages-posix-4.05-1.noarch > R man-pages-4.02-1.noarch man-pages-posix-4.02-1.noarch > This operation will use 57.5KB of disk space. > Need to get 11.0MB of archives. > Executing pm-command.sh --upgrade -vh --root / --define > _check_dirname_deps 1... > Preparing... ########################################### [100%] > error: Install/Erase problems: > file /usr/share/man/man4/lirc.4.gz from install of > man-pages-4.05-1.noarch conflicts with file from package > lirc-0.9.3a-1.x86_64 > There were errors Fixed in lirc-0.9.3a-2 / man-pages-4.05-2. -- Jakub Bogusz http://qboosh.pl/ From n3npq at me.com Tue May 10 08:12:25 2016 From: n3npq at me.com (Jeffrey Johnson) Date: Tue, 10 May 2016 02:12:25 -0400 Subject: man-pages-4.05-1.noarch conflicts with lirc-0.9.3a-1.x86_64 In-Reply-To: <20160510042551.GB5623@mail> References: <572DB271.7080600@bszx.eu> <20160510042551.GB5623@mail> Message-ID: <97BA4AB0-C439-430C-BEC9-7AB285D89CCA@me.com> > On May 10, 2016, at 12:25 AM, Jakub Bogusz wrote: > > Fixed in lirc-0.9.3a-2 / man-pages-4.05-2. > Is file conflict detection an RPM misfeature? It would not be impossibly hard to resolve a file conflict automatically, perhaps with an alternatives-like symlink farm analogue mechanism to permit multiple copies to coexist. 73 de Jeff From glen at pld-linux.org Tue May 10 12:30:35 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 10 May 2016 13:30:35 +0300 Subject: man-pages-4.05-1.noarch conflicts with lirc-0.9.3a-1.x86_64 In-Reply-To: <97BA4AB0-C439-430C-BEC9-7AB285D89CCA@me.com> References: <572DB271.7080600@bszx.eu> <20160510042551.GB5623@mail> <97BA4AB0-C439-430C-BEC9-7AB285D89CCA@me.com> Message-ID: <5731B84B.50302@pld-linux.org> On 10.05.2016 09:12, Jeffrey Johnson wrote: >> Fixed in lirc-0.9.3a-2 / man-pages-4.05-2. >> > > Is file conflict detection an RPM misfeature? no. it's packaging mistake (two packages installing same file path) > It would not be impossibly hard to resolve a file conflict automatically, > perhaps with an alternatives-like symlink farm analogue mechanism > to permit multiple copies to coexist. there's no alternatives, two packages should not provide same file. lirc one was the outdated one, according to commits made. -- glen From n3npq at mac.com Tue May 10 16:05:29 2016 From: n3npq at mac.com (Jeff Johnson) Date: Tue, 10 May 2016 10:05:29 -0400 Subject: man-pages-4.05-1.noarch conflicts with lirc-0.9.3a-1.x86_64 In-Reply-To: <5731B84B.50302@pld-linux.org> References: <572DB271.7080600@bszx.eu> <20160510042551.GB5623@mail> <97BA4AB0-C439-430C-BEC9-7AB285D89CCA@me.com> <5731B84B.50302@pld-linux.org> Message-ID: <0C5263FB-DE70-4089-A5C9-7BBAFFCB0A19@mac.com> On May 10, 2016, at 6:30 AM, Elan Ruusam?e wrote: > On 10.05.2016 09:12, Jeffrey Johnson wrote: >>> Fixed in lirc-0.9.3a-2 / man-pages-4.05-2. >>> > >> Is file conflict detection an RPM misfeature? > no. it's packaging mistake (two packages installing same file path) > Of course it is a packaging mistake: I have fixed dozens of file conflcts from duplicate man pages The question was about detecting and failing an rpm upgrade when there is duplicate content. EVen when content is identical, there is a timestamp in some compression formats (yes there is an option to remove the timestamp), and/or the buildtime on the file can/will differ. There are alternative automated resolutions other than human intervention to rebuild the package that might be attempted. >> It would not be impossibly hard to resolve a file conflict automatically, >> perhaps with an alternatives-like symlink farm analogue mechanism >> to permit multiple copies to coexist. > there's no alternatives, two packages should not provide same file. > Alternatives (fundamentally) is just a symlink to a unique file path. RPM could easily install the file on a unique path and install a symlink, and even add the configuration so that alternatives(8) (literally) could be used to resolve the file conflict on the machine being installed. All of the above has to do with automating (at least temporarily) the install instead of just failing. > lirc one was the outdated one, according to commits made. > There are other relatively simple automations: 1) FIFO - first version is installed, all other file versions are skipped. 2) LIFO - last version clobbers all other file versions. 3) largest - the bigger file is installed 4) newest - the newest modify time is installed 5) masked - a file conflict automated resolution is read from configuration. The majority of manual file conflict resolutions are one of the above. There's also a means to detect file conflicts at buildtime and fail the build, not the install later, if rpmbuild attempts to maintain a collection of all current headers in a database, and checks for file conflicts at the end of successful builds. 73 de Jeff > -- > glen > > _______________________________________________ > pld-devel-en mailing list > pld-devel-en at lists.pld-linux.org > http://lists.pld-linux.org/mailman/listinfo/pld-devel-en From glen at pld-linux.org Fri May 13 18:24:55 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 13 May 2016 19:24:55 +0300 Subject: python in docker In-Reply-To: <572CBDA8.3030703@pld-linux.org> References: <572CBDA8.3030703@pld-linux.org> Message-ID: <5735FFD7.6030103@pld-linux.org> i was thinking adding tzdata-zoneinfo subpackage, this way wouldn't break any existing installations, altho clearly tzdata-init would be better package name. or add tzdata-init and tzdata require tzdata-init for some undefined migration time? On 06.05.2016 18:52, Elan Ruusam?e wrote: > so, i install some stuff with pip, and one package pulled in whole > distro: > > what you think should we make tzdata be optional with rc-scripts > dependency somehow? > > python-dateutil-2.5.0-1.noarch marks tzdata-2016c-1.noarch (cap tzdata > >= 2016a) > tzdata-2016c-1.noarch marks rc-scripts-0.4.15-4.x86_64 (cap > /etc/rc.d/init.d) > rc-scripts-0.4.15-4.x86_64 marks gettext-0.19.7-2.x86_64 (cap > /bin/gettext) > rc-scripts-0.4.15-4.x86_64 marks procps-3.3.11-1.x86_64 (cap /bin/ps) > procps-3.3.11-1.x86_64 marks systemd-libs-221-13.x86_64 (cap > libsystemd.so.0()(64bit)) > systemd-libs-221-13.x86_64 marks lz4-libs-r131-4.x86_64 (cap > liblz4.so.1()(64bit)) > rc-scripts-0.4.15-4.x86_64 marks SysVinit-tools-2.88-18.x86_64 (cap > SysVinit-tools >= 2.88-1) > rc-scripts-0.4.15-4.x86_64 marks findutils-4.6.0-1.x86_64 (cap > findutils) > rc-scripts-0.4.15-4.x86_64 marks hostname-3.17-1.x86_64 (cap hostname) > rc-scripts-0.4.15-4.x86_64 marks libutempter-1.1.6-5.x86_64 (cap > libutempter >= 1.1.6-2) > libutempter-1.1.6-5.x86_64 marks pwdutils-3.2.19-4.x86_64 (cap > /usr/sbin/groupadd) > pwdutils-3.2.19-4.x86_64 marks pam-1.1.8-8.x86_64 (cap /etc/pam.d) > pam-1.1.8-8.x86_64 marks pam-libs-1.1.8-8.x86_64 (cap > /lib64/security/pam_filter) > pam-1.1.8-8.x86_64 marks cracklib-2.9.6-2.x86_64 (cap cracklib >= > 2.8.3) > pam-1.1.8-8.x86_64 marks cracklib-dicts-2.9.6-1.noarch (cap > cracklib-dicts >= 2.8.3) > pam-1.1.8-8.x86_64 marks libtirpc-0.3.2-1.x86_64 (cap > libtirpc.so.1()(64bit)) > libtirpc-0.3.2-1.x86_64 marks heimdal-libs-1.5.3-5.x86_64 (cap > heimdal-libs) > heimdal-libs-1.5.3-5.x86_64 marks libcom_err-1.42.13-1.x86_64 > (cap libcom_err >= 1.41.11) > pam-1.1.8-8.x86_64 marks libxcrypt-3.0.2-3.x86_64 (cap > libxcrypt.so.2()(64bit)) > pwdutils-3.2.19-4.x86_64 marks openldap-libs-2.4.43-3.x86_64 (cap > liblber-2.4.so.2()(64bit)) > openldap-libs-2.4.43-3.x86_64 marks > cyrus-sasl-libs-2.1.26-5.x86_64 (cap cyrus-sasl-libs = 2.1.26) > pwdutils-3.2.19-4.x86_64 marks libnscd-2.0.2-4.x86_64 (cap > libnscd.so.1()(64bit)) > rc-scripts-0.4.15-4.x86_64 marks psmisc-22.21-1.x86_64 (cap psmisc > >= 22.5-2) > rc-scripts-0.4.15-4.x86_64 marks util-linux-2.27.1-2.x86_64 (cap > util-linux >= 2.22.1) > util-linux-2.27.1-2.x86_64 marks libblkid-2.27.1-2.x86_64 (cap > libblkid = 2.27.1-2) > libblkid-2.27.1-2.x86_64 marks libuuid-2.27.1-2.x86_64 (cap > libuuid = 2.27.1-2) > util-linux-2.27.1-2.x86_64 marks libcap-ng-0.7.7-3.x86_64 (cap > libcap-ng.so.0()(64bit)) > util-linux-2.27.1-2.x86_64 marks libfdisk-2.27.1-2.x86_64 (cap > libfdisk = 2.27.1-2) > util-linux-2.27.1-2.x86_64 marks libmount-2.27.1-2.x86_64 (cap > libmount.so.1()(64bit)) > util-linux-2.27.1-2.x86_64 marks libsmartcols-2.27.1-2.x86_64 (cap > libsmartcols = 2.27.1-2) > util-linux-2.27.1-2.x86_64 marks udev-libs-221-13.x86_64 (cap > libudev.so.1()(64bit)) > rc-scripts-0.4.15-4.x86_64 marks SysVinit-2.88-18.x86_64 (cap > virtual(init-daemon)) > ... > -- glen From gotar at polanet.pl Sun May 15 11:57:27 2016 From: gotar at polanet.pl (Tomasz Pala) Date: Sun, 15 May 2016 11:57:27 +0200 Subject: /usr/lib64/jvm/java symlink Message-ID: <20160515095727.GA29549@polanet.pl> I'm trying to compile qgis using gdal: /usr/bin/ld: warning: libjvm.so, needed by /usr/lib64/gcc/x86_64-pld-linux/5.3.0/../../../../lib64/libgdal.so, not found (try using -rpath or -rpath-link) gdal.rpm requires libjvm.so, so I've installed the same java version it was compiled with, i.e. openjdk8-jre-base; however libgdal.so uses /usr/lib64/jvm/java path, which exists in openjdk8-jdk: /usr/lib64/jvm/java -> openjdk8-8u72.b15 JRE contains only openjdk8-jre -> openjdk8-8u72.b15/jre symlink. Something needs to be fixed: either - gdal should require JDK package - overkill, or - symlink should be moved to JRE, or - symlink should be moved to some java-default package and this one should be required by gdal, - or anything you can propose, I'm not familiar with java. The one suggestion I might make, is changing java symlink to: /usr/lib64/jvm/java -> openjdk8-jre (without version/build/whatever this is) to make sure, that JRE (e.g. openjdk8-jre) points to the same place in case multiple versions are installed. -- Tomasz Pala From jajcus at jajcus.net Sun May 15 14:29:30 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Sun, 15 May 2016 14:29:30 +0200 Subject: /usr/lib64/jvm/java symlink In-Reply-To: <20160515095727.GA29549@polanet.pl> References: <20160515095727.GA29549@polanet.pl> Message-ID: <57386BAA.5080900@jajcus.net> On 2016-05-15 11:57, Tomasz Pala wrote: > I'm trying to compile qgis using gdal: > > /usr/bin/ld: warning: libjvm.so, needed by /usr/lib64/gcc/x86_64-pld-linux/5.3.0/../../../../lib64/libgdal.so, not found (try using -rpath or -rpath-link) > > gdal.rpm requires libjvm.so, so I've installed the same java version it was > compiled with, i.e. openjdk8-jre-base; however libgdal.so uses > /usr/lib64/jvm/java path, which exists in openjdk8-jdk: > /usr/lib64/jvm/java -> openjdk8-8u72.b15 > JRE contains only > openjdk8-jre -> openjdk8-8u72.b15/jre > symlink. > > Something needs to be fixed: either > - gdal should require JDK package - overkill, or It is link time dependency, so it would be normal do include 'devel' package and JDK is 'devel'. But I agree, it is a bit of overkill here. > - symlink should be moved to JRE, IMHO this is the way to go. or > - symlink should be moved to some java-default package and this one > should be required by gdal, The split between *-jre and *-jre-base is just for this ? -jre is the 'default' JRE (only one installed) and -jre-base is the actual JRE, but without anything conflicting with another JRE implementation Jacek From glen at pld-linux.org Tue May 17 22:21:02 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 17 May 2016 23:21:02 +0300 Subject: /usr/lib64/jvm/java symlink In-Reply-To: <20160515095727.GA29549@polanet.pl> References: <20160515095727.GA29549@polanet.pl> Message-ID: <573B7D2E.7090700@pld-linux.org> On 15.05.2016 12:57, Tomasz Pala wrote: > I'm trying to compile qgis using gdal: [cut] looks like anything that wants java and used to build is broken. at least on builders. vtk, gdal ... -- glen From glen at pld-linux.org Wed May 18 13:33:12 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 18 May 2016 14:33:12 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> Message-ID: <573C52F8.6020702@pld-linux.org> On 18.05.2016 14:18, arekm wrote: > commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c > Author: Arkadiusz Mi?kiewicz > Date: Wed May 18 13:16:40 2016 +0200 > > - rel 4; more upstream git branch updates > > glibc-git.patch | 60944 ------------------------------------------------------ > glibc.spec | 3 +- why keep this git.patch in our git, why not upload to distfiles? it's not like it's diff of .patch is something useful to look at. -- glen From arekm at maven.pl Wed May 18 13:54:42 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Wed, 18 May 2016 13:54:42 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573C52F8.6020702@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> Message-ID: <201605181354.42627.arekm@maven.pl> On Wednesday 18 of May 2016, Elan Ruusam?e wrote: > On 18.05.2016 14:18, arekm wrote: > > commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c > > Author: Arkadiusz Mi?kiewicz > > Date: Wed May 18 13:16:40 2016 +0200 > > > > - rel 4; more upstream git branch updates > > > > glibc-git.patch | 60944 > > ------------------------------------------------------ glibc.spec > > | 3 +- > > why keep this git.patch in our git, why not upload to distfiles? > it's not like it's diff of .patch is something useful to look at. Maybe not for you but I was ofter doing git diff and git log on patch files like this to see what has changed etc. -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From glen at pld-linux.org Wed May 18 14:35:36 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 18 May 2016 15:35:36 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <201605181354.42627.arekm@maven.pl> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <201605181354.42627.arekm@maven.pl> Message-ID: <573C6198.30401@pld-linux.org> On 18.05.2016 14:54, Arkadiusz Mi?kiewicz wrote: > On Wednesday 18 of May 2016, Elan Ruusam?e wrote: >> On 18.05.2016 14:18, arekm wrote: >>> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c >>> Author: Arkadiusz Mi?kiewicz >>> Date: Wed May 18 13:16:40 2016 +0200 >>> >>> - rel 4; more upstream git branch updates >>> >>> glibc-git.patch | 60944 >>> ------------------------------------------------------ glibc.spec >>> | 3 +- >> why keep this git.patch in our git, why not upload to distfiles? >> it's not like it's diff of .patch is something useful to look at. > Maybe not for you but I was ofter doing git diff and git log on patch files > like this to see what has changed etc. "log" seems to be mostly just "updated from upstream". https://github.com/pld-linux/glibc/commits/master/glibc-git.patch -- glen From arekm at maven.pl Wed May 18 14:41:53 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Wed, 18 May 2016 14:41:53 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573C6198.30401@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <201605181354.42627.arekm@maven.pl> <573C6198.30401@pld-linux.org> Message-ID: <201605181441.53153.arekm@maven.pl> On Wednesday 18 of May 2016, Elan Ruusam?e wrote: > On 18.05.2016 14:54, Arkadiusz Mi?kiewicz wrote: > > On Wednesday 18 of May 2016, Elan Ruusam?e wrote: > >> On 18.05.2016 14:18, arekm wrote: > >>> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c > >>> Author: Arkadiusz Mi?kiewicz > >>> Date: Wed May 18 13:16:40 2016 +0200 > >>> > >>> - rel 4; more upstream git branch updates > >>> > >>> glibc-git.patch | 60944 > >>> ------------------------------------------------------ glibc.spec > >>> > >>> | 3 +- > >> > >> why keep this git.patch in our git, why not upload to distfiles? > >> it's not like it's diff of .patch is something useful to look at. > > > > Maybe not for you but I was ofter doing git diff and git log on patch > > files like this to see what has changed etc. > > "log" seems to be mostly just "updated from upstream". > > https://github.com/pld-linux/glibc/commits/master/glibc-git.patch use "log -p" -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From jajcus at jajcus.net Wed May 18 15:15:26 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Wed, 18 May 2016 15:15:26 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573C6198.30401@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <201605181354.42627.arekm@maven.pl> <573C6198.30401@pld-linux.org> Message-ID: On 2016-05-18 14:35, Elan Ruusam?e wrote: > On 18.05.2016 14:54, Arkadiusz Mi?kiewicz wrote: >> On Wednesday 18 of May 2016, Elan Ruusam?e wrote: >>> On 18.05.2016 14:18, arekm wrote: >>>> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c >>>> Author: Arkadiusz Mi?kiewicz >>>> Date: Wed May 18 13:16:40 2016 +0200 >>>> >>>> - rel 4; more upstream git branch updates >>>> glibc-git.patch | 60944 >>>> ------------------------------------------------------ glibc.spec >>>> | 3 +- >>> why keep this git.patch in our git, why not upload to distfiles? >>> it's not like it's diff of .patch is something useful to look at. >> Maybe not for you but I was ofter doing git diff and git log on patch >> files >> like this to see what has changed etc. > > "log" seems to be mostly just "updated from upstream". > > https://github.com/pld-linux/glibc/commits/master/glibc-git.patch I hate those 'git patches' and 'updated from upstream' logs. That gives no version information. I would prefer to see some snapshot / upstream revision number, which I could use to check actual changes upstream. Or full upstream patches, with their commit messages. The 'glibc-git.patch' with 'updated from upstream' logs is not much more useful than a random binary blob. Jacek From arekm at maven.pl Wed May 18 15:26:54 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Wed, 18 May 2016 15:26:54 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C6198.30401@pld-linux.org> Message-ID: <201605181526.54888.arekm@maven.pl> On Wednesday 18 of May 2016, Jacek Konieczny wrote: > Or full upstream patches, with their commit messages. The > 'glibc-git.patch' with 'updated from upstream' logs is not much more > useful than a random binary blob. Actually glibc-git.patch contains very detailed change log inside of it. But I understand what you mean. > Jacek -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From glen at delfi.ee Wed May 18 15:32:21 2016 From: glen at delfi.ee (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Wed, 18 May 2016 16:32:21 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573C52F8.6020702@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> Message-ID: <573C6EE5.5030404@delfi.ee> On 18.05.2016 14:33, Elan Ruusam?e wrote: > On 18.05.2016 14:18, arekm wrote: >> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c >> Author: Arkadiusz Mi?kiewicz >> Date: Wed May 18 13:16:40 2016 +0200 >> >> - rel 4; more upstream git branch updates any ideas how or why glibc update caused varnish compile failures (it compiles it's .vcl files to .c -> .so) # service varnish checkconfig Checking Varnish HTTP accelerator configuration...........................................................................................................................................................................................................[ FAIL ] Command failed with error code 106 Message from C-compiler: /usr/bin/ld: /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: unrecognized relocation (0x2a) in section `.init' /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status Running C-compiler failed, exit 1 VCL compilation failed Message from C-compiler: /usr/bin/ld: /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: unrecognized relocation (0x2a) in section `.init' /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status Running C-compiler failed, exit 1 seems simple compilation fails now: # echo 'int main() {}' > a.c # gcc a.c -o test /usr/bin/ld: /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: unrecognized relocation (0x2a) in section `.init' /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status happened after packages update: Wed May 18 09:57:49 2016 tzdata-2016d-1.noarch Wed May 18 09:59:02 2016 glibc-2.23-2.x86_64 Wed May 18 09:59:02 2016 glibc-devel-2.23-2.x86_64 Wed May 18 09:59:02 2016 glibc-devel-utils-2.23-2.x86_64 Wed May 18 09:59:02 2016 glibc-headers-2.23-2.x86_64 Wed May 18 09:59:02 2016 glibc-libcrypt-2.23-2.x86_64 Wed May 18 09:59:02 2016 glibc-misc-2.23-2.x86_64 Wed May 18 09:59:02 2016 iconv-2.23-2.x86_64 Wed May 18 09:59:02 2016 ldconfig-2.23-2.x86_64 other relevant packages: # pkgbytime gcc Mon Sep 14 17:48:10 2015 gcc-4.9.3-1.x86_64 Mon Sep 14 17:48:10 2015 libgcc-4.9.3-1.x86_64 # pkgbytime binutils Mon Sep 14 17:48:10 2015 binutils-2.25.51.0.2-1.x86_64 Mon Sep 14 17:48:10 2015 binutils-libs-2.25.51.0.2-1.x86_64 previous glibc version was: # rpm -q --blink glibc glibc-2.23-2.x86_64 glibc-2.23-2.x86_64.rpm <= glibc-2.23-1.x86_64.rpm -- glen From glen at pld-linux.org Thu May 19 09:50:14 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Thu, 19 May 2016 10:50:14 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573C6EE5.5030404@delfi.ee> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> Message-ID: <573D7036.90000@pld-linux.org> On 18.05.2016 16:32, Elan Ruusam?e wrote: > On 18.05.2016 14:33, Elan Ruusam?e wrote: >> On 18.05.2016 14:18, arekm wrote: >>> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c >>> Author: Arkadiusz Mi?kiewicz >>> Date: Wed May 18 13:16:40 2016 +0200 >>> >>> - rel 4; more upstream git branch updates > > any ideas how or why glibc update caused varnish compile failures (it > compiles it's .vcl files to .c -> .so) > > # service varnish checkconfig > Checking Varnish HTTP accelerator > configuration...........................................................................................................................................................................................................[ > FAIL ] > Command failed with error code 106 > Message from C-compiler: > /usr/bin/ld: > /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: > unrecognized relocation (0x2a) in section `.init' > /usr/bin/ld: final link failed: Bad value > collect2: error: ld returned 1 exit status > Running C-compiler failed, exit 1 > VCL compilation failed > Message from C-compiler: > /usr/bin/ld: > /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: > unrecognized relocation (0x2a) in section `.init' > /usr/bin/ld: final link failed: Bad value > collect2: error: ld returned 1 exit status > Running C-compiler failed, exit 1 > > seems simple compilation fails now: > > # echo 'int main() {}' > a.c > # gcc a.c -o test > /usr/bin/ld: > /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > unrecognized relocation (0x2a) in section `.init' > /usr/bin/ld: final link failed: Bad value > collect2: error: ld returned 1 exit status > > > happened after packages update: > > Wed May 18 09:57:49 2016 tzdata-2016d-1.noarch > Wed May 18 09:59:02 2016 glibc-2.23-2.x86_64 > Wed May 18 09:59:02 2016 glibc-devel-2.23-2.x86_64 > Wed May 18 09:59:02 2016 glibc-devel-utils-2.23-2.x86_64 > Wed May 18 09:59:02 2016 glibc-headers-2.23-2.x86_64 > Wed May 18 09:59:02 2016 glibc-libcrypt-2.23-2.x86_64 > Wed May 18 09:59:02 2016 glibc-misc-2.23-2.x86_64 > Wed May 18 09:59:02 2016 iconv-2.23-2.x86_64 > Wed May 18 09:59:02 2016 ldconfig-2.23-2.x86_64 > > other relevant packages: > > # pkgbytime gcc > Mon Sep 14 17:48:10 2015 gcc-4.9.3-1.x86_64 > Mon Sep 14 17:48:10 2015 libgcc-4.9.3-1.x86_64 > > # pkgbytime binutils > Mon Sep 14 17:48:10 2015 binutils-2.25.51.0.2-1.x86_64 > Mon Sep 14 17:48:10 2015 binutils-libs-2.25.51.0.2-1.x86_64 > > previous glibc version was: > # rpm -q --blink glibc > glibc-2.23-2.x86_64 > glibc-2.23-2.x86_64.rpm > <= glibc-2.23-1.x86_64.rpm > > it's broken with glibc-2.23-4.x86_64.rpm as well, but not with glibc-2.23-1.x86_64.rpm maybe add conflicts: gcc < 6:5.0 to glibc package so such breakage won't bring down another system. but i'd like to know what caused this. it makes no sense. -- glen From glen at pld-linux.org Thu May 19 12:57:25 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Thu, 19 May 2016 13:57:25 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573D7036.90000@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> <573D7036.90000@pld-linux.org> Message-ID: <573D9C15.4090108@pld-linux.org> On 19.05.2016 10:50, Elan Ruusam?e wrote: > On 18.05.2016 16:32, Elan Ruusam?e wrote: >> On 18.05.2016 14:33, Elan Ruusam?e wrote: >>> On 18.05.2016 14:18, arekm wrote: >>>> commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c >>>> Author: Arkadiusz Mi?kiewicz >>>> Date: Wed May 18 13:16:40 2016 +0200 >>>> >>>> - rel 4; more upstream git branch updates >> >> any ideas how or why glibc update caused varnish compile failures (it >> compiles it's .vcl files to .c -> .so) >> >> # service varnish checkconfig >> Checking Varnish HTTP accelerator >> configuration...........................................................................................................................................................................................................[ >> FAIL ] >> Command failed with error code 106 >> Message from C-compiler: >> /usr/bin/ld: >> /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: >> unrecognized relocation (0x2a) in section `.init' >> /usr/bin/ld: final link failed: Bad value >> collect2: error: ld returned 1 exit status >> Running C-compiler failed, exit 1 >> VCL compilation failed >> Message from C-compiler: >> /usr/bin/ld: >> /usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: >> unrecognized relocation (0x2a) in section `.init' >> /usr/bin/ld: final link failed: Bad value >> collect2: error: ld returned 1 exit status >> Running C-compiler failed, exit 1 >> >> seems simple compilation fails now: >> >> # echo 'int main() {}' > a.c >> # gcc a.c -o test >> /usr/bin/ld: >> /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: >> unrecognized relocation (0x2a) in section `.init' >> /usr/bin/ld: final link failed: Bad value >> collect2: error: ld returned 1 exit status >> >> >> happened after packages update: >> >> Wed May 18 09:57:49 2016 tzdata-2016d-1.noarch >> Wed May 18 09:59:02 2016 glibc-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 glibc-devel-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 glibc-devel-utils-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 glibc-headers-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 glibc-libcrypt-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 glibc-misc-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 iconv-2.23-2.x86_64 >> Wed May 18 09:59:02 2016 ldconfig-2.23-2.x86_64 >> >> other relevant packages: >> >> # pkgbytime gcc >> Mon Sep 14 17:48:10 2015 gcc-4.9.3-1.x86_64 >> Mon Sep 14 17:48:10 2015 libgcc-4.9.3-1.x86_64 >> >> # pkgbytime binutils >> Mon Sep 14 17:48:10 2015 binutils-2.25.51.0.2-1.x86_64 >> Mon Sep 14 17:48:10 2015 binutils-libs-2.25.51.0.2-1.x86_64 >> >> previous glibc version was: >> # rpm -q --blink glibc >> glibc-2.23-2.x86_64 >> glibc-2.23-2.x86_64.rpm >> <= glibc-2.23-1.x86_64.rpm >> >> > > it's broken with glibc-2.23-4.x86_64.rpm as well, but not with > glibc-2.23-1.x86_64.rpm > > > maybe add conflicts: gcc < 6:5.0 to glibc package so such breakage > won't bring down another system. > but i'd like to know what caused this. it makes no sense. i did recompile test with building old glibc tag on carme and using that rpm poldek -s http://carme.pld-linux.org/~glen/th/x86_64/ -u glibc --downgrade glibc-2.23-1.x86_64 # echo 'int main() {}' > a.c # gcc a.c -o test /usr/bin/ld: /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: unrecognized relocation (0x2a) in section `.init' /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status # gcc a.c -fPIC -o test /usr/bin/ld: /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: unrecognized relocation (0x2a) in section `.init' /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1 exit status -- glen From qboosh at pld-linux.org Thu May 19 16:40:02 2016 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Thu, 19 May 2016 16:40:02 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573D9C15.4090108@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> <573D7036.90000@pld-linux.org> <573D9C15.4090108@pld-linux.org> Message-ID: <20160519144002.GA20013@mail> On Thu, May 19, 2016 at 01:57:25PM +0300, Elan Ruusam?e wrote: > On 19.05.2016 10:50, Elan Ruusam?e wrote: > >On 18.05.2016 16:32, Elan Ruusam?e wrote: > >>On 18.05.2016 14:33, Elan Ruusam?e wrote: > >>>On 18.05.2016 14:18, arekm wrote: > >>>>commit ee4a0bb9cd9a8e7f552c9948963a69c61865845c > >>>>Author: Arkadiusz Mi?kiewicz > >>>>Date: Wed May 18 13:16:40 2016 +0200 > >>>> > >>>> - rel 4; more upstream git branch updates > >> > >>any ideas how or why glibc update caused varnish compile failures (it > >>compiles it's .vcl files to .c -> .so) > >> > >># service varnish checkconfig > >>Checking Varnish HTTP accelerator > >>configuration...........................................................................................................................................................................................................[ > >>FAIL ] > >>Command failed with error code 106 > >>Message from C-compiler: > >>/usr/bin/ld: > >>/usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: > >>unrecognized relocation (0x2a) in section `.init' > >>/usr/bin/ld: final link failed: Bad value > >>collect2: error: ld returned 1 exit status > >>Running C-compiler failed, exit 1 > >>VCL compilation failed > >>Message from C-compiler: > >>/usr/bin/ld: > >>/usr/lib64/gcc/x86_64-pld-linux/5.2.0/../../../../lib64/crti.o: > >>unrecognized relocation (0x2a) in section `.init' > >>/usr/bin/ld: final link failed: Bad value > >>collect2: error: ld returned 1 exit status > >>Running C-compiler failed, exit 1 > >> > >>seems simple compilation fails now: > >> > >># echo 'int main() {}' > a.c > >># gcc a.c -o test > >>/usr/bin/ld: > >>/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > >>unrecognized relocation (0x2a) in section `.init' > >>/usr/bin/ld: final link failed: Bad value > >>collect2: error: ld returned 1 exit status > >> > >> > >>happened after packages update: > >> > >>Wed May 18 09:57:49 2016 tzdata-2016d-1.noarch > >>Wed May 18 09:59:02 2016 glibc-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 glibc-devel-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 glibc-devel-utils-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 glibc-headers-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 glibc-libcrypt-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 glibc-misc-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 iconv-2.23-2.x86_64 > >>Wed May 18 09:59:02 2016 ldconfig-2.23-2.x86_64 > >> > >>other relevant packages: > >> > >># pkgbytime gcc > >>Mon Sep 14 17:48:10 2015 gcc-4.9.3-1.x86_64 > >>Mon Sep 14 17:48:10 2015 libgcc-4.9.3-1.x86_64 > >> > >># pkgbytime binutils > >>Mon Sep 14 17:48:10 2015 binutils-2.25.51.0.2-1.x86_64 > >>Mon Sep 14 17:48:10 2015 binutils-libs-2.25.51.0.2-1.x86_64 > >> > >>previous glibc version was: > >># rpm -q --blink glibc > >>glibc-2.23-2.x86_64 > >>glibc-2.23-2.x86_64.rpm > >> <= glibc-2.23-1.x86_64.rpm > >> > >> > > > >it's broken with glibc-2.23-4.x86_64.rpm as well, but not with > >glibc-2.23-1.x86_64.rpm > > > > > >maybe add conflicts: gcc < 6:5.0 to glibc package so such breakage > >won't bring down another system. > >but i'd like to know what caused this. it makes no sense. > > i did recompile test with building old glibc tag on carme and using that rpm > poldek -s http://carme.pld-linux.org/~glen/th/x86_64/ -u glibc --downgrade > > glibc-2.23-1.x86_64 > > # echo 'int main() {}' > a.c > > # gcc a.c -o test > /usr/bin/ld: > /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > unrecognized relocation (0x2a) in section `.init' > /usr/bin/ld: final link failed: Bad value > collect2: error: ld returned 1 exit status > > > # gcc a.c -fPIC -o test > /usr/bin/ld: > /usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > unrecognized relocation (0x2a) in section `.init' > /usr/bin/ld: final link failed: Bad value > collect2: error: ld returned 1 exit status Isn't it binutils related? 42 is R_X86_64_REX_GOTPCRELX, a new relocation introduced in 2.26. See also: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808205 -- Jakub Bogusz http://qboosh.pl/ From glen at pld-linux.org Fri May 20 08:37:49 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 20 May 2016 09:37:49 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <20160519144002.GA20013@mail> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> <573D7036.90000@pld-linux.org> <573D9C15.4090108@pld-linux.org> <20160519144002.GA20013@mail> Message-ID: <573EB0BD.3050309@pld-linux.org> On 19.05.2016 17:40, Jakub Bogusz wrote: >> ># echo 'int main() {}' > a.c >> > >> ># gcc a.c -o test >> >/usr/bin/ld: >> >/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: >> >unrecognized relocation (0x2a) in section `.init' >> >/usr/bin/ld: final link failed: Bad value >> >collect2: error: ld returned 1 exit status >> > >> > >> ># gcc a.c -fPIC -o test >> >/usr/bin/ld: >> >/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: >> >unrecognized relocation (0x2a) in section `.init' >> >/usr/bin/ld: final link failed: Bad value >> >collect2: error: ld returned 1 exit status > Isn't it binutils related? > 42 is R_X86_64_REX_GOTPCRELX, a new relocation introduced in 2.26. > > See also: > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808205 so how that should be handled in .spec dependencies? -- glen From glen at pld-linux.org Fri May 20 11:16:15 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 20 May 2016 12:16:15 +0300 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573EB0BD.3050309@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> <573D7036.90000@pld-linux.org> <573D9C15.4090108@pld-linux.org> <20160519144002.GA20013@mail> <573EB0BD.3050309@pld-linux.org> Message-ID: <573ED5DF.7040108@pld-linux.org> On 20.05.2016 09:37, Elan Ruusam?e wrote: > On 19.05.2016 17:40, Jakub Bogusz wrote: >>> ># echo 'int main() {}' > a.c >>> > >>> ># gcc a.c -o test >>> >/usr/bin/ld: >>> >/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: >>> >unrecognized relocation (0x2a) in section `.init' >>> >/usr/bin/ld: final link failed: Bad value >>> >collect2: error: ld returned 1 exit status >>> > >>> > >>> ># gcc a.c -fPIC -o test >>> >/usr/bin/ld: >>> >/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: >>> >unrecognized relocation (0x2a) in section `.init' >>> >/usr/bin/ld: final link failed: Bad value >>> >collect2: error: ld returned 1 exit status >> Isn't it binutils related? >> 42 is R_X86_64_REX_GOTPCRELX, a new relocation introduced in 2.26. >> >> See also: >> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808205 > > so how that should be handled in .spec dependencies? > or is there way to build without that new feature until we have proper solution? -- glen From qboosh at pld-linux.org Fri May 20 17:04:03 2016 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Fri, 20 May 2016 17:04:03 +0200 Subject: [packages/glibc] - rel 4; more upstream git branch updates In-Reply-To: <573ED5DF.7040108@pld-linux.org> References: <75c76a0496b8299a2d953a59fa634813a32a5dba_refs_heads_master@pld-linux.org> <573C52F8.6020702@pld-linux.org> <573C6EE5.5030404@delfi.ee> <573D7036.90000@pld-linux.org> <573D9C15.4090108@pld-linux.org> <20160519144002.GA20013@mail> <573EB0BD.3050309@pld-linux.org> <573ED5DF.7040108@pld-linux.org> Message-ID: <20160520150403.GA25724@mail> On Fri, May 20, 2016 at 12:16:15PM +0300, Elan Ruusam?e wrote: > On 20.05.2016 09:37, Elan Ruusam?e wrote: > >On 19.05.2016 17:40, Jakub Bogusz wrote: > >>>># echo 'int main() {}' > a.c > >>>> > >>>># gcc a.c -o test > >>>>/usr/bin/ld: > >>>>/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > >>>>unrecognized relocation (0x2a) in section `.init' > >>>>/usr/bin/ld: final link failed: Bad value > >>>>collect2: error: ld returned 1 exit status > >>>> > >>>> > >>>># gcc a.c -fPIC -o test > >>>>/usr/bin/ld: > >>>>/usr/lib64/gcc/x86_64-pld-linux/4.9.3/../../../../lib64/crti.o: > >>>>unrecognized relocation (0x2a) in section `.init' > >>>>/usr/bin/ld: final link failed: Bad value > >>>>collect2: error: ld returned 1 exit status > >>Isn't it binutils related? > >>42 is R_X86_64_REX_GOTPCRELX, a new relocation introduced in 2.26. > >> > >>See also: > >>https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808205 > > > >so how that should be handled in .spec dependencies? > > > or is there way to build without that new feature until we have proper > solution? Something like # (in glibc-devel) %ifarch %{x8664} # are other archs affected? %if "%(rpm -q --qf '%{E}:%{V}')" >= "1:2.26" Conflicts: binutils < 1:2.26 %endif %endif though I'm not sure if it's specific to glibc. Some static libraries could be also affected. -- Jakub Bogusz http://qboosh.pl/ From glen at pld-linux.org Fri May 20 19:14:47 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Fri, 20 May 2016 20:14:47 +0300 Subject: [packages/python-PyPDF2] cleanups; pldize; replace also hashbang for py2 examples package - Source0 In-Reply-To: <8768932.lp55FuZdSl@matkor-lenovo> References: <9c9005f2fa57c06743065a5d606eb42a7ed12d33_refs_heads_master@pld-linux.org> <1bac47b5004f9f317f5f9f73b1fcfb781e4f4138_refs_heads_master@pld-linux.org> <8768932.lp55FuZdSl@matkor-lenovo> Message-ID: <573F4607.2030302@pld-linux.org> On 20.05.2016 16:05, Mateusz Korniak wrote: > On Friday 20 May 2016 14:37:23 glen wrote: >> cleanups; pldize; replace also hashbang for py2 examples package >> >> -Source0: > https://pypi.python.org/packages/b4/01/68fcc0d43daf4c6bdbc6b33cc3f >> 77bda531c86b174cac56ef0ffdb96faab/PyPDF2-%{version}.tar.gz#md5=2301acc0ecbab >> 0633d4c9b883d50ee5e >> +Source0: https://pypi.python.org/packages/b4/01/68fcc0d43daf4c6bdbc6b33cc3 >> f77bda531c86b174cac56ef0ffdb96faab/%{module}-%{version}.tar.gz # > That does not make sense IMHO. > When version changes, one has to update whole url anyway. :/ yes. pypi update sucks, they no longer have "stable" urls. feel free to write to them a complaint. but i'm sure some "security expert" come to their team and convinced them that hashing the download urls makes everything super secure. -- glen From glen at pld-linux.org Mon May 23 12:34:40 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Mon, 23 May 2016 13:34:40 +0300 Subject: poldek min memory Message-ID: <5742DCC0.6080404@pld-linux.org> looks like poldek -u requires more than 256m ram to operate (sick!) 256m is the default if qemu-system-x86_64 is invoked without no args -- glen From glen at pld-linux.org Tue May 24 11:30:27 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 24 May 2016 12:30:27 +0300 Subject: ping package Message-ID: <57441F33.5030406@pld-linux.org> proposition: rename iputils-ping -> ping it's so annoying to remember the package name, i always confuse between the three: - iputils2-ping - iproute2-ping - iproute-ping there is no "ping" package in pld now, the alternative /usr/bin/ping is provided by poink package the change would be just adjust %package in iputils.spec -- glen From jajcus at jajcus.net Tue May 24 12:17:43 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Tue, 24 May 2016 12:17:43 +0200 Subject: ping package In-Reply-To: <57441F33.5030406@pld-linux.org> References: <57441F33.5030406@pld-linux.org> Message-ID: <18e75ec0-15fd-47bd-a448-a8c02bec440a@jajcus.net> On 2016-05-24 11:30, Elan Ruusam?e wrote: > proposition: > > rename iputils-ping -> ping +1 And an 'Obsoletes:', of course. Jacek From arekm at maven.pl Thu May 26 18:38:01 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Thu, 26 May 2016 18:38:01 +0200 Subject: [packages/ImageMagick] policy.xml changes to mitigate imagetragick In-Reply-To: References: Message-ID: <201605261838.02105.arekm@maven.pl> On Thursday 26 of May 2016, glen wrote: > commit b721b050c0cd63ad00f987bc3a6389ac2a7282e0 > Author: Elan Ruusam?e > Date: Thu May 26 17:43:23 2016 +0300 > > policy.xml changes to mitigate imagetragick > > recommended config from https://imagetragick.com/ Isn't that just disabling specified formats which makes little sense as this version is supposed to have these extensions fixed? > > ImageMagick.spec | 4 +++- > config.patch | 19 +++++++++++++++++++ > 2 files changed, 22 insertions(+), 1 deletion(-) > --- > diff --git a/ImageMagick.spec b/ImageMagick.spec > index d43816b..e311d01 100644 > --- a/ImageMagick.spec > +++ b/ImageMagick.spec > @@ -33,12 +33,13 @@ Summary(tr.UTF-8): X alt?nda resim g?sterme, ?evirme ve > de?i?iklik yapma Summary(uk.UTF-8): ????????, ????????????? ?? ??????? > ????????? ??? X Window Name: ImageMagick > Version: %{ver}%{?pver:.%{pver}} > -Release: 1 > +Release: 2 > Epoch: 1 > License: Apache-like > Group: X11/Applications/Graphics > Source0: ftp://ftp.imagemagick.org/pub/ImageMagick/%{name}-%{ver}-%{pver}. > tar.xz # Source0-md5: 430d33915b19f38012b55f98904c4f37 > +Patch0: config.patch > Patch1: %{name}-link.patch > Patch2: %{name}-libpath.patch > Patch3: %{name}-ldflags.patch > @@ -657,6 +658,7 @@ Modu? kodera dla plik?w WMF. > > %prep > %setup -q -n %{name}-%{ver}-%{pver} > +%patch0 -p1 > %patch1 -p1 > %patch2 -p1 > %patch3 -p1 > diff --git a/config.patch b/config.patch > new file mode 100644 > index 0000000..efe62fc > --- /dev/null > +++ b/config.patch > @@ -0,0 +1,19 @@ > +--- ImageMagick-6.9.4-1/config/policy.xml 2016-05-09 20:28:58.000000000 > +0300 ++++ ImageMagick-6.9.4-1/config/policy.xml.new 2016-05-26 > 17:37:36.934136236 +0300 +@@ -61,7 +57,14 @@ > + > + > + > +- > +- > ++ > ++ > ++ > ++ > ++ > ++ > ++ > ++ > ++ > + > + > ================================================================ > > ---- gitweb: > > http://git.pld-linux.org/gitweb.cgi/packages/ImageMagick.git/commitdiff/b72 > 1b050c0cd63ad00f987bc3a6389ac2a7282e0 > > _______________________________________________ > pld-cvs-commit mailing list > pld-cvs-commit at lists.pld-linux.org > http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From glen at pld-linux.org Thu May 26 20:52:42 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Thu, 26 May 2016 21:52:42 +0300 Subject: [packages/ImageMagick] policy.xml changes to mitigate imagetragick In-Reply-To: <201605261838.02105.arekm@maven.pl> References: <201605261838.02105.arekm@maven.pl> Message-ID: <574745FA.7040302@pld-linux.org> On 26.05.2016 19:38, Arkadiusz Mi?kiewicz wrote: > On Thursday 26 of May 2016, glen wrote: >> >commit b721b050c0cd63ad00f987bc3a6389ac2a7282e0 >> >Author: Elan Ruusam?e >> >Date: Thu May 26 17:43:23 2016 +0300 >> > >> > policy.xml changes to mitigate imagetragick >> > >> > recommended config fromhttps://imagetragick.com/ > Isn't that just disabling specified formats which makes little sense as this > version is supposed to have these extensions fixed? > as i see this, these are protocols or rarely used formats and making default config secure (not allowing to load from network, etc). if someone's system really needs them, they can modify local policy.xml to enable these. -- glen From arekm at maven.pl Thu May 26 20:58:37 2016 From: arekm at maven.pl (Arkadiusz =?utf-8?q?Mi=C5=9Bkiewicz?=) Date: Thu, 26 May 2016 20:58:37 +0200 Subject: [packages/ImageMagick] policy.xml changes to mitigate imagetragick In-Reply-To: <574745FA.7040302@pld-linux.org> References: <201605261838.02105.arekm@maven.pl> <574745FA.7040302@pld-linux.org> Message-ID: <201605262058.37354.arekm@maven.pl> On Thursday 26 of May 2016, Elan Ruusam?e wrote: > On 26.05.2016 19:38, Arkadiusz Mi?kiewicz wrote: > > On Thursday 26 of May 2016, glen wrote: > >> >commit b721b050c0cd63ad00f987bc3a6389ac2a7282e0 > >> >Author: Elan Ruusam?e > >> >Date: Thu May 26 17:43:23 2016 +0300 > >> > > >> > policy.xml changes to mitigate imagetragick > >> > > >> > recommended config fromhttps://imagetragick.com/ > > > > Isn't that just disabling specified formats which makes little sense as > > this version is supposed to have these extensions fixed? > > as i see this, these are protocols or rarely used formats and making > default config secure (not allowing to load from network, etc). if > someone's system really needs them, they can modify local policy.xml to > enable these. Ok (just commit message is misleading) -- Arkadiusz Mi?kiewicz, arekm / ( maven.pl | pld-linux.org ) From glen at pld-linux.org Tue May 31 08:45:43 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 31 May 2016 09:45:43 +0300 Subject: ldconfig forgotten Message-ID: <574D3317.4040404@pld-linux.org> again rpm forgot to run ldconfig the "fix" is to add as "Requires" it, right? altho the deps is already specified manually https://github.com/pld-linux/procps/blob/auto/th/procps-3.3.11-1/procps.spec#L43 and should be even autogenerated: https://github.com/pld-linux/procps/blob/auto/th/procps-3.3.11-1/procps.spec#L206-L207 [root at 57c8cccdc671 bin]# poldek -u procps Loading [pndir]th... Loading [pndir]th... 25794 packages read Processing dependencies... procps-3.3.11-1.x86_64 marks systemd-libs-221-13.x86_64 (cap libsystemd.so.0()(64bit)) systemd-libs-221-13.x86_64 marks libgcrypt-1.7.0-1.x86_64 (cap libgcrypt >= 1.4.5) libgcrypt-1.7.0-1.x86_64 marks libgpg-error-1.22-1.x86_64 (cap libgpg-error >= 1.13) systemd-libs-221-13.x86_64 marks lz4-libs-r131-4.x86_64 (cap liblz4.so.1()(64bit)) There are 5 packages to install (4 marked by dependencies): I procps-3.3.11-1.x86_64 D libgcrypt-1.7.0-1.x86_64 libgpg-error-1.22-1.x86_64 lz4-libs-r131-4.x86_64 systemd-libs-221-13.x86_64 This operation will use 4.2MB of disk space. Need to get 1.4MB of archives (1.4MB to download). Retrieving [1/5] th::libgpg-error-1.22-1.x86_64.rpm... .............................. 100.0% [123.9K (123.9K/s)] Retrieving [2/5] th::libgcrypt-1.7.0-1.x86_64.rpm... .............................. 100.0% [460.3K (66.5K/s)] Retrieving [3/5] th::lz4-libs-r131-4.x86_64.rpm... .............................. 100.0% [38.7K (38.7K/s)] Retrieving [4/5] th::systemd-libs-221-13.x86_64.rpm... .............................. 100.0% [322.9K (322.9K/s)] Retrieving [5/5] th::procps-3.3.11-1.x86_64.rpm... .............................. 100.0% [444.0K (150.8K/s)] Executing pm-command.sh --upgrade -vh --root / --define _check_dirname_deps 1... Preparing... ########################################### [100%] 1:lz4-libs ########################################### [ 20%] 2:libgpg-error ########################################### [ 40%] 3:libgcrypt ########################################### [ 60%] 4:systemd-libs ########################################### [ 80%] 5:procps ########################################### [100%] [root at 57c8cccdc671 bin]# ps axwuf ps: error while loading shared libraries: libprocps.so.5: cannot open shared object file: No such file or directory [root at 57c8cccdc671 bin]# ldconfig [root at 57c8cccdc671 bin]# ps axwuf USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.0 14052 3184 ? Ss 06:31 0:00 bash root 56 0.0 0.0 23504 2520 ? R+ 06:40 0:00 ps axwuf [root at 57c8cccdc671 bin]# rpm -q procps --scripts|grep ldconfig postinstall program: /sbin/ldconfig postuninstall program: /sbin/ldconfig [root at 57c8cccdc671 bin]# [root at 57c8cccdc671 bin]# rpm -q procps --requires|grep ldconfig /sbin/ldconfig /sbin/ldconfig /sbin/ldconfig [root at 57c8cccdc671 bin]# -- glen From glen at pld-linux.org Tue May 31 08:52:24 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 31 May 2016 09:52:24 +0300 Subject: ldconfig forgotten In-Reply-To: <574D3317.4040404@pld-linux.org> References: <574D3317.4040404@pld-linux.org> Message-ID: <574D34A8.2060806@pld-linux.org> On 31.05.2016 09:45, Elan Ruusam?e wrote: > [root at 57c8cccdc671 bin]# poldek -u procps oh, and it's 100% reproducible: $ docker run --rm -it glen/pld bash [root at 412a6cf4756e /]# poldek -u procps [root at 412a6cf4756e /]# ps ps: error while loading shared libraries: libprocps.so.5: cannot open shared object file: No such file or directory and here's appropriate rpm -vvv run: [root at 93a685e61c8b /]# poldek -u procps --pmopt=verbose --pmopt=verbose --pmopt=verbose Loading [pndir]th... Loading [pndir]th... 25794 packages read Processing dependencies... procps-3.3.11-1.x86_64 marks systemd-libs-221-13.x86_64 (cap libsystemd.so.0()(64bit)) systemd-libs-221-13.x86_64 marks libgcrypt-1.7.0-1.x86_64 (cap libgcrypt >= 1.4.5) libgcrypt-1.7.0-1.x86_64 marks libgpg-error-1.22-1.x86_64 (cap libgpg-error >= 1.13) systemd-libs-221-13.x86_64 marks lz4-libs-r131-4.x86_64 (cap liblz4.so.1()(64bit)) There are 5 packages to install (4 marked by dependencies): I procps-3.3.11-1.x86_64 D libgcrypt-1.7.0-1.x86_64 libgpg-error-1.22-1.x86_64 lz4-libs-r131-4.x86_64 systemd-libs-221-13.x86_64 This operation will use 4.2MB of disk space. Need to get 1.4MB of archives. Executing pm-command.sh --upgrade -vh --root / --define _check_dirname_deps 1 --verbose --verbose --verbose... D: pool ts: created size 1200 limit -1 flags 0 D: pool gi: created size 176 limit -1 flags 0 D: pool dig: created size 424 limit -1 flags 0 D: pool h: created size 360 limit -1 flags 0 D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) D: Actual size: 126857 D: pool ds: created size 232 limit -1 flags 0 D: pool tsi: created size 48 limit -1 flags 0 D: pool te: created size 368 limit -1 flags 0 D: pool fi: created size 560 limit -1 flags 0 D: pool al: created size 64 limit -1 flags 0 D: pool bf: created size 56 limit -1 flags 0 D: pool db: created size 328 limit -1 flags 0 D: pool dbi: created size 472 limit -1 flags 0 D: rpmdb: cpus 8 physmem 7985Mb D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn D: opening db index /var/lib/rpm/Packages thread:rdonly:auto_commit mode=0x0 D: opening db index /var/lib/rpm/Name thread:rdonly:auto_commit mode=0x0 D: pool mi: created size 152 limit -1 flags 0 D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) D: Actual size: 471376 D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) D: Actual size: 39670 D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) D: Actual size: 330664 D: opening db index /var/lib/rpm/Providename thread:rdonly:auto_commit mode=0x0 D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) D: Actual size: 454662 D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64/linux 0x2 D: pool ps: created size 40 limit -1 flags 0 D: opening db index /var/lib/rpm/Filepaths thread:rdonly:auto_commit mode=0x0 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/bin YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/libgpg-error-1.22 YES (added files) D: Dirs: /usr/share/locale/cs/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/da/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/eo/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/hu/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/it/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ja/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/nl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pt/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ro/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ru/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/sr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/sv/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/zh_CN/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/zh_TW/LC_MESSAGES YES (db files) D: opening db index /var/lib/rpm/Conflictname thread:rdonly:auto_commit mode=0x0 D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libgpg-error >= 1.13 YES (added provide) D: Requires: libgpg-error.so.0()(64bit) YES (added provide) D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/libgcrypt-1.7.0 YES (added files) D: ========== +++ lz4-libs-r131-4.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Conflicts: lz4 < 0.0-1.r121.3 NO D: Dirs: /usr/lib64 YES (db files) D: ========== +++ systemd-libs-221-13.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: ld-linux-x86-64.so.2()(64bit) YES (db provides) D: Requires: ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libattr.so.1()(64bit) YES (db provides) D: Requires: libattr.so.1(ATTR_1.0)(64bit) YES (db provides) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.16)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.17)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.2)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.7)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.9)(64bit) YES (db provides) D: Requires: libdl.so.2()(64bit) YES (db provides) D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libgcrypt >= 1.4.5 YES (added provide) D: Requires: libgcrypt.so.20()(64bit) YES (added provide) D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) D: Requires: liblz4.so.1()(64bit) YES (added provide) D: Requires: liblzma.so.5()(64bit) YES (db provides) D: Requires: liblzma.so.5(XZ_5.0)(64bit) YES (db provides) D: Requires: libpthread.so.0()(64bit) YES (db provides) D: Requires: libpthread.so.0(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: librt.so.1()(64bit) YES (db provides) D: Requires: librt.so.1(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: librt.so.1(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libselinux >= 2.1.9 YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/lib64 YES (db files) D: ========== +++ procps-3.3.11-1.x86_64 x86_64/linux 0x2 D: Requires: /bin/sh YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: fileutils YES (db provides) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.11)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) D: Requires: libdl.so.2()(64bit) YES (db provides) D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libncursesw.so.6()(64bit) YES (db provides) D: Requires: libsystemd.so.0()(64bit) YES (added provide) D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) D: Requires: rpmlib(PartialHardlinkSets) <= 4.0.4-1 YES (rpmlib provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /bin YES (db files) D: Dirs: /lib64 YES (db files) D: Dirs: /sbin YES (db files) D: Dirs: /usr/bin YES (db files) D: Dirs: /usr/share/applications YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/procps-3.3.11 YES (added files) D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) D: Dirs: /usr/share/man/cs/man1 YES (db files) D: Dirs: /usr/share/man/de/man1 YES (db files) D: Dirs: /usr/share/man/es/man1 YES (db files) D: Dirs: /usr/share/man/es/man8 YES (db files) D: Dirs: /usr/share/man/fi/man1 YES (db files) D: Dirs: /usr/share/man/fr/man1 YES (db files) D: Dirs: /usr/share/man/fr/man8 YES (db files) D: Dirs: /usr/share/man/hu/man1 YES (db files) D: Dirs: /usr/share/man/it/man1 YES (db files) D: Dirs: /usr/share/man/it/man8 YES (db files) D: Dirs: /usr/share/man/ja/man1 YES (db files) D: Dirs: /usr/share/man/ja/man5 YES (db files) D: Dirs: /usr/share/man/ja/man8 YES (db files) D: Dirs: /usr/share/man/ko/man1 YES (db files) D: Dirs: /usr/share/man/man1 YES (db files) D: Dirs: /usr/share/man/man5 YES (db files) D: Dirs: /usr/share/man/man8 YES (db files) D: Dirs: /usr/share/man/nl/man1 YES (db files) D: Dirs: /usr/share/man/pl/man1 YES (db files) D: Dirs: /usr/share/pixmaps YES (db files) D: ========== recording tsort relations D: Requires: libgpg-error >= 1.13 YES (added provide) D: ignore package name relation(s) [0] QtGui -> Qt3Support D: ignore package name relation(s) [1] QtGui -> QtSvg D: ignore package name relation(s) [2] ZendFramework-Zend_Cache -> ZendFramework-Zend_Json D: ignore package name relation(s) [3] ZendFramework-Zend_Cache -> ZendFramework-Zend_Log D: ignore package name relation(s) [4] ZendFramework-Zend_Controller -> ZendFramework-Zend_Dojo D: ignore package name relation(s) [5] ZendFramework-Zend_Controller -> ZendFramework-Zend_Json D: ignore package name relation(s) [6] ZendFramework-Zend_Controller -> ZendFramework-Zend_Layout D: ignore package name relation(s) [7] ZendFramework-Zend_Controller -> ZendFramework-Zend_Session D: ignore package name relation(s) [8] ZendFramework-Zend_Controller -> ZendFramework-Zend_Uri D: ignore package name relation(s) [9] ZendFramework-Zend_Controller -> ZendFramework-Zend_View D: ignore package name relation(s) [10] ZendFramework-Zend_Layout -> ZendFramework-Zend_View D: ignore package name relation(s) [11] ZendFramework-Zend_Validate -> ZendFramework-Zend_Uri D: ignore package name relation(s) [12] ZendFramework -> ZendFramework-Zend_Date D: ignore package name relation(s) [13] ZendFramework -> ZendFramework-Zend_Exception D: ignore package name relation(s) [14] ZendFramework -> ZendFramework-Zend_Http D: ignore package name relation(s) [15] ZendFramework -> ZendFramework-Zend_Loader D: ignore package name relation(s) [16] ZendFramework -> ZendFramework-Zend_Loader D: ignore package name relation(s) [17] ZendFramework -> ZendFramework-Zend_Registry D: ignore package name relation(s) [18] amarok -> amarok-xine D: ignore package name relation(s) [19] esound-libs -> esound-alsa D: ignore package name relation(s) [20] glibc64 -> glibc-misc D: ignore package name relation(s) [21] glibc -> glibc-localedb-all D: ignore package name relation(s) [22] glibc -> glibc-misc D: ignore package name relation(s) [23] glibc -> localedb-src D: ignore package name relation(s) [24] gtk+2 -> gtk+2-cups D: ignore package name relation(s) [25] hal -> hal-info D: ignore package name relation(s) [26] java-sun-jre -> java-sun-jre-X11 D: ignore package name relation(s) [27] java-sun-jre -> java-sun-tools D: ignore package name relation(s) [28] lighttpd -> lighttpd-mod_dirlisting D: ignore package name relation(s) [29] lighttpd -> lighttpd-mod_indexfile D: ignore package name relation(s) [30] lighttpd -> lighttpd-mod_staticfile D: ignore package name relation(s) [31] openjdk-jre -> openjdk-tools D: ignore package name relation(s) [32] openvpn -> openvpn-plugin-auth-pam D: ignore package name relation(s) [33] openvpn -> openvpn-plugin-down-root D: ignore package name relation(s) [34] phorum -> phorum-db-mysql D: ignore package name relation(s) [35] phorum -> phorum-db-mysqli D: ignore package name relation(s) [36] phorum -> phorum-db-sql_pool D: ignore package name relation(s) [37] php-common -> php-pcre D: ignore package name relation(s) [38] php-common -> php-session D: ignore package name relation(s) [39] php-common -> php-simplexml D: ignore package name relation(s) [40] php-common -> php-spl D: ignore package name relation(s) [41] php-spl -> php-simplexml D: ignore package name relation(s) [42] php52-common -> php52-pcre D: ignore package name relation(s) [43] php52-common -> php52-session D: ignore package name relation(s) [44] php52-common -> php52-simplexml D: ignore package name relation(s) [45] php52-common -> php52-spl D: ignore package name relation(s) [46] php52-spl -> php52-simplexml D: ignore package name relation(s) [47] php54-common -> php54-pcre D: ignore package name relation(s) [48] php54-common -> php54-session D: ignore package name relation(s) [49] php54-common -> php54-simplexml D: ignore package name relation(s) [50] php54-common -> php54-spl D: ignore package name relation(s) [51] php54-spl -> php54-simplexml D: ignore package name relation(s) [52] python3-libs -> python3 D: ignore package name relation(s) [53] roundcubemail -> roundcubemail-skin-default D: ignore package name relation(s) [54] util-vserver-build -> vserver-distro-pld D: ignore package name relation(s) [55] util-vserver -> vserver-distro-pld D: ignore package name relation(s) [56] vim -> vim-rt D: ignore package name relation(s) [57] fontpostinst -> t1lib D: ignore package name relation(s) [58] glibc -> nss-softokn-freebl D: ignore package name relation(s) [59] glibc -> tzdata D: ignore package name relation(s) [60] gmplayer -> mplayer-skin-KDE D: ignore package name relation(s) [61] kdebase-desktop -> kde-kside-PLD D: ignore package name relation(s) [62] kdebase-desktop -> kde-logoutpic-PLD D: ignore package name relation(s) [63] kdebase-desktop -> kde-splash-Default D: ignore package name relation(s) [64] kdelibs -> kdelibs-shared D: ignore package name relation(s) [65] koffice-kexi -> koffice-kspread D: ignore package name relation(s) [66] konqueror -> kdeaddons-fsview D: ignore package name relation(s) [67] konqueror -> kdeaddons-konqueror D: ignore package name relation(s) [68] konqueror -> kdemultimedia-audiocd D: ignore package name relation(s) [69] php-pear-PEAR-core -> php-pear-Console_Getopt D: ignore package name relation(s) [70] rc-scripts -> blockdev D: ignore package name relation(s) [71] upstart -> dbus D: ignore package name relation(s) [72] vim-rt -> vim-plugin-securemodelines D: ignore package name relation(s) [73] vim-rt -> vim-syntax-poldek D: ignore package name relation(s) [74] vim-rt -> vim-syntax-spec D: Requires: libgpg-error.so.0()(64bit) YES (added provide) D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) D: Requires: libgcrypt >= 1.4.5 YES (added provide) D: Requires: libgcrypt.so.20()(64bit) YES (added provide) D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) D: Requires: liblz4.so.1()(64bit) YES (added provide) D: Requires: libsystemd.so.0()(64bit) YES (added provide) D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) D: ========== tsorting packages (order, #predecessors, #succesors, tree, Ldepth, Rbreadth) D: 0 0 1 2 0 0 +lz4-libs-r131-4.x86_64 D: 1 0 1 1 0 1 +libgpg-error-1.22-1.x86_64 D: 2 1 1 1 1 0 +libgcrypt-1.7.0-1.x86_64 D: 3 2 1 1 2 0 +systemd-libs-221-13.x86_64 D: ========== successors only (968503 bytes) D: 4 1 0 1 3 0 +procps-3.3.11-1.x86_64 D: closed db index /var/lib/rpm/Filepaths D: closed db index /var/lib/rpm/Conflictname D: closed db index /var/lib/rpm/Providename D: closed db index /var/lib/rpm/Name D: closed db index /var/lib/rpm/Packages D: closed db environment /var/lib/rpm/Packages D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn D: opening db index /var/lib/rpm/Packages create:thread:auto_commit mode=0x42 D: mounted filesystems: D: i dev bsize bavail iavail mount point D: 0 0x0000005b 4096 4231503 30960486 rw / D: 1 0x0000005e 4096 1 -1 rw /proc D: 2 0x0000005f 4096 1022080 1022062 rw /dev D: 3 0x00000060 4096 1 -1 rw /dev/pts D: 4 0x0000005d 4096 1 -1 rw /dev/mqueue D: 5 0x00000061 4096 1 -1 ro /sys D: 6 0x00000062 4096 1022080 1022070 ro /sys/fs/cgroup D: 7 0x00000015 4096 1 -1 ro /sys/fs/cgroup/blkio D: 8 0x00000016 4096 1 -1 ro /sys/fs/cgroup/cpu D: 9 0x00000017 4096 1 -1 ro /sys/fs/cgroup/cpuacct D: 10 0x00000018 4096 1 -1 ro /sys/fs/cgroup/cpuset D: 11 0x00000019 4096 1 -1 ro /sys/fs/cgroup/devices D: 12 0x0000001a 4096 1 -1 ro /sys/fs/cgroup/freezer D: 13 0x0000001b 4096 1 -1 ro /sys/fs/cgroup/memory D: 14 0x0000001c 4096 1 -1 ro /sys/fs/cgroup/net_cls D: 15 0x0000001d 4096 1 -1 ro /sys/fs/cgroup/perf_event D: 16 0x0000fe02 4096 4231503 30960486 rw /etc/resolv.conf D: 17 0x0000fe02 4096 4231503 30960486 rw /etc/hostname D: 18 0x0000fe02 4096 4231503 30960486 rw /etc/hosts D: 19 0x0000005c 4096 16384 1022079 rw /dev/shm D: 20 0x0000000d 4096 1 -1 rw /dev/console D: 21 0x0000005e 4096 1 -1 ro /proc/bus D: 22 0x0000005e 4096 1 -1 ro /proc/fs D: 23 0x0000005e 4096 1 -1 ro /proc/irq D: 24 0x0000005e 4096 1 -1 ro /proc/sys D: 25 0x0000005e 4096 1 -1 ro /proc/sysrq-trigger D: 26 0x0000005f 4096 1022080 1022062 rw /proc/kcore D: 27 0x0000005f 4096 1022080 1022062 rw /proc/timer_stats D: sanity checking 5 elements D: opening db index /var/lib/rpm/Name create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Nvra create:thread:auto_commit mode=0x42 D: running pre-transaction scripts D: computing 159 file fingerprints D: pool ht: created size 72 limit -1 flags 0 Preparing... D: computing file dispositions D: opening db index /var/lib/rpm/Basenames create:thread:auto_commit mode=0x42 ########################################### [100%] D: pool psm: created size 608 limit -1 flags 0 D: ========== +++ lz4-libs-r131-4.x86_64 x86_64-linux 0x2 D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) D: Actual size: 39670 D: install: lz4-libs-r131-4.x86_64 has 2 files, test = 0 D: opening db index /var/lib/rpm/Sha1header create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Triggername create:thread:auto_commit mode=0x42 1:lz4-libs D: ========== Directories not explicitly included in package: D: 0 /usr/lib64/ D: ========== D: pool ctx: created size 112 limit -1 flags 0 ########################################### [ 20%] D: fini 100755 1 ( 0, 0) 95272 /usr/lib64/liblz4.so.1.7.1;574d3432 XZDIO: 12 reads, 95536 total bytes in 0.004676 secs D: install: %post(lz4-libs-r131-4.x86_64) synchronous scriptlet start D: install: %post(lz4-libs-r131-4.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(14) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) execv(/sbin/ldconfig) pid 22 D: install: waitpid(22) rc 22 status 0 secs 0.008 D: opening db index /var/lib/rpm/Seqno create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Filepaths create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Packagecolor create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Pubkeys create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Filedigests create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Sigmd5 create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Installtid create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Dirnames create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Conflictname create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Requirename create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Providename create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Group create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Os create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Arch create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Release create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Version create:thread:auto_commit mode=0x42 D: +++ /var/cache/hrmib/lz4-libs-r131-4.x86_64 D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64-linux 0x2 D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) D: Actual size: 126857 D: install: libgpg-error-1.22-1.x86_64 has 28 files, test = 0 2:libgpg-error D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/bin/ D: 2 /usr/share/doc/ D: 4 /usr/share/locale/cs/LC_MESSAGES/ D: 5 /usr/share/locale/da/LC_MESSAGES/ D: 6 /usr/share/locale/de/LC_MESSAGES/ D: 7 /usr/share/locale/eo/LC_MESSAGES/ D: 8 /usr/share/locale/fr/LC_MESSAGES/ D: 9 /usr/share/locale/hu/LC_MESSAGES/ D: 10 /usr/share/locale/it/LC_MESSAGES/ D: 11 /usr/share/locale/ja/LC_MESSAGES/ D: 12 /usr/share/locale/nl/LC_MESSAGES/ D: 13 /usr/share/locale/pl/LC_MESSAGES/ D: 14 /usr/share/locale/pt/LC_MESSAGES/ D: 15 /usr/share/locale/ro/LC_MESSAGES/ D: 16 /usr/share/locale/ru/LC_MESSAGES/ D: 17 /usr/share/locale/sr/LC_MESSAGES/ D: 18 /usr/share/locale/sv/LC_MESSAGES/ D: 19 /usr/share/locale/uk/LC_MESSAGES/ D: 20 /usr/share/locale/vi/LC_MESSAGES/ D: 21 /usr/share/locale/zh_CN/LC_MESSAGES/ D: 22 /usr/share/locale/zh_TW/LC_MESSAGES/ D: ========== D: /usr/share/locale/cs directory created with perms 0755, context (no context). D: /usr/share/locale/cs/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/da directory created with perms 0755, context (no context). D: /usr/share/locale/da/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/de directory created with perms 0755, context (no context). D: /usr/share/locale/de/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/eo directory created with perms 0755, context (no context). D: /usr/share/locale/eo/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/fr directory created with perms 0755, context (no context). D: /usr/share/locale/fr/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/hu directory created with perms 0755, context (no context). D: /usr/share/locale/hu/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/it directory created with perms 0755, context (no context). D: /usr/share/locale/it/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/ja directory created with perms 0755, context (no context). D: /usr/share/locale/ja/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/nl directory created with perms 0755, context (no context). D: /usr/share/locale/nl/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/pl directory created with perms 0755, context (no context). D: /usr/share/locale/pl/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/pt directory created with perms 0755, context (no context). D: /usr/share/locale/pt/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/ro directory created with perms 0755, context (no context). D: /usr/share/locale/ro/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/ru directory created with perms 0755, context (no context). D: /usr/share/locale/ru/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/sr directory created with perms 0755, context (no context). D: /usr/share/locale/sr/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/sv directory created with perms 0755, context (no context). D: /usr/share/locale/sv/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/uk directory created with perms 0755, context (no context). D: /usr/share/locale/uk/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/vi directory created with perms 0755, context (no context). D: /usr/share/locale/vi/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/zh_CN directory created with perms 0755, context (no context). D: /usr/share/locale/zh_CN/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/zh_TW directory created with perms 0755, context (no context). D: /usr/share/locale/zh_TW/LC_MESSAGES directory created with perms 0755, context (no context). D: fini 100755 1 ( 0, 0) 80400 /lib64/libgpg-error.so.0.18.0;574d3432 D: fini 100755 1 ( 0, 0) 26824 /usr/bin/gpg-error;574d3432 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgpg-error-1.22 D: fini 100644 1 ( 0, 0) 1225 /usr/share/doc/libgpg-error-1.22/AUTHORS.gz;574d3432 D: fini 100644 1 ( 0, 0) 10212 /usr/share/doc/libgpg-error-1.22/ChangeLog.gz;574d3432 D: fini 100644 1 ( 0, 0) 5222 /usr/share/doc/libgpg-error-1.22/NEWS.gz;574d3432 D: fini 100644 1 ( 0, 0) 2347 /usr/share/doc/libgpg-error-1.22/README.gz;574d3432 D: fini 100644 1 ( 0, 0) 424 /usr/share/doc/libgpg-error-1.22/THANKS.gz;574d3432 D: fini 100644 1 ( 0, 0) 20911 /usr/share/locale/cs/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 19906 /usr/share/locale/da/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 28270 /usr/share/locale/de/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 16376 /usr/share/locale/eo/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 21567 /usr/share/locale/fr/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 17543 /usr/share/locale/hu/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 21166 /usr/share/locale/it/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 31202 /usr/share/locale/ja/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 20610 /usr/share/locale/nl/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 28119 /usr/share/locale/pl/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 21407 /usr/share/locale/pt/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 14347 /usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 35559 /usr/share/locale/ru/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 21288 /usr/share/locale/sr/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 16234 /usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 36594 /usr/share/locale/uk/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 18368 /usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo;574d3432 D: fini 100644 1 ( 0, 0) 11753 /usr/share/locale/zh_CN/LC_MESSAGES/libgpg-error.mo;574d3432 ########################################### [ 40%] D: fini 100644 1 ( 0, 0) 19667 /usr/share/locale/zh_TW/LC_MESSAGES/libgpg-error.mo;574d3432 XZDIO: 68 reads, 551944 total bytes in 0.017189 secs D: install: %post(libgpg-error-1.22-1.x86_64) synchronous scriptlet start D: install: %post(libgpg-error-1.22-1.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(14) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) execv(/sbin/ldconfig) pid 23 D: install: waitpid(23) rc 23 status 0 secs 0.003 D: +++ /var/cache/hrmib/libgpg-error-1.22-1.x86_64 D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64-linux 0x2 D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) D: Actual size: 471376 D: install: libgcrypt-1.7.0-1.x86_64 has 9 files, test = 0 3:libgcrypt D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/share/doc/ D: ========== D: fini 100755 1 ( 0, 0) 1104224 /lib64/libgcrypt.so.20.1.0;574d3432 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgcrypt-1.7.0 D: fini 100644 1 ( 0, 0) 3391 /usr/share/doc/libgcrypt-1.7.0/AUTHORS.gz;574d3432 D: fini 100644 1 ( 0, 0) 75713 /usr/share/doc/libgcrypt-1.7.0/ChangeLog.gz;574d3432 ########################################### [ 60%] D: fini 100644 1 ( 0, 0) 10089 /usr/share/doc/libgcrypt-1.7.0/NEWS.gz;574d3432 D: fini 100644 1 ( 0, 0) 4092 /usr/share/doc/libgcrypt-1.7.0/README.gz;574d3432 D: fini 100644 1 ( 0, 0) 3618 /usr/share/doc/libgcrypt-1.7.0/THANKS.gz;574d3432 D: fini 100644 1 ( 0, 0) 1107 /usr/share/doc/libgcrypt-1.7.0/TODO.gz;574d3432 XZDIO: 147 reads, 1203572 total bytes in 0.054665 secs D: install: %post(libgcrypt-1.7.0-1.x86_64) synchronous scriptlet start D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(14) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) execv(/sbin/ldconfig) pid 24 D: install: waitpid(24) rc 24 status 0 secs 0.003 D: +++ /var/cache/hrmib/libgcrypt-1.7.0-1.x86_64 D: ========== +++ systemd-libs-221-13.x86_64 x86_64-linux 0x2 D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) D: Actual size: 330664 D: install: systemd-libs-221-13.x86_64 has 13 files, test = 0 4:systemd-libs D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/lib64/ D: ========== D: fini 100755 1 ( 0, 0) 67824 /lib64/libnss_myhostname.so.2;574d3432 D: fini 100755 1 ( 0, 0) 24408 /lib64/libsystemd-daemon.so.0.0.12;574d3432 D: fini 100755 1 ( 0, 0) 23616 /lib64/libsystemd-id128.so.0.0.28;574d3432 D: fini 100755 1 ( 0, 0) 135304 /lib64/libsystemd-journal.so.0.11.5;574d3432 D: fini 100755 1 ( 0, 0) 58104 /lib64/libsystemd-login.so.0.9.3;574d3432 D: fini 100755 1 ( 0, 0) 536184 /lib64/libsystemd.so.0.8.0;574d3432 D: fini 100755 1 ( 0, 0) 261752 /usr/lib64/libnss_mymachines.so.2;574d3432 ########################################### [ 80%] D: fini 100755 1 ( 0, 0) 265848 /usr/lib64/libnss_resolve.so.2;574d3432 XZDIO: 168 reads, 1374328 total bytes in 0.038585 secs D: install: %post(systemd-libs-221-13.x86_64) synchronous scriptlet start D: install: %post(systemd-libs-221-13.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(14) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) execv(/sbin/ldconfig) pid 25 D: install: waitpid(25) rc 25 status 0 secs 0.004 D: opening db index /var/lib/rpm/Obsoletename create:thread:auto_commit mode=0x42 D: +++ /var/cache/hrmib/systemd-libs-221-13.x86_64 D: ========== +++ procps-3.3.11-1.x86_64 x86_64-linux 0x2 D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) D: Actual size: 454662 D: install: procps-3.3.11-1.x86_64 has 107 files, test = 0 5:procps D: ========== Directories not explicitly included in package: D: 0 /bin/ D: 1 /lib64/ D: 2 /sbin/ D: 3 /usr/bin/ D: 4 /usr/share/applications/ D: 5 /usr/share/doc/ D: 7 /usr/share/locale/de/LC_MESSAGES/ D: 8 /usr/share/locale/fr/LC_MESSAGES/ D: 9 /usr/share/locale/pl/LC_MESSAGES/ D: 10 /usr/share/locale/uk/LC_MESSAGES/ D: 11 /usr/share/locale/vi/LC_MESSAGES/ D: 12 /usr/share/man/cs/man1/ D: 13 /usr/share/man/de/man1/ D: 14 /usr/share/man/es/man1/ D: 15 /usr/share/man/es/man8/ D: 16 /usr/share/man/fi/man1/ D: 17 /usr/share/man/fr/man1/ D: 18 /usr/share/man/fr/man8/ D: 19 /usr/share/man/hu/man1/ D: 20 /usr/share/man/it/man1/ D: 21 /usr/share/man/it/man8/ D: 22 /usr/share/man/ja/man1/ D: 23 /usr/share/man/ja/man5/ D: 24 /usr/share/man/ja/man8/ D: 25 /usr/share/man/ko/man1/ D: 26 /usr/share/man/man1/ D: 27 /usr/share/man/man5/ D: 28 /usr/share/man/man8/ D: 29 /usr/share/man/nl/man1/ D: 30 /usr/share/man/pl/man1/ D: 31 /usr/share/pixmaps/ D: ========== D: /usr/share/man/cs directory created with perms 0755, context (no context). D: /usr/share/man/cs/man1 directory created with perms 0755, context (no context). D: /usr/share/man/de directory created with perms 0755, context (no context). D: /usr/share/man/de/man1 directory created with perms 0755, context (no context). D: /usr/share/man/es directory created with perms 0755, context (no context). D: /usr/share/man/es/man1 directory created with perms 0755, context (no context). D: /usr/share/man/es/man8 directory created with perms 0755, context (no context). D: /usr/share/man/fi directory created with perms 0755, context (no context). D: /usr/share/man/fi/man1 directory created with perms 0755, context (no context). D: /usr/share/man/fr directory created with perms 0755, context (no context). D: /usr/share/man/fr/man1 directory created with perms 0755, context (no context). D: /usr/share/man/fr/man8 directory created with perms 0755, context (no context). D: /usr/share/man/hu directory created with perms 0755, context (no context). D: /usr/share/man/hu/man1 directory created with perms 0755, context (no context). D: /usr/share/man/it directory created with perms 0755, context (no context). D: /usr/share/man/it/man1 directory created with perms 0755, context (no context). D: /usr/share/man/it/man8 directory created with perms 0755, context (no context). D: /usr/share/man/ja directory created with perms 0755, context (no context). D: /usr/share/man/ja/man1 directory created with perms 0755, context (no context). D: /usr/share/man/ja/man5 directory created with perms 0755, context (no context). D: /usr/share/man/ja/man8 directory created with perms 0755, context (no context). D: /usr/share/man/ko directory created with perms 0755, context (no context). D: /usr/share/man/ko/man1 directory created with perms 0755, context (no context). D: /usr/share/man/nl directory created with perms 0755, context (no context). D: /usr/share/man/nl/man1 directory created with perms 0755, context (no context). D: /usr/share/man/pl directory created with perms 0755, context (no context). D: /usr/share/man/pl/man1 directory created with perms 0755, context (no context). D: fini 100755 1 ( 0, 0) 97248 /bin/ps;574d3432 D: fini 100755 1 ( 0, 0) 72456 /lib64/libprocps.so.5.0.0;574d3432 D: fini 100755 1 ( 0, 0) 22936 /sbin/sysctl;574d3432 D: fini 100755 1 ( 0, 0) 214 /usr/bin/XConsole;574d3432 D: fini 100755 1 ( 0, 0) 18688 /usr/bin/free;574d3432 D: fini 100755 1 ( 0, 0) 31232 /usr/bin/pmap;574d3432 D: fini 100755 1 ( 0, 0) 10488 /usr/bin/pwdx;574d3432 D: fini 100755 1 ( 0, 0) 18808 /usr/bin/slabtop;574d3432 D: fini 100755 1 ( 0, 0) 14664 /usr/bin/tload;574d3432 D: fini 100755 1 ( 0, 0) 104984 /usr/bin/top;574d3432 D: fini 100755 1 ( 0, 0) 10456 /usr/bin/uptime;574d3432 D: fini 100755 1 ( 0, 0) 35200 /usr/bin/vmstat;574d3432 D: fini 100755 1 ( 0, 0) 18816 /usr/bin/w;574d3432 D: fini 100755 1 ( 0, 0) 23536 /usr/bin/watch;574d3432 D: fini 100644 1 ( 0, 0) 240 /usr/share/applications/top.desktop;574d3432 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/procps-3.3.11 D: fini 100644 1 ( 0, 0) 654 /usr/share/doc/procps-3.3.11/AUTHORS.gz;574d3432 D: fini 100644 1 ( 0, 0) 2199 /usr/share/doc/procps-3.3.11/FAQ.gz;574d3432 D: fini 100644 1 ( 0, 0) 9720 /usr/share/doc/procps-3.3.11/NEWS.gz;574d3432 D: fini 100644 1 ( 0, 0) 2388 /usr/share/doc/procps-3.3.11/TODO.gz;574d3432 D: fini 100644 1 ( 0, 0) 1672 /usr/share/doc/procps-3.3.11/bugs.md.gz;574d3432 D: fini 100644 1 ( 0, 0) 68596 /usr/share/locale/de/LC_MESSAGES/procps-ng.mo;574d3432 D: fini 100644 1 ( 0, 0) 86426 /usr/share/locale/fr/LC_MESSAGES/procps-ng.mo;574d3432 D: fini 100644 1 ( 0, 0) 85445 /usr/share/locale/pl/LC_MESSAGES/procps-ng.mo;574d3432 D: fini 100644 1 ( 0, 0) 109697 /usr/share/locale/uk/LC_MESSAGES/procps-ng.mo;574d3432 D: fini 100644 1 ( 0, 0) 91075 /usr/share/locale/vi/LC_MESSAGES/procps-ng.mo;574d3432 D: fini 100644 1 ( 0, 0) 1175 /usr/share/man/cs/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 942 /usr/share/man/de/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 7299 /usr/share/man/de/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 862 /usr/share/man/es/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 5054 /usr/share/man/es/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 2734 /usr/share/man/es/man1/skill.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/es/man1/snice.1;574d3432 D: fini 100644 1 ( 0, 0) 867 /usr/share/man/es/man1/tload.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 6086 /usr/share/man/es/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 670 /usr/share/man/es/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1188 /usr/share/man/es/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 527 /usr/share/man/es/man1/watch.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1487 /usr/share/man/es/man8/vmstat.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 886 /usr/share/man/fi/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 6231 /usr/share/man/fi/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 653 /usr/share/man/fi/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1169 /usr/share/man/fi/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 860 /usr/share/man/fr/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 4802 /usr/share/man/fr/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 587 /usr/share/man/fr/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1776 /usr/share/man/fr/man8/vmstat.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 898 /usr/share/man/hu/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 5531 /usr/share/man/hu/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1033 /usr/share/man/hu/man1/tload.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 585 /usr/share/man/hu/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1291 /usr/share/man/hu/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 525 /usr/share/man/hu/man1/watch.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 900 /usr/share/man/it/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 4596 /usr/share/man/it/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 2618 /usr/share/man/it/man1/skill.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/it/man1/snice.1;574d3432 D: fini 100644 1 ( 0, 0) 831 /usr/share/man/it/man1/tload.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 5660 /usr/share/man/it/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 581 /usr/share/man/it/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1537 /usr/share/man/it/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 509 /usr/share/man/it/man1/watch.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1387 /usr/share/man/it/man8/vmstat.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 971 /usr/share/man/ja/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1981 /usr/share/man/ja/man1/pgrep.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/pkill.1;574d3432 D: fini 100644 1 ( 0, 0) 7224 /usr/share/man/ja/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1941 /usr/share/man/ja/man1/skill.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/snice.1;574d3432 D: fini 100644 1 ( 0, 0) 997 /usr/share/man/ja/man1/tload.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 6325 /usr/share/man/ja/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 759 /usr/share/man/ja/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1303 /usr/share/man/ja/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1392 /usr/share/man/ja/man1/watch.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 942 /usr/share/man/ja/man5/sysctl.conf.5.gz;574d3432 D: fini 100644 1 ( 0, 0) 1316 /usr/share/man/ja/man8/sysctl.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 1566 /usr/share/man/ja/man8/vmstat.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 921 /usr/share/man/ko/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1648 /usr/share/man/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 2230 /usr/share/man/man1/pgrep.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/pkill.1;574d3432 D: fini 100644 1 ( 0, 0) 952 /usr/share/man/man1/pmap.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 14064 /usr/share/man/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 494 /usr/share/man/man1/pwdx.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1529 /usr/share/man/man1/skill.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1428 /usr/share/man/man1/slabtop.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/snice.1;574d3432 D: fini 100644 1 ( 0, 0) 805 /usr/share/man/man1/tload.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 28843 /usr/share/man/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 891 /usr/share/man/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1280 /usr/share/man/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 2379 /usr/share/man/man1/watch.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 918 /usr/share/man/man5/sysctl.conf.5.gz;574d3432 D: fini 100644 1 ( 0, 0) 1868 /usr/share/man/man8/sysctl.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 2378 /usr/share/man/man8/vmstat.8.gz;574d3432 D: fini 100644 1 ( 0, 0) 8503 /usr/share/man/nl/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 998 /usr/share/man/pl/man1/free.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 4637 /usr/share/man/pl/man1/ps.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 6517 /usr/share/man/pl/man1/top.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 650 /usr/share/man/pl/man1/uptime.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 1141 /usr/share/man/pl/man1/w.1.gz;574d3432 D: fini 100644 1 ( 0, 0) 321 /usr/share/pixmaps/top.png;574d3432 D: fini 100755 2 ( 0, 0) 0 /usr/bin/skill;574d3432 D: fini 100755 2 ( 0, 0) 23032 /usr/bin/snice;574d3432 D: fini 100755 2 ( 0, 0) 0 /usr/bin/pgrep;574d3432 ########################################### [100%] D: fini 100755 2 ( 0, 0) 27160 /usr/bin/pkill;574d3432 XZDIO: 146 reads, 1189980 total bytes in 0.050424 secs D: install: %post(procps-3.3.11-1.x86_64) skipping redundant "/sbin/ldconfig". D: +++ /var/cache/hrmib/procps-3.3.11-1.x86_64 D: running post-transaction scripts D: closed db seqno /var/lib/rpm/Seqno D: closed db index /var/lib/rpm/Seqno D: closed db index /var/lib/rpm/Filepaths D: closed db index /var/lib/rpm/Nvra D: closed db index /var/lib/rpm/Packagecolor D: closed db index /var/lib/rpm/Pubkeys D: closed db index /var/lib/rpm/Filedigests D: closed db index /var/lib/rpm/Sha1header D: closed db index /var/lib/rpm/Sigmd5 D: closed db index /var/lib/rpm/Installtid D: closed db index /var/lib/rpm/Dirnames D: closed db index /var/lib/rpm/Triggername D: closed db index /var/lib/rpm/Obsoletename D: closed db index /var/lib/rpm/Conflictname D: closed db index /var/lib/rpm/Requirename D: closed db index /var/lib/rpm/Providename D: closed db index /var/lib/rpm/Group D: closed db index /var/lib/rpm/Basenames D: closed db index /var/lib/rpm/Os D: closed db index /var/lib/rpm/Arch D: closed db index /var/lib/rpm/Release D: closed db index /var/lib/rpm/Version D: closed db index /var/lib/rpm/Name D: closed db index /var/lib/rpm/Packages D: closed db environment /var/lib/rpm/Packages D: pool gi: reused 0, alloc'd 1, free'd 1 items. D: pool mi: reused 986, alloc'd 1, free'd 1 items. D: pool psm: reused 4, alloc'd 1, free'd 1 items. D: pool tsi: reused 40, alloc'd 2, free'd 2 items. D: pool ts: reused 0, alloc'd 1, free'd 1 items. D: pool te: reused 0, alloc'd 5, free'd 5 items. D: pool ps: reused 1, alloc'd 1, free'd 1 items. D: pool al: reused 0, alloc'd 1, free'd 1 items. D: pool ds: reused 63, alloc'd 31, free'd 31 items. D: pool fi: reused 5, alloc'd 5, free'd 5 items. D: pool db: reused 1, alloc'd 1, free'd 1 items. D: pool dbi: reused 5, alloc'd 23, free'd 23 items. D: pool h: reused 221, alloc'd 6, free'd 6 items. D: pool lua: reused 0, alloc'd 1, free'd 1 items. D: pool mire: reused 145, alloc'd 3, free'd 3 items. D: pool bf: reused 29, alloc'd 6, free'd 6 items. D: pool ht: reused 0, alloc'd 3, free'd 3 items. D: pool ctx: reused 144, alloc'd 1, free'd 1 items. D: pool iob: reused 0, alloc'd 1, free'd 1 items. D: pool dig: reused 9, alloc'd 1, free'd 1 items. D: pool fd: reused 179, alloc'd 3, free'd 3 items. D: exit code: 0 -- glen From jajcus at jajcus.net Tue May 31 09:05:10 2016 From: jajcus at jajcus.net (Jacek Konieczny) Date: Tue, 31 May 2016 09:05:10 +0200 Subject: ldconfig forgotten In-Reply-To: <574D34A8.2060806@pld-linux.org> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> Message-ID: On 2016-05-31 08:52, Elan Ruusam?e wrote: > D: install: %post(procps-3.3.11-1.x86_64) skipping redundant "/sbin/ldconfig". Looks like it is skipped on purpose? I wonder what is the reasoning behind it. Jacek From n3npq at mac.com Tue May 31 17:50:16 2016 From: n3npq at mac.com (Jeff Johnson) Date: Tue, 31 May 2016 11:50:16 -0400 Subject: ldconfig forgotten In-Reply-To: <574D34A8.2060806@pld-linux.org> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> Message-ID: <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> On May 31, 2016, at 2:52 AM, Elan Ruusam?e wrote: > On 31.05.2016 09:45, Elan Ruusam?e wrote: >> [root at 57c8cccdc671 bin]# poldek -u procps > oh, and it's 100% reproducible: > Yes. And it has been discussed many times over the last 15y, several times on this list. Short answer: Disable the mechanism with attached patch to lib/psm.c - OR -- Don't use %scriptlet -p /sbin/ldconfig in packages that are known to invoke an executable that depends on a new library. Longer answer: Libraries often have scriptlets like this: %post -p /sbin/ldconfig %postun -p /sbin/ldconfig (or the equivalent within a scriptlet body). On upgrade, with install before erase, this results in 2 executions of /sbin/ldconfig. One of those invocations is redundant when a library is being replaced, the install %post is sufficient to make the library avaialble for loading. The redundant invocation of /sbin/ldconfig was deemed a performance flaw @redhat, where I was asked to implement the current optimization. So the RPM optimization detects when /sbin/ldconfig has just been run, and skips the next %scriptlet -p /sbin/ldconfig (when written exactly like that) if /sbin/ldconfig has been executed. Issues are only seen when a scriptlet contains an executable that needs a changed API: this is usually a very rare occurrence There are other flaws with the optimization when dependency loops break the sorted order (and/or --noorder is used). , and the fix of running /sbin/ldconfig manually is rather simple (even if the problem is obscure). There is another flaw (as in your report), when the very last package has a pending skipped /sbin/ldconfig invocation. The fix of running /sbin/ldconfig manually is rather simple (even if the problem is obscure). hth 73 de Jeff =================================================================== RCS file: /v/rpm/cvs/rpm/lib/psm.c,v retrieving revision 2.399.2.20 diff -p -u -w -r2.399.2.20 psm.c --- psm.c 11 May 2015 21:10:16 -0000 2.399.2.20 +++ psm.c 31 May 2016 15:19:20 -0000 @@ -800,7 +800,7 @@ static rpmRC runEmbeddedScript(rpmpsm ps static int ldconfig_done = 0; /*@unchecked@*/ /*@observer@*/ /*@null@*/ -static const char * ldconfig_path = "/sbin/ldconfig"; +static const char * ldconfig_path = NULL; /** * Run scriptlet with args. > $ docker run --rm -it glen/pld bash > [root at 412a6cf4756e /]# poldek -u procps > [root at 412a6cf4756e /]# ps > ps: error while loading shared libraries: libprocps.so.5: cannot open shared object file: No such file or directory > > > and here's appropriate rpm -vvv run: > > [root at 93a685e61c8b /]# poldek -u procps --pmopt=verbose --pmopt=verbose --pmopt=verbose > Loading [pndir]th... > Loading [pndir]th... > 25794 packages read > Processing dependencies... > procps-3.3.11-1.x86_64 marks systemd-libs-221-13.x86_64 (cap libsystemd.so.0()(64bit)) > systemd-libs-221-13.x86_64 marks libgcrypt-1.7.0-1.x86_64 (cap libgcrypt >= 1.4.5) > libgcrypt-1.7.0-1.x86_64 marks libgpg-error-1.22-1.x86_64 (cap libgpg-error >= 1.13) > systemd-libs-221-13.x86_64 marks lz4-libs-r131-4.x86_64 (cap liblz4.so.1()(64bit)) > There are 5 packages to install (4 marked by dependencies): > I procps-3.3.11-1.x86_64 > D libgcrypt-1.7.0-1.x86_64 libgpg-error-1.22-1.x86_64 lz4-libs-r131-4.x86_64 systemd-libs-221-13.x86_64 > This operation will use 4.2MB of disk space. > Need to get 1.4MB of archives. > Executing pm-command.sh --upgrade -vh --root / --define _check_dirname_deps 1 --verbose --verbose --verbose... > D: pool ts: created size 1200 limit -1 flags 0 > D: pool gi: created size 176 limit -1 flags 0 > D: pool dig: created size 424 limit -1 flags 0 > D: pool h: created size 360 limit -1 flags 0 > D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) > D: Actual size: 126857 > D: pool ds: created size 232 limit -1 flags 0 > D: pool tsi: created size 48 limit -1 flags 0 > D: pool te: created size 368 limit -1 flags 0 > D: pool fi: created size 560 limit -1 flags 0 > D: pool al: created size 64 limit -1 flags 0 > D: pool bf: created size 56 limit -1 flags 0 > D: pool db: created size 328 limit -1 flags 0 > D: pool dbi: created size 472 limit -1 flags 0 > D: rpmdb: cpus 8 physmem 7985Mb > D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn > D: opening db index /var/lib/rpm/Packages thread:rdonly:auto_commit mode=0x0 > D: opening db index /var/lib/rpm/Name thread:rdonly:auto_commit mode=0x0 > D: pool mi: created size 152 limit -1 flags 0 > D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) > D: Actual size: 471376 > D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) > D: Actual size: 39670 > D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) > D: Actual size: 330664 > D: opening db index /var/lib/rpm/Providename thread:rdonly:auto_commit mode=0x0 > D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) > D: Actual size: 454662 > D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64/linux 0x2 > D: pool ps: created size 40 limit -1 flags 0 > D: opening db index /var/lib/rpm/Filepaths thread:rdonly:auto_commit mode=0x0 > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: libc.so.6()(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) > D: Requires: rtld(GNU_HASH) YES (db provides) > D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) > D: Dirs: /lib64 YES (db files) > D: Dirs: /usr/bin YES (db files) > D: Dirs: /usr/share/doc YES (db files) > D: Dirs: /usr/share/doc/libgpg-error-1.22 YES (added files) > D: Dirs: /usr/share/locale/cs/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/da/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/eo/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/hu/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/it/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/ja/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/nl/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/pt/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/ro/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/ru/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/sr/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/sv/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/zh_CN/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/zh_TW/LC_MESSAGES YES (db files) > D: opening db index /var/lib/rpm/Conflictname thread:rdonly:auto_commit mode=0x0 > D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64/linux 0x2 > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: libc.so.6()(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) > D: Requires: libgpg-error >= 1.13 YES (added provide) > D: Requires: libgpg-error.so.0()(64bit) YES (added provide) > D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) > D: Requires: rtld(GNU_HASH) YES (db provides) > D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) > D: Dirs: /lib64 YES (db files) > D: Dirs: /usr/share/doc YES (db files) > D: Dirs: /usr/share/doc/libgcrypt-1.7.0 YES (added files) > D: ========== +++ lz4-libs-r131-4.x86_64 x86_64/linux 0x2 > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: libc.so.6()(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: rtld(GNU_HASH) YES (db provides) > D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) > D: Conflicts: lz4 < 0.0-1.r121.3 NO > D: Dirs: /usr/lib64 YES (db files) > D: ========== +++ systemd-libs-221-13.x86_64 x86_64/linux 0x2 > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: ld-linux-x86-64.so.2()(64bit) YES (db provides) > D: Requires: ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) YES (db provides) > D: Requires: libattr.so.1()(64bit) YES (db provides) > D: Requires: libattr.so.1(ATTR_1.0)(64bit) YES (db provides) > D: Requires: libc.so.6()(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.16)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.17)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3.2)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.7)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.9)(64bit) YES (db provides) > D: Requires: libdl.so.2()(64bit) YES (db provides) > D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libgcrypt >= 1.4.5 YES (added provide) > D: Requires: libgcrypt.so.20()(64bit) YES (added provide) > D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) > D: Requires: liblz4.so.1()(64bit) YES (added provide) > D: Requires: liblzma.so.5()(64bit) YES (db provides) > D: Requires: liblzma.so.5(XZ_5.0)(64bit) YES (db provides) > D: Requires: libpthread.so.0()(64bit) YES (db provides) > D: Requires: libpthread.so.0(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: librt.so.1()(64bit) YES (db provides) > D: Requires: librt.so.1(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: librt.so.1(GLIBC_2.3.4)(64bit) YES (db provides) > D: Requires: libselinux >= 2.1.9 YES (db provides) > D: Requires: rtld(GNU_HASH) YES (db provides) > D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) > D: Dirs: /lib64 YES (db files) > D: Dirs: /usr/lib64 YES (db files) > D: ========== +++ procps-3.3.11-1.x86_64 x86_64/linux 0x2 > D: Requires: /bin/sh YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: /sbin/ldconfig YES (db files) > D: Requires: fileutils YES (db provides) > D: Requires: libc.so.6()(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.11)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) > D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) > D: Requires: libdl.so.2()(64bit) YES (db provides) > D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) > D: Requires: libncursesw.so.6()(64bit) YES (db provides) > D: Requires: libsystemd.so.0()(64bit) YES (added provide) > D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) > D: Requires: rpmlib(PartialHardlinkSets) <= 4.0.4-1 YES (rpmlib provides) > D: Requires: rtld(GNU_HASH) YES (db provides) > D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) > D: Dirs: /bin YES (db files) > D: Dirs: /lib64 YES (db files) > D: Dirs: /sbin YES (db files) > D: Dirs: /usr/bin YES (db files) > D: Dirs: /usr/share/applications YES (db files) > D: Dirs: /usr/share/doc YES (db files) > D: Dirs: /usr/share/doc/procps-3.3.11 YES (added files) > D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) > D: Dirs: /usr/share/man/cs/man1 YES (db files) > D: Dirs: /usr/share/man/de/man1 YES (db files) > D: Dirs: /usr/share/man/es/man1 YES (db files) > D: Dirs: /usr/share/man/es/man8 YES (db files) > D: Dirs: /usr/share/man/fi/man1 YES (db files) > D: Dirs: /usr/share/man/fr/man1 YES (db files) > D: Dirs: /usr/share/man/fr/man8 YES (db files) > D: Dirs: /usr/share/man/hu/man1 YES (db files) > D: Dirs: /usr/share/man/it/man1 YES (db files) > D: Dirs: /usr/share/man/it/man8 YES (db files) > D: Dirs: /usr/share/man/ja/man1 YES (db files) > D: Dirs: /usr/share/man/ja/man5 YES (db files) > D: Dirs: /usr/share/man/ja/man8 YES (db files) > D: Dirs: /usr/share/man/ko/man1 YES (db files) > D: Dirs: /usr/share/man/man1 YES (db files) > D: Dirs: /usr/share/man/man5 YES (db files) > D: Dirs: /usr/share/man/man8 YES (db files) > D: Dirs: /usr/share/man/nl/man1 YES (db files) > D: Dirs: /usr/share/man/pl/man1 YES (db files) > D: Dirs: /usr/share/pixmaps YES (db files) > D: ========== recording tsort relations > D: Requires: libgpg-error >= 1.13 YES (added provide) > D: ignore package name relation(s) [0] QtGui -> Qt3Support > D: ignore package name relation(s) [1] QtGui -> QtSvg > D: ignore package name relation(s) [2] ZendFramework-Zend_Cache -> ZendFramework-Zend_Json > D: ignore package name relation(s) [3] ZendFramework-Zend_Cache -> ZendFramework-Zend_Log > D: ignore package name relation(s) [4] ZendFramework-Zend_Controller -> ZendFramework-Zend_Dojo > D: ignore package name relation(s) [5] ZendFramework-Zend_Controller -> ZendFramework-Zend_Json > D: ignore package name relation(s) [6] ZendFramework-Zend_Controller -> ZendFramework-Zend_Layout > D: ignore package name relation(s) [7] ZendFramework-Zend_Controller -> ZendFramework-Zend_Session > D: ignore package name relation(s) [8] ZendFramework-Zend_Controller -> ZendFramework-Zend_Uri > D: ignore package name relation(s) [9] ZendFramework-Zend_Controller -> ZendFramework-Zend_View > D: ignore package name relation(s) [10] ZendFramework-Zend_Layout -> ZendFramework-Zend_View > D: ignore package name relation(s) [11] ZendFramework-Zend_Validate -> ZendFramework-Zend_Uri > D: ignore package name relation(s) [12] ZendFramework -> ZendFramework-Zend_Date > D: ignore package name relation(s) [13] ZendFramework -> ZendFramework-Zend_Exception > D: ignore package name relation(s) [14] ZendFramework -> ZendFramework-Zend_Http > D: ignore package name relation(s) [15] ZendFramework -> ZendFramework-Zend_Loader > D: ignore package name relation(s) [16] ZendFramework -> ZendFramework-Zend_Loader > D: ignore package name relation(s) [17] ZendFramework -> ZendFramework-Zend_Registry > D: ignore package name relation(s) [18] amarok -> amarok-xine > D: ignore package name relation(s) [19] esound-libs -> esound-alsa > D: ignore package name relation(s) [20] glibc64 -> glibc-misc > D: ignore package name relation(s) [21] glibc -> glibc-localedb-all > D: ignore package name relation(s) [22] glibc -> glibc-misc > D: ignore package name relation(s) [23] glibc -> localedb-src > D: ignore package name relation(s) [24] gtk+2 -> gtk+2-cups > D: ignore package name relation(s) [25] hal -> hal-info > D: ignore package name relation(s) [26] java-sun-jre -> java-sun-jre-X11 > D: ignore package name relation(s) [27] java-sun-jre -> java-sun-tools > D: ignore package name relation(s) [28] lighttpd -> lighttpd-mod_dirlisting > D: ignore package name relation(s) [29] lighttpd -> lighttpd-mod_indexfile > D: ignore package name relation(s) [30] lighttpd -> lighttpd-mod_staticfile > D: ignore package name relation(s) [31] openjdk-jre -> openjdk-tools > D: ignore package name relation(s) [32] openvpn -> openvpn-plugin-auth-pam > D: ignore package name relation(s) [33] openvpn -> openvpn-plugin-down-root > D: ignore package name relation(s) [34] phorum -> phorum-db-mysql > D: ignore package name relation(s) [35] phorum -> phorum-db-mysqli > D: ignore package name relation(s) [36] phorum -> phorum-db-sql_pool > D: ignore package name relation(s) [37] php-common -> php-pcre > D: ignore package name relation(s) [38] php-common -> php-session > D: ignore package name relation(s) [39] php-common -> php-simplexml > D: ignore package name relation(s) [40] php-common -> php-spl > D: ignore package name relation(s) [41] php-spl -> php-simplexml > D: ignore package name relation(s) [42] php52-common -> php52-pcre > D: ignore package name relation(s) [43] php52-common -> php52-session > D: ignore package name relation(s) [44] php52-common -> php52-simplexml > D: ignore package name relation(s) [45] php52-common -> php52-spl > D: ignore package name relation(s) [46] php52-spl -> php52-simplexml > D: ignore package name relation(s) [47] php54-common -> php54-pcre > D: ignore package name relation(s) [48] php54-common -> php54-session > D: ignore package name relation(s) [49] php54-common -> php54-simplexml > D: ignore package name relation(s) [50] php54-common -> php54-spl > D: ignore package name relation(s) [51] php54-spl -> php54-simplexml > D: ignore package name relation(s) [52] python3-libs -> python3 > D: ignore package name relation(s) [53] roundcubemail -> roundcubemail-skin-default > D: ignore package name relation(s) [54] util-vserver-build -> vserver-distro-pld > D: ignore package name relation(s) [55] util-vserver -> vserver-distro-pld > D: ignore package name relation(s) [56] vim -> vim-rt > D: ignore package name relation(s) [57] fontpostinst -> t1lib > D: ignore package name relation(s) [58] glibc -> nss-softokn-freebl > D: ignore package name relation(s) [59] glibc -> tzdata > D: ignore package name relation(s) [60] gmplayer -> mplayer-skin-KDE > D: ignore package name relation(s) [61] kdebase-desktop -> kde-kside-PLD > D: ignore package name relation(s) [62] kdebase-desktop -> kde-logoutpic-PLD > D: ignore package name relation(s) [63] kdebase-desktop -> kde-splash-Default > D: ignore package name relation(s) [64] kdelibs -> kdelibs-shared > D: ignore package name relation(s) [65] koffice-kexi -> koffice-kspread > D: ignore package name relation(s) [66] konqueror -> kdeaddons-fsview > D: ignore package name relation(s) [67] konqueror -> kdeaddons-konqueror > D: ignore package name relation(s) [68] konqueror -> kdemultimedia-audiocd > D: ignore package name relation(s) [69] php-pear-PEAR-core -> php-pear-Console_Getopt > D: ignore package name relation(s) [70] rc-scripts -> blockdev > D: ignore package name relation(s) [71] upstart -> dbus > D: ignore package name relation(s) [72] vim-rt -> vim-plugin-securemodelines > D: ignore package name relation(s) [73] vim-rt -> vim-syntax-poldek > D: ignore package name relation(s) [74] vim-rt -> vim-syntax-spec > D: Requires: libgpg-error.so.0()(64bit) YES (added provide) > D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) > D: Requires: libgcrypt >= 1.4.5 YES (added provide) > D: Requires: libgcrypt.so.20()(64bit) YES (added provide) > D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) > D: Requires: liblz4.so.1()(64bit) YES (added provide) > D: Requires: libsystemd.so.0()(64bit) YES (added provide) > D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) > D: ========== tsorting packages (order, #predecessors, #succesors, tree, Ldepth, Rbreadth) > D: 0 0 1 2 0 0 +lz4-libs-r131-4.x86_64 > D: 1 0 1 1 0 1 +libgpg-error-1.22-1.x86_64 > D: 2 1 1 1 1 0 +libgcrypt-1.7.0-1.x86_64 > D: 3 2 1 1 2 0 +systemd-libs-221-13.x86_64 > D: ========== successors only (968503 bytes) > D: 4 1 0 1 3 0 +procps-3.3.11-1.x86_64 > D: closed db index /var/lib/rpm/Filepaths > D: closed db index /var/lib/rpm/Conflictname > D: closed db index /var/lib/rpm/Providename > D: closed db index /var/lib/rpm/Name > D: closed db index /var/lib/rpm/Packages > D: closed db environment /var/lib/rpm/Packages > D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn > D: opening db index /var/lib/rpm/Packages create:thread:auto_commit mode=0x42 > D: mounted filesystems: > D: i dev bsize bavail iavail mount point > D: 0 0x0000005b 4096 4231503 30960486 rw / > D: 1 0x0000005e 4096 1 -1 rw /proc > D: 2 0x0000005f 4096 1022080 1022062 rw /dev > D: 3 0x00000060 4096 1 -1 rw /dev/pts > D: 4 0x0000005d 4096 1 -1 rw /dev/mqueue > D: 5 0x00000061 4096 1 -1 ro /sys > D: 6 0x00000062 4096 1022080 1022070 ro /sys/fs/cgroup > D: 7 0x00000015 4096 1 -1 ro /sys/fs/cgroup/blkio > D: 8 0x00000016 4096 1 -1 ro /sys/fs/cgroup/cpu > D: 9 0x00000017 4096 1 -1 ro /sys/fs/cgroup/cpuacct > D: 10 0x00000018 4096 1 -1 ro /sys/fs/cgroup/cpuset > D: 11 0x00000019 4096 1 -1 ro /sys/fs/cgroup/devices > D: 12 0x0000001a 4096 1 -1 ro /sys/fs/cgroup/freezer > D: 13 0x0000001b 4096 1 -1 ro /sys/fs/cgroup/memory > D: 14 0x0000001c 4096 1 -1 ro /sys/fs/cgroup/net_cls > D: 15 0x0000001d 4096 1 -1 ro /sys/fs/cgroup/perf_event > D: 16 0x0000fe02 4096 4231503 30960486 rw /etc/resolv.conf > D: 17 0x0000fe02 4096 4231503 30960486 rw /etc/hostname > D: 18 0x0000fe02 4096 4231503 30960486 rw /etc/hosts > D: 19 0x0000005c 4096 16384 1022079 rw /dev/shm > D: 20 0x0000000d 4096 1 -1 rw /dev/console > D: 21 0x0000005e 4096 1 -1 ro /proc/bus > D: 22 0x0000005e 4096 1 -1 ro /proc/fs > D: 23 0x0000005e 4096 1 -1 ro /proc/irq > D: 24 0x0000005e 4096 1 -1 ro /proc/sys > D: 25 0x0000005e 4096 1 -1 ro /proc/sysrq-trigger > D: 26 0x0000005f 4096 1022080 1022062 rw /proc/kcore > D: 27 0x0000005f 4096 1022080 1022062 rw /proc/timer_stats > D: sanity checking 5 elements > D: opening db index /var/lib/rpm/Name create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Nvra create:thread:auto_commit mode=0x42 > D: running pre-transaction scripts > D: computing 159 file fingerprints > D: pool ht: created size 72 limit -1 flags 0 > Preparing... D: computing file dispositions > D: opening db index /var/lib/rpm/Basenames create:thread:auto_commit mode=0x42 > ########################################### [100%] > D: pool psm: created size 608 limit -1 flags 0 > D: ========== +++ lz4-libs-r131-4.x86_64 x86_64-linux 0x2 > D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) > D: Actual size: 39670 > D: install: lz4-libs-r131-4.x86_64 has 2 files, test = 0 > D: opening db index /var/lib/rpm/Sha1header create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Triggername create:thread:auto_commit mode=0x42 > 1:lz4-libs D: ========== Directories not explicitly included in package: > D: 0 /usr/lib64/ > D: ========== > D: pool ctx: created size 112 limit -1 flags 0 > ########################################### [ 20%] > D: fini 100755 1 ( 0, 0) 95272 /usr/lib64/liblz4.so.1.7.1;574d3432 > XZDIO: 12 reads, 95536 total bytes in 0.004676 secs > D: install: %post(lz4-libs-r131-4.x86_64) synchronous scriptlet start > D: install: %post(lz4-libs-r131-4.x86_64) fdno(3) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(4) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(5) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(6) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(7) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(8) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(9) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(10) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(11) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(12) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) fdno(14) missing FD_CLOEXEC > D: install: %post(lz4-libs-r131-4.x86_64) execv(/sbin/ldconfig) pid 22 > D: install: waitpid(22) rc 22 status 0 secs 0.008 > D: opening db index /var/lib/rpm/Seqno create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Filepaths create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Packagecolor create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Pubkeys create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Filedigests create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Sigmd5 create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Installtid create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Dirnames create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Conflictname create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Requirename create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Providename create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Group create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Os create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Arch create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Release create:thread:auto_commit mode=0x42 > D: opening db index /var/lib/rpm/Version create:thread:auto_commit mode=0x42 > D: +++ /var/cache/hrmib/lz4-libs-r131-4.x86_64 > D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64-linux 0x2 > D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) > D: Actual size: 126857 > D: install: libgpg-error-1.22-1.x86_64 has 28 files, test = 0 > 2:libgpg-error D: ========== Directories not explicitly included in package: > D: 0 /lib64/ > D: 1 /usr/bin/ > D: 2 /usr/share/doc/ > D: 4 /usr/share/locale/cs/LC_MESSAGES/ > D: 5 /usr/share/locale/da/LC_MESSAGES/ > D: 6 /usr/share/locale/de/LC_MESSAGES/ > D: 7 /usr/share/locale/eo/LC_MESSAGES/ > D: 8 /usr/share/locale/fr/LC_MESSAGES/ > D: 9 /usr/share/locale/hu/LC_MESSAGES/ > D: 10 /usr/share/locale/it/LC_MESSAGES/ > D: 11 /usr/share/locale/ja/LC_MESSAGES/ > D: 12 /usr/share/locale/nl/LC_MESSAGES/ > D: 13 /usr/share/locale/pl/LC_MESSAGES/ > D: 14 /usr/share/locale/pt/LC_MESSAGES/ > D: 15 /usr/share/locale/ro/LC_MESSAGES/ > D: 16 /usr/share/locale/ru/LC_MESSAGES/ > D: 17 /usr/share/locale/sr/LC_MESSAGES/ > D: 18 /usr/share/locale/sv/LC_MESSAGES/ > D: 19 /usr/share/locale/uk/LC_MESSAGES/ > D: 20 /usr/share/locale/vi/LC_MESSAGES/ > D: 21 /usr/share/locale/zh_CN/LC_MESSAGES/ > D: 22 /usr/share/locale/zh_TW/LC_MESSAGES/ > D: ========== > D: /usr/share/locale/cs directory created with perms 0755, context (no context). > D: /usr/share/locale/cs/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/da directory created with perms 0755, context (no context). > D: /usr/share/locale/da/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/de directory created with perms 0755, context (no context). > D: /usr/share/locale/de/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/eo directory created with perms 0755, context (no context). > D: /usr/share/locale/eo/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/fr directory created with perms 0755, context (no context). > D: /usr/share/locale/fr/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/hu directory created with perms 0755, context (no context). > D: /usr/share/locale/hu/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/it directory created with perms 0755, context (no context). > D: /usr/share/locale/it/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/ja directory created with perms 0755, context (no context). > D: /usr/share/locale/ja/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/nl directory created with perms 0755, context (no context). > D: /usr/share/locale/nl/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/pl directory created with perms 0755, context (no context). > D: /usr/share/locale/pl/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/pt directory created with perms 0755, context (no context). > D: /usr/share/locale/pt/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/ro directory created with perms 0755, context (no context). > D: /usr/share/locale/ro/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/ru directory created with perms 0755, context (no context). > D: /usr/share/locale/ru/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/sr directory created with perms 0755, context (no context). > D: /usr/share/locale/sr/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/sv directory created with perms 0755, context (no context). > D: /usr/share/locale/sv/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/uk directory created with perms 0755, context (no context). > D: /usr/share/locale/uk/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/vi directory created with perms 0755, context (no context). > D: /usr/share/locale/vi/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/zh_CN directory created with perms 0755, context (no context). > D: /usr/share/locale/zh_CN/LC_MESSAGES directory created with perms 0755, context (no context). > D: /usr/share/locale/zh_TW directory created with perms 0755, context (no context). > D: /usr/share/locale/zh_TW/LC_MESSAGES directory created with perms 0755, context (no context). > D: fini 100755 1 ( 0, 0) 80400 /lib64/libgpg-error.so.0.18.0;574d3432 > D: fini 100755 1 ( 0, 0) 26824 /usr/bin/gpg-error;574d3432 > D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgpg-error-1.22 > D: fini 100644 1 ( 0, 0) 1225 /usr/share/doc/libgpg-error-1.22/AUTHORS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 10212 /usr/share/doc/libgpg-error-1.22/ChangeLog.gz;574d3432 > D: fini 100644 1 ( 0, 0) 5222 /usr/share/doc/libgpg-error-1.22/NEWS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2347 /usr/share/doc/libgpg-error-1.22/README.gz;574d3432 > D: fini 100644 1 ( 0, 0) 424 /usr/share/doc/libgpg-error-1.22/THANKS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 20911 /usr/share/locale/cs/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 19906 /usr/share/locale/da/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 28270 /usr/share/locale/de/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 16376 /usr/share/locale/eo/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 21567 /usr/share/locale/fr/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 17543 /usr/share/locale/hu/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 21166 /usr/share/locale/it/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 31202 /usr/share/locale/ja/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 20610 /usr/share/locale/nl/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 28119 /usr/share/locale/pl/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 21407 /usr/share/locale/pt/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 14347 /usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 35559 /usr/share/locale/ru/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 21288 /usr/share/locale/sr/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 16234 /usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 36594 /usr/share/locale/uk/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 18368 /usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo;574d3432 > D: fini 100644 1 ( 0, 0) 11753 /usr/share/locale/zh_CN/LC_MESSAGES/libgpg-error.mo;574d3432 > ########################################### [ 40%] > D: fini 100644 1 ( 0, 0) 19667 /usr/share/locale/zh_TW/LC_MESSAGES/libgpg-error.mo;574d3432 > XZDIO: 68 reads, 551944 total bytes in 0.017189 secs > D: install: %post(libgpg-error-1.22-1.x86_64) synchronous scriptlet start > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(3) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(4) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(5) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(6) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(7) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(8) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(9) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(10) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(11) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(12) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) fdno(14) missing FD_CLOEXEC > D: install: %post(libgpg-error-1.22-1.x86_64) execv(/sbin/ldconfig) pid 23 > D: install: waitpid(23) rc 23 status 0 secs 0.003 > D: +++ /var/cache/hrmib/libgpg-error-1.22-1.x86_64 > D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64-linux 0x2 > D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) > D: Actual size: 471376 > D: install: libgcrypt-1.7.0-1.x86_64 has 9 files, test = 0 > 3:libgcrypt D: ========== Directories not explicitly included in package: > D: 0 /lib64/ > D: 1 /usr/share/doc/ > D: ========== > D: fini 100755 1 ( 0, 0) 1104224 /lib64/libgcrypt.so.20.1.0;574d3432 > D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgcrypt-1.7.0 > D: fini 100644 1 ( 0, 0) 3391 /usr/share/doc/libgcrypt-1.7.0/AUTHORS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 75713 /usr/share/doc/libgcrypt-1.7.0/ChangeLog.gz;574d3432 > ########################################### [ 60%] > D: fini 100644 1 ( 0, 0) 10089 /usr/share/doc/libgcrypt-1.7.0/NEWS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 4092 /usr/share/doc/libgcrypt-1.7.0/README.gz;574d3432 > D: fini 100644 1 ( 0, 0) 3618 /usr/share/doc/libgcrypt-1.7.0/THANKS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1107 /usr/share/doc/libgcrypt-1.7.0/TODO.gz;574d3432 > XZDIO: 147 reads, 1203572 total bytes in 0.054665 secs > D: install: %post(libgcrypt-1.7.0-1.x86_64) synchronous scriptlet start > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(3) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(4) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(5) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(6) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(7) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(8) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(9) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(10) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(11) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(12) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(14) missing FD_CLOEXEC > D: install: %post(libgcrypt-1.7.0-1.x86_64) execv(/sbin/ldconfig) pid 24 > D: install: waitpid(24) rc 24 status 0 secs 0.003 > D: +++ /var/cache/hrmib/libgcrypt-1.7.0-1.x86_64 > D: ========== +++ systemd-libs-221-13.x86_64 x86_64-linux 0x2 > D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) > D: Actual size: 330664 > D: install: systemd-libs-221-13.x86_64 has 13 files, test = 0 > 4:systemd-libs D: ========== Directories not explicitly included in package: > D: 0 /lib64/ > D: 1 /usr/lib64/ > D: ========== > D: fini 100755 1 ( 0, 0) 67824 /lib64/libnss_myhostname.so.2;574d3432 > D: fini 100755 1 ( 0, 0) 24408 /lib64/libsystemd-daemon.so.0.0.12;574d3432 > D: fini 100755 1 ( 0, 0) 23616 /lib64/libsystemd-id128.so.0.0.28;574d3432 > D: fini 100755 1 ( 0, 0) 135304 /lib64/libsystemd-journal.so.0.11.5;574d3432 > D: fini 100755 1 ( 0, 0) 58104 /lib64/libsystemd-login.so.0.9.3;574d3432 > D: fini 100755 1 ( 0, 0) 536184 /lib64/libsystemd.so.0.8.0;574d3432 > D: fini 100755 1 ( 0, 0) 261752 /usr/lib64/libnss_mymachines.so.2;574d3432 > ########################################### [ 80%] > D: fini 100755 1 ( 0, 0) 265848 /usr/lib64/libnss_resolve.so.2;574d3432 > XZDIO: 168 reads, 1374328 total bytes in 0.038585 secs > D: install: %post(systemd-libs-221-13.x86_64) synchronous scriptlet start > D: install: %post(systemd-libs-221-13.x86_64) fdno(3) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(4) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(5) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(6) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(7) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(8) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(9) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(10) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(11) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(12) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) fdno(14) missing FD_CLOEXEC > D: install: %post(systemd-libs-221-13.x86_64) execv(/sbin/ldconfig) pid 25 > D: install: waitpid(25) rc 25 status 0 secs 0.004 > D: opening db index /var/lib/rpm/Obsoletename create:thread:auto_commit mode=0x42 > D: +++ /var/cache/hrmib/systemd-libs-221-13.x86_64 > D: ========== +++ procps-3.3.11-1.x86_64 x86_64-linux 0x2 > D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) > D: Actual size: 454662 > D: install: procps-3.3.11-1.x86_64 has 107 files, test = 0 > 5:procps D: ========== Directories not explicitly included in package: > D: 0 /bin/ > D: 1 /lib64/ > D: 2 /sbin/ > D: 3 /usr/bin/ > D: 4 /usr/share/applications/ > D: 5 /usr/share/doc/ > D: 7 /usr/share/locale/de/LC_MESSAGES/ > D: 8 /usr/share/locale/fr/LC_MESSAGES/ > D: 9 /usr/share/locale/pl/LC_MESSAGES/ > D: 10 /usr/share/locale/uk/LC_MESSAGES/ > D: 11 /usr/share/locale/vi/LC_MESSAGES/ > D: 12 /usr/share/man/cs/man1/ > D: 13 /usr/share/man/de/man1/ > D: 14 /usr/share/man/es/man1/ > D: 15 /usr/share/man/es/man8/ > D: 16 /usr/share/man/fi/man1/ > D: 17 /usr/share/man/fr/man1/ > D: 18 /usr/share/man/fr/man8/ > D: 19 /usr/share/man/hu/man1/ > D: 20 /usr/share/man/it/man1/ > D: 21 /usr/share/man/it/man8/ > D: 22 /usr/share/man/ja/man1/ > D: 23 /usr/share/man/ja/man5/ > D: 24 /usr/share/man/ja/man8/ > D: 25 /usr/share/man/ko/man1/ > D: 26 /usr/share/man/man1/ > D: 27 /usr/share/man/man5/ > D: 28 /usr/share/man/man8/ > D: 29 /usr/share/man/nl/man1/ > D: 30 /usr/share/man/pl/man1/ > D: 31 /usr/share/pixmaps/ > D: ========== > D: /usr/share/man/cs directory created with perms 0755, context (no context). > D: /usr/share/man/cs/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/de directory created with perms 0755, context (no context). > D: /usr/share/man/de/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/es directory created with perms 0755, context (no context). > D: /usr/share/man/es/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/es/man8 directory created with perms 0755, context (no context). > D: /usr/share/man/fi directory created with perms 0755, context (no context). > D: /usr/share/man/fi/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/fr directory created with perms 0755, context (no context). > D: /usr/share/man/fr/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/fr/man8 directory created with perms 0755, context (no context). > D: /usr/share/man/hu directory created with perms 0755, context (no context). > D: /usr/share/man/hu/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/it directory created with perms 0755, context (no context). > D: /usr/share/man/it/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/it/man8 directory created with perms 0755, context (no context). > D: /usr/share/man/ja directory created with perms 0755, context (no context). > D: /usr/share/man/ja/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/ja/man5 directory created with perms 0755, context (no context). > D: /usr/share/man/ja/man8 directory created with perms 0755, context (no context). > D: /usr/share/man/ko directory created with perms 0755, context (no context). > D: /usr/share/man/ko/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/nl directory created with perms 0755, context (no context). > D: /usr/share/man/nl/man1 directory created with perms 0755, context (no context). > D: /usr/share/man/pl directory created with perms 0755, context (no context). > D: /usr/share/man/pl/man1 directory created with perms 0755, context (no context). > D: fini 100755 1 ( 0, 0) 97248 /bin/ps;574d3432 > D: fini 100755 1 ( 0, 0) 72456 /lib64/libprocps.so.5.0.0;574d3432 > D: fini 100755 1 ( 0, 0) 22936 /sbin/sysctl;574d3432 > D: fini 100755 1 ( 0, 0) 214 /usr/bin/XConsole;574d3432 > D: fini 100755 1 ( 0, 0) 18688 /usr/bin/free;574d3432 > D: fini 100755 1 ( 0, 0) 31232 /usr/bin/pmap;574d3432 > D: fini 100755 1 ( 0, 0) 10488 /usr/bin/pwdx;574d3432 > D: fini 100755 1 ( 0, 0) 18808 /usr/bin/slabtop;574d3432 > D: fini 100755 1 ( 0, 0) 14664 /usr/bin/tload;574d3432 > D: fini 100755 1 ( 0, 0) 104984 /usr/bin/top;574d3432 > D: fini 100755 1 ( 0, 0) 10456 /usr/bin/uptime;574d3432 > D: fini 100755 1 ( 0, 0) 35200 /usr/bin/vmstat;574d3432 > D: fini 100755 1 ( 0, 0) 18816 /usr/bin/w;574d3432 > D: fini 100755 1 ( 0, 0) 23536 /usr/bin/watch;574d3432 > D: fini 100644 1 ( 0, 0) 240 /usr/share/applications/top.desktop;574d3432 > D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/procps-3.3.11 > D: fini 100644 1 ( 0, 0) 654 /usr/share/doc/procps-3.3.11/AUTHORS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2199 /usr/share/doc/procps-3.3.11/FAQ.gz;574d3432 > D: fini 100644 1 ( 0, 0) 9720 /usr/share/doc/procps-3.3.11/NEWS.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2388 /usr/share/doc/procps-3.3.11/TODO.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1672 /usr/share/doc/procps-3.3.11/bugs.md.gz;574d3432 > D: fini 100644 1 ( 0, 0) 68596 /usr/share/locale/de/LC_MESSAGES/procps-ng.mo;574d3432 > D: fini 100644 1 ( 0, 0) 86426 /usr/share/locale/fr/LC_MESSAGES/procps-ng.mo;574d3432 > D: fini 100644 1 ( 0, 0) 85445 /usr/share/locale/pl/LC_MESSAGES/procps-ng.mo;574d3432 > D: fini 100644 1 ( 0, 0) 109697 /usr/share/locale/uk/LC_MESSAGES/procps-ng.mo;574d3432 > D: fini 100644 1 ( 0, 0) 91075 /usr/share/locale/vi/LC_MESSAGES/procps-ng.mo;574d3432 > D: fini 100644 1 ( 0, 0) 1175 /usr/share/man/cs/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 942 /usr/share/man/de/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 7299 /usr/share/man/de/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 862 /usr/share/man/es/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 5054 /usr/share/man/es/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2734 /usr/share/man/es/man1/skill.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 12 /usr/share/man/es/man1/snice.1;574d3432 > D: fini 100644 1 ( 0, 0) 867 /usr/share/man/es/man1/tload.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 6086 /usr/share/man/es/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 670 /usr/share/man/es/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1188 /usr/share/man/es/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 527 /usr/share/man/es/man1/watch.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1487 /usr/share/man/es/man8/vmstat.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 886 /usr/share/man/fi/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 6231 /usr/share/man/fi/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 653 /usr/share/man/fi/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1169 /usr/share/man/fi/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 860 /usr/share/man/fr/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 4802 /usr/share/man/fr/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 587 /usr/share/man/fr/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1776 /usr/share/man/fr/man8/vmstat.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 898 /usr/share/man/hu/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 5531 /usr/share/man/hu/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1033 /usr/share/man/hu/man1/tload.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 585 /usr/share/man/hu/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1291 /usr/share/man/hu/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 525 /usr/share/man/hu/man1/watch.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 900 /usr/share/man/it/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 4596 /usr/share/man/it/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2618 /usr/share/man/it/man1/skill.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 12 /usr/share/man/it/man1/snice.1;574d3432 > D: fini 100644 1 ( 0, 0) 831 /usr/share/man/it/man1/tload.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 5660 /usr/share/man/it/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 581 /usr/share/man/it/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1537 /usr/share/man/it/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 509 /usr/share/man/it/man1/watch.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1387 /usr/share/man/it/man8/vmstat.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 971 /usr/share/man/ja/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1981 /usr/share/man/ja/man1/pgrep.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/pkill.1;574d3432 > D: fini 100644 1 ( 0, 0) 7224 /usr/share/man/ja/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1941 /usr/share/man/ja/man1/skill.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/snice.1;574d3432 > D: fini 100644 1 ( 0, 0) 997 /usr/share/man/ja/man1/tload.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 6325 /usr/share/man/ja/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 759 /usr/share/man/ja/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1303 /usr/share/man/ja/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1392 /usr/share/man/ja/man1/watch.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 942 /usr/share/man/ja/man5/sysctl.conf.5.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1316 /usr/share/man/ja/man8/sysctl.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1566 /usr/share/man/ja/man8/vmstat.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 921 /usr/share/man/ko/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1648 /usr/share/man/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2230 /usr/share/man/man1/pgrep.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/pkill.1;574d3432 > D: fini 100644 1 ( 0, 0) 952 /usr/share/man/man1/pmap.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 14064 /usr/share/man/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 494 /usr/share/man/man1/pwdx.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1529 /usr/share/man/man1/skill.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1428 /usr/share/man/man1/slabtop.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/snice.1;574d3432 > D: fini 100644 1 ( 0, 0) 805 /usr/share/man/man1/tload.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 28843 /usr/share/man/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 891 /usr/share/man/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1280 /usr/share/man/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2379 /usr/share/man/man1/watch.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 918 /usr/share/man/man5/sysctl.conf.5.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1868 /usr/share/man/man8/sysctl.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 2378 /usr/share/man/man8/vmstat.8.gz;574d3432 > D: fini 100644 1 ( 0, 0) 8503 /usr/share/man/nl/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 998 /usr/share/man/pl/man1/free.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 4637 /usr/share/man/pl/man1/ps.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 6517 /usr/share/man/pl/man1/top.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 650 /usr/share/man/pl/man1/uptime.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 1141 /usr/share/man/pl/man1/w.1.gz;574d3432 > D: fini 100644 1 ( 0, 0) 321 /usr/share/pixmaps/top.png;574d3432 > D: fini 100755 2 ( 0, 0) 0 /usr/bin/skill;574d3432 > D: fini 100755 2 ( 0, 0) 23032 /usr/bin/snice;574d3432 > D: fini 100755 2 ( 0, 0) 0 /usr/bin/pgrep;574d3432 > ########################################### [100%] > D: fini 100755 2 ( 0, 0) 27160 /usr/bin/pkill;574d3432 > XZDIO: 146 reads, 1189980 total bytes in 0.050424 secs > D: install: %post(procps-3.3.11-1.x86_64) skipping redundant "/sbin/ldconfig". > D: +++ /var/cache/hrmib/procps-3.3.11-1.x86_64 > D: running post-transaction scripts > D: closed db seqno /var/lib/rpm/Seqno > D: closed db index /var/lib/rpm/Seqno > D: closed db index /var/lib/rpm/Filepaths > D: closed db index /var/lib/rpm/Nvra > D: closed db index /var/lib/rpm/Packagecolor > D: closed db index /var/lib/rpm/Pubkeys > D: closed db index /var/lib/rpm/Filedigests > D: closed db index /var/lib/rpm/Sha1header > D: closed db index /var/lib/rpm/Sigmd5 > D: closed db index /var/lib/rpm/Installtid > D: closed db index /var/lib/rpm/Dirnames > D: closed db index /var/lib/rpm/Triggername > D: closed db index /var/lib/rpm/Obsoletename > D: closed db index /var/lib/rpm/Conflictname > D: closed db index /var/lib/rpm/Requirename > D: closed db index /var/lib/rpm/Providename > D: closed db index /var/lib/rpm/Group > D: closed db index /var/lib/rpm/Basenames > D: closed db index /var/lib/rpm/Os > D: closed db index /var/lib/rpm/Arch > D: closed db index /var/lib/rpm/Release > D: closed db index /var/lib/rpm/Version > D: closed db index /var/lib/rpm/Name > D: closed db index /var/lib/rpm/Packages > D: closed db environment /var/lib/rpm/Packages > D: pool gi: reused 0, alloc'd 1, free'd 1 items. > D: pool mi: reused 986, alloc'd 1, free'd 1 items. > D: pool psm: reused 4, alloc'd 1, free'd 1 items. > D: pool tsi: reused 40, alloc'd 2, free'd 2 items. > D: pool ts: reused 0, alloc'd 1, free'd 1 items. > D: pool te: reused 0, alloc'd 5, free'd 5 items. > D: pool ps: reused 1, alloc'd 1, free'd 1 items. > D: pool al: reused 0, alloc'd 1, free'd 1 items. > D: pool ds: reused 63, alloc'd 31, free'd 31 items. > D: pool fi: reused 5, alloc'd 5, free'd 5 items. > D: pool db: reused 1, alloc'd 1, free'd 1 items. > D: pool dbi: reused 5, alloc'd 23, free'd 23 items. > D: pool h: reused 221, alloc'd 6, free'd 6 items. > D: pool lua: reused 0, alloc'd 1, free'd 1 items. > D: pool mire: reused 145, alloc'd 3, free'd 3 items. > D: pool bf: reused 29, alloc'd 6, free'd 6 items. > D: pool ht: reused 0, alloc'd 3, free'd 3 items. > D: pool ctx: reused 144, alloc'd 1, free'd 1 items. > D: pool iob: reused 0, alloc'd 1, free'd 1 items. > D: pool dig: reused 9, alloc'd 1, free'd 1 items. > D: pool fd: reused 179, alloc'd 3, free'd 3 items. > D: exit code: 0 > > > > -- > glen > > _______________________________________________ > pld-devel-en mailing list > pld-devel-en at lists.pld-linux.org > http://lists.pld-linux.org/mailman/listinfo/pld-devel-en From glen at pld-linux.org Tue May 31 22:33:06 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 31 May 2016 23:33:06 +0300 Subject: ldconfig forgotten In-Reply-To: <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> Message-ID: <574DF502.9010309@pld-linux.org> On 31.05.2016 18:50, Jeff Johnson wrote: > On May 31, 2016, at 2:52 AM, Elan Ruusam?e wrote: > >> On 31.05.2016 09:45, Elan Ruusam?e wrote: >>> [root at 57c8cccdc671 bin]# poldek -u procps >> oh, and it's 100% reproducible: >> > Yes. And it has been discussed many times over the last 15y, > several times on this list. sadly nothing concluded in the past (read: nothing was fixed) i'll apply your patch and push after some testing however, i'd like to comment few parts: > Short answer: > Disable the mechanism with attached patch to lib/psm.c > - OR -- > Don't use > %scriptlet -p /sbin/ldconfig > in packages that are known to invoke an executable that depends on > a new library. in my case the last scriptlet was skipped as pointed out by jacek, and the problem was that after whole rpm transaction was finished one last ldconfig was not ran so the last library SONAME symlinks were missing and the package own scriptlet did not invoke any program from package. > Longer answer: ... > The fix of running /sbin/ldconfig manually is rather simple > (even if the problem is obscure). even the fix may seem simple, it's not a solution, as packages may be upgraded automatically and end user should not know that he needs to run sudo ldconfig to troubleshoot. pld linux th is rolling distro, so the updates are not scheduled to 4th month of the year like some other distro. also the optimization is pointless nowadays, as glibc has /var/cache/ldconfig/aux-cache which makes redundant ldconfig calls noop. i prefer reliability over broken optimization. -- glen From n3npq at mac.com Tue May 31 22:37:07 2016 From: n3npq at mac.com (Jeff Johnson) Date: Tue, 31 May 2016 16:37:07 -0400 Subject: ldconfig forgotten In-Reply-To: <574DF502.9010309@pld-linux.org> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> <574DF502.9010309@pld-linux.org> Message-ID: <574DC18A-BDCD-4DC6-B339-41BF7E562A62@mac.com> On May 31, 2016, at 4:33 PM, Elan Ruusam?e wrote: > > i prefer reliability over broken optimization. > So disable the optimization. I'm quite sure I have described how to disable the optimization on this (and other) mailing lists in the past 10 years. 73 de Jeff From glen at pld-linux.org Tue May 31 22:45:45 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 31 May 2016 23:45:45 +0300 Subject: ldconfig forgotten In-Reply-To: <574DF502.9010309@pld-linux.org> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> <574DF502.9010309@pld-linux.org> Message-ID: <574DF7F9.8000203@pld-linux.org> On 31.05.2016 23:33, Elan Ruusam?e wrote: > i'll apply your patch and push after some testing committed https://github.com/pld-linux/rpm/commit/8c28fc02688ea15524dc143d1d0df4a8bf4e3287 and just in case rpm -vvv run: [root at 92f5a9886a79 /]# poldek --up -u procps --pmopt=verbose --pmopt=verbose --pmopt=verbose;exit 25794 packages read Processing dependencies... procps-3.3.11-1.x86_64 marks systemd-libs-221-13.x86_64 (cap libsystemd.so.0()(64bit)) systemd-libs-221-13.x86_64 marks libgcrypt-1.7.0-1.x86_64 (cap libgcrypt >= 1.4.5) libgcrypt-1.7.0-1.x86_64 marks libgpg-error-1.22-1.x86_64 (cap libgpg-error >= 1.13) systemd-libs-221-13.x86_64 marks lz4-libs-r131-4.x86_64 (cap liblz4.so.1()(64bit)) There are 5 packages to install (4 marked by dependencies): I procps-3.3.11-1.x86_64 D libgcrypt-1.7.0-1.x86_64 libgpg-error-1.22-1.x86_64 lz4-libs-r131-4.x86_64 systemd-libs-221-13.x86_64 This operation will use 4.2MB of disk space. Need to get 1.4MB of archives (1.4MB to download). Executing rpm --upgrade -vh --root / --define _check_dirname_deps 1 --verbose --verbose --verbose... D: pool ts: created size 1200 limit -1 flags 0 D: pool gi: created size 176 limit -1 flags 0 D: pool dig: created size 424 limit -1 flags 0 D: pool h: created size 360 limit -1 flags 0 D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) D: Actual size: 126857 D: pool ds: created size 232 limit -1 flags 0 D: pool tsi: created size 48 limit -1 flags 0 D: pool te: created size 368 limit -1 flags 0 D: pool fi: created size 560 limit -1 flags 0 D: pool al: created size 64 limit -1 flags 0 D: pool bf: created size 56 limit -1 flags 0 D: pool db: created size 328 limit -1 flags 0 D: pool dbi: created size 472 limit -1 flags 0 D: rpmdb: cpus 8 physmem 7985Mb D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn D: opening db index /var/lib/rpm/Packages thread:rdonly:auto_commit mode=0x0 D: opening db index /var/lib/rpm/Name thread:rdonly:auto_commit mode=0x0 D: pool mi: created size 152 limit -1 flags 0 D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) D: Actual size: 471376 D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) D: Actual size: 39670 D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) D: Actual size: 330664 D: opening db index /var/lib/rpm/Providename thread:rdonly:auto_commit mode=0x0 D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) D: Actual size: 454662 D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64/linux 0x2 D: pool ps: created size 40 limit -1 flags 0 D: opening db index /var/lib/rpm/Filepaths thread:rdonly:auto_commit mode=0x0 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/bin YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/libgpg-error-1.22 YES (added files) D: Dirs: /usr/share/locale/cs/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/da/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/eo/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/hu/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/it/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ja/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/nl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pt/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ro/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/ru/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/sr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/sv/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/zh_CN/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/zh_TW/LC_MESSAGES YES (db files) D: opening db index /var/lib/rpm/Conflictname thread:rdonly:auto_commit mode=0x0 D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libgpg-error >= 1.13 YES (added provide) D: Requires: libgpg-error.so.0()(64bit) YES (added provide) D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/libgcrypt-1.7.0 YES (added files) D: ========== +++ lz4-libs-r131-4.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Conflicts: lz4 < 0.0-1.r121.3 NO D: Dirs: /usr/lib64 YES (db files) D: ========== +++ systemd-libs-221-13.x86_64 x86_64/linux 0x2 D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: ld-linux-x86-64.so.2()(64bit) YES (db provides) D: Requires: ld-linux-x86-64.so.2(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libattr.so.1()(64bit) YES (db provides) D: Requires: libattr.so.1(ATTR_1.0)(64bit) YES (db provides) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.16)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.17)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.2)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.7)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.9)(64bit) YES (db provides) D: Requires: libdl.so.2()(64bit) YES (db provides) D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libgcrypt >= 1.4.5 YES (added provide) D: Requires: libgcrypt.so.20()(64bit) YES (added provide) D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) D: Requires: liblz4.so.1()(64bit) YES (added provide) D: Requires: liblzma.so.5()(64bit) YES (db provides) D: Requires: liblzma.so.5(XZ_5.0)(64bit) YES (db provides) D: Requires: libpthread.so.0()(64bit) YES (db provides) D: Requires: libpthread.so.0(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: librt.so.1()(64bit) YES (db provides) D: Requires: librt.so.1(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: librt.so.1(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libselinux >= 2.1.9 YES (db provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /lib64 YES (db files) D: Dirs: /usr/lib64 YES (db files) D: ========== +++ procps-3.3.11-1.x86_64 x86_64/linux 0x2 D: Requires: /bin/sh YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: /sbin/ldconfig YES (db files) D: Requires: fileutils YES (db provides) D: Requires: libc.so.6()(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.11)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.14)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.15)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.3.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.4)(64bit) YES (db provides) D: Requires: libc.so.6(GLIBC_2.8)(64bit) YES (db provides) D: Requires: libdl.so.2()(64bit) YES (db provides) D: Requires: libdl.so.2(GLIBC_2.2.5)(64bit) YES (db provides) D: Requires: libncursesw.so.6()(64bit) YES (db provides) D: Requires: libsystemd.so.0()(64bit) YES (added provide) D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) D: Requires: rpmlib(PartialHardlinkSets) <= 4.0.4-1 YES (rpmlib provides) D: Requires: rtld(GNU_HASH) YES (db provides) D: Requires: rpmlib(PayloadIsLzma) <= 4.4.6-1 YES (rpmlib provides) D: Dirs: /bin YES (db files) D: Dirs: /lib64 YES (db files) D: Dirs: /sbin YES (db files) D: Dirs: /usr/bin YES (db files) D: Dirs: /usr/share/applications YES (db files) D: Dirs: /usr/share/doc YES (db files) D: Dirs: /usr/share/doc/procps-3.3.11 YES (added files) D: Dirs: /usr/share/locale/de/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/fr/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/pl/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/uk/LC_MESSAGES YES (db files) D: Dirs: /usr/share/locale/vi/LC_MESSAGES YES (db files) D: Dirs: /usr/share/man/cs/man1 YES (db files) D: Dirs: /usr/share/man/de/man1 YES (db files) D: Dirs: /usr/share/man/es/man1 YES (db files) D: Dirs: /usr/share/man/es/man8 YES (db files) D: Dirs: /usr/share/man/fi/man1 YES (db files) D: Dirs: /usr/share/man/fr/man1 YES (db files) D: Dirs: /usr/share/man/fr/man8 YES (db files) D: Dirs: /usr/share/man/hu/man1 YES (db files) D: Dirs: /usr/share/man/it/man1 YES (db files) D: Dirs: /usr/share/man/it/man8 YES (db files) D: Dirs: /usr/share/man/ja/man1 YES (db files) D: Dirs: /usr/share/man/ja/man5 YES (db files) D: Dirs: /usr/share/man/ja/man8 YES (db files) D: Dirs: /usr/share/man/ko/man1 YES (db files) D: Dirs: /usr/share/man/man1 YES (db files) D: Dirs: /usr/share/man/man5 YES (db files) D: Dirs: /usr/share/man/man8 YES (db files) D: Dirs: /usr/share/man/nl/man1 YES (db files) D: Dirs: /usr/share/man/pl/man1 YES (db files) D: Dirs: /usr/share/pixmaps YES (db files) D: ========== recording tsort relations D: Requires: libgpg-error >= 1.13 YES (added provide) D: ignore package name relation(s) [0] QtGui -> Qt3Support D: ignore package name relation(s) [1] QtGui -> QtSvg D: ignore package name relation(s) [2] ZendFramework-Zend_Cache -> ZendFramework-Zend_Json D: ignore package name relation(s) [3] ZendFramework-Zend_Cache -> ZendFramework-Zend_Log D: ignore package name relation(s) [4] ZendFramework-Zend_Controller -> ZendFramework-Zend_Dojo D: ignore package name relation(s) [5] ZendFramework-Zend_Controller -> ZendFramework-Zend_Json D: ignore package name relation(s) [6] ZendFramework-Zend_Controller -> ZendFramework-Zend_Layout D: ignore package name relation(s) [7] ZendFramework-Zend_Controller -> ZendFramework-Zend_Session D: ignore package name relation(s) [8] ZendFramework-Zend_Controller -> ZendFramework-Zend_Uri D: ignore package name relation(s) [9] ZendFramework-Zend_Controller -> ZendFramework-Zend_View D: ignore package name relation(s) [10] ZendFramework-Zend_Layout -> ZendFramework-Zend_View D: ignore package name relation(s) [11] ZendFramework-Zend_Validate -> ZendFramework-Zend_Uri D: ignore package name relation(s) [12] ZendFramework -> ZendFramework-Zend_Date D: ignore package name relation(s) [13] ZendFramework -> ZendFramework-Zend_Exception D: ignore package name relation(s) [14] ZendFramework -> ZendFramework-Zend_Http D: ignore package name relation(s) [15] ZendFramework -> ZendFramework-Zend_Loader D: ignore package name relation(s) [16] ZendFramework -> ZendFramework-Zend_Loader D: ignore package name relation(s) [17] ZendFramework -> ZendFramework-Zend_Registry D: ignore package name relation(s) [18] amarok -> amarok-xine D: ignore package name relation(s) [19] esound-libs -> esound-alsa D: ignore package name relation(s) [20] glibc64 -> glibc-misc D: ignore package name relation(s) [21] glibc -> glibc-localedb-all D: ignore package name relation(s) [22] glibc -> glibc-misc D: ignore package name relation(s) [23] glibc -> localedb-src D: ignore package name relation(s) [24] gtk+2 -> gtk+2-cups D: ignore package name relation(s) [25] hal -> hal-info D: ignore package name relation(s) [26] java-sun-jre -> java-sun-jre-X11 D: ignore package name relation(s) [27] java-sun-jre -> java-sun-tools D: ignore package name relation(s) [28] lighttpd -> lighttpd-mod_dirlisting D: ignore package name relation(s) [29] lighttpd -> lighttpd-mod_indexfile D: ignore package name relation(s) [30] lighttpd -> lighttpd-mod_staticfile D: ignore package name relation(s) [31] openjdk-jre -> openjdk-tools D: ignore package name relation(s) [32] openvpn -> openvpn-plugin-auth-pam D: ignore package name relation(s) [33] openvpn -> openvpn-plugin-down-root D: ignore package name relation(s) [34] phorum -> phorum-db-mysql D: ignore package name relation(s) [35] phorum -> phorum-db-mysqli D: ignore package name relation(s) [36] phorum -> phorum-db-sql_pool D: ignore package name relation(s) [37] php-common -> php-pcre D: ignore package name relation(s) [38] php-common -> php-session D: ignore package name relation(s) [39] php-common -> php-simplexml D: ignore package name relation(s) [40] php-common -> php-spl D: ignore package name relation(s) [41] php-spl -> php-simplexml D: ignore package name relation(s) [42] php52-common -> php52-pcre D: ignore package name relation(s) [43] php52-common -> php52-session D: ignore package name relation(s) [44] php52-common -> php52-simplexml D: ignore package name relation(s) [45] php52-common -> php52-spl D: ignore package name relation(s) [46] php52-spl -> php52-simplexml D: ignore package name relation(s) [47] php54-common -> php54-pcre D: ignore package name relation(s) [48] php54-common -> php54-session D: ignore package name relation(s) [49] php54-common -> php54-simplexml D: ignore package name relation(s) [50] php54-common -> php54-spl D: ignore package name relation(s) [51] php54-spl -> php54-simplexml D: ignore package name relation(s) [52] python3-libs -> python3 D: ignore package name relation(s) [53] roundcubemail -> roundcubemail-skin-default D: ignore package name relation(s) [54] util-vserver-build -> vserver-distro-pld D: ignore package name relation(s) [55] util-vserver -> vserver-distro-pld D: ignore package name relation(s) [56] vim -> vim-rt D: ignore package name relation(s) [57] fontpostinst -> t1lib D: ignore package name relation(s) [58] glibc -> nss-softokn-freebl D: ignore package name relation(s) [59] glibc -> tzdata D: ignore package name relation(s) [60] gmplayer -> mplayer-skin-KDE D: ignore package name relation(s) [61] kdebase-desktop -> kde-kside-PLD D: ignore package name relation(s) [62] kdebase-desktop -> kde-logoutpic-PLD D: ignore package name relation(s) [63] kdebase-desktop -> kde-splash-Default D: ignore package name relation(s) [64] kdelibs -> kdelibs-shared D: ignore package name relation(s) [65] koffice-kexi -> koffice-kspread D: ignore package name relation(s) [66] konqueror -> kdeaddons-fsview D: ignore package name relation(s) [67] konqueror -> kdeaddons-konqueror D: ignore package name relation(s) [68] konqueror -> kdemultimedia-audiocd D: ignore package name relation(s) [69] php-pear-PEAR-core -> php-pear-Console_Getopt D: ignore package name relation(s) [70] rc-scripts -> blockdev D: ignore package name relation(s) [71] upstart -> dbus D: ignore package name relation(s) [72] vim-rt -> vim-plugin-securemodelines D: ignore package name relation(s) [73] vim-rt -> vim-syntax-poldek D: ignore package name relation(s) [74] vim-rt -> vim-syntax-spec D: Requires: libgpg-error.so.0()(64bit) YES (added provide) D: Requires: libgpg-error.so.0(GPG_ERROR_1.0)(64bit) YES (added provide) D: Requires: libgcrypt >= 1.4.5 YES (added provide) D: Requires: libgcrypt.so.20()(64bit) YES (added provide) D: Requires: libgcrypt.so.20(GCRYPT_1.6)(64bit) YES (added provide) D: Requires: liblz4.so.1()(64bit) YES (added provide) D: Requires: libsystemd.so.0()(64bit) YES (added provide) D: Requires: libsystemd.so.0(LIBSYSTEMD_209)(64bit) YES (added provide) D: ========== tsorting packages (order, #predecessors, #succesors, tree, Ldepth, Rbreadth) D: 0 0 1 2 0 0 +lz4-libs-r131-4.x86_64 D: 1 0 1 1 0 1 +libgpg-error-1.22-1.x86_64 D: 2 1 1 1 1 0 +libgcrypt-1.7.0-1.x86_64 D: 3 2 1 1 2 0 +systemd-libs-221-13.x86_64 D: ========== successors only (968503 bytes) D: 4 1 0 1 3 0 +procps-3.3.11-1.x86_64 D: closed db index /var/lib/rpm/Filepaths D: closed db index /var/lib/rpm/Conflictname D: closed db index /var/lib/rpm/Providename D: closed db index /var/lib/rpm/Name D: closed db index /var/lib/rpm/Packages D: closed db environment /var/lib/rpm/Packages D: opening db environment /var/lib/rpm/Packages thread:lock:log:mpool:txn D: opening db index /var/lib/rpm/Packages create:thread:auto_commit mode=0x42 D: mounted filesystems: D: i dev bsize bavail iavail mount point D: 0 0x0000005b 4096 4226821 30960210 rw / D: 1 0x0000005e 4096 1 -1 rw /proc D: 2 0x0000005f 4096 1022080 1022062 rw /dev D: 3 0x00000060 4096 1 -1 rw /dev/pts D: 4 0x0000005d 4096 1 -1 rw /dev/mqueue D: 5 0x00000061 4096 1 -1 ro /sys D: 6 0x00000062 4096 1022080 1022070 ro /sys/fs/cgroup D: 7 0x00000015 4096 1 -1 ro /sys/fs/cgroup/blkio D: 8 0x00000016 4096 1 -1 ro /sys/fs/cgroup/cpu D: 9 0x00000017 4096 1 -1 ro /sys/fs/cgroup/cpuacct D: 10 0x00000018 4096 1 -1 ro /sys/fs/cgroup/cpuset D: 11 0x00000019 4096 1 -1 ro /sys/fs/cgroup/devices D: 12 0x0000001a 4096 1 -1 ro /sys/fs/cgroup/freezer D: 13 0x0000001b 4096 1 -1 ro /sys/fs/cgroup/memory D: 14 0x0000001c 4096 1 -1 ro /sys/fs/cgroup/net_cls D: 15 0x0000001d 4096 1 -1 ro /sys/fs/cgroup/perf_event D: 16 0x0000fe02 4096 4226821 30960210 rw /etc/resolv.conf D: 17 0x0000fe02 4096 4226821 30960210 rw /etc/hostname D: 18 0x0000fe02 4096 4226821 30960210 rw /etc/hosts D: 19 0x0000005c 4096 16384 1022079 rw /dev/shm D: 20 0x0000000d 4096 1 -1 rw /dev/console D: 21 0x0000005e 4096 1 -1 ro /proc/bus D: 22 0x0000005e 4096 1 -1 ro /proc/fs D: 23 0x0000005e 4096 1 -1 ro /proc/irq D: 24 0x0000005e 4096 1 -1 ro /proc/sys D: 25 0x0000005e 4096 1 -1 ro /proc/sysrq-trigger D: 26 0x0000005f 4096 1022080 1022062 rw /proc/kcore D: 27 0x0000005f 4096 1022080 1022062 rw /proc/timer_stats D: sanity checking 5 elements D: opening db index /var/lib/rpm/Name create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Nvra create:thread:auto_commit mode=0x42 D: running pre-transaction scripts D: computing 159 file fingerprints D: pool ht: created size 72 limit -1 flags 0 Preparing... D: computing file dispositions D: opening db index /var/lib/rpm/Basenames create:thread:auto_commit mode=0x42 ########################################### [100%] D: pool psm: created size 608 limit -1 flags 0 D: ========== +++ lz4-libs-r131-4.x86_64 x86_64-linux 0x2 D: Expected size: 39670 = lead(96)+sigs(268)+pad(4)+data(39302) D: Actual size: 39670 D: install: lz4-libs-r131-4.x86_64 has 2 files, test = 0 D: opening db index /var/lib/rpm/Sha1header create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Triggername create:thread:auto_commit mode=0x42 1:lz4-libs D: ========== Directories not explicitly included in package: D: 0 /usr/lib64/ D: ========== D: pool ctx: created size 112 limit -1 flags 0 ########################################### [ 20%] D: fini 100755 1 ( 0, 0) 95272 /usr/lib64/liblz4.so.1.7.1;574df701 XZDIO: 12 reads, 95536 total bytes in 0.004541 secs D: install: %post(lz4-libs-r131-4.x86_64) synchronous scriptlet start D: install: %post(lz4-libs-r131-4.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(13) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) fdno(15) missing FD_CLOEXEC D: install: %post(lz4-libs-r131-4.x86_64) execv(/sbin/ldconfig) pid 30 D: install: waitpid(30) rc 30 status 0 secs 0.005 D: opening db index /var/lib/rpm/Seqno create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Filepaths create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Packagecolor create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Pubkeys create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Filedigests create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Sigmd5 create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Installtid create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Dirnames create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Conflictname create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Requirename create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Providename create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Group create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Os create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Arch create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Release create:thread:auto_commit mode=0x42 D: opening db index /var/lib/rpm/Version create:thread:auto_commit mode=0x42 D: +++ /var/cache/hrmib/lz4-libs-r131-4.x86_64 D: ========== +++ libgpg-error-1.22-1.x86_64 x86_64-linux 0x2 D: Expected size: 126857 = lead(96)+sigs(268)+pad(4)+data(126489) D: Actual size: 126857 D: install: libgpg-error-1.22-1.x86_64 has 28 files, test = 0 2:libgpg-error D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/bin/ D: 2 /usr/share/doc/ D: 4 /usr/share/locale/cs/LC_MESSAGES/ D: 5 /usr/share/locale/da/LC_MESSAGES/ D: 6 /usr/share/locale/de/LC_MESSAGES/ D: 7 /usr/share/locale/eo/LC_MESSAGES/ D: 8 /usr/share/locale/fr/LC_MESSAGES/ D: 9 /usr/share/locale/hu/LC_MESSAGES/ D: 10 /usr/share/locale/it/LC_MESSAGES/ D: 11 /usr/share/locale/ja/LC_MESSAGES/ D: 12 /usr/share/locale/nl/LC_MESSAGES/ D: 13 /usr/share/locale/pl/LC_MESSAGES/ D: 14 /usr/share/locale/pt/LC_MESSAGES/ D: 15 /usr/share/locale/ro/LC_MESSAGES/ D: 16 /usr/share/locale/ru/LC_MESSAGES/ D: 17 /usr/share/locale/sr/LC_MESSAGES/ D: 18 /usr/share/locale/sv/LC_MESSAGES/ D: 19 /usr/share/locale/uk/LC_MESSAGES/ D: 20 /usr/share/locale/vi/LC_MESSAGES/ D: 21 /usr/share/locale/zh_CN/LC_MESSAGES/ D: 22 /usr/share/locale/zh_TW/LC_MESSAGES/ D: ========== D: /usr/share/locale/hu directory created with perms 0755, context (no context). D: /usr/share/locale/hu/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/ro directory created with perms 0755, context (no context). D: /usr/share/locale/ro/LC_MESSAGES directory created with perms 0755, context (no context). D: /usr/share/locale/zh_CN directory created with perms 0755, context (no context). D: /usr/share/locale/zh_CN/LC_MESSAGES directory created with perms 0755, context (no context). D: fini 100755 1 ( 0, 0) 80400 /lib64/libgpg-error.so.0.18.0;574df701 D: fini 100755 1 ( 0, 0) 26824 /usr/bin/gpg-error;574df701 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgpg-error-1.22 D: fini 100644 1 ( 0, 0) 1225 /usr/share/doc/libgpg-error-1.22/AUTHORS.gz;574df701 D: fini 100644 1 ( 0, 0) 10212 /usr/share/doc/libgpg-error-1.22/ChangeLog.gz;574df701 D: fini 100644 1 ( 0, 0) 5222 /usr/share/doc/libgpg-error-1.22/NEWS.gz;574df701 D: fini 100644 1 ( 0, 0) 2347 /usr/share/doc/libgpg-error-1.22/README.gz;574df701 D: fini 100644 1 ( 0, 0) 424 /usr/share/doc/libgpg-error-1.22/THANKS.gz;574df701 D: fini 100644 1 ( 0, 0) 20911 /usr/share/locale/cs/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 19906 /usr/share/locale/da/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 28270 /usr/share/locale/de/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 16376 /usr/share/locale/eo/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 21567 /usr/share/locale/fr/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 17543 /usr/share/locale/hu/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 21166 /usr/share/locale/it/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 31202 /usr/share/locale/ja/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 20610 /usr/share/locale/nl/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 28119 /usr/share/locale/pl/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 21407 /usr/share/locale/pt/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 14347 /usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 35559 /usr/share/locale/ru/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 21288 /usr/share/locale/sr/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 16234 /usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 36594 /usr/share/locale/uk/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 18368 /usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo;574df701 D: fini 100644 1 ( 0, 0) 11753 /usr/share/locale/zh_CN/LC_MESSAGES/libgpg-error.mo;574df701 ########################################### [ 40%] D: fini 100644 1 ( 0, 0) 19667 /usr/share/locale/zh_TW/LC_MESSAGES/libgpg-error.mo;574df701 XZDIO: 68 reads, 551944 total bytes in 0.015856 secs D: install: %post(libgpg-error-1.22-1.x86_64) synchronous scriptlet start D: install: %post(libgpg-error-1.22-1.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(13) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) fdno(15) missing FD_CLOEXEC D: install: %post(libgpg-error-1.22-1.x86_64) execv(/sbin/ldconfig) pid 31 D: install: waitpid(31) rc 31 status 0 secs 0.009 D: +++ /var/cache/hrmib/libgpg-error-1.22-1.x86_64 D: ========== +++ libgcrypt-1.7.0-1.x86_64 x86_64-linux 0x2 D: Expected size: 471376 = lead(96)+sigs(268)+pad(4)+data(471008) D: Actual size: 471376 D: install: libgcrypt-1.7.0-1.x86_64 has 9 files, test = 0 3:libgcrypt D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/share/doc/ D: ========== D: fini 100755 1 ( 0, 0) 1104224 /lib64/libgcrypt.so.20.1.0;574df701 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/libgcrypt-1.7.0 D: fini 100644 1 ( 0, 0) 3391 /usr/share/doc/libgcrypt-1.7.0/AUTHORS.gz;574df701 D: fini 100644 1 ( 0, 0) 75713 /usr/share/doc/libgcrypt-1.7.0/ChangeLog.gz;574df701 ########################################### [ 60%] D: fini 100644 1 ( 0, 0) 10089 /usr/share/doc/libgcrypt-1.7.0/NEWS.gz;574df701 D: fini 100644 1 ( 0, 0) 4092 /usr/share/doc/libgcrypt-1.7.0/README.gz;574df701 D: fini 100644 1 ( 0, 0) 3618 /usr/share/doc/libgcrypt-1.7.0/THANKS.gz;574df701 D: fini 100644 1 ( 0, 0) 1107 /usr/share/doc/libgcrypt-1.7.0/TODO.gz;574df701 XZDIO: 147 reads, 1203572 total bytes in 0.055356 secs D: install: %post(libgcrypt-1.7.0-1.x86_64) synchronous scriptlet start D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(13) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) fdno(15) missing FD_CLOEXEC D: install: %post(libgcrypt-1.7.0-1.x86_64) execv(/sbin/ldconfig) pid 32 D: install: waitpid(32) rc 32 status 0 secs 0.003 D: +++ /var/cache/hrmib/libgcrypt-1.7.0-1.x86_64 D: ========== +++ systemd-libs-221-13.x86_64 x86_64-linux 0x2 D: Expected size: 330664 = lead(96)+sigs(268)+pad(4)+data(330296) D: Actual size: 330664 D: install: systemd-libs-221-13.x86_64 has 13 files, test = 0 4:systemd-libs D: ========== Directories not explicitly included in package: D: 0 /lib64/ D: 1 /usr/lib64/ D: ========== D: fini 100755 1 ( 0, 0) 67824 /lib64/libnss_myhostname.so.2;574df701 D: fini 100755 1 ( 0, 0) 24408 /lib64/libsystemd-daemon.so.0.0.12;574df701 D: fini 100755 1 ( 0, 0) 23616 /lib64/libsystemd-id128.so.0.0.28;574df701 D: fini 100755 1 ( 0, 0) 135304 /lib64/libsystemd-journal.so.0.11.5;574df701 D: fini 100755 1 ( 0, 0) 58104 /lib64/libsystemd-login.so.0.9.3;574df701 D: fini 100755 1 ( 0, 0) 536184 /lib64/libsystemd.so.0.8.0;574df701 D: fini 100755 1 ( 0, 0) 261752 /usr/lib64/libnss_mymachines.so.2;574df701 ########################################### [ 80%] D: fini 100755 1 ( 0, 0) 265848 /usr/lib64/libnss_resolve.so.2;574df701 XZDIO: 168 reads, 1374328 total bytes in 0.038707 secs D: install: %post(systemd-libs-221-13.x86_64) synchronous scriptlet start D: install: %post(systemd-libs-221-13.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(13) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) fdno(15) missing FD_CLOEXEC D: install: %post(systemd-libs-221-13.x86_64) execv(/sbin/ldconfig) pid 33 D: install: waitpid(33) rc 33 status 0 secs 0.005 D: opening db index /var/lib/rpm/Obsoletename create:thread:auto_commit mode=0x42 D: +++ /var/cache/hrmib/systemd-libs-221-13.x86_64 D: ========== +++ procps-3.3.11-1.x86_64 x86_64-linux 0x2 D: Expected size: 454662 = lead(96)+sigs(268)+pad(4)+data(454294) D: Actual size: 454662 D: install: procps-3.3.11-1.x86_64 has 107 files, test = 0 5:procps D: ========== Directories not explicitly included in package: D: 0 /bin/ D: 1 /lib64/ D: 2 /sbin/ D: 3 /usr/bin/ D: 4 /usr/share/applications/ D: 5 /usr/share/doc/ D: 7 /usr/share/locale/de/LC_MESSAGES/ D: 8 /usr/share/locale/fr/LC_MESSAGES/ D: 9 /usr/share/locale/pl/LC_MESSAGES/ D: 10 /usr/share/locale/uk/LC_MESSAGES/ D: 11 /usr/share/locale/vi/LC_MESSAGES/ D: 12 /usr/share/man/cs/man1/ D: 13 /usr/share/man/de/man1/ D: 14 /usr/share/man/es/man1/ D: 15 /usr/share/man/es/man8/ D: 16 /usr/share/man/fi/man1/ D: 17 /usr/share/man/fr/man1/ D: 18 /usr/share/man/fr/man8/ D: 19 /usr/share/man/hu/man1/ D: 20 /usr/share/man/it/man1/ D: 21 /usr/share/man/it/man8/ D: 22 /usr/share/man/ja/man1/ D: 23 /usr/share/man/ja/man5/ D: 24 /usr/share/man/ja/man8/ D: 25 /usr/share/man/ko/man1/ D: 26 /usr/share/man/man1/ D: 27 /usr/share/man/man5/ D: 28 /usr/share/man/man8/ D: 29 /usr/share/man/nl/man1/ D: 30 /usr/share/man/pl/man1/ D: 31 /usr/share/pixmaps/ D: ========== D: /usr/share/man/cs directory created with perms 0755, context (no context). D: /usr/share/man/cs/man1 directory created with perms 0755, context (no context). D: /usr/share/man/de directory created with perms 0755, context (no context). D: /usr/share/man/de/man1 directory created with perms 0755, context (no context). D: /usr/share/man/es directory created with perms 0755, context (no context). D: /usr/share/man/es/man1 directory created with perms 0755, context (no context). D: /usr/share/man/es/man8 directory created with perms 0755, context (no context). D: /usr/share/man/fi directory created with perms 0755, context (no context). D: /usr/share/man/fi/man1 directory created with perms 0755, context (no context). D: /usr/share/man/fr/man1 directory created with perms 0755, context (no context). D: /usr/share/man/hu directory created with perms 0755, context (no context). D: /usr/share/man/hu/man1 directory created with perms 0755, context (no context). D: /usr/share/man/it directory created with perms 0755, context (no context). D: /usr/share/man/it/man1 directory created with perms 0755, context (no context). D: /usr/share/man/it/man8 directory created with perms 0755, context (no context). D: /usr/share/man/ja/man1 directory created with perms 0755, context (no context). D: /usr/share/man/ja/man5 directory created with perms 0755, context (no context). D: /usr/share/man/ko directory created with perms 0755, context (no context). D: /usr/share/man/ko/man1 directory created with perms 0755, context (no context). D: /usr/share/man/nl directory created with perms 0755, context (no context). D: /usr/share/man/nl/man1 directory created with perms 0755, context (no context). D: /usr/share/man/pl/man1 directory created with perms 0755, context (no context). D: fini 100755 1 ( 0, 0) 97248 /bin/ps;574df701 D: fini 100755 1 ( 0, 0) 72456 /lib64/libprocps.so.5.0.0;574df701 D: fini 100755 1 ( 0, 0) 22936 /sbin/sysctl;574df701 D: fini 100755 1 ( 0, 0) 214 /usr/bin/XConsole;574df701 D: fini 100755 1 ( 0, 0) 18688 /usr/bin/free;574df701 D: fini 100755 1 ( 0, 0) 31232 /usr/bin/pmap;574df701 D: fini 100755 1 ( 0, 0) 10488 /usr/bin/pwdx;574df701 D: fini 100755 1 ( 0, 0) 18808 /usr/bin/slabtop;574df701 D: fini 100755 1 ( 0, 0) 14664 /usr/bin/tload;574df701 D: fini 100755 1 ( 0, 0) 104984 /usr/bin/top;574df701 D: fini 100755 1 ( 0, 0) 10456 /usr/bin/uptime;574df701 D: fini 100755 1 ( 0, 0) 35200 /usr/bin/vmstat;574df701 D: fini 100755 1 ( 0, 0) 18816 /usr/bin/w;574df701 D: fini 100755 1 ( 0, 0) 23536 /usr/bin/watch;574df701 D: fini 100644 1 ( 0, 0) 240 /usr/share/applications/top.desktop;574df701 D: fini 040755 2 ( 0, 0) 0 /usr/share/doc/procps-3.3.11 D: fini 100644 1 ( 0, 0) 654 /usr/share/doc/procps-3.3.11/AUTHORS.gz;574df701 D: fini 100644 1 ( 0, 0) 2199 /usr/share/doc/procps-3.3.11/FAQ.gz;574df701 D: fini 100644 1 ( 0, 0) 9720 /usr/share/doc/procps-3.3.11/NEWS.gz;574df701 D: fini 100644 1 ( 0, 0) 2388 /usr/share/doc/procps-3.3.11/TODO.gz;574df701 D: fini 100644 1 ( 0, 0) 1672 /usr/share/doc/procps-3.3.11/bugs.md.gz;574df701 D: fini 100644 1 ( 0, 0) 68596 /usr/share/locale/de/LC_MESSAGES/procps-ng.mo;574df701 D: fini 100644 1 ( 0, 0) 86426 /usr/share/locale/fr/LC_MESSAGES/procps-ng.mo;574df701 D: fini 100644 1 ( 0, 0) 85445 /usr/share/locale/pl/LC_MESSAGES/procps-ng.mo;574df701 D: fini 100644 1 ( 0, 0) 109697 /usr/share/locale/uk/LC_MESSAGES/procps-ng.mo;574df701 D: fini 100644 1 ( 0, 0) 91075 /usr/share/locale/vi/LC_MESSAGES/procps-ng.mo;574df701 D: fini 100644 1 ( 0, 0) 1175 /usr/share/man/cs/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 942 /usr/share/man/de/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 7299 /usr/share/man/de/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 862 /usr/share/man/es/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 5054 /usr/share/man/es/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 2734 /usr/share/man/es/man1/skill.1.gz;574df701 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/es/man1/snice.1;574df701 D: fini 100644 1 ( 0, 0) 867 /usr/share/man/es/man1/tload.1.gz;574df701 D: fini 100644 1 ( 0, 0) 6086 /usr/share/man/es/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 670 /usr/share/man/es/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1188 /usr/share/man/es/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 527 /usr/share/man/es/man1/watch.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1487 /usr/share/man/es/man8/vmstat.8.gz;574df701 D: fini 100644 1 ( 0, 0) 886 /usr/share/man/fi/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 6231 /usr/share/man/fi/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 653 /usr/share/man/fi/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1169 /usr/share/man/fi/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 860 /usr/share/man/fr/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 4802 /usr/share/man/fr/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 587 /usr/share/man/fr/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1776 /usr/share/man/fr/man8/vmstat.8.gz;574df701 D: fini 100644 1 ( 0, 0) 898 /usr/share/man/hu/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 5531 /usr/share/man/hu/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1033 /usr/share/man/hu/man1/tload.1.gz;574df701 D: fini 100644 1 ( 0, 0) 585 /usr/share/man/hu/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1291 /usr/share/man/hu/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 525 /usr/share/man/hu/man1/watch.1.gz;574df701 D: fini 100644 1 ( 0, 0) 900 /usr/share/man/it/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 4596 /usr/share/man/it/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 2618 /usr/share/man/it/man1/skill.1.gz;574df701 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/it/man1/snice.1;574df701 D: fini 100644 1 ( 0, 0) 831 /usr/share/man/it/man1/tload.1.gz;574df701 D: fini 100644 1 ( 0, 0) 5660 /usr/share/man/it/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 581 /usr/share/man/it/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1537 /usr/share/man/it/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 509 /usr/share/man/it/man1/watch.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1387 /usr/share/man/it/man8/vmstat.8.gz;574df701 D: fini 100644 1 ( 0, 0) 971 /usr/share/man/ja/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1981 /usr/share/man/ja/man1/pgrep.1.gz;574df701 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/pkill.1;574df701 D: fini 100644 1 ( 0, 0) 7224 /usr/share/man/ja/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1941 /usr/share/man/ja/man1/skill.1.gz;574df701 D: fini 100644 1 ( 0, 0) 12 /usr/share/man/ja/man1/snice.1;574df701 D: fini 100644 1 ( 0, 0) 997 /usr/share/man/ja/man1/tload.1.gz;574df701 D: fini 100644 1 ( 0, 0) 6325 /usr/share/man/ja/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 759 /usr/share/man/ja/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1303 /usr/share/man/ja/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1392 /usr/share/man/ja/man1/watch.1.gz;574df701 D: fini 100644 1 ( 0, 0) 942 /usr/share/man/ja/man5/sysctl.conf.5.gz;574df701 D: fini 100644 1 ( 0, 0) 1316 /usr/share/man/ja/man8/sysctl.8.gz;574df701 D: fini 100644 1 ( 0, 0) 1566 /usr/share/man/ja/man8/vmstat.8.gz;574df701 D: fini 100644 1 ( 0, 0) 921 /usr/share/man/ko/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1648 /usr/share/man/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 2230 /usr/share/man/man1/pgrep.1.gz;574df701 D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/pkill.1;574df701 D: fini 100644 1 ( 0, 0) 952 /usr/share/man/man1/pmap.1.gz;574df701 D: fini 100644 1 ( 0, 0) 14064 /usr/share/man/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 494 /usr/share/man/man1/pwdx.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1529 /usr/share/man/man1/skill.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1428 /usr/share/man/man1/slabtop.1.gz;574df701 D: fini 100644 1 ( 0, 0) 17 /usr/share/man/man1/snice.1;574df701 D: fini 100644 1 ( 0, 0) 805 /usr/share/man/man1/tload.1.gz;574df701 D: fini 100644 1 ( 0, 0) 28843 /usr/share/man/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 891 /usr/share/man/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1280 /usr/share/man/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 2379 /usr/share/man/man1/watch.1.gz;574df701 D: fini 100644 1 ( 0, 0) 918 /usr/share/man/man5/sysctl.conf.5.gz;574df701 D: fini 100644 1 ( 0, 0) 1868 /usr/share/man/man8/sysctl.8.gz;574df701 D: fini 100644 1 ( 0, 0) 2378 /usr/share/man/man8/vmstat.8.gz;574df701 D: fini 100644 1 ( 0, 0) 8503 /usr/share/man/nl/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 998 /usr/share/man/pl/man1/free.1.gz;574df701 D: fini 100644 1 ( 0, 0) 4637 /usr/share/man/pl/man1/ps.1.gz;574df701 D: fini 100644 1 ( 0, 0) 6517 /usr/share/man/pl/man1/top.1.gz;574df701 D: fini 100644 1 ( 0, 0) 650 /usr/share/man/pl/man1/uptime.1.gz;574df701 D: fini 100644 1 ( 0, 0) 1141 /usr/share/man/pl/man1/w.1.gz;574df701 D: fini 100644 1 ( 0, 0) 321 /usr/share/pixmaps/top.png;574df701 D: fini 100755 2 ( 0, 0) 0 /usr/bin/skill;574df701 D: fini 100755 2 ( 0, 0) 23032 /usr/bin/snice;574df701 D: fini 100755 2 ( 0, 0) 0 /usr/bin/pgrep;574df701 ########################################### [100%] D: fini 100755 2 ( 0, 0) 27160 /usr/bin/pkill;574df701 XZDIO: 146 reads, 1189980 total bytes in 0.051452 secs D: install: %post(procps-3.3.11-1.x86_64) asynchronous scriptlet start D: install: %post(procps-3.3.11-1.x86_64) fdno(3) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(4) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(5) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(6) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(7) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(8) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(9) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(10) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(11) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(12) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(13) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) fdno(15) missing FD_CLOEXEC D: install: %post(procps-3.3.11-1.x86_64) execv(/sbin/ldconfig) pid 34 D: install: waitpid(34) rc 34 status 0 secs 0.003 D: +++ /var/cache/hrmib/procps-3.3.11-1.x86_64 D: running post-transaction scripts D: closed db seqno /var/lib/rpm/Seqno D: closed db index /var/lib/rpm/Seqno D: closed db index /var/lib/rpm/Filepaths D: closed db index /var/lib/rpm/Nvra D: closed db index /var/lib/rpm/Packagecolor D: closed db index /var/lib/rpm/Pubkeys D: closed db index /var/lib/rpm/Filedigests D: closed db index /var/lib/rpm/Sha1header D: closed db index /var/lib/rpm/Sigmd5 D: closed db index /var/lib/rpm/Installtid D: closed db index /var/lib/rpm/Dirnames D: closed db index /var/lib/rpm/Triggername D: closed db index /var/lib/rpm/Obsoletename D: closed db index /var/lib/rpm/Conflictname D: closed db index /var/lib/rpm/Requirename D: closed db index /var/lib/rpm/Providename D: closed db index /var/lib/rpm/Group D: closed db index /var/lib/rpm/Basenames D: closed db index /var/lib/rpm/Os D: closed db index /var/lib/rpm/Arch D: closed db index /var/lib/rpm/Release D: closed db index /var/lib/rpm/Version D: closed db index /var/lib/rpm/Name D: closed db index /var/lib/rpm/Packages D: closed db environment /var/lib/rpm/Packages D: pool gi: reused 0, alloc'd 1, free'd 1 items. D: pool mi: reused 986, alloc'd 1, free'd 1 items. D: pool psm: reused 4, alloc'd 1, free'd 1 items. D: pool tsi: reused 40, alloc'd 2, free'd 2 items. D: pool ts: reused 0, alloc'd 1, free'd 1 items. D: pool te: reused 0, alloc'd 5, free'd 5 items. D: pool ps: reused 1, alloc'd 1, free'd 1 items. D: pool al: reused 0, alloc'd 1, free'd 1 items. D: pool ds: reused 63, alloc'd 31, free'd 31 items. D: pool fi: reused 5, alloc'd 5, free'd 5 items. D: pool db: reused 1, alloc'd 1, free'd 1 items. D: pool dbi: reused 5, alloc'd 23, free'd 23 items. D: pool h: reused 221, alloc'd 6, free'd 6 items. D: pool lua: reused 0, alloc'd 1, free'd 1 items. D: pool mire: reused 145, alloc'd 3, free'd 3 items. D: pool bf: reused 29, alloc'd 6, free'd 6 items. D: pool ht: reused 0, alloc'd 3, free'd 3 items. D: pool ctx: reused 144, alloc'd 1, free'd 1 items. D: pool iob: reused 0, alloc'd 1, free'd 1 items. D: pool dig: reused 9, alloc'd 1, free'd 1 items. D: pool fd: reused 180, alloc'd 3, free'd 3 items. D: exit code: 0 [~] ? -- glen From glen at pld-linux.org Tue May 31 22:47:12 2016 From: glen at pld-linux.org (=?UTF-8?Q?Elan_Ruusam=c3=a4e?=) Date: Tue, 31 May 2016 23:47:12 +0300 Subject: ldconfig forgotten In-Reply-To: <574DC18A-BDCD-4DC6-B339-41BF7E562A62@mac.com> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> <574DF502.9010309@pld-linux.org> <574DC18A-BDCD-4DC6-B339-41BF7E562A62@mac.com> Message-ID: <574DF850.5000700@pld-linux.org> On 31.05.2016 23:37, Jeff Johnson wrote: > On May 31, 2016, at 4:33 PM, Elan Ruusam?e wrote: >> i prefer reliability over broken optimization. >> > So disable the optimization. I'm quite sure I have described > how to disable the optimization on this (and other) mailing lists > in the past 10 years. i said in previous mail: >i'll apply your patch and push after some testing >however, i'd like to comment few parts your patch doesn't disable? -- glen From n3npq at mac.com Tue May 31 23:47:30 2016 From: n3npq at mac.com (Jeff Johnson) Date: Tue, 31 May 2016 17:47:30 -0400 Subject: ldconfig forgotten In-Reply-To: <574DF850.5000700@pld-linux.org> References: <574D3317.4040404@pld-linux.org> <574D34A8.2060806@pld-linux.org> <41DAD6A9-495A-4CA4-A828-0DBDC9674BAA@mac.com> <574DF502.9010309@pld-linux.org> <574DC18A-BDCD-4DC6-B339-41BF7E562A62@mac.com> <574DF850.5000700@pld-linux.org> Message-ID: On May 31, 2016, at 4:47 PM, Elan Ruusam?e wrote: > On 31.05.2016 23:37, Jeff Johnson wrote: >> On May 31, 2016, at 4:33 PM, Elan Ruusam?e wrote: >>> i prefer reliability over broken optimization. >>> >> So disable the optimization. I'm quite sure I have described >> how to disable the optimization on this (and other) mailing lists >> in the past 10 years. > > i said in previous mail: > >i'll apply your patch and push after some testing > >however, i'd like to comment few parts > > > your patch doesn't disable? > Verified ... how? Install with -vv, see if this message appears: D: install: %post(procps-3.3.11-1.x86_64) skipping redundant "/sbin/ldconfig". Every usage of ldconfig_done tests ldconfig_path for NULL first. hth 73 de Jeff