Custom Query (344 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (136 - 138 of 344)

Ticket Resolution Summary Owner Reporter
#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)
#236 invalid uploading to a repo Silvan Scherrer
Description

with the recent addition of the automatic legacy_packages creation we face now a small issue when uploading to a repo. as the created legacy packages are called the same with every new rpm build (which is perfect right of course) the upload stops because it finds the same file already. with the -f switch the upload proceeds.

#238 fixed python Silvan Scherrer
Description

adding the python macros from http://pkgs.fedoraproject.org/cgit/rpms/python-rpm-macros.git/tree/ would make sense, as more and more python specs use them.

Note: See TracQuery for help on using queries.