CD Inserts & Envelopes Web Interface
Nisha Ganatra's Films
Cake: starring Heather Graham
ITRANS Song Book Hindi, Urdu, Marathi song lyrics
ILKEYB $$ Indian Languages Package for Windows
Travel Travel reports, it is all about food
Montreal: Schwartz's, Le Petit Alep
Albums: Pictures and some notes
BlockHosts block hosts
BlockHosts FAQ
BlockHosts Forum
Blog Mostly consumer and technology topics
Email: avinash@aczoom.com
To build RPM, try this
Hi,
I have experienced this problem before when building another package, try this:
echo "%_unpackaged_files_terminate_build 0" >> /etc/rpm/macros
then build from your spec.
Regards,
Michael.
fixes it
Thanks, this works around the problem, RPM version now available.
Another thing which may be more correct
Hi ac,
I thought you'd like to know, a similar problem was found with the latest proftpd 1.3.1rc1 spec file:
Checking for unpackaged file(s): /usr/lib/rpm/check-files /usr/src/packages/BUILD/proftpd-1.3.1rc1-root
error: Installed (but unpackaged) file(s) found:
/usr/include/proftpd/auth.h
/usr/include/proftpd/bindings.h
/usr/include/proftpd/buildstamp.h
/usr/include/proftpd/child.h
/usr/include/proftpd/class.h
/usr/include/proftpd/compat.h
and what fixed this (maybe more correctly than the "ignore" I notified about before) was this:
adding "%{prefix}/include/proftpd/*" to the %files section in proftpd.spec
So in terms of blockhosts you're getting this:
RPM build errors:
Installed (but unpackaged) file(s) found:
/usr/bin/blockhosts.pyc
/usr/bin/blockhosts.pyo
it might be an indea to try adding:
%{prefix}/bin/*
to the %files section in your spec file which will capture both the .pyc and .pyo files (even though I doubt we need them since they look like python out files which can usually be ignored).
Regards,
Michael.