Custom Query (344 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 344)

Ticket Resolution Summary Owner Reporter
#17 fixed rpmbuild can't stand CRLF in .spec files Yuri Dario dmik
Description

It turns out that rpmbuild fails (with different kinds of errors) if the input .spec file uses CRLF as line separators. Most likely, the usual O_TEXT flag is forgotten when opening it.

This is quite important because .spec files are sometimes get processed by other tools (e.g. sed) that turn all LF to CRLF.

#201 fixed rpmbuild Silvan Scherrer
Description

The below sequence is executed as in the macros to see how many CPU's are available. But as we don't have getconf, RPM_BUILD_NCPUS is uninitialized. This leads to warnings and errors in the log. As we don't have getconf, I vote for initializing the value with 1

# Maximum number of CPU's to use when building, 0 for unlimited.
#%_smp_ncpus_max 0
%_smp_mflags %([ -z "$RPM_BUILD_NCPUS" ] \\\
	&& RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
        ncpus_max=%{?_smp_ncpus_max}; \\\
        if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\
        if [ "$RPM_BUILD_NCPUS" -gt 1 ]; then echo "-j$RPM_BUILD_NCPUS"; fi)
#327 fixed rpm: unable to install git-all due to dependency issues sdennis
Description

I am running ArcaOS 5.0 Personal Edition with ANPM v1.03 (build 201805291). All repos have been updated locally. Every time I try to install git-all, I get this error (and am reporting it per the error's instructions):

[u'ERROR with transaction check vs depsolve:', 'perl(SVN::Core) is needed by perl-Git-SVN-2.11.0-3.oc00.noarch', 'perl(SVN::Delta) is needed by perl-Git-SVN-2.11.0-3.oc00.noarch', 'perl(SVN::Ra) is needed by perl-Git-SVN-2.11.0-3.oc00.noarch', 'perl(Authen::SASL) is needed by git-email-2.11.0-3.oc00.noarch', 'perl(Net::SMTP::SSL) is needed by git-email-2.11.0-3.oc00.noarch', 'cvs is needed by git-cvs-2.11.0-3.oc00.noarch', 'cvsps is needed by git-cvs-2.11.0-3.oc00.noarch', 'git-gui = 2.11.0-3.oc00 is needed by git-all-2.11.0-3.oc00.noarch', 'gitk = 2.11.0-3.oc00 is needed by git-all-2.11.0-3.oc00.noarch', u'Please report this error at http://trac.netlabs.org/rpm/']

Note: See TracQuery for help on using queries.