3b07cbf0cd
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7511
27 lines
974 B
Plaintext
27 lines
974 B
Plaintext
# This file is included by all the kernel-*.spec files
|
|
|
|
# Build with bash instead of sh as the shell: this turns on bash
|
|
# extensions like <(...).
|
|
%define _buildshell /bin/bash
|
|
|
|
%define using_buildservice 0%{?opensuse_bs}
|
|
|
|
# source_rel is the package release string, without the rebuild counter
|
|
# generated by the build service. If the release string has a non-digit
|
|
# suffix, we keep that suffix and strip the rightmost digit component.
|
|
# This is used in KOTD builds: 2.1.g1234567 -> 2.g1234567
|
|
%define source_rel %release
|
|
%if %using_buildservice
|
|
%define source_rel %(echo %release | sed -r 's/\\.[0-9]+($|\\.[^.]*[^.0-9][^.]*$)/\\1/')
|
|
%endif
|
|
|
|
# how the kernel release string (uname -r) should look like
|
|
%define kernelrelease %patchversion-%source_rel
|
|
|
|
%define my_builddir %_builddir/%{name}-%{version}
|
|
|
|
# macro to add the source timestamp to package descriptions
|
|
%define source_timestamp %(sed '1s/^/Source Timestamp: /' %_sourcedir/source-timestamp || :)
|
|
|
|
# vim: ft=spec
|