[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] LibreOffice packaging repository branch, debian-experimental-3.7, updated. libreoffice_3.6.2_rc1-1-36-g1d6760f



The following commit has been merged in the debian-experimental-3.7 branch:
commit 1d6760f76a230f574b6b6e44397802f9491a767f
Author: Rene Engelhard <rene@debian.org>
Date:   Mon Sep 17 23:34:41 2012 +0200

    grr, actually add pyuno-copy-for-python3.diff....

diff --git a/patches/pyuno-copy-for-python3.diff b/patches/pyuno-copy-for-python3.diff
new file mode 100644
index 0000000..d230150
--- /dev/null
+++ b/patches/pyuno-copy-for-python3.diff
@@ -0,0 +1,602 @@
+diff -urN pyuno/Library_py3uno.mk py3uno/Library_py3uno.mk
+--- pyuno/Library_py3uno.mk	1970-01-01 01:00:00.000000000 +0100
++++ py3uno/Library_py3uno.mk	2012-09-17 21:35:21.284382442 +0200
+@@ -0,0 +1,66 @@
++# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
++# Version: MPL 1.1 / GPLv3+ / LGPLv3+
++#
++# The contents of this file are subject to the Mozilla Public License Version
++# 1.1 (the "License"); you may not use this file except in compliance with
++# the License or as specified alternatively below. You may obtain a copy of
++# the License at http://www.mozilla.org/MPL/
++#
++# Software distributed under the License is distributed on an "AS IS" basis,
++# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++# for the specific language governing rights and limitations under the
++# License.
++#
++# Major Contributor(s):
++# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
++#
++# All Rights Reserved.
++#
++# For minor contributions see the git repository.
++#
++# Alternatively, the contents of this file may be used under the terms of
++# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
++# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
++# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
++# instead of those above.
++
++$(eval $(call gb_Library_Library,py3uno))
++
++$(eval $(call gb_Library_set_include,py3uno,\
++    -I$(SRCDIR)/py3uno/source/loader \
++    -I$(SRCDIR)/py3uno/inc \
++    $$(INCLUDE) \
++))
++
++$(eval $(call gb_Library_add_defs,py3uno,\
++	-DLO_DLLIMPLEMENTATION_PYUNO \
++))
++
++$(eval $(call gb_Library_use_api,py3uno,\
++    udkapi \
++))
++
++$(eval $(call gb_Library_use_libraries,py3uno,\
++    cppu \
++    cppuhelper \
++    sal \
++    salhelper \
++))
++
++$(eval $(call gb_Library_use_externals,py3uno,\
++    python \
++))
++
++$(eval $(call gb_Library_add_exception_objects,py3uno,\
++    py3uno/source/module/pyuno_runtime \
++    py3uno/source/module/pyuno \
++    py3uno/source/module/pyuno_callable \
++    py3uno/source/module/pyuno_module \
++    py3uno/source/module/pyuno_type \
++    py3uno/source/module/pyuno_util \
++    py3uno/source/module/pyuno_except \
++    py3uno/source/module/pyuno_adapter \
++    py3uno/source/module/pyuno_gc \
++))
++
++# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Library_py3uno_wrapper.mk py3uno/Library_py3uno_wrapper.mk
+--- pyuno/Library_py3uno_wrapper.mk	1970-01-01 01:00:00.000000000 +0100
++++ py3uno/Library_py3uno_wrapper.mk	2012-09-17 21:45:33.783419647 +0200
+@@ -0,0 +1,65 @@
++# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
++# Version: MPL 1.1 / GPLv3+ / LGPLv3+
++#
++# The contents of this file are subject to the Mozilla Public License Version
++# 1.1 (the "License"); you may not use this file except in compliance with
++# the License or as specified alternatively below. You may obtain a copy of
++# the License at http://www.mozilla.org/MPL/
++#
++# Software distributed under the License is distributed on an "AS IS" basis,
++# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++# for the specific language governing rights and limitations under the
++# License.
++#
++# Major Contributor(s):
++# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
++#
++# All Rights Reserved.
++#
++# For minor contributions see the git repository.
++#
++# Alternatively, the contents of this file may be used under the terms of
++# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
++# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
++# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
++# instead of those above.
++
++$(eval $(call gb_Library_Library,py3uno_wrapper))
++
++$(eval $(call gb_Library_set_include,py3uno_wrapper,\
++    -I$(SRCDIR)/py3uno/source/module \
++    -I$(SRCDIR)/py3uno/inc \
++    $$(INCLUDE) \
++))
++
++# not using here external
++# because we do not want to link here
++# against python!
++# we need only -Idirective
++ifeq ($(SYSTEM_PYTHON),YES)
++$(eval $(call gb_Library_set_include,py3uno_wrapper,\
++    $(PYTHON_CFLAGS) \
++    $$(INCLUDE) \
++))
++else
++$(eval $(call gb_Library_set_include,py3uno_wrapper,\
++    -I$(OUTDIR)/inc/python \
++    $$(INCLUDE) \
++))
++endif
++
++ifneq ($(GUI)$(COM),WNTMSC)
++ifeq ($(filter DRAGONFLY FREEBSD NETBSD OPENBSD MACOSX,$(OS)),)
++
++$(eval $(call gb_Library_use_libraries,py3uno_wrapper,\
++	dl \
++))
++
++endif
++endif
++
++$(eval $(call gb_Library_add_cobjects,py3uno_wrapper,\
++    py3uno/source/module/pyuno_dlopenwrapper \
++))
++
++# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Library_python3loader.mk py3uno/Library_python3loader.mk
+--- pyuno/Library_python3loader.mk	1970-01-01 01:00:00.000000000 +0100
++++ py3uno/Library_python3loader.mk	2012-09-17 21:36:02.252585588 +0200
+@@ -0,0 +1,56 @@
++# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
++# Version: MPL 1.1 / GPLv3+ / LGPLv3+
++#
++# The contents of this file are subject to the Mozilla Public License Version
++# 1.1 (the "License"); you may not use this file except in compliance with
++# the License or as specified alternatively below. You may obtain a copy of
++# the License at http://www.mozilla.org/MPL/
++#
++# Software distributed under the License is distributed on an "AS IS" basis,
++# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++# for the specific language governing rights and limitations under the
++# License.
++#
++# Major Contributor(s):
++# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
++#
++# All Rights Reserved.
++#
++# For minor contributions see the git repository.
++#
++# Alternatively, the contents of this file may be used under the terms of
++# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
++# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
++# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
++# instead of those above.
++
++$(eval $(call gb_Library_Library,python3loader))
++
++$(eval $(call gb_Library_set_componentfile,python3loader,py3uno/source/loader/pythonloader))
++
++$(eval $(call gb_Library_set_include,python3loader,\
++    -I$(SRCDIR)/py3uno/source/loader \
++    -I$(SRCDIR)/py3uno/inc \
++    $$(INCLUDE) \
++))
++
++$(eval $(call gb_Library_use_api,python3loader,\
++    udkapi \
++))
++
++$(eval $(call gb_Library_use_libraries,python3loader,\
++    cppu \
++    cppuhelper \
++    py3uno \
++    sal \
++))
++
++$(eval $(call gb_Library_use_externals,python3loader,\
++    python \
++))
++
++$(eval $(call gb_Library_add_exception_objects,python3loader,\
++    py3uno/source/loader/pyuno_loader \
++))
++
++# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Library_pythonloader.mk py3uno/Library_pythonloader.mk
+--- pyuno/Library_pythonloader.mk	2012-06-18 20:36:22.723886656 +0200
++++ py3uno/Library_pythonloader.mk	1970-01-01 01:00:00.000000000 +0100
+@@ -1,56 +0,0 @@
+-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+-#
+-# The contents of this file are subject to the Mozilla Public License Version
+-# 1.1 (the "License"); you may not use this file except in compliance with
+-# the License or as specified alternatively below. You may obtain a copy of
+-# the License at http://www.mozilla.org/MPL/
+-#
+-# Software distributed under the License is distributed on an "AS IS" basis,
+-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+-# for the specific language governing rights and limitations under the
+-# License.
+-#
+-# Major Contributor(s):
+-# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
+-#
+-# All Rights Reserved.
+-#
+-# For minor contributions see the git repository.
+-#
+-# Alternatively, the contents of this file may be used under the terms of
+-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+-# instead of those above.
+-
+-$(eval $(call gb_Library_Library,pythonloader))
+-
+-$(eval $(call gb_Library_set_componentfile,pythonloader,pyuno/source/loader/pythonloader))
+-
+-$(eval $(call gb_Library_set_include,pythonloader,\
+-    -I$(SRCDIR)/pyuno/source/loader \
+-    -I$(SRCDIR)/pyuno/inc \
+-    $$(INCLUDE) \
+-))
+-
+-$(eval $(call gb_Library_use_api,pythonloader,\
+-    udkapi \
+-))
+-
+-$(eval $(call gb_Library_use_libraries,pythonloader,\
+-    cppu \
+-    cppuhelper \
+-    pyuno \
+-    sal \
+-))
+-
+-$(eval $(call gb_Library_use_externals,pythonloader,\
+-    python \
+-))
+-
+-$(eval $(call gb_Library_add_exception_objects,pythonloader,\
+-    pyuno/source/loader/pyuno_loader \
+-))
+-
+-# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Library_pyuno.mk py3uno/Library_pyuno.mk
+--- pyuno/Library_pyuno.mk	2012-06-18 20:36:23.391889962 +0200
++++ py3uno/Library_pyuno.mk	1970-01-01 01:00:00.000000000 +0100
+@@ -1,66 +0,0 @@
+-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+-#
+-# The contents of this file are subject to the Mozilla Public License Version
+-# 1.1 (the "License"); you may not use this file except in compliance with
+-# the License or as specified alternatively below. You may obtain a copy of
+-# the License at http://www.mozilla.org/MPL/
+-#
+-# Software distributed under the License is distributed on an "AS IS" basis,
+-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+-# for the specific language governing rights and limitations under the
+-# License.
+-#
+-# Major Contributor(s):
+-# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
+-#
+-# All Rights Reserved.
+-#
+-# For minor contributions see the git repository.
+-#
+-# Alternatively, the contents of this file may be used under the terms of
+-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+-# instead of those above.
+-
+-$(eval $(call gb_Library_Library,pyuno))
+-
+-$(eval $(call gb_Library_set_include,pyuno,\
+-    -I$(SRCDIR)/pyuno/source/loader \
+-    -I$(SRCDIR)/pyuno/inc \
+-    $$(INCLUDE) \
+-))
+-
+-$(eval $(call gb_Library_add_defs,pyuno,\
+-	-DLO_DLLIMPLEMENTATION_PYUNO \
+-))
+-
+-$(eval $(call gb_Library_use_api,pyuno,\
+-    udkapi \
+-))
+-
+-$(eval $(call gb_Library_use_libraries,pyuno,\
+-    cppu \
+-    cppuhelper \
+-    sal \
+-    salhelper \
+-))
+-
+-$(eval $(call gb_Library_use_externals,pyuno,\
+-    python \
+-))
+-
+-$(eval $(call gb_Library_add_exception_objects,pyuno,\
+-    pyuno/source/module/pyuno_runtime \
+-    pyuno/source/module/pyuno \
+-    pyuno/source/module/pyuno_callable \
+-    pyuno/source/module/pyuno_module \
+-    pyuno/source/module/pyuno_type \
+-    pyuno/source/module/pyuno_util \
+-    pyuno/source/module/pyuno_except \
+-    pyuno/source/module/pyuno_adapter \
+-    pyuno/source/module/pyuno_gc \
+-))
+-
+-# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Library_pyuno_wrapper.mk py3uno/Library_pyuno_wrapper.mk
+--- pyuno/Library_pyuno_wrapper.mk	2012-07-20 11:13:03.401545847 +0200
++++ py3uno/Library_pyuno_wrapper.mk	1970-01-01 01:00:00.000000000 +0100
+@@ -1,65 +0,0 @@
+-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+-#
+-# The contents of this file are subject to the Mozilla Public License Version
+-# 1.1 (the "License"); you may not use this file except in compliance with
+-# the License or as specified alternatively below. You may obtain a copy of
+-# the License at http://www.mozilla.org/MPL/
+-#
+-# Software distributed under the License is distributed on an "AS IS" basis,
+-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+-# for the specific language governing rights and limitations under the
+-# License.
+-#
+-# Major Contributor(s):
+-# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
+-#
+-# All Rights Reserved.
+-#
+-# For minor contributions see the git repository.
+-#
+-# Alternatively, the contents of this file may be used under the terms of
+-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+-# instead of those above.
+-
+-$(eval $(call gb_Library_Library,pyuno_wrapper))
+-
+-$(eval $(call gb_Library_set_include,pyuno_wrapper,\
+-    -I$(SRCDIR)/pyuno/source/module \
+-    -I$(SRCDIR)/pyuno/inc \
+-    $$(INCLUDE) \
+-))
+-
+-# not using here external
+-# because we do not want to link here
+-# against python!
+-# we need only -Idirective
+-ifeq ($(SYSTEM_PYTHON),YES)
+-$(eval $(call gb_Library_set_include,pyuno_wrapper,\
+-    $(PYTHON_CFLAGS) \
+-    $$(INCLUDE) \
+-))
+-else
+-$(eval $(call gb_Library_set_include,pyuno_wrapper,\
+-    -I$(OUTDIR)/inc/python \
+-    $$(INCLUDE) \
+-))
+-endif
+-
+-ifneq ($(GUI)$(COM),WNTMSC)
+-ifeq ($(filter DRAGONFLY FREEBSD NETBSD OPENBSD MACOSX,$(OS)),)
+-
+-$(eval $(call gb_Library_use_libraries,pyuno_wrapper,\
+-	dl \
+-))
+-
+-endif
+-endif
+-
+-$(eval $(call gb_Library_add_cobjects,pyuno_wrapper,\
+-    pyuno/source/module/pyuno_dlopenwrapper \
+-))
+-
+-# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Module_py3uno.mk py3uno/Module_py3uno.mk
+--- pyuno/Module_py3uno.mk	1970-01-01 01:00:00.000000000 +0100
++++ py3uno/Module_py3uno.mk	2012-09-17 21:37:10.060921827 +0200
+@@ -0,0 +1,98 @@
++# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
++# Version: MPL 1.1 / GPLv3+ / LGPLv3+
++#
++# The contents of this file are subject to the Mozilla Public License Version
++# 1.1 (the "License"); you may not use this file except in compliance with
++# the License or as specified alternatively below. You may obtain a copy of
++# the License at http://www.mozilla.org/MPL/
++#
++# Software distributed under the License is distributed on an "AS IS" basis,
++# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
++# for the specific language governing rights and limitations under the
++# License.
++#
++# Major Contributor(s):
++# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
++#
++# All Rights Reserved.
++#
++# For minor contributions see the git repository.
++#
++# Alternatively, the contents of this file may be used under the terms of
++# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
++# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
++# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
++# instead of those above.
++
++$(eval $(call gb_Module_Module,py3uno))
++
++ifneq ($(DISABLE_PYTHON),TRUE)
++
++$(eval $(call gb_Module_add_targets,py3uno,\
++    Library_py3uno \
++    Library_python3loader \
++    Package_pyunorc \
++    Package_python_scripts \
++))
++
++ifneq ($(OS),WNT)
++$(eval $(call gb_Module_add_targets,py3uno,\
++    Library_py3uno_wrapper \
++))
++endif
++
++#
++# Windows: only --enable-python=internal possible
++# mingw: both cases possible: internal && system
++# that why it makes sense to handle the next 3 targets
++# with SYSTEM_PYTHON=YES and SYSTEM_PYTHON=NO
++
++# zipcore: pyuno/python.exe on Windows
++# zipcore: pyversion.hxx on Windows
++ifeq ($(OS),WNT)
++$(eval $(call gb_Module_add_targets,pyuno,\
++    CustomTarget_pyversion \
++    Executable_python_wrapper \
++))
++endif
++
++ifneq ($(SYSTEM_PYTHON),YES)
++
++# zipcore: python.sh on Unix
++ifeq ($(GUI),UNX)
++$(eval $(call gb_Module_add_targets,pyuno,\
++    CustomTarget_python_shell \
++    Package_python_shell \
++))
++ifneq ($(OS),MACOSX)
++$(eval $(call gb_Module_add_targets,pyuno,\
++    CustomTarget_python_bin \
++    Package_python_bin \
++))
++endif
++endif
++
++# python-zipcore-$(PYVESION) not on MACOSX
++# (OOoPython.framework.zip is already delivered for MACOSX in python module)
++ifneq ($(OS),MACOSX)
++$(eval $(call gb_Module_add_targets,pyuno,\
++    CustomTarget_zipcore \
++    Package_zipcore \
++))
++endif
++
++else # SYSTEM_PYTHON
++
++# previous two targets has to be executed also with system-python on mingw
++ifeq ($(OS)$(COM),WNTGCC)
++$(eval $(call gb_Module_add_targets,pyuno,\
++    CustomTarget_zipcore \
++    Package_zipcore \
++))
++endif
++
++endif # SYSTEM_PYTHON
++
++endif # DISABLE_PYTHON
++
++# vim:set shiftwidth=4 softtabstop=4 expandtab:
+diff -urN pyuno/Module_pyuno.mk py3uno/Module_pyuno.mk
+--- pyuno/Module_pyuno.mk	2012-07-20 11:13:03.401545847 +0200
++++ py3uno/Module_pyuno.mk	1970-01-01 01:00:00.000000000 +0100
+@@ -1,98 +0,0 @@
+-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+-#
+-# The contents of this file are subject to the Mozilla Public License Version
+-# 1.1 (the "License"); you may not use this file except in compliance with
+-# the License or as specified alternatively below. You may obtain a copy of
+-# the License at http://www.mozilla.org/MPL/
+-#
+-# Software distributed under the License is distributed on an "AS IS" basis,
+-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+-# for the specific language governing rights and limitations under the
+-# License.
+-#
+-# Major Contributor(s):
+-# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
+-#
+-# All Rights Reserved.
+-#
+-# For minor contributions see the git repository.
+-#
+-# Alternatively, the contents of this file may be used under the terms of
+-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+-# instead of those above.
+-
+-$(eval $(call gb_Module_Module,pyuno))
+-
+-ifneq ($(DISABLE_PYTHON),TRUE)
+-
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    Library_pyuno \
+-    Library_pythonloader \
+-    Package_pyunorc \
+-    Package_python_scripts \
+-))
+-
+-ifneq ($(OS),WNT)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    Library_pyuno_wrapper \
+-))
+-endif
+-
+-#
+-# Windows: only --enable-python=internal possible
+-# mingw: both cases possible: internal && system
+-# that why it makes sense to handle the next 3 targets
+-# with SYSTEM_PYTHON=YES and SYSTEM_PYTHON=NO
+-
+-# zipcore: pyuno/python.exe on Windows
+-# zipcore: pyversion.hxx on Windows
+-ifeq ($(OS),WNT)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    CustomTarget_pyversion \
+-    Executable_python_wrapper \
+-))
+-endif
+-
+-ifneq ($(SYSTEM_PYTHON),YES)
+-
+-# zipcore: python.sh on Unix
+-ifeq ($(GUI),UNX)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    CustomTarget_python_shell \
+-    Package_python_shell \
+-))
+-ifneq ($(OS),MACOSX)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    CustomTarget_python_bin \
+-    Package_python_bin \
+-))
+-endif
+-endif
+-
+-# python-zipcore-$(PYVESION) not on MACOSX
+-# (OOoPython.framework.zip is already delivered for MACOSX in python module)
+-ifneq ($(OS),MACOSX)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    CustomTarget_zipcore \
+-    Package_zipcore \
+-))
+-endif
+-
+-else # SYSTEM_PYTHON
+-
+-# previous two targets has to be executed also with system-python on mingw
+-ifeq ($(OS)$(COM),WNTGCC)
+-$(eval $(call gb_Module_add_targets,pyuno,\
+-    CustomTarget_zipcore \
+-    Package_zipcore \
+-))
+-endif
+-
+-endif # SYSTEM_PYTHON
+-
+-endif # DISABLE_PYTHON
+-
+-# vim:set shiftwidth=4 softtabstop=4 expandtab:

-- 
LibreOffice packaging repository


Reply to: