]> git.proxmox.com Git - mirror_ovs.git/blob - rhel/automake.mk
rhel: openvswitch-fedora.spec.in: Drop explicit usermod/groupadd deps
[mirror_ovs.git] / rhel / automake.mk
1 # Copyright (C) 2009, 2010, 2011, 2012, 2014 Nicira, Inc.
2 #
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved. This file is offered as-is,
6 # without warranty of any kind.
7
8 EXTRA_DIST += \
9 rhel/README.RHEL.rst \
10 rhel/automake.mk \
11 rhel/etc_init.d_openvswitch \
12 rhel/etc_logrotate.d_openvswitch \
13 rhel/etc_openvswitch_default.conf \
14 rhel/etc_sysconfig_network-scripts_ifdown-ovs \
15 rhel/etc_sysconfig_network-scripts_ifup-ovs \
16 rhel/openvswitch-dkms.spec \
17 rhel/openvswitch-dkms.spec.in \
18 rhel/openvswitch-kmod-rhel6.spec \
19 rhel/openvswitch-kmod-rhel6.spec.in \
20 rhel/openvswitch-kmod.files \
21 rhel/openvswitch-kmod-fedora.spec \
22 rhel/openvswitch-kmod-fedora.spec.in \
23 rhel/openvswitch.spec \
24 rhel/openvswitch.spec.in \
25 rhel/openvswitch-fedora.spec \
26 rhel/openvswitch-fedora.spec.in \
27 rhel/usr_share_openvswitch_scripts_ovs-systemd-reload \
28 rhel/usr_share_openvswitch_scripts_sysconfig.template \
29 rhel/usr_share_openvswitch_scripts_systemd_sysconfig.template \
30 rhel/usr_lib_udev_rules.d_91-vfio.rules \
31 rhel/usr_lib_systemd_system_openvswitch.service \
32 rhel/usr_lib_systemd_system_ovsdb-server.service \
33 rhel/usr_lib_systemd_system_ovs-vswitchd.service.in \
34 rhel/usr_lib_systemd_system_ovs-delete-transient-ports.service \
35 rhel/usr_lib_systemd_system_ovn-controller.service \
36 rhel/usr_lib_systemd_system_ovn-controller-vtep.service \
37 rhel/usr_lib_systemd_system_ovn-northd.service \
38 rhel/usr_lib_firewalld_services_ovn-central-firewall-service.xml \
39 rhel/usr_lib_firewalld_services_ovn-host-firewall-service.xml
40
41 DISTCLEANFILES += rhel/usr_lib_systemd_system_ovs-vswitchd.service
42
43 update_rhel_spec = \
44 $(AM_V_GEN)($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g') \
45 < $(srcdir)/rhel/$(@F).in > $(@F).tmp || exit 1; \
46 if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
47
48 $(srcdir)/rhel/openvswitch-dkms.spec: rhel/openvswitch-dkms.spec.in $(top_builddir)/config.status
49 $(update_rhel_spec)
50
51 $(srcdir)/rhel/openvswitch-kmod-rhel6.spec: rhel/openvswitch-kmod-rhel6.spec.in $(top_builddir)/config.status
52 $(update_rhel_spec)
53
54 $(srcdir)/rhel/openvswitch-kmod-fedora.spec: rhel/openvswitch-kmod-fedora.spec.in $(top_builddir)/config.status
55 $(update_rhel_spec)
56
57 $(srcdir)/rhel/openvswitch.spec: rhel/openvswitch.spec.in $(top_builddir)/config.status
58 $(update_rhel_spec)
59
60 $(srcdir)/rhel/openvswitch-fedora.spec: rhel/openvswitch-fedora.spec.in $(top_builddir)/config.status
61 $(update_rhel_spec)
62
63 RPMBUILD_TOP := $(abs_top_builddir)/rpm/rpmbuild
64 RPMBUILD_OPT ?= --without check
65
66 # Build user-space RPMs
67 rpm-fedora: dist $(srcdir)/rhel/openvswitch-fedora.spec
68 ${MKDIR_P} ${RPMBUILD_TOP}/SOURCES
69 cp ${DIST_ARCHIVES} ${RPMBUILD_TOP}/SOURCES
70 rpmbuild ${RPMBUILD_OPT} \
71 -D "_topdir ${RPMBUILD_TOP}" \
72 -ba $(srcdir)/rhel/openvswitch-fedora.spec
73
74 # Build kernel datapath RPM
75 rpm-fedora-kmod: dist $(srcdir)/rhel/openvswitch-kmod-fedora.spec
76 ${MKDIR_P} ${RPMBUILD_TOP}/SOURCES
77 cp ${DIST_ARCHIVES} ${RPMBUILD_TOP}/SOURCES
78 rpmbuild -D "kversion $(shell uname -r)" ${RPMBUILD_OPT} \
79 -D "_topdir ${RPMBUILD_TOP}" \
80 -ba $(srcdir)/rhel/openvswitch-kmod-fedora.spec