mirror of
https://github.com/openvswitch/ovs
synced 2025-08-25 19:37:14 +00:00
This reverts commit a7be68a4d77791bbe02c37f7ad8ae60b02e5679e and a subsequent commit 4617d1f6bd24c543f533f6485b42ebca6b0a8371. There are too many issues with these patches. It's better to revert them for now and make a separate fixed versions later if needed. List of issues (maybe not full): 1. 'make clean' removes entire 'python' directory. 2. Fully broken Travis-CI testsuite build: building 'ovs._json' extension creating build/temp.linux-x86_64-2.7 error: could not create 'build/temp.linux-x86_64-2.7': \ Permission denied https://travis-ci.org/openvswitch/ovs/jobs/440693765 3. Broken local testsuite build on Ubuntu 18.04: running build_ext building 'ovs._json' extension creating build/temp.linux-x86_64-3.6 creating build/temp.linux-x86_64-3.6/ovs <...> /usr/bin/ld: .libs/libopenvswitch.a(util.o): \ relocation R_X86_64_TPOFF32 against `var.7749' can not be \ used when making a shared object; recompile with -fPIC <...> collect2: error: ld returned 1 exit status 4. Fedora build failure because of 'setuptools' ('distutils') hard dependency on 'redhat-rpm-config' package: building 'ovs._json' extension <...> gcc: error: <...>/redhat-hardened-cc1: No such file or directory 5. Looks like 'setuptools' also could download and install unwanted python modules during package build. Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
124 lines
3.8 KiB
Makefile
124 lines
3.8 KiB
Makefile
ovstest_pyfiles = \
|
|
python/ovstest/__init__.py \
|
|
python/ovstest/args.py \
|
|
python/ovstest/rpcserver.py \
|
|
python/ovstest/tcp.py \
|
|
python/ovstest/tests.py \
|
|
python/ovstest/udp.py \
|
|
python/ovstest/util.py \
|
|
python/ovstest/vswitch.py
|
|
|
|
ovs_pyfiles = \
|
|
python/ovs/__init__.py \
|
|
python/ovs/compat/__init__.py \
|
|
python/ovs/compat/sortedcontainers/__init__.py \
|
|
python/ovs/compat/sortedcontainers/sortedlist.py \
|
|
python/ovs/compat/sortedcontainers/sorteddict.py \
|
|
python/ovs/compat/sortedcontainers/sortedset.py \
|
|
python/ovs/daemon.py \
|
|
python/ovs/fcntl_win.py \
|
|
python/ovs/db/__init__.py \
|
|
python/ovs/db/custom_index.py \
|
|
python/ovs/db/data.py \
|
|
python/ovs/db/error.py \
|
|
python/ovs/db/idl.py \
|
|
python/ovs/db/parser.py \
|
|
python/ovs/db/schema.py \
|
|
python/ovs/db/types.py \
|
|
python/ovs/fatal_signal.py \
|
|
python/ovs/json.py \
|
|
python/ovs/jsonrpc.py \
|
|
python/ovs/ovsuuid.py \
|
|
python/ovs/poller.py \
|
|
python/ovs/process.py \
|
|
python/ovs/reconnect.py \
|
|
python/ovs/socket_util.py \
|
|
python/ovs/stream.py \
|
|
python/ovs/timeval.py \
|
|
python/ovs/unixctl/__init__.py \
|
|
python/ovs/unixctl/client.py \
|
|
python/ovs/unixctl/server.py \
|
|
python/ovs/util.py \
|
|
python/ovs/version.py \
|
|
python/ovs/vlog.py \
|
|
python/ovs/winutils.py
|
|
# These python files are used at build time but not runtime,
|
|
# so they are not installed.
|
|
EXTRA_DIST += \
|
|
python/build/__init__.py \
|
|
python/build/nroff.py \
|
|
python/build/soutil.py
|
|
|
|
# PyPI support.
|
|
EXTRA_DIST += \
|
|
python/ovs/compat/sortedcontainers/LICENSE \
|
|
python/README.rst \
|
|
python/setup.py
|
|
|
|
# C extension support.
|
|
EXTRA_DIST += python/ovs/_json.c
|
|
|
|
PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
|
|
EXTRA_DIST += $(PYFILES)
|
|
PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover)
|
|
|
|
FLAKE8_PYFILES += \
|
|
$(filter-out python/ovs/compat/% python/ovs/dirs.py,$(PYFILES)) \
|
|
python/setup.py \
|
|
python/build/__init__.py \
|
|
python/build/nroff.py \
|
|
python/ovs/dirs.py.template
|
|
|
|
if HAVE_PYTHON
|
|
nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
|
|
ovs-install-data-local:
|
|
$(MKDIR_P) python/ovs
|
|
sed \
|
|
-e '/^##/d' \
|
|
-e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
|
|
-e 's,[@]RUNDIR[@],$(RUNDIR),g' \
|
|
-e 's,[@]LOGDIR[@],$(LOGDIR),g' \
|
|
-e 's,[@]bindir[@],$(bindir),g' \
|
|
-e 's,[@]sysconfdir[@],$(sysconfdir),g' \
|
|
-e 's,[@]DBDIR[@],$(DBDIR),g' \
|
|
< $(srcdir)/python/ovs/dirs.py.template \
|
|
> python/ovs/dirs.py.tmp
|
|
$(MKDIR_P) $(DESTDIR)$(pkgdatadir)/python/ovs
|
|
$(INSTALL_DATA) python/ovs/dirs.py.tmp $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
|
|
rm python/ovs/dirs.py.tmp
|
|
|
|
python-sdist: $(srcdir)/python/ovs/version.py $(ovs_pyfiles) python/ovs/dirs.py
|
|
(cd python/ && $(PYTHON) setup.py sdist)
|
|
|
|
pypi-upload: $(srcdir)/python/ovs/version.py $(ovs_pyfiles) python/ovs/dirs.py
|
|
(cd python/ && $(PYTHON) setup.py sdist upload)
|
|
else
|
|
ovs-install-data-local:
|
|
@:
|
|
endif
|
|
install-data-local: ovs-install-data-local
|
|
|
|
UNINSTALL_LOCAL += ovs-uninstall-local
|
|
ovs-uninstall-local:
|
|
rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
|
|
|
|
ALL_LOCAL += $(srcdir)/python/ovs/version.py
|
|
$(srcdir)/python/ovs/version.py: config.status
|
|
$(AM_V_GEN)$(ro_shell) > $(@F).tmp && \
|
|
echo 'VERSION = "$(VERSION)"' >> $(@F).tmp && \
|
|
if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
|
|
|
|
ALL_LOCAL += $(srcdir)/python/ovs/dirs.py
|
|
$(srcdir)/python/ovs/dirs.py: python/ovs/dirs.py.template
|
|
$(AM_V_GEN)sed \
|
|
-e '/^##/d' \
|
|
-e 's,[@]pkgdatadir[@],/usr/local/share/openvswitch,g' \
|
|
-e 's,[@]RUNDIR[@],/var/run,g' \
|
|
-e 's,[@]LOGDIR[@],/usr/local/var/log,g' \
|
|
-e 's,[@]bindir[@],/usr/local/bin,g' \
|
|
-e 's,[@]sysconfdir[@],/usr/local/etc,g' \
|
|
-e 's,[@]DBDIR[@],/usr/local/etc/openvswitch,g' \
|
|
< $? > $@.tmp && \
|
|
mv $@.tmp $@
|
|
EXTRA_DIST += python/ovs/dirs.py.template
|