aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/create_installer.py
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2018-05-23 07:15:53 +0000
committerAntti Kokko <antti.kokko@qt.io>2018-05-23 07:17:59 +0000
commited017afe477b55bd01bd16185ac83d3558ac1c5b (patch)
tree79607a546372ddfcee6cf78b22e6efbb6fb13a2a /packaging-tools/create_installer.py
parent3055eab4c65a45d292c76335a965777a019942bf (diff)
Revert "Add support for unified packaging configuration"
Causes multitude of problems, reverting and fixing. This reverts commit 3055eab4c65a45d292c76335a965777a019942bf. Change-Id: I5639fbf6f02d90312cf068720b9b9d29126b4b87 Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'packaging-tools/create_installer.py')
-rw-r--r--packaging-tools/create_installer.py50
1 files changed, 26 insertions, 24 deletions
diff --git a/packaging-tools/create_installer.py b/packaging-tools/create_installer.py
index c0b50c4c1..e8ac6a4b0 100644
--- a/packaging-tools/create_installer.py
+++ b/packaging-tools/create_installer.py
@@ -1,27 +1,40 @@
#!/usr/bin/env python
#############################################################################
##
-## Copyright (C) 2018 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
+## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+## Contact: http://www.qt-project.org/legal
##
## This file is part of the release tools of the Qt Toolkit.
##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
+## $QT_BEGIN_LICENSE:LGPL$
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
+## a written agreement between you and Digia. For licensing terms and
+## conditions see http://qt.digia.com/licensing. For further information
+## use the contact form at http://qt.digia.com/contact-us.
+##
+## GNU Lesser General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU Lesser
+## General Public License version 2.1 as published by the Free Software
+## Foundation and appearing in the file LICENSE.LGPL included in the
+## packaging of this file. Please review the following information to
+## ensure the GNU Lesser General Public License version 2.1 requirements
+## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+##
+## In addition, as a special exception, Digia gives you certain additional
+## rights. These rights are described in the Digia Qt LGPL Exception
+## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
##
## GNU General Public License Usage
## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
+## General Public License version 3.0 as published by the Free Software
+## Foundation and appearing in the file LICENSE.GPL included in the
+## packaging of this file. Please review the following information to
+## ensure the GNU General Public License version 3.0 requirements will be
+## met: http://www.gnu.org/copyleft/gpl.html.
+##
##
## $QT_END_LICENSE$
##
@@ -472,12 +485,7 @@ def set_config_directory():
"""Copy config directory into correct place."""
print '----------------------------------------'
print ' Set config directory'
- include_filter = bldinstallercommon.config_section_map(CONFIG_PARSER_TARGET,'ConfigDirLgpl')['include_filter']
- if include_filter and include_filter in LICENSE_TYPE:
- config_dir_template = bldinstallercommon.config_section_map(CONFIG_PARSER_TARGET,'ConfigDirLgpl')['template_name']
- else:
- config_dir_template = bldinstallercommon.config_section_map(CONFIG_PARSER_TARGET,'ConfigDir')['template_name']
-
+ config_dir_template = bldinstallercommon.config_section_map(CONFIG_PARSER_TARGET,'ConfigDir')['template_name']
config_dir_template = os.path.normpath(CONFIGURATIONS_DIR + os.sep + config_dir_template)
if not os.path.exists(CONFIG_DIR_DST):
@@ -635,13 +643,7 @@ def parse_component_data(configuration_file, configurations_base_path):
# validate component
sdk_component.validate()
if sdk_component.is_valid():
- # if include filter defined for component it is included only if LICENSE_TYPE matches to include_filter
- # same configuration file can contain components that are included only to either edition
- if sdk_component.include_filter and sdk_component.include_filter in LICENSE_TYPE:
- SDK_COMPONENT_LIST.append(sdk_component)
- # components without include_filter definition are added by default
- elif not sdk_component.include_filter:
- SDK_COMPONENT_LIST.append(sdk_component)
+ SDK_COMPONENT_LIST.append(sdk_component)
else:
if CREATE_OFFLINE_INSTALLER and sdk_component.optional_for_offline_installer():
print('*** Warning! The [{0}] was not valid but it was marked optional for offline installers so skipping it.'.format(sdk_component.package_name))