# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # $(eval $(call gb_CustomTarget_CustomTarget,pyuno/zipcore)) # system python (only mingw) ifneq ($(SYSTEM_PYTHON),) # mingw: MINGW_SYSROOT is defined in configure ifeq ($(OS)$(COM),WNTGCC) pyuno_PYTHON_LIB_DIR=$(MINGW_SYSROOT)/lib/python$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR) endif else $(error SHOULD NOT GET HERE) endif pyuno_PYTHON_ARCHIVE_NAME:=python-core-$(PYTHON_VERSION).zip $(call gb_CustomTarget_get_target,pyuno/zipcore) : \ $(call gb_CustomTarget_get_workdir,pyuno/zipcore)/$(pyuno_PYTHON_ARCHIVE_NAME) # create zip archive $(call gb_CustomTarget_get_workdir,pyuno/zipcore)/$(pyuno_PYTHON_ARCHIVE_NAME) \ : $(call gb_ExternalPackage_get_target,python3) \ | $(call gb_CustomTarget_get_workdir,pyuno/zipcore)/.dir $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ZIP,1) cd $(pyuno_PYTHON_LIB_DIR) && zip -q $@ $(shell cd $(pyuno_PYTHON_LIB_DIR) && find . -type f | grep -v "\.pyc" | grep -v "\.py~" | grep -v .orig | grep -v _failed) # vim: set noet sw=4 ts=4: ro/cib/libreoffice-5-0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/solenv/gbuild/PythonTest.mk
AgeCommit message (Expand)Author
2014-04-18don't bother with _for_build hereDavid Tardon
2014-04-18add missing depDavid Tardon
2014-04-18fix deps for PythonTestDavid Tardon
2014-04-18order-only dep is enoughDavid Tardon
2014-04-18PythonTest must depend on bundled python stuffDavid Tardon
2014-02-12normalize values of SYSTEM_PYTHON, SYSTEM_MYSQL_CPPCONNMichael Stahl
2014-01-23make unittest failure foo a scriptBjoern Michaelsen
2013-09-23Try to fix cross-compilationTor Lillqvist
2013-09-22gbuild: remove libraries from OUTDIR and WORKDIRMichael Stahl
2013-08-27Don't create any (new) Python bytecode files when running a PythonTestTor Lillqvist
2013-08-18Add where pyuno.so is to PYPATH for the "Mac-like app structure" caseTor Lillqvist
2013-08-18Further work on the "Mac-like app structure" optionTor Lillqvist
2013-06-18.mk files should not be executableMiklos Vajna
2013-06-18Migrate CheckFields unit test to pythonDavid Ostrovsky
2013-06-16Another try to fix python unit test on MSVCDavid Ostrovsky
2013-05-08Set Valgrind-related env vars in PythonTest, tooStephan Bergmann
2013-04-30...and fix gb_UNIT_FAILED_MSG outputStephan Bergmann
2013-04-30Adapt PythonTest.mk to CppunitTest's b308d0b061b24688cf1312af817a2af1c21e2bd8Stephan Bergmann
2013-04-27fdo#55814 migrate java unit test to pythonDavid Ostrovsky
2013-04-26At least for now, PythonTest runs against dev-install treeStephan Bergmann
2013-04-26Mac OS X needs devinstall's program dir in PYTHONPATHStephan Bergmann
2013-04-26Towards a Mac OS X PythonTestStephan Bergmann
2013-04-20gbuild: PythonTest: automatic GDB backtrace on failuresMichael Stahl
2013-04-20gbuild: PythonTest: try to make it more portableMichael Stahl
2013-04-19gbuild: PythonTest: do not invoke the python.bin directlyMichael Stahl
2013-04-19run PythonTests with internal python tooMichael Stahl
2013-04-09move Python tests in-processMichael Stahl
2013-04-09set up python unit test infrastructureDavid Ostrovsky