kdelibs/kdecore/tests
Ivailo Monev 478ca250a2 generic: replace installation paths with KDE4_ prefixed
this is TODO from issue #9. CPack and CTest configs will not be
supported. most of the changes done to other repisitories is automated
via:

find -type f -exec sed -i -e 's|${INSTALL_DIR}|${KDE4_INSTALL_DIR}|g' \
    -e 's|${EXEC_INSTALL_PREFIX}|${KDE4_EXEC_INSTALL_PREFIX}|g' \
    -e 's|${SHARE_INSTALL_PREFIX}|${KDE4_SHARE_INSTALL_PREFIX}|g' \
    -e 's|${BIN_INSTALL_DIR}|${KDE4_BIN_INSTALL_DIR}|g' \
    -e 's|${SBIN_INSTALL_DIR}|${KDE4_SBIN_INSTALL_DIR}|g' \
    -e 's|${LIB_INSTALL_DIR}|${KDE4_LIB_INSTALL_DIR}|g' \
    -e 's|${LIBEXEC_INSTALL_DIR}|${KDE4_LIBEXEC_INSTALL_DIR}|g' \
    -e 's|${INCLUDE_INSTALL_DIR}|${KDE4_INCLUDE_INSTALL_DIR}|g' \
    -e 's|${PLUGIN_INSTALL_DIR}|${KDE4_PLUGIN_INSTALL_DIR}|g' \
    -e 's|${IMPORTS_INSTALL_DIR}|${KDE4_IMPORTS_INSTALL_DIR}|g' \
    -e 's|${CONFIG_INSTALL_DIR}|${KDE4_CONFIG_INSTALL_DIR}|g' \
    -e 's|${DATA_INSTALL_DIR}|${KDE4_DATA_INSTALL_DIR}|g' \
    -e 's|${ICON_INSTALL_DIR}|${KDE4_ICON_INSTALL_DIR}|g' \
    -e 's|${KCFG_INSTALL_DIR}|${KDE4_KCFG_INSTALL_DIR}|g' \
    -e 's|${LOCALE_INSTALL_DIR}|${KDE4_LOCALE_INSTALL_DIR}|g' \
    -e 's|${MIME_INSTALL_DIR}|${KDE4_MIME_INSTALL_DIR}|g' \
    -e 's|${SERVICES_INSTALL_DIR}|${KDE4_SERVICES_INSTALL_DIR}|g' \
    -e 's|${SERVICETYPES_INSTALL_DIR}|${KDE4_SERVICETYPES_INSTALL_DIR}|g' \
    -e 's|${SOUND_INSTALL_DIR}|${KDE4_SOUND_INSTALL_DIR}|g' \
    -e 's|${TEMPLATES_INSTALL_DIR}|${KDE4_TEMPLATES_INSTALL_DIR}|g' \
    -e 's|${WALLPAPER_INSTALL_DIR}|${KDE4_WALLPAPER_INSTALL_DIR}|g' \
    -e 's|${AUTOSTART_INSTALL_DIR}|${KDE4_AUTOSTART_INSTALL_DIR}|g' \
    -e 's|${XDG_APPS_INSTALL_DIR}|${KDE4_XDG_APPS_INSTALL_DIR}|g' \
    -e 's|${XDG_DIRECTORY_INSTALL_DIR}|${KDE4_XDG_DIRECTORY_INSTALL_DIR}|g' \
    -e 's|${XDG_MIME_INSTALL_DIR}|${KDE4_XDG_MIME_INSTALL_DIR}|g' \
    -e 's|${SYSCONF_INSTALL_DIR}|${KDE4_SYSCONF_INSTALL_DIR}|g' \
    -e 's|${MAN_INSTALL_DIR}|${KDE4_MAN_INSTALL_DIR}|g' \
    -e 's|${INFO_INSTALL_DIR}|${KDE4_INFO_INSTALL_DIR}|g' \
    -e 's|${DBUS_INTERFACES_INSTALL_DIR}|${KDE4_DBUS_INTERFACES_INSTALL_DIR}|g' \
    -e 's|${DBUS_SERVICES_INSTALL_DIR}|${KDE4_DBUS_SERVICES_INSTALL_DIR}|g' \
    -e 's|${DBUS_SYSTEM_SERVICES_INSTALL_DIR}|${KDE4_DBUS_SYSTEM_SERVICES_INSTALL_DIR}|g' \
    -e 's|${KAUTH_HELPER_PLUGIN_DIR}|${KDE4_KAUTH_HELPER_PLUGIN_DIR}|g' \
    -e 's|${KAUTH_BACKEND_PLUGIN_DIR}|${KDE4_KAUTH_BACKEND_PLUGIN_DIR}|g' {} +

note that if you execute this command you may corrupt the git repository
files so move the .git directory out of the way. you can also verify
that there are no other reference to the compatibility installation
paths via:

git grep \
    -e INSTALL_DIR \
    -e EXEC_INSTALL_PREFIX \
    -e SHARE_INSTALL_PREFIX \
    -e BIN_INSTALL_DIR \
    -e SBIN_INSTALL_DIR \
    -e LIB_INSTALL_DIR \
    -e LIBEXEC_INSTALL_DIR \
    -e INCLUDE_INSTALL_DIR \
    -e PLUGIN_INSTALL_DIR \
    -e IMPORTS_INSTALL_DIR \
    -e CONFIG_INSTALL_DIR \
    -e DATA_INSTALL_DIR \
    -e ICON_INSTALL_DIR \
    -e KCFG_INSTALL_DIR \
    -e LOCALE_INSTALL_DIR \
    -e MIME_INSTALL_DIR \
    -e SERVICES_INSTALL_DIR \
    -e SERVICETYPES_INSTALL_DIR \
    -e SOUND_INSTALL_DIR \
    -e TEMPLATES_INSTALL_DIR \
    -e WALLPAPER_INSTALL_DIR \
    -e AUTOSTART_INSTALL_DIR \
    -e XDG_APPS_INSTALL_DIR \
    -e XDG_DIRECTORY_INSTALL_DIR \
    -e XDG_MIME_INSTALL_DIR \
    -e SYSCONF_INSTALL_DIR \
    -e MAN_INSTALL_DIR \
    -e INFO_INSTALL_DIR \
    -e DBUS_INTERFACES_INSTALL_DIR \
    -e DBUS_SERVICES_INSTALL_DIR \
    -e DBUS_SYSTEM_SERVICES_INSTALL_DIR \
    -e KAUTH_HELPER_PLUGIN_DIR \
    -e KAUTH_BACKEND_PLUGIN_DIR | grep -v KDE4_

this change should make default installation Filesystem Hierarchy
Standard (FHS) compliant and packaging easier since library suffix (e.g.
64 for x86_64 hosts) will not have to be specified explicitly, it may
solve possible conflicts with installation path variables from other
projects which use custom installation paths aswell

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2020-02-08 20:46:43 +00:00
..
Berlin initial import 2014-11-13 01:04:59 +02:00
Berlin.zdump initial import 2014-11-13 01:04:59 +02:00
Cairo initial import 2014-11-13 01:04:59 +02:00
CMakeLists.txt kdecore: remove redundant util check and kmemtest 2020-02-03 18:54:37 +00:00
cplusplustest.cpp fix some kdeui and kdecore tests warnings 2014-12-23 22:30:14 +00:00
dbuscalltest.cpp initial import 2014-11-13 01:04:59 +02:00
global_header_test.tar.bz2 initial import 2014-11-13 01:04:59 +02:00
globalcleanuptest.cpp initial import 2014-11-13 01:04:59 +02:00
Johannesburg initial import 2014-11-13 01:04:59 +02:00
Johannesburg.zdump initial import 2014-11-13 01:04:59 +02:00
kaboutdatatest.cpp generic: remove unused KBugReport 2016-04-06 06:52:45 +00:00
kaboutdatatest.h initial import 2014-11-13 01:04:59 +02:00
karchivetest.cpp generic: build system cleanups 2015-10-31 12:01:45 +02:00
karchivetest.h initial import 2014-11-13 01:04:59 +02:00
kautosavefiletest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kautosavefiletest.h generic: normalize include guards 2015-07-11 18:20:46 +03:00
kautostarttest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kautostarttest.h initial import 2014-11-13 01:04:59 +02:00
kcalendartest.cpp generic: remove code for Qt4 versions older than 4.8 2015-07-15 20:41:31 +00:00
kcalendartest.h generic: namespaced Qt4/Katie build fixes 2017-08-04 09:24:39 +00:00
kcharsetstest.cpp kdecore: rework KCharsetsTest test 2020-02-02 01:48:40 +00:00
kcmdlineargstest.cpp fix a compiler warning in kcmdlineargs test 2015-01-17 19:19:19 +00:00
kcompositejobtest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kcompositejobtest.h initial import 2014-11-13 01:04:59 +02:00
kconfigafterkglobaltest1.cpp initial import 2014-11-13 01:04:59 +02:00
kconfigafterkglobaltest2.cpp initial import 2014-11-13 01:04:59 +02:00
kconfigtest.cpp kdecore: use QDir::exists() to check for directory existence from tests 2020-02-02 22:38:07 +00:00
kconfigtest.h initial import 2014-11-13 01:04:59 +02:00
kdatetimeformattertest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kdatetimeformattertest.h generic: namespaced Qt4/Katie build fixes 2017-08-04 09:24:39 +00:00
kdatetimetest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kdatetimetest.h initial import 2014-11-13 01:04:59 +02:00
kdebug_qcoreapptest.cpp initial import 2014-11-13 01:04:59 +02:00
kdebug_unittest.cpp kdecore: fix process output capturing in KDebugTest::testNoMainComponentData() 2020-02-02 01:25:17 +00:00
kdebug_unittest.h initial import 2014-11-13 01:04:59 +02:00
kdebugtest.cpp generic: misc cleanups 2015-09-04 01:57:47 +00:00
kdesktopfiletest.cpp kdecore: adjust kdebug and kdesktopfile tests 2015-10-01 06:07:16 +03:00
kdesktopfiletest.h initial import 2014-11-13 01:04:59 +02:00
kdirwatchtest.cpp generic: reimplement KDirWatch 2019-05-29 12:18:09 +00:00
kencodingdetectortest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kencodingdetectortest.h initial import 2014-11-13 01:04:59 +02:00
kentrymaptest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kentrymaptest.h initial import 2014-11-13 01:04:59 +02:00
kfiltertest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kfiltertest.h initial import 2014-11-13 01:04:59 +02:00
kglobalstatictest.cpp initial import 2014-11-13 01:04:59 +02:00
kglobaltest.cpp kdecore: fix hang in kglobaltest 2016-09-20 16:03:18 +00:00
kjobtest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kjobtest.h initial import 2014-11-13 01:04:59 +02:00
klibloadertest4_module.cpp initial import 2014-11-13 01:04:59 +02:00
klibloadertest4_module.h initial import 2014-11-13 01:04:59 +02:00
klimitediodevicetest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
klimitediodevicetest.h initial import 2014-11-13 01:04:59 +02:00
klocaletest.cpp kdecore: adjust expected data of KLocaleTest::languages() test case 2020-02-02 02:26:52 +00:00
klocaletest.h initial import 2014-11-13 01:04:59 +02:00
klocaletimeformattest.cpp kdecore: make use of thread_local 2016-10-24 06:24:11 +00:00
klocaletimeformattest.h generic: make changes required for building against katie 2015-08-11 05:56:07 +03:00
klocalizedstringtest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
klocalizedstringtest.h initial import 2014-11-13 01:04:59 +02:00
klockfile_testlock.cpp initial import 2014-11-13 01:04:59 +02:00
klockfiletest.cpp generic: make use of QHostInfo::localHostName() 2019-06-21 19:56:58 +00:00
klockfiletest.h initial import 2014-11-13 01:04:59 +02:00
kmacroexpandertest.cpp more windows code remove 2014-11-19 15:19:19 +00:00
kmimeglobsfileparsertest.cpp generic: make changes required for building against katie 2015-08-11 05:56:07 +03:00
kmimetype_nomimetypes.cpp initial import 2014-11-13 01:04:59 +02:00
kmimetypetest.cpp generic: get rid of kdefakes 2017-08-02 04:38:42 +00:00
kmimetypetest.h initial import 2014-11-13 01:04:59 +02:00
kmountpointtest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kmountpointtest.h initial import 2014-11-13 01:04:59 +02:00
kprocesstest.cpp initial import 2014-11-13 01:04:59 +02:00
krandomsequencetest.cpp initial import 2014-11-13 01:04:59 +02:00
ksavefiletest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
ksavefiletest.h generic: normalize include guards 2015-07-11 18:20:46 +03:00
kservicetest.cpp kdecore: remove kde4- prefix from services lookup in KServiceTest 2020-02-02 18:31:03 +00:00
kservicetest.h generic: make changes required for building against katie 2015-08-11 05:56:07 +03:00
ksharedptrtest.cpp kdecore: remove deprecated kshared typedef 2015-10-30 15:04:08 +02:00
ksharedptrtest.h initial import 2014-11-13 01:04:59 +02:00
kshelltest.cpp kdecore: make sure KShell::splitArgs does not split quoted arguments 2015-02-27 21:36:19 +00:00
ksortablelisttest.cpp initial import 2014-11-13 01:04:59 +02:00
kstandarddirstest.cpp generic: replace installation paths with KDE4_ prefixed 2020-02-08 20:46:43 +00:00
kstandarddirstest.h generic: normalize include guards 2015-07-11 18:20:46 +03:00
kstringhandlertest.cpp generic: get rid of KLocalSocket and KTcpSocket 2019-05-04 19:49:49 +00:00
kstringhandlertest.h initial import 2014-11-13 01:04:59 +02:00
ksycocadicttest.cpp initial import 2014-11-13 01:04:59 +02:00
ksycocathreadtest.cpp generic: make changes required for building against katie 2015-08-11 05:56:07 +03:00
ktartest.cpp initial import 2014-11-13 01:04:59 +02:00
ktempdirtest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
ktempdirtest.h initial import 2014-11-13 01:04:59 +02:00
ktemporaryfiletest.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
ktemporaryfiletest.h generic: normalize include guards 2015-07-11 18:20:46 +03:00
ktimezonestest.cpp generic: make changes required for building against katie 2015-08-11 05:56:07 +03:00
ktimezonestest.h initial import 2014-11-13 01:04:59 +02:00
ktimezonestest_p.h initial import 2014-11-13 01:04:59 +02:00
kurlmimetest.cpp kdecore: adjust tests to recent changes 2016-03-31 18:42:12 +00:00
kurlmimetest.h initial import 2014-11-13 01:04:59 +02:00
kurltest.cpp generic: make use of QHostInfo::localHostName() 2019-06-21 19:56:58 +00:00
kurltest.h generic: normalize include guards 2015-07-11 18:20:46 +03:00
kziptest.cpp initial import 2014-11-13 01:04:59 +02:00
London initial import 2014-11-13 01:04:59 +02:00
Los_Angeles initial import 2014-11-13 01:04:59 +02:00
Los_Angeles.zdump initial import 2014-11-13 01:04:59 +02:00
Paris initial import 2014-11-13 01:04:59 +02:00
qcoreapptest.cpp initial import 2014-11-13 01:04:59 +02:00
startserviceby.cpp initial import 2014-11-13 01:04:59 +02:00
tar_directory_forgotten.tar.bz2 initial import 2014-11-13 01:04:59 +02:00
tar_directory_twice.tar.bz2 initial import 2014-11-13 01:04:59 +02:00
tar_prefix_test.tar.bz2 initial import 2014-11-13 01:04:59 +02:00
tar_rootdir.tar.bz2 initial import 2014-11-13 01:04:59 +02:00