Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # spec file for package tirex
  3. #
  4. # Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
  5. #
  6. # All modifications and additions to the file contributed by third parties
  7. # remain the property of their copyright owners, unless otherwise agreed
  8. # upon. The license for this file, and modifications and additions to the
  9. # file, is the same license as for the tirex package itself (unless the
  10. # license for the tirex package is not an Open Source License, in which
  11. # case the license is the MIT License). An "Open Source License" is a
  12. # license that conforms to the Open Source Definition (Version 1.9)
  13. # published by the Open Source Initiative.
  14.  
  15. # Please submit bugfixes or comments via http://bugs.opensuse.org/
  16. #
  17.  
  18.  
  19. Name: tirex
  20. Summary: A suite of programs for running a tile server
  21. License: GPL-2.0+
  22. Group: Productivity/Databases/Tools
  23. Version: centos
  24. Release: 0.5.3
  25. Url: http://wiki.openstreetmap.org/wiki/Tirex
  26. BuildRoot: %{_tmppath}/%{name}-%{version}-build
  27. Source0: %{name}-0.5.3.tar.bz2
  28. Source10: tirex-master.service
  29. Source11: tirex-backend-manager.service
  30. BuildRequires: freetype-devel
  31. BuildRequires: gcc-c++
  32. BuildRequires: libtool
  33. BuildRequires: mapnik-devel
  34. BuildRequires: munin-node
  35. BuildRequires: nagios-rpm-macros
  36. BuildRequires: hdf5-devel
  37. BuildRequires: perl(IPC::ShareLite)
  38. BuildRequires: perl(JSON)
  39. BuildRequires: perl-ExtUtils-MakeMaker
  40. %if 0%{?suse_version} >= 1230
  41. BuildRequires: systemd
  42. Requires: systemd
  43. %endif
  44. Requires: logrotate
  45. Requires: perl
  46. Requires: perl-Tirex = %{version}
  47. Requires: perl(GD)
  48. Requires: perl(IPC::ShareLite)
  49. Requires: perl(JSON)
  50. %define nrpedir %{_sysconfdir}/nrpe.d
  51.  
  52. %description
  53. Tirex (pronounced T-Rex) is a suite of programs for running a tile server, it was developed
  54. for OpenStreetMap tile servers but can be used for other maps, too. Tirex is mostly written
  55. in Perl and it is Open Source.
  56.  
  57. %package munin
  58. Summary: Munin interface of tirex
  59. Group: Productivity/Databases/Tools
  60. Requires: %{name}
  61. Requires: munin-node
  62.  
  63. %description munin
  64. This package provides the munin interface for tirex.
  65.  
  66. %package -n monitoring-plugins-tirex
  67. Summary: Nagios interface of tirex
  68. Group: Productivity/Databases/Tools
  69. Provides: nagios-plugins-tirex
  70. Requires: %{name}
  71.  
  72. %description -n monitoring-plugins-tirex
  73. This package provides the nagios compatible interface for tirex.
  74.  
  75. %package -n perl-Tirex
  76. Summary: Perl modules of tirex
  77. Group: Productivity/Databases/Tools
  78. Requires: perl
  79.  
  80. %description -n perl-Tirex
  81. This package provides the perl modules of tirex.
  82.  
  83. %prep
  84. %setup -q -n %{name}
  85.  
  86. %build
  87. make %{?jobs:-j%jobs}
  88.  
  89. %install
  90. make DESTDIR=%{buildroot} INSTALLOPTS= install
  91. make DESTDIR=%{buildroot} INSTALLOPTS= install-munin
  92.  
  93. install -m 755 -d %{buildroot}/%{nagios_plugindir}
  94. install -m 755 -d %{buildroot}/%{nrpedir}
  95. install -m 755 nagios/tirex* %{buildroot}/%{nagios_plugindir}
  96. install -m 644 nagios/cfg/*.cfg %{buildroot}/%{nrpedir}
  97.  
  98. mkdir -p %{buildroot}/var/lib/tirex/tiles
  99. mkdir -p %{buildroot}/var/lib/tirex/stats
  100. %if 0%{?suse_version} >= 1230
  101. mkdir -p %{buildroot}/usr/lib/systemd/system
  102. install -m 644 %{SOURCE10} %{buildroot}/usr/lib/systemd/system
  103. install -m 644 %{SOURCE11} %{buildroot}/usr/lib/systemd/system
  104. %else
  105. mkdir -p %{buildroot}/var/run/tirex
  106. %endif
  107. mkdir -p %{buildroot}/var/log/tirex
  108. #%perl_process_packlist manually extended
  109. mkdir -p $RPM_BUILD_ROOT/var/adm/perl-modules \
  110. test -f $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod && { sed -e "s@$RPM_BUILD_ROOT@@g" < $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod > $RPM_BUILD_ROOT/var/adm/perl-modules/%{-n:%{-n*}}%{!-n:%{name}} ; } ; \
  111. test -n "$RPM_BUILD_ROOT" -a -d $RPM_BUILD_ROOT/%perl_sitearch/auto && find $RPM_BUILD_ROOT/%perl_sitearch/auto -name .packlist -print0 | xargs -0 -r perl -spi -e "s@$RPM_BUILD_ROOT@@g" ; \
  112. test -n "$RPM_BUILD_ROOT" -a -d $RPM_BUILD_ROOT/%perl_vendorarch/auto && find $RPM_BUILD_ROOT/%perl_vendorarch/auto -name .packlist -print0 | xargs -0 -r perl -spi -e "s@$RPM_BUILD_ROOT@@g" ; \
  113. find $RPM_BUILD_ROOT -name .packlist | xargs rm; \
  114. rm -f $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod \
  115. %nil
  116. install -m 755 utils/* %{buildroot}%{_bindir}
  117. mkdir -p %{buildroot}%{_sbindir}
  118. #ln -s /sbin/service %{buildroot}%{_sbindir}/rctirex-master
  119. #ln -s /sbin/service %{buildroot}%{_sbindir}/rctirex-backend-manager
  120. mv %{buildroot}/%{_datadir}/munin %{buildroot}/%{_prefix}/lib/munin
  121. install -m 644 example-map/mapnik-example.conf %{buildroot}%{_sysconfdir}/%{name}/renderer/mapnik/mapnik.conf
  122. mv %{buildroot}%{_sysconfdir}/%{name}/renderer/mapnik.conf %{buildroot}%{_sysconfdir}/%{name}/renderer/mapnik.conf_
  123. mv %{buildroot}%{_sysconfdir}/%{name}/renderer/mapserver.conf %{buildroot}%{_sysconfdir}/%{name}/renderer/mapserver.conf_
  124. mv %{buildroot}%{_sysconfdir}/%{name}/renderer/test.conf %{buildroot}%{_sysconfdir}/%{name}/renderer/test.conf_
  125. mv %{buildroot}%{_sysconfdir}/%{name}/renderer/wms.conf %{buildroot}%{_sysconfdir}/%{name}/renderer/wms.conf_
  126.  
  127. %clean
  128. rm -rf %{buildroot}
  129.  
  130. %pre
  131. /usr/sbin/groupadd -r tirex 2> /dev/null || :
  132. /usr/sbin/useradd -r -d /var/lib/tirex -s /bin/bash -c "Tirex" -g tirex tirex 2> /dev/null || :
  133.  
  134. %if 0%{?suse_version} >= 1230
  135. %post
  136. systemctl enable tirex-master.service
  137. systemctl enable tirex-backend-manager.service
  138. %endif
  139.  
  140. %files
  141. %defattr(-, root, root)
  142. %doc LICENSE README
  143. %{_bindir}/%{name}*
  144. %{_bindir}/viewmeta.pl
  145. %{_bindir}/analyze_postgis_log.pl
  146. %{_bindir}/expiremeta.pl
  147. %{_prefix}/lib/%{name}
  148. %{_mandir}/man1/%{name}*
  149. %{_mandir}/man3/Tirex*
  150. %defattr(644, root, root)
  151. %config %{_sysconfdir}/logrotate.d/%{name}-master
  152. %defattr(-, tirex, tirex)
  153. %config(noreplace) %{_sysconfdir}/tirex/renderer
  154. %config(noreplace) %{_sysconfdir}/tirex/tirex.conf
  155. %dir %{_sysconfdir}/tirex
  156. /var/lib/tirex
  157. /var/log/tirex
  158. %if 0%{?suse_version} >= 1230
  159. %defattr(-, root, root)
  160. /usr/lib/systemd/system/tirex-master.service
  161. /usr/lib/systemd/system/tirex-backend-manager.service
  162. %{_sbindir}/rctirex-master
  163. %{_sbindir}/rctirex-backend-manager
  164. %else
  165. /var/run/tirex
  166. %endif
  167.  
  168. %files -n perl-Tirex
  169. %defattr(-, root, root)
  170. %{perl_vendorlib}/Tirex/
  171. %{perl_vendorlib}/Tirex.pm
  172.  
  173. %files munin
  174. %defattr(-, root, root)
  175. %{_prefix}/lib/munin/plugins/tirex*
  176.  
  177. %files -n monitoring-plugins-tirex
  178. %defattr(-, root, root)
  179. # own dirs to prevent deps
  180. %dir %{nrpedir}
  181. %dir %{nagios_libdir}
  182. %dir %{nagios_plugindir}
  183. %{nrpedir}/tirex*.cfg
  184. %{nagios_plugindir}/tirex*
  185.  
  186. %changelog
  187. * Thu Nov 8 2018 ramm@geofabrik.de
  188. - update to current state
  189. * Mon Apr 3 2017 opensuse@dstoecker.de
  190. - update to current state
  191. * Fri Jan 22 2016 opensuse@dstoecker.de
  192. - update to current version
  193. * Thu Jul 30 2015 tzotsos@opensuse.org
  194. - use default hdf-devel
  195. * Fri Jun 19 2015 opensuse@dstoecker.de
  196. - update to r31281
  197. * Wed Apr 1 2015 opensuse@dstoecker.de
  198. - fix build for 13.2
  199.  
  200.  
  201.  
  202.  
  203. $ rpmbuild -qb rpmbuild/SPECS/tirex.spec
  204.  
  205.  
  206.  
  207. $ rpmbuild -bb rpmbuild/SPECS/tirex.spec
  208. Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.RjPdrh
  209. + umask 022
  210. + cd /home/user/rpmbuild/BUILD
  211. + cd /home/user/rpmbuild/BUILD
  212. + rm -rf tirex
  213. + /usr/bin/bzip2 -dc /home/user/rpmbuild/SOURCES/tirex-0.5.3.tar.bz2
  214. + /usr/bin/tar -xf -
  215. + STATUS=0
  216. + '[' 0 -ne 0 ']'
  217. + cd tirex
  218. + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
  219. + exit 0
  220. Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.BFVi2u
  221. + umask 022
  222. + cd /home/user/rpmbuild/BUILD
  223. + cd tirex
  224. + make
  225. perl Makefile.PL PREFIX=/usr DESTDIR= FIRST_MAKEFILE=Makefile.perl
  226. *** Test::More is not installed, you will not be able to run the tests
  227. Writing Makefile.perl for Tirex
  228. rm -f Makefile.perl.old
  229. cd backend-mapnik; make
  230. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  231. make[1]: `backend-mapnik' is up to date.
  232. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  233. make -f Makefile.perl
  234. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex'
  235. Skip blib/lib/Tirex/Manager/Bucket.pm (unchanged)
  236. Skip blib/lib/Tirex/Backend/WMS.pm (unchanged)
  237. Skip blib/lib/Tirex/Source/Command.pm (unchanged)
  238. Skip blib/lib/Tirex/Renderer.pm (unchanged)
  239. Skip blib/lib/Tirex/Munin/Tiledir.pm (unchanged)
  240. Skip blib/lib/Tirex/Munin/Status/QueuedRequestsAge.pm (unchanged)
  241. Skip blib/lib/Tirex/Backend.pm (unchanged)
  242. Skip blib/lib/Tirex/Munin/Tiledir/Tileage.pm (unchanged)
  243. Skip blib/lib/Tirex/Munin/Status/RenderTime.pm (unchanged)
  244. Skip blib/lib/Tirex/Munin/Tiledir/Diskusage.pm (unchanged)
  245. Skip blib/lib/Tirex/Source/Test.pm (unchanged)
  246. Skip blib/lib/Tirex/Munin/Status/ActiveRequests.pm (unchanged)
  247. Skip blib/lib/Tirex/Manager/Test.pm (unchanged)
  248. Skip blib/lib/Tirex/Config.pm (unchanged)
  249. Skip blib/lib/Tirex/Backend/Test.pm (unchanged)
  250. Skip blib/lib/Tirex.pm (unchanged)
  251. Skip blib/lib/Tirex/Map.pm (unchanged)
  252. Skip blib/lib/Tirex/Munin/Tiledir/Tilecount.pm (unchanged)
  253. Skip blib/lib/Tirex/Munin/Status.pm (unchanged)
  254. Skip blib/lib/Tirex/Zoomrange.pm (unchanged)
  255. Skip blib/lib/Tirex/Queue.pm (unchanged)
  256. Skip blib/lib/Tirex/Munin/Status/QueuedRequests.pm (unchanged)
  257. Skip blib/lib/Tirex/Manager/RenderingJobs.pm (unchanged)
  258. Skip blib/lib/Tirex/PrioQueue.pm (unchanged)
  259. Skip blib/lib/Tirex/Job.pm (unchanged)
  260. Skip blib/lib/Tirex/Status.pm (unchanged)
  261. Skip blib/lib/Tirex/Source/ModTile.pm (unchanged)
  262. Skip blib/lib/Tirex/Munin.pm (unchanged)
  263. Skip blib/lib/Tirex/Backend/Mapserver.pm (unchanged)
  264. Skip blib/lib/Tirex/Munin/Status/RequestsRendered.pm (unchanged)
  265. Skip blib/lib/Tirex/Manager.pm (unchanged)
  266. Skip blib/lib/Tirex/Source.pm (unchanged)
  267. Skip blib/lib/Tirex/Metatiles/Range.pm (unchanged)
  268. Skip blib/lib/Tirex/Metatile.pm (unchanged)
  269. Skip blib/lib/Tirex/Message.pm (unchanged)
  270. Manifying blib/man3/Tirex::Backend::WMS.3pm
  271. Manifying blib/man3/Tirex::Manager::Bucket.3pm
  272. Manifying blib/man3/Tirex::Source::Command.3pm
  273. Manifying blib/man3/Tirex::Munin::Tiledir.3pm
  274. Manifying blib/man3/Tirex::Renderer.3pm
  275. Manifying blib/man3/Tirex::Munin::Status::QueuedRequestsAge.3pm
  276. Manifying blib/man3/Tirex::Backend.3pm
  277. Manifying blib/man3/Tirex::Munin::Tiledir::Tileage.3pm
  278. Manifying blib/man3/Tirex::Munin::Status::RenderTime.3pm
  279. Manifying blib/man3/Tirex::Munin::Tiledir::Diskusage.3pm
  280. Manifying blib/man3/Tirex::Source::Test.3pm
  281. Manifying blib/man3/Tirex::Munin::Status::ActiveRequests.3pm
  282. Manifying blib/man3/Tirex::Manager::Test.3pm
  283. Manifying blib/man3/Tirex::Config.3pm
  284. Manifying blib/man3/Tirex::Backend::Test.3pm
  285. Manifying blib/man3/Tirex.3pm
  286. Manifying blib/man3/Tirex::Map.3pm
  287. Manifying blib/man3/Tirex::Munin::Tiledir::Tilecount.3pm
  288. Manifying blib/man3/Tirex::Munin::Status.3pm
  289. Manifying blib/man3/Tirex::Zoomrange.3pm
  290. Manifying blib/man3/Tirex::Queue.3pm
  291. Manifying blib/man3/Tirex::Munin::Status::QueuedRequests.3pm
  292. Manifying blib/man3/Tirex::Manager::RenderingJobs.3pm
  293. Manifying blib/man3/Tirex::PrioQueue.3pm
  294. Manifying blib/man3/Tirex::Job.3pm
  295. Manifying blib/man3/Tirex::Status.3pm
  296. Manifying blib/man3/Tirex::Source::ModTile.3pm
  297. Manifying blib/man3/Tirex::Munin.3pm
  298. Manifying blib/man3/Tirex::Backend::Mapserver.3pm
  299. Manifying blib/man3/Tirex::Munin::Status::RequestsRendered.3pm
  300. Manifying blib/man3/Tirex::Manager.3pm
  301. Manifying blib/man3/Tirex::Metatiles::Range.3pm
  302. Manifying blib/man3/Tirex::Source.3pm
  303. Manifying blib/man3/Tirex::Metatile.3pm
  304. Manifying blib/man3/Tirex::Message.3pm
  305. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex'
  306. + exit 0
  307. Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.WLbuUJ
  308. + umask 022
  309. + cd /home/user/rpmbuild/BUILD
  310. + '[' /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 '!=' / ']'
  311. + rm -rf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64
  312. ++ dirname /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64
  313. + mkdir -p /home/user/rpmbuild/BUILDROOT
  314. + mkdir /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64
  315. + cd tirex
  316. + make DESTDIR=/home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 INSTALLOPTS= install
  317. cd backend-mapnik; make
  318. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  319. make[1]: `backend-mapnik' is up to date.
  320. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  321. make -f Makefile.perl
  322. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex'
  323. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex'
  324. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/bin/
  325. for program in bin/*; do \
  326. install -m 755 $program /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/bin/; \
  327. done
  328. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends
  329. install -m 755 backends/test /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends
  330. install -m 755 backends/wms /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends
  331. install -m 755 backends/mapserver /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends
  332. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex
  333. install -m 644 etc/tirex.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/tirex.conf
  334. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer
  335. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/test
  336. install -m 644 etc/renderer/test.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/test.conf
  337. install -m 644 etc/renderer/test/checkerboard.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/test/checkerboard.conf
  338. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/wms
  339. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver
  340. install -m 644 etc/renderer/wms.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/wms.conf
  341. install -m 644 etc/renderer/mapserver.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver.conf
  342. install -m 644 etc/renderer/wms/demowms.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/wms/demowms.conf
  343. install -m 644 etc/renderer/mapserver/msdemo.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver/msdemo.conf
  344. install -m 644 etc/renderer/mapserver/msdemo.map /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver/msdemo.map
  345. install -m 644 etc/renderer/mapserver/fonts.lst /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver/fonts.lst
  346. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapnik
  347. install -m 644 etc/renderer/mapnik.conf.dist /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapnik.conf
  348. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/logrotate.d
  349. install -m 644 debian/logrotate.d-tirex-master /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/logrotate.d/tirex-master
  350. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man1/
  351. for program in bin/*; do \
  352. if grep -q "=head" $program; then \
  353. pod2man $program > /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man1/`basename $program`.1; \
  354. fi; \
  355. done
  356. cd backend-mapnik; make DESTDIR=/home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 "INSTALLOPTS=" install
  357. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  358. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends/
  359. install -m 755 backend-mapnik /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends/mapnik
  360. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex/backend-mapnik'
  361. make -f Makefile.perl install
  362. make[1]: Entering directory `/home/user/rpmbuild/BUILD/tirex'
  363. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex.pm
  364. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Renderer.pm
  365. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Config.pm
  366. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Backend.pm
  367. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/PrioQueue.pm
  368. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Metatile.pm
  369. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Zoomrange.pm
  370. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin.pm
  371. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Status.pm
  372. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Manager.pm
  373. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Job.pm
  374. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Source.pm
  375. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Map.pm
  376. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Message.pm
  377. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Queue.pm
  378. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Manager/Test.pm
  379. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Manager/Bucket.pm
  380. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Manager/RenderingJobs.pm
  381. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Tiledir.pm
  382. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status.pm
  383. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status/QueuedRequests.pm
  384. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status/QueuedRequestsAge.pm
  385. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status/ActiveRequests.pm
  386. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status/RenderTime.pm
  387. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Status/RequestsRendered.pm
  388. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Tiledir/Diskusage.pm
  389. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Tiledir/Tilecount.pm
  390. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Munin/Tiledir/Tileage.pm
  391. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Source/Test.pm
  392. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Source/Command.pm
  393. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Source/ModTile.pm
  394. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Backend/Test.pm
  395. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Backend/WMS.pm
  396. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Backend/Mapserver.pm
  397. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/perl5/vendor_perl/Tirex/Metatiles/Range.pm
  398. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Backend::Test.3pm
  399. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Tiledir::Tileage.3pm
  400. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Manager.3pm
  401. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Tiledir::Diskusage.3pm
  402. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Manager::Bucket.3pm
  403. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status::QueuedRequestsAge.3pm
  404. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Source.3pm
  405. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Backend.3pm
  406. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Zoomrange.3pm
  407. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin.3pm
  408. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Metatile.3pm
  409. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Metatiles::Range.3pm
  410. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Tiledir.3pm
  411. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Source::Test.3pm
  412. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status::ActiveRequests.3pm
  413. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Map.3pm
  414. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status::RequestsRendered.3pm
  415. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Source::Command.3pm
  416. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Status.3pm
  417. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status::RenderTime.3pm
  418. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Renderer.3pm
  419. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::PrioQueue.3pm
  420. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex.3pm
  421. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Manager::RenderingJobs.3pm
  422. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Config.3pm
  423. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Backend::Mapserver.3pm
  424. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Manager::Test.3pm
  425. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Tiledir::Tilecount.3pm
  426. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status::QueuedRequests.3pm
  427. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Queue.3pm
  428. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Message.3pm
  429. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Munin::Status.3pm
  430. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Backend::WMS.3pm
  431. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Source::ModTile.3pm
  432. Installing /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/man/man3/Tirex::Job.3pm
  433. Appending installation info to /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib64/perl5/perllocal.pod
  434. make[1]: Leaving directory `/home/user/rpmbuild/BUILD/tirex'
  435. + make DESTDIR=/home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 INSTALLOPTS= install-munin
  436. install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/munin/plugins
  437. install -m 755 munin/* /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/munin/plugins
  438. + install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/lib/nagios/plugins
  439. + install -m 755 -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//etc/nrpe.d
  440. + install -m 755 nagios/tirex-health nagios/tirex-queue-size /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/lib/nagios/plugins
  441. + install -m 644 nagios/cfg/tirex-health.cfg nagios/cfg/tirex-queue-size.cfg /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//etc/nrpe.d
  442. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/var/lib/tirex/tiles
  443. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/var/lib/tirex/stats
  444. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/var/run/tirex
  445. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/var/log/tirex
  446. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/var/adm/perl-modules test -f /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib64/perl5/perllocal.pod
  447. mkdir: invalid option -- 'f'
  448. Try 'mkdir --help' for more information.
  449. + test -n /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 -a -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/local/lib64/perl5/auto
  450. + test -n /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 -a -d /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/lib64/perl5/vendor_perl/auto
  451. + find /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/lib64/perl5/vendor_perl/auto -name .packlist -print0
  452. + xargs -0 -r perl -spi -e s@/home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64@@g
  453. + find /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64 -name .packlist
  454. + xargs rm
  455. + rm -f /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib64/perl5/perllocal.pod
  456. + install -m 755 utils/analyze_postgis_log.pl utils/expiremeta.pl utils/tirex-apache-log utils/tirex-create-stats-and-update-tiles.sh utils/tirex-stats-joblog utils/tirex-tiledir-age-histogram utils/tirex-tiledir-map utils/viewmeta.pl /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/bin
  457. + mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/sbin
  458. + mv /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/share/munin /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64//usr/lib/munin
  459. + install -m 644 example-map/mapnik-example.conf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapnik/mapnik.conf
  460. + mv /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapnik.conf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapnik.conf_
  461. + mv /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver.conf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/mapserver.conf_
  462. + mv /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/test.conf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/test.conf_
  463. + mv /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/wms.conf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/etc/tirex/renderer/wms.conf_
  464. + /usr/lib/rpm/find-debuginfo.sh --strict-build-id -m --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 /home/user/rpmbuild/BUILD/tirex
  465. extracting debug info from /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/lib/tirex/backends/mapnik
  466. dwz: Too few files for multifile optimization
  467. /usr/lib/rpm/sepdebugcrcfix: Updated 0 CRC32s, 1 CRC32s did match.
  468. + /usr/lib/rpm/check-buildroot
  469. + /usr/lib/rpm/redhat/brp-compress
  470. + /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip
  471. + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1
  472. + /usr/lib/rpm/redhat/brp-python-hardlink
  473. + /usr/lib/rpm/redhat/brp-java-repack-jars
  474. Processing files: tirex-centos-0.5.3.x86_64
  475. Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.z6wdI4
  476. + umask 022
  477. + cd /home/user/rpmbuild/BUILD
  478. + cd tirex
  479. + DOCDIR=/home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/doc/tirex-centos
  480. + export DOCDIR
  481. + /usr/bin/mkdir -p /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/doc/tirex-centos
  482. + cp -pr LICENSE /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/doc/tirex-centos
  483. + cp -pr README /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64/usr/share/doc/tirex-centos
  484. + exit 0
  485. Provides: config(tirex) = centos-0.5.3 tirex = centos-0.5.3 tirex(x86-64) = centos-0.5.3
  486. Requires(interp): /bin/sh
  487. Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  488. Requires(pre): /bin/sh
  489. Requires: /bin/sh /usr/bin/perl libboost_filesystem.so.1.65.1()(64bit) libboost_system.so.1.65.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.15)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.4)(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libmapnik.so.3.0()(64bit) libpthread.so.0()(64bit) libpthread.so.0(GLIBC_2.2.5)(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) libstdc++.so.6(GLIBCXX_3.4)(64bit) libstdc++.so.6(GLIBCXX_3.4.11)(64bit) libstdc++.so.6(GLIBCXX_3.4.21)(64bit) perl(Data::Dumper) perl(Errno) perl(Fcntl) perl(File::Find) perl(File::Touch) perl(File::stat) perl(GD) perl(Getopt::Long) perl(IO::File) perl(IO::Handle) perl(IO::Pipe) perl(IO::Seekable) perl(IO::Select) perl(IO::Socket) perl(JSON) perl(List::Util) perl(Math::Trig) perl(POSIX) perl(Pod::Usage) perl(Socket) perl(Sys::Syslog) perl(Term::ANSIColor) perl(Time::HiRes) perl(Tirex) perl(Tirex::Backend::Mapserver) perl(Tirex::Backend::Test) perl(Tirex::Backend::WMS) perl(Tirex::Manager) perl(Tirex::Map) perl(Tirex::Metatile) perl(Tirex::Queue) perl(Tirex::Renderer) perl(Tirex::Source) perl(Tirex::Status) perl(strict) perl(warnings) rtld(GNU_HASH)
  490. Processing files: tirex-munin-centos-0.5.3.x86_64
  491. Provides: tirex-munin = centos-0.5.3 tirex-munin(x86-64) = centos-0.5.3
  492. Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  493. Requires: /usr/bin/perl perl(Tirex::Munin::Status::ActiveRequests) perl(Tirex::Munin::Status::QueuedRequests) perl(Tirex::Munin::Status::QueuedRequestsAge) perl(Tirex::Munin::Status::RenderTime) perl(Tirex::Munin::Status::RequestsRendered) perl(Tirex::Munin::Tiledir::Diskusage) perl(Tirex::Munin::Tiledir::Tileage) perl(Tirex::Munin::Tiledir::Tilecount) perl(strict) perl(warnings)
  494. Processing files: monitoring-plugins-tirex-centos-0.5.3.x86_64
  495. Provides: monitoring-plugins-tirex = centos-0.5.3 monitoring-plugins-tirex(x86-64) = centos-0.5.3 nagios-plugins-tirex
  496. Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  497. Requires: /usr/bin/perl perl(Getopt::Std) perl(JSON) perl(Tirex::Status) perl(strict)
  498. Processing files: perl-Tirex-centos-0.5.3.x86_64
  499. Provides: perl(Tirex) = 0.2 perl(Tirex::Backend) perl(Tirex::Backend::Mapserver) perl(Tirex::Backend::Test) perl(Tirex::Backend::WMS) perl(Tirex::Config) perl(Tirex::Job) perl(Tirex::Manager) perl(Tirex::Manager::Bucket) perl(Tirex::Manager::RenderingJobs) perl(Tirex::Manager::Test) perl(Tirex::Map) perl(Tirex::Message) perl(Tirex::Metatile) perl(Tirex::Metatiles::Range) perl(Tirex::Munin) perl(Tirex::Munin::Status) perl(Tirex::Munin::Status::ActiveRequests) perl(Tirex::Munin::Status::QueuedRequests) perl(Tirex::Munin::Status::QueuedRequestsAge) perl(Tirex::Munin::Status::RenderTime) perl(Tirex::Munin::Status::RequestsRendered) perl(Tirex::Munin::Tiledir) perl(Tirex::Munin::Tiledir::Diskusage) perl(Tirex::Munin::Tiledir::Tileage) perl(Tirex::Munin::Tiledir::Tilecount) perl(Tirex::PrioQueue) perl(Tirex::Queue) perl(Tirex::Renderer) perl(Tirex::Source) perl(Tirex::Source::Command) perl(Tirex::Source::ModTile) perl(Tirex::Source::Test) perl(Tirex::Status) perl(Tirex::Zoomrange) perl-Tirex = centos-0.5.3 perl-Tirex(x86-64) = centos-0.5.3
  500. Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  501. Requires: perl(Carp) perl(Data::Dumper) perl(File::Path) perl(File::stat) perl(GD) perl(IO::Socket) perl(IO::Socket::INET) perl(IO::Socket::UNIX) perl(IPC::ShareLite) perl(IPC::SysV) perl(JSON) perl(LWP) perl(List::Util) perl(Math::Trig) perl(Socket) perl(Sys::Syslog) perl(Time::HiRes) perl(Tirex) perl(Tirex::Backend) perl(Tirex::Config) perl(Tirex::Job) perl(Tirex::Manager) perl(Tirex::Manager::Bucket) perl(Tirex::Manager::RenderingJobs) perl(Tirex::Map) perl(Tirex::Message) perl(Tirex::Metatile) perl(Tirex::Metatiles::Range) perl(Tirex::Munin) perl(Tirex::Munin::Status) perl(Tirex::Munin::Tiledir) perl(Tirex::PrioQueue) perl(Tirex::Renderer) perl(Tirex::Source) perl(Tirex::Source::Command) perl(Tirex::Source::ModTile) perl(Tirex::Status) perl(Tirex::Zoomrange) perl(base) perl(mapscript) perl(strict) perl(warnings)
  502. Processing files: tirex-debuginfo-centos-0.5.3.x86_64
  503. Provides: tirex-debuginfo = centos-0.5.3 tirex-debuginfo(x86-64) = centos-0.5.3
  504. Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1
  505. Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64
  506. Wrote: /home/user/rpmbuild/RPMS/x86_64/tirex-centos-0.5.3.x86_64.rpm
  507. Wrote: /home/user/rpmbuild/RPMS/x86_64/tirex-munin-centos-0.5.3.x86_64.rpm
  508. Wrote: /home/user/rpmbuild/RPMS/x86_64/monitoring-plugins-tirex-centos-0.5.3.x86_64.rpm
  509. Wrote: /home/user/rpmbuild/RPMS/x86_64/perl-Tirex-centos-0.5.3.x86_64.rpm
  510. Wrote: /home/user/rpmbuild/RPMS/x86_64/tirex-debuginfo-centos-0.5.3.x86_64.rpm
  511. Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.VQkf5x
  512. + umask 022
  513. + cd /home/user/rpmbuild/BUILD
  514. + cd tirex
  515. + rm -rf /home/user/rpmbuild/BUILDROOT/tirex-centos-0.5.3.x86_64
  516. + exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement