https://bugzilla.redhat.com/show_bug.cgi?id=1074147 --- Comment #6 from Christopher Meng <cickumqt@xxxxxxxxx> --- 1. Sources should not contain any local server name like .de, you can replace it with .jp, it still works ;) Debian reources can be reached from: http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/ An example: http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_%{version}.orig.tar.xz http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_%{version}-1.debian.tar.xz 2. mkdir -p $RPM_BUILD_ROOT%{_sbindir}/ cp build/apt-cacher-ng $RPM_BUILD_ROOT%{_sbindir}/ In order to ensure that the permissions are set correctly, for binaries you should use install with -m option: mkdir -p $RPM_BUILD_ROOT%{_sbindir}/ install -pm0755 build/apt-cacher-ng $RPM_BUILD_ROOT%{_sbindir}/ 3. For manpages: cp doc/man/*.8 $RPM_BUILD_ROOT%{_mandir}/man8/ --> install -pm0644 doc/man/*.8 $RPM_BUILD_ROOT%{_mandir}/man8/ 4. %changelog * Fri Mar 14 2014 Kenjiro Nakayama <knakayam@xxxxxxxxxx> - 0.7.11-3 - update spec file. You didn't bump the changelog, please fix. -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list package-review@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/package-review