From c8aa00806bd67de0d67a65c5d2d4cfffd9e1a9c2 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 3 Jun 2014 12:35:53 +0200 Subject: ipaplatform: Link to platform module during build time https://fedorahosted.org/freeipa/ticket/4052 Reviewed-By: Petr Viktorin --- .gitignore | 6 +++++- Makefile | 7 +++++++ setup.py | 3 +++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5aaee9ee6..b968b5706 100644 --- a/.gitignore +++ b/.gitignore @@ -68,6 +68,10 @@ freeipa2-dev-doc /ipapython/setup.py /ipapython/version.py -/ipapython/services.py !/ipapython/Makefile !/ipapython/py_default_encoding/Makefile + +/ipaplatform/setup.py +/ipaplatform/tasks.py +/ipaplatform/services.py +/ipaplatform/paths.py diff --git a/Makefile b/Makefile index f51a89103..0d0e641c9 100644 --- a/Makefile +++ b/Makefile @@ -150,6 +150,13 @@ version-update: release-update sed -e s/__VERSION__/$(IPA_VERSION)/ ipa-client/version.m4.in \ > ipa-client/version.m4 + if [ "$(SUPPORTED_PLATFORM)" != "" ]; then \ + rm -f ipaplatform/paths.py ipaplatform/services.py ipaplatform/tasks.py; \ + ln -s $(SUPPORTED_PLATFORM)/paths.py ipaplatform/paths.py; \ + ln -s $(SUPPORTED_PLATFORM)/services.py ipaplatform/services.py; \ + ln -s $(SUPPORTED_PLATFORM)/tasks.py ipaplatform/tasks.py; \ + fi + if [ "$(SKIP_API_VERSION_CHECK)" != "yes" ]; then \ ./makeapi --validate; \ ./makeaci --validate; \ diff --git a/setup.py b/setup.py index af7964d60..af968e173 100755 --- a/setup.py +++ b/setup.py @@ -78,6 +78,9 @@ setup( packages=[ 'ipalib', 'ipalib.plugins', + 'ipaplatform', + 'ipaplatform.base', + 'ipaplatform.fedora', 'ipaserver', 'ipaserver.advise', 'ipaserver.advise.plugins', -- cgit