forked from openzfs/spl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refresh the existing RPM packaging to conform to the 'Fedora Packaging Guidelines'. This includes adopting the kmods2 packaging standard which is used fod kmods distributed by rpmfusion for Fedora/RHEL. http://fedoraproject.org/wiki/Packaging:Guidelines http://rpmfusion.org/Packaging/KernelModules/Kmods2 While the spec files have been entirely rewritten from a user perspective the only major changes are: * The Fedora packages now have a build dependency on the rpmfusion repositories. The generic kmod packages also have a new dependency on kmodtool-1.22 but it is bundled with the source rpm so no additional packages are needed. * The kernel binary module packages have been renamed from spl-modules-* to kmod-spl-* as specificed by kmods2. * The is now a common kmod-spl-devel-* package in addition to the per-kernel devel packages. The common package contains the development headers while the per-kernel package contains kernel specific build products. Signed-off-by: Brian Behlendorf <[email protected]> Closes openzfs#222
- Loading branch information
1 parent
4a6d8d2
commit 493972c
Showing
26 changed files
with
1,139 additions
and
730 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
############################################################################### | ||
# Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC. | ||
# Copyright (C) 2007-2013 Lawrence Livermore National Security, LLC. | ||
# Copyright (C) 2007 The Regents of the University of California. | ||
# Written by Brian Behlendorf <[email protected]>. | ||
############################################################################### | ||
# Build targets for RPM packages. | ||
############################################################################### | ||
|
||
srpm-modules: | ||
if CONFIG_KERNEL | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-modules" srpm-common | ||
endif | ||
srpm-kmod: | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-kmod" \ | ||
def='${SRPM_DEFINE_COMMON} ${SRPM_DEFINE_KMOD}' srpm-common | ||
|
||
srpm-dkms: | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-dkms" \ | ||
def='${SRPM_DEFINE_COMMON} ${SRPM_DEFINE_DKMS}' srpm-common | ||
|
||
srpm-utils: | ||
if CONFIG_USER | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" srpm-common | ||
endif | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" \ | ||
def='${SRPM_DEFINE_COMMON} ${SRPM_DEFINE_UTIL}' srpm-common | ||
|
||
srpm: srpm-modules srpm-utils | ||
srpm: srpm-kmod srpm-dkms srpm-utils | ||
srpms: srpm-kmod srpm-dkms srpm-utils | ||
|
||
rpm-dkms: srpm-modules | ||
if CONFIG_KERNEL | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-modules" dkms-common | ||
endif | ||
rpm-kmod: srpm-kmod | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-kmod" \ | ||
def='${RPM_DEFINE_COMMON} ${RPM_DEFINE_KMOD}' rpm-common | ||
|
||
rpm-modules: srpm-modules | ||
if CONFIG_KERNEL | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-modules" rpm-common | ||
endif | ||
rpm-dkms: srpm-dkms | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-dkms" \ | ||
def='${RPM_DEFINE_COMMON} ${RPM_DEFINE_DKMS}' rpm-common | ||
|
||
rpm-utils: srpm-utils | ||
if CONFIG_USER | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" rpm-common | ||
endif | ||
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" \ | ||
def='${RPM_DEFINE_COMMON} ${RPM_DEFINE_UTIL}' rpm-common | ||
|
||
rpm: rpm-modules rpm-utils rpm-dkms | ||
rpm: rpm-kmod rpm-dkms rpm-utils | ||
rpms: rpm-kmod rpm-dkms rpm-utils | ||
|
||
rpm-local: | ||
@(if test "${HAVE_RPMBUILD}" = "no"; then \ | ||
|
@@ -48,32 +49,14 @@ rpm-local: | |
mkdir -p $(rpmbuild)/RPMS && \ | ||
mkdir -p $(rpmbuild)/SRPMS && \ | ||
mkdir -p $(rpmbuild)/SPECS && \ | ||
cp $(rpmspec) $(rpmbuild)/SPECS && \ | ||
cp ${RPM_SPEC_DIR}/$(rpmspec) $(rpmbuild)/SPECS && \ | ||
mkdir -p $(rpmbuild)/SOURCES && \ | ||
cp scripts/kmodtool $(rpmbuild)/SOURCES && \ | ||
cp $(distdir).tar.gz $(rpmbuild)/SOURCES) | ||
|
||
dkms-common: | ||
rpmpkg=$(pkg)-$(SPL_META_VERSION)-$(SPL_META_RELEASE).src.rpm; \ | ||
rpmspec=$(pkg).spec; \ | ||
rpmdkms=$(pkg)-dkms-$(SPL_META_VERSION)-$(SPL_META_RELEASE).noarch.rpm;\ | ||
rpmbuild=`mktemp -t -d $(PACKAGE)-build-$$USER-XXXXXXXX`; \ | ||
$(MAKE) $(AM_MAKEFLAGS) \ | ||
rpmbuild="$$rpmbuild" \ | ||
rpmspec="$$rpmspec" \ | ||
rpm-local || exit 1; \ | ||
$(RPMBUILD) \ | ||
--define "_tmppath $$rpmbuild/TMP" \ | ||
--define "_topdir $$rpmbuild" \ | ||
--define "dist %{nil}" \ | ||
--define "_without_kernel 1" \ | ||
--define "_without_kernel_debug 1" \ | ||
--define "_with_kernel_dkms 1" \ | ||
--nodeps --rebuild $$rpmpkg || exit 1; \ | ||
cp $$rpmbuild/RPMS/noarch/$$rpmdkms . || exit 1; \ | ||
$(RM) -R $$rpmbuild | ||
|
||
srpm-common: dist | ||
rpmpkg=$(pkg)-$(SPL_META_VERSION)-$(SPL_META_RELEASE).src.rpm; \ | ||
@(dist=`$(RPM) --eval %{?dist}`; \ | ||
rpmpkg=$(pkg)-$(VERSION)-$(RELEASE)$$dist*src.rpm; \ | ||
rpmspec=$(pkg).spec; \ | ||
rpmbuild=`mktemp -t -d $(PACKAGE)-build-$$USER-XXXXXXXX`; \ | ||
$(MAKE) $(AM_MAKEFLAGS) \ | ||
|
@@ -83,14 +66,13 @@ srpm-common: dist | |
$(RPMBUILD) \ | ||
--define "_tmppath $$rpmbuild/TMP" \ | ||
--define "_topdir $$rpmbuild" \ | ||
--define "build_src_rpm 1" \ | ||
--define "dist %{nil}" \ | ||
--nodeps -bs $$rpmbuild/SPECS/$$rpmspec || exit 1; \ | ||
$(def) -bs $$rpmbuild/SPECS/$$rpmspec || exit 1; \ | ||
cp $$rpmbuild/SRPMS/$$rpmpkg . || exit 1; \ | ||
$(RM) -R $$rpmbuild | ||
rm -R $$rpmbuild) | ||
|
||
rpm-common: | ||
rpmpkg=$(pkg)-$(SPL_META_VERSION)-$(SPL_META_RELEASE).src.rpm; \ | ||
@(dist=`$(RPM) --eval %{?dist}`; \ | ||
rpmpkg=$(pkg)-$(VERSION)-$(RELEASE)$$dist*src.rpm; \ | ||
rpmspec=$(pkg).spec; \ | ||
rpmbuild=`mktemp -t -d $(PACKAGE)-build-$$USER-XXXXXXXX`; \ | ||
$(MAKE) $(AM_MAKEFLAGS) \ | ||
|
@@ -100,14 +82,6 @@ rpm-common: | |
${RPMBUILD} \ | ||
--define "_tmppath $$rpmbuild/TMP" \ | ||
--define "_topdir $$rpmbuild" \ | ||
--define "dist %{nil}" \ | ||
--define "require_kdir $(LINUX)" \ | ||
--define "require_kobj $(LINUX_OBJ)" \ | ||
--define "require_kver $(LINUX_VERSION)" \ | ||
--define "$(DEBUG_SPL) 1" \ | ||
--define "$(DEBUG_LOG) 1" \ | ||
--define "$(DEBUG_KMEM) 1" \ | ||
--define "$(DEBUG_KMEM_TRACKING) 1" \ | ||
--nodeps --rebuild $$rpmpkg || exit 1; \ | ||
$(def) --rebuild $$rpmpkg || exit 1; \ | ||
cp $$rpmbuild/RPMS/*/* . || exit 1; \ | ||
$(RM) -R $$rpmbuild | ||
rm -R $$rpmbuild) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SUBDIRS = fedora generic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/spl-dkms.spec | ||
/spl-kmod.spec | ||
/spl.spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
EXTRA_DIST = spl.spec.in spl-kmod.spec.in spl-dkms.spec.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../generic/spl-dkms.spec.in |
Oops, something went wrong.