Makefile revision 6150
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# CDDL HEADER START
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# The contents of this file are subject to the terms of the
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Common Development and Distribution License (the "License").
45e9809aff7304721fddb95654901b32195c9c7avboxsync# You may not use this file except in compliance with the License.
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
45e9809aff7304721fddb95654901b32195c9c7avboxsync# or http://www.opensolaris.org/os/licensing.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# See the License for the specific language governing permissions
45e9809aff7304721fddb95654901b32195c9c7avboxsync# and limitations under the License.
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# When distributing Covered Code, include this CDDL HEADER in each
45e9809aff7304721fddb95654901b32195c9c7avboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# If applicable, add the following below this CDDL HEADER, with the
45e9809aff7304721fddb95654901b32195c9c7avboxsync# fields enclosed by brackets "[]" replaced with your own identifying
45e9809aff7304721fddb95654901b32195c9c7avboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# CDDL HEADER END
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
45e9809aff7304721fddb95654901b32195c9c7avboxsync#
45e9809aff7304721fddb95654901b32195c9c7avboxsyncBUILD_BITS= 32
45e9809aff7304721fddb95654901b32195c9c7avboxsyncinclude ../../make-rules/shared-macros.mk
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncPATH=$(USRBINDIR):$(GNUBIN):$(USRSBINDIR)
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_NAME= mercurial
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_VERSION= 3.8.3
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_PROJECT_URL= http://mercurial-scm.org/
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_ARCHIVE_HASH= \
45e9809aff7304721fddb95654901b32195c9c7avboxsync sha256:f84556cdf9a331984261549d9d08143ab9da33d7c03f0aa323b0ee52d0782a4c
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_ARCHIVE_URL= https://www.mercurial-scm.org/release/$(COMPONENT_ARCHIVE)
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_SIG_URL= $(COMPONENT_ARCHIVE_URL).asc
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_BUGDB= utility/hg
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncTPNO= 29315
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Mercurial does not yet support Python 3.
45e9809aff7304721fddb95654901b32195c9c7avboxsyncPYTHON_VERSIONS = $(PYTHON2_VERSIONS)
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncBUILD_STYLE= setup.py
45e9809aff7304721fddb95654901b32195c9c7avboxsyncTEST_TARGET= install $(TEST_32)
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Add install dependency when system-test target is implemented.
45e9809aff7304721fddb95654901b32195c9c7avboxsyncinclude $(WS_MAKE_RULES)/common.mk
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_POST_INSTALL_ACTION = \
45e9809aff7304721fddb95654901b32195c9c7avboxsync (cd $(PROTO_DIR)/usr/bin ; $(MV) -f hg hg-$(PYTHON_VERSION))
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncPKG_PROTO_DIRS += $(COMPONENT_SRC)/contrib
45e9809aff7304721fddb95654901b32195c9c7avboxsyncPKG_PROTO_DIRS += $(COMPONENT_SRC)/doc
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Use bash in sh mode for the tests; using /bin/sh on Solaris hasn't always
45e9809aff7304721fddb95654901b32195c9c7avboxsync# worked, and using /bin/bash doesn't always work, either. Also skip the
45e9809aff7304721fddb95654901b32195c9c7avboxsync# tests which try to check all the code in the userland gate. And finally,
45e9809aff7304721fddb95654901b32195c9c7avboxsync# test the bits from the proto area, rather than rebuilding. Given the way the
45e9809aff7304721fddb95654901b32195c9c7avboxsync# test suite works, the hg executable must be named "hg".
45e9809aff7304721fddb95654901b32195c9c7avboxsyncTEST_BLACKLIST = \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-check-code.t \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-check-config.t \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-devel-warnings.t \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-hghave.t \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-module-imports.t \
45e9809aff7304721fddb95654901b32195c9c7avboxsync test-run-tests.t
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_PRE_TEST_ACTION = \
45e9809aff7304721fddb95654901b32195c9c7avboxsync (cd $(BUILD_DIR); rm -f sh; ln -s /bin/bash sh; \
45e9809aff7304721fddb95654901b32195c9c7avboxsync printf "%s\n" $(TEST_BLACKLIST) > blacklist); \
45e9809aff7304721fddb95654901b32195c9c7avboxsync (cd $(PROTOUSRBINDIR); rm -f hg; ln -s hg-$(PYTHON_VERSION) hg)
45e9809aff7304721fddb95654901b32195c9c7avboxsync
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_TEST_DIR = $(COMPONENT_SRC)/tests
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_TEST_ENV = PYTHONPATH=$(PROTO_DIR)/$(PYTHON_LIB)
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMPONENT_TEST_ENV += TERM=dumb
COMPONENT_TEST_ENV += HGTEST_JOBS=$(or $(HGTEST_JOBS),1)
COMPONENT_TEST_ARGS = ./run-tests.py \
--shell $(BUILD_DIR)/sh \
--with-hg $(PROTOUSRBINDIR)/hg \
--blacklist $(BUILD_DIR)/blacklist
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
# Assuming you have docutils installed, update the manpages patch for a new
# mercurial version based on the patches applied to the source and to the
# manpage generator. This works either against source that's already been
# patched with the older manpages.patch or against a fresh tarball. Eventually
# we'll have docutils in the CBE and we'll be able to regenerate the manpages
# as part of the build, rather than patching them.
#
# Only build this target if it doesn't already exist, since this recipe is just
# for the component maintainer's benefit.
patches/manpages.patch: $(SOURCE_DIR)/.unpacked \
$(SOURCE_DIR)/.patched-rst.patch $(SOURCE_DIR)/.patched-hgmanpage.patch
if [[ -f $@ ]]; then exit 0; fi; \
if [[ -f $(COMPONENT_SRC)/doc/hg.1.~1~ ]]; then \
cd $(COMPONENT_SRC)/doc; gmake man || true; cd ../..; \
for f in hg.1 hgignore.5 hgrc.5; do \
diff -u $(COMPONENT_SRC)/doc/$$f.~1~ $(COMPONENT_SRC)/doc/$$f; \
done > $@; \
else \
for f in hg.1 hgignore.5 hgrc.5; do \
cp -p $(COMPONENT_SRC)/doc/$$f $(COMPONENT_SRC)/doc/$$f.orig; \
done; \
cd $(COMPONENT_SRC)/doc; gmake man || true; cd ../..; \
for f in hg.1 hgignore.5 hgrc.5; do \
diff -u $(COMPONENT_SRC)/doc/$$f.orig $(COMPONENT_SRC)/doc/$$f; \
done > $@; \
fi || true