Hello community,
here is the log from the commit of package extra-cmake-modules for
openSUSE:Factory checked in at 2020-11-19 11:49:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/extra-cmake-modules (Old)
and /work/SRC/openSUSE:Factory/.extra-cmake-modules.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "extra-cmake-modules"
Thu Nov 19 11:49:30 2020 rev:83 rq:848522 version:5.76.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/extra-cmake-modules/extra-cmake-modules.changes
2020-10-12 13:55:05.682111057 +0200
+++
/work/SRC/openSUSE:Factory/.extra-cmake-modules.new.5913/extra-cmake-modules.changes
2020-11-23 10:26:06.793066542 +0100
@@ -1,0 +2,17 @@
+Sat Nov 7 21:34:09 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.76.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/kde-frameworks-5.76.0
+- Changes since 5.75.0:
+ * Make androiddeployqt find libraries and QML plugins without installation
+ * find-modules/FindReuseTool.cmake - Fix finding reuse tool
+ * improve default formatting options
+ * Include option to use LLVM for users with Qt < 5.14
+ * add missing minimum version for RENAME parameter
+ * Enable documentation generation for FindGradle
+ * Document when FindGradle has been added
+ * Add FindGradle from KNotification
+
+-------------------------------------------------------------------
Old:
----
extra-cmake-modules-5.75.0.tar.xz
extra-cmake-modules-5.75.0.tar.xz.sig
New:
----
extra-cmake-modules-5.76.0.tar.xz
extra-cmake-modules-5.76.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ extra-cmake-modules.spec ++++++
--- /var/tmp/diff_new_pack.ue70jD/_old 2020-11-23 10:26:07.329067147 +0100
+++ /var/tmp/diff_new_pack.ue70jD/_new 2020-11-23 10:26:07.333067152 +0100
@@ -16,7 +16,7 @@
#
-%define _tar_path 5.75
+%define _tar_path 5.76
# Full KF5 version (e.g. 5.33.0)
%{!?_kf5_version: %global _kf5_version %{version}}
# Last major and minor KF5 version (e.g. 5.33)
@@ -29,7 +29,7 @@
# Only needed for the package signature condition
%bcond_without lang
Name: extra-cmake-modules
-Version: 5.75.0
+Version: 5.76.0
Release: 0
Summary: CMake modules
License: BSD-3-Clause
++++++ extra-cmake-modules-5.75.0.tar.xz -> extra-cmake-modules-5.76.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/extra-cmake-modules-5.75.0/CMakeLists.txt
new/extra-cmake-modules-5.76.0/CMakeLists.txt
--- old/extra-cmake-modules-5.75.0/CMakeLists.txt 2020-10-01
14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/CMakeLists.txt 2020-11-01
11:30:10.000000000 +0100
@@ -11,7 +11,7 @@
# Preliminary setup
#
-set(VERSION "5.75.0") # handled by release scripts
+set(VERSION "5.76.0") # handled by release scripts
if (POLICY CMP0048)
cmake_policy(SET CMP0048 NEW)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/docs/find-module/FindGradle.rst
new/extra-cmake-modules-5.76.0/docs/find-module/FindGradle.rst
--- old/extra-cmake-modules-5.75.0/docs/find-module/FindGradle.rst
1970-01-01 01:00:00.000000000 +0100
+++ new/extra-cmake-modules-5.76.0/docs/find-module/FindGradle.rst
2020-11-01 11:30:10.000000000 +0100
@@ -0,0 +1 @@
+.. ecm-module:: ../../find-modules/FindGradle.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/find-modules/FindGradle.cmake
new/extra-cmake-modules-5.76.0/find-modules/FindGradle.cmake
--- old/extra-cmake-modules-5.75.0/find-modules/FindGradle.cmake
1970-01-01 01:00:00.000000000 +0100
+++ new/extra-cmake-modules-5.76.0/find-modules/FindGradle.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -0,0 +1,90 @@
+#.rst:
+# FindGradle
+# ----------
+#
+# Provides the ability to build Android AAR libraries using Gradle.
+#
+# This relies on the Qt provided Gradle, so a Qt for Android installation
+# is required.
+#
+# gradle_add_aar(<target>
+# BUIDLFILE build.gradle
+# NAME <aar-name>)
+#
+# This builds an Android AAR library using the given ``build.gradle`` file.
+#
+# gradle_install_aar(<target>
+# DESTINATION <dest>)
+#
+# Installs a Android AAR library that has been created with ``gradle_add_aar``.
+#
+# Since 5.76.0.
+
+#=============================================================================
+# SPDX-FileCopyrightText: 2019 Volker Krause <[email protected]>
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#=============================================================================
+
+include(CMakeParseArguments)
+include(FindPackageHandleStandardArgs)
+
+find_package(Qt5Core REQUIRED)
+
+if (NOT WIN32)
+ set(Gradle_EXECUTABLE ${CMAKE_BINARY_DIR}/gradle/gradlew)
+else()
+ set(Gradle_EXECUTABLE ${CMAKE_BINARY_DIR}/gradle/gradlew.bat)
+endif()
+
+get_target_property(_qt_core_location Qt5::Core LOCATION)
+get_filename_component(_qt_install_root ${_qt_core_location} DIRECTORY)
+get_filename_component(_qt_install_root ${_qt_install_root}/../ ABSOLUTE)
+
+set(_gradle_template_dir ${CMAKE_CURRENT_LIST_DIR})
+
+add_custom_command(OUTPUT ${Gradle_EXECUTABLE}
+ COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/gradle
+ COMMAND ${CMAKE_COMMAND} -E copy_directory
${_qt_install_root}/src/3rdparty/gradle ${CMAKE_BINARY_DIR}/gradle
+)
+add_custom_target(gradle DEPENDS ${Gradle_EXECUTABLE})
+
+find_package_handle_standard_args(Gradle DEFAULT_MSG Gradle_EXECUTABLE)
+
+function(gradle_add_aar target)
+ cmake_parse_arguments(ARG "" "BUILDFILE;NAME" "" ${ARGN})
+
+ set(_build_root ${CMAKE_CURRENT_BINARY_DIR}/gradle_build/${ARG_NAME})
+ configure_file(${_gradle_template_dir}/local.properties.cmake
${_build_root}/local.properties)
+ configure_file(${_gradle_template_dir}/settings.gradle.cmake
${_build_root}/settings.gradle)
+ configure_file(${ARG_BUILDFILE} ${_build_root}/build.gradle)
+
+ if (CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]")
+ set(_aar_suffix "-debug")
+ set(_aar_gradleCmd "assembleDebug")
+ else()
+ set(_aar_suffix "-release")
+ set(_aar_gradleCmd "assembleRelease")
+ endif()
+
+ file(GLOB_RECURSE _src_files CONFIGURE_DEPENDS "*")
+ add_custom_command(
+ OUTPUT ${_build_root}/build/outputs/aar/${ARG_NAME}${_aar_suffix}.aar
+ COMMAND ${Gradle_EXECUTABLE} ${_aar_gradleCmd}
+ # this allows make create-apk to work without installations for apps
with AAR libs in the same repository
+ COMMAND ${CMAKE_COMMAND} -E copy
${_build_root}/build/outputs/aar/${ARG_NAME}${_aar_suffix}.aar
${CMAKE_BINARY_DIR}/jar/${ARG_NAME}.aar
+ DEPENDS ${Gradle_EXECUTABLE} ${_src_files}
+ DEPENDS gradle
+ WORKING_DIRECTORY ${_build_root}
+ )
+ add_custom_target(${target} ALL DEPENDS
${_build_root}/build/outputs/aar/${ARG_NAME}${_aar_suffix}.aar)
+ set_target_properties(${target} PROPERTIES LOCATION
${_build_root}/build/outputs/aar/${ARG_NAME}${_aar_suffix}.aar)
+ set_target_properties(${target} PROPERTIES OUTPUT_NAME ${ARG_NAME})
+endfunction()
+
+function(gradle_install_aar target)
+ cmake_parse_arguments(ARG "" "DESTINATION" "" ${ARGN})
+ get_target_property(_loc ${target} LOCATION)
+ get_target_property(_name ${target} OUTPUT_NAME)
+ install(FILES ${_loc} DESTINATION ${ARG_DESTINATION} RENAME ${_name}.aar)
+endfunction()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/find-modules/FindReuseTool.cmake
new/extra-cmake-modules-5.76.0/find-modules/FindReuseTool.cmake
--- old/extra-cmake-modules-5.75.0/find-modules/FindReuseTool.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/find-modules/FindReuseTool.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -3,8 +3,8 @@
# Finds the REUSE Tool by FSFE: https://github.com/fsfe/reuse-tool
#
-# REUSE_TOOL_FOUND - True if REUSE tool is found.
-# REUSE_TOOL_EXECUTABLE - Path to executable
+# REUSETOOL_FOUND - True if REUSE tool is found.
+# REUSETOOL_EXECUTABLE - Path to executable
#=============================================================================
# SPDX-FileCopyrightText: 2020 Andreas Cord-Landwehr <[email protected]>
@@ -19,5 +19,5 @@
FOUND_VAR
REUSETOOL_FOUND
REQUIRED_VARS
- REUSE_TOOL_EXECUTABLE
+ REUSETOOL_EXECUTABLE
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/find-modules/local.properties.cmake
new/extra-cmake-modules-5.76.0/find-modules/local.properties.cmake
--- old/extra-cmake-modules-5.75.0/find-modules/local.properties.cmake
1970-01-01 01:00:00.000000000 +0100
+++ new/extra-cmake-modules-5.76.0/find-modules/local.properties.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -0,0 +1 @@
+sdk.dir=@ANDROID_SDK_ROOT@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/find-modules/settings.gradle.cmake
new/extra-cmake-modules-5.76.0/find-modules/settings.gradle.cmake
--- old/extra-cmake-modules-5.75.0/find-modules/settings.gradle.cmake
1970-01-01 01:00:00.000000000 +0100
+++ new/extra-cmake-modules-5.76.0/find-modules/settings.gradle.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -0,0 +1 @@
+rootProject.name = '@ARG_NAME@'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/kde-modules/KDECMakeSettings.cmake
new/extra-cmake-modules-5.76.0/kde-modules/KDECMakeSettings.cmake
--- old/extra-cmake-modules-5.75.0/kde-modules/KDECMakeSettings.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/kde-modules/KDECMakeSettings.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -254,6 +254,13 @@
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
endif()
+ # For Android we need to put shared libraries into "lib" for
androiddeployqt to work without prior installation.
+ # That fact that this conflicts with the above isn't really an issue, as we
can't run things while cross-compiling
+ # for Android anyway.
+ if (ANDROID)
+ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
+ endif()
+
if (APPLE)
# Disable detection of X11 and related package on OS X because when
using
# brew or macports, X11 can be installed and thus is detected.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/kde-modules/clang-format.cmake
new/extra-cmake-modules-5.76.0/kde-modules/clang-format.cmake
--- old/extra-cmake-modules-5.75.0/kde-modules/clang-format.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/kde-modules/clang-format.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -32,9 +32,6 @@
# horizontally aligns arguments after an open bracket.
AlignAfterOpenBracket: Align
-# align trailing comments
-AlignTrailingComments: true
-
# don't move all parameters to new line
AllowAllParametersOfDeclarationOnNextLine: false
@@ -67,3 +64,6 @@
# macros for which the opening brace stays attached.
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER,
QBENCHMARK, QBENCHMARK_ONCE ]
+
+# keep lambda formatting multi-line if not empty
+AllowShortLambdasOnASingleLine: Empty
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/modules/ECMGenerateDBusServiceFile.cmake
new/extra-cmake-modules-5.76.0/modules/ECMGenerateDBusServiceFile.cmake
--- old/extra-cmake-modules-5.75.0/modules/ECMGenerateDBusServiceFile.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/modules/ECMGenerateDBusServiceFile.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -12,7 +12,7 @@
# EXECUTABLE <executable>
# [SYSTEMD_SERVICE <systemd service>]
# DESTINATION <install_path>
-# [RENAME <dbus service filename>]
+# [RENAME <dbus service filename>] # Since 5.75
# )
#
# A D-Bus service file ``<service name>.service`` will be generated and
installed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/toolchain/ECMAndroidDeployQt.cmake
new/extra-cmake-modules-5.76.0/toolchain/ECMAndroidDeployQt.cmake
--- old/extra-cmake-modules-5.75.0/toolchain/ECMAndroidDeployQt.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/toolchain/ECMAndroidDeployQt.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -9,6 +9,10 @@
set(EXECUTABLE_DESTINATION_PATH
"${EXPORT_DIR}/libs/${CMAKE_ANDROID_ARCH_ABI}/lib${QTANDROID_EXPORTED_TARGET}_${CMAKE_ANDROID_ARCH_ABI}.so")
endif()
set(QML_IMPORT_PATHS "")
+ # add build directory to the search path as well, so this works without
installation
+ if (EXISTS ${CMAKE_BINARY_DIR}/lib)
+ set(QML_IMPORT_PATHS ${CMAKE_BINARY_DIR}/lib)
+ endif()
foreach(prefix ${ECM_ADDITIONAL_FIND_ROOT_PATH})
# qmlimportscanner chokes on symlinks, so we need to resolve those
first
get_filename_component(qml_path "${prefix}/lib/qml" REALPATH)
@@ -24,13 +28,9 @@
set(DEFINE_QML_IMPORT_PATHS "\"qml-import-paths\":
\"${QML_IMPORT_PATHS}\",")
endif()
- set(EXTRA_PREFIX_DIRS "")
+ set(EXTRA_PREFIX_DIRS "\"${CMAKE_BINARY_DIR}\"")
foreach(prefix ${ECM_ADDITIONAL_FIND_ROOT_PATH})
- if (EXTRA_PREFIX_DIRS)
- set(EXTRA_PREFIX_DIRS "${EXTRA_PREFIX_DIRS}, \"${prefix}\"")
- else()
- set(EXTRA_PREFIX_DIRS "\"${prefix}\"")
- endif()
+ set(EXTRA_PREFIX_DIRS "${EXTRA_PREFIX_DIRS}, \"${prefix}\"")
endforeach()
if (Qt5Core_VERSION VERSION_LESS 5.14.0)
@@ -77,7 +77,7 @@
COMMAND cmake -E copy_directory
"$<TARGET_PROPERTY:create-apk-${QTANDROID_EXPORTED_TARGET},ANDROID_APK_DIR>"
"${EXPORT_DIR}"
COMMAND cmake -E copy "$<TARGET_FILE:${QTANDROID_EXPORTED_TARGET}>"
"${EXECUTABLE_DESTINATION_PATH}"
COMMAND LANG=C cmake
"-DTARGET=$<TARGET_FILE:${QTANDROID_EXPORTED_TARGET}>" -P
${_CMAKE_ANDROID_DIR}/hasMainSymbol.cmake
- COMMAND LANG=C cmake
-DINPUT_FILE="${QTANDROID_EXPORTED_TARGET}-deployment.json.in2"
-DOUTPUT_FILE="${QTANDROID_EXPORTED_TARGET}-deployment.json"
"-DTARGET=$<TARGET_FILE:${QTANDROID_EXPORTED_TARGET}>"
"-DOUTPUT_DIR=$<TARGET_FILE_DIR:${QTANDROID_EXPORTED_TARGET}>"
"-DEXPORT_DIR=${CMAKE_INSTALL_PREFIX}"
"-DECM_ADDITIONAL_FIND_ROOT_PATH=\"${ECM_ADDITIONAL_FIND_ROOT_PATH}\""
"-DANDROID_EXTRA_LIBS=\"${ANDROID_EXTRA_LIBS}\"" -P
${_CMAKE_ANDROID_DIR}/specifydependencies.cmake
+ COMMAND LANG=C cmake
-DINPUT_FILE="${QTANDROID_EXPORTED_TARGET}-deployment.json.in2"
-DOUTPUT_FILE="${QTANDROID_EXPORTED_TARGET}-deployment.json"
"-DTARGET=$<TARGET_FILE:${QTANDROID_EXPORTED_TARGET}>"
"-DOUTPUT_DIR=$<TARGET_FILE_DIR:${QTANDROID_EXPORTED_TARGET}>"
"-DEXPORT_DIR=${CMAKE_INSTALL_PREFIX}"
"-DECM_ADDITIONAL_FIND_ROOT_PATH=\"${ECM_ADDITIONAL_FIND_ROOT_PATH}\""
"-DANDROID_EXTRA_LIBS=\"${ANDROID_EXTRA_LIBS}\"" "-DUSE_LLVM=\"${USE_LLVM}\""
-P ${_CMAKE_ANDROID_DIR}/specifydependencies.cmake
COMMAND $<TARGET_FILE_DIR:Qt5::qmake>/androiddeployqt --gradle --input
"${QTANDROID_EXPORTED_TARGET}-deployment.json" --apk
"${ANDROID_APK_OUTPUT_DIR}/${QTANDROID_EXPORTED_TARGET}-${CMAKE_ANDROID_ARCH_ABI}.apk"
--output "${EXPORT_DIR}" --android-platform android-${ANDROID_SDK_COMPILE_API}
--deployment bundled ${arguments}
)
# --android-platform above is only available as a command line option
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/toolchain/deployment-file.json.in
new/extra-cmake-modules-5.76.0/toolchain/deployment-file.json.in
--- old/extra-cmake-modules-5.75.0/toolchain/deployment-file.json.in
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/toolchain/deployment-file.json.in
2020-11-01 11:30:10.000000000 +0100
@@ -17,5 +17,6 @@
"sdkBuildToolsRevision": "@ANDROID_SDK_BUILD_TOOLS_REVISION@",
"android-min-sdk-version": "@ANDROID_API_LEVEL@",
"android-target-sdk-version": "@ANDROID_SDK_COMPILE_API@",
- "extraPrefixDirs": [ @EXTRA_PREFIX_DIRS@ ]
+ "extraPrefixDirs": [ @EXTRA_PREFIX_DIRS@ ],
+ "useLLVM": ##USE_LLVM##
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/extra-cmake-modules-5.75.0/toolchain/specifydependencies.cmake
new/extra-cmake-modules-5.76.0/toolchain/specifydependencies.cmake
--- old/extra-cmake-modules-5.75.0/toolchain/specifydependencies.cmake
2020-10-01 14:34:06.000000000 +0200
+++ new/extra-cmake-modules-5.76.0/toolchain/specifydependencies.cmake
2020-11-01 11:30:10.000000000 +0100
@@ -73,9 +73,18 @@
file(READ "ranlib" ranlib_contents)
string(REGEX MATCH ".+/toolchains/(.+)-([^\\-]+)/prebuilt/.*/bin/(.*)-ranlib"
x ${ranlib_contents})
-string(REPLACE "##ANDROID_TOOL_PREFIX##" "${CMAKE_MATCH_1}" NEWCONTENTS
"${CONTENTS}")
-string(REPLACE "##ANDROID_TOOLCHAIN_VERSION##" "${CMAKE_MATCH_2}" NEWCONTENTS
"${NEWCONTENTS}")
-string(REPLACE "##ANDROID_COMPILER_PREFIX##" "${CMAKE_MATCH_3}" NEWCONTENTS
"${NEWCONTENTS}")
+if (USE_LLVM)
+ string(REPLACE "##ANDROID_TOOL_PREFIX##" "llvm" NEWCONTENTS "${CONTENTS}")
+ string(REPLACE "##ANDROID_COMPILER_PREFIX##" "llvm" NEWCONTENTS
"${NEWCONTENTS}")
+ string(REPLACE "##USE_LLVM##" true NEWCONTENTS "${NEWCONTENTS}")
+else()
+ string(REPLACE "##ANDROID_TOOL_PREFIX##" "${CMAKE_MATCH_1}" NEWCONTENTS
"${CONTENTS}")
+ string(REPLACE "##ANDROID_COMPILER_PREFIX##" "${CMAKE_MATCH_3}" NEWCONTENTS
"${NEWCONTENTS}")
+ string(REPLACE "##USE_LLVM##" false NEWCONTENTS "${NEWCONTENTS}")
+endif()
+
+string(REPLACE "##ANDROID_TOOLCHAIN_VERSION##" "${CMAKE_MATCH_2}" NEWCONTENTS
"${NEWCONTENTS}") # not used when USE_LLVM is set
+
string(REPLACE "##EXTRALIBS##" "${extralibs}" NEWCONTENTS "${NEWCONTENTS}")
string(REPLACE "##EXTRAPLUGINS##" "${extraplugins}" NEWCONTENTS
"${NEWCONTENTS}")
string(REPLACE "##CMAKE_CXX_STANDARD_LIBRARIES##" "${stl_contents}"
NEWCONTENTS "${NEWCONTENTS}")
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]