[apaku at gmx.de: KDE/kdevplatform]

Andreas Pakulat apaku at gmx.de
Sat Jan 19 08:26:47 UTC 2008


Hi,

I was spoiled by my mutt, automatically filling in the @kdevelop.org..
So as the CCMAIL failed, here's the message:

----- Forwarded message from Andreas Pakulat <apaku at gmx.de> -----

Delivery-date: Sat, 19 Jan 2008 09:20:02 +0100
From: Andreas Pakulat <apaku at gmx.de>
To: kde-commits at kde.org
Subject: KDE/kdevplatform
X-Commit-Directories: (0) trunk/KDE/kdevplatform trunk/KDE/kdevplatform/editor
	trunk/KDE/kdevplatform/interfaces
	trunk/KDE/kdevplatform/language
	trunk/KDE/kdevplatform/outputview
	trunk/KDE/kdevplatform/project trunk/KDE/kdevplatform/shell
	trunk/KDE/kdevplatform/sublime trunk/KDE/kdevplatform/util
	trunk/KDE/kdevplatform/vcs
Cc: kdevelop-devel at svn.kde.org
X-BeenThere: kde-commits at kde.org
X-Mailman-Version: 2.1.9
Reply-To: kde-commits at kde.org
List-Id: Notification of KDE commits <kde-commits.kde.org>
List-Unsubscribe: <https://mail.kde.org/mailman/listinfo/kde-commits>,
	<mailto:kde-commits-request at kde.org?subject=unsubscribe>
List-Post: <mailto:kde-commits at kde.org>
List-Help: <mailto:kde-commits-request at kde.org?subject=help>
List-Subscribe: <https://mail.kde.org/mailman/listinfo/kde-commits>,
	<mailto:kde-commits-request at kde.org?subject=subscribe>

SVN commit 763290 by apaku:

Change our SOVERSION to 1 as discussed. Claiming these libs had already 4 BiC
releases is just false.

Sorry for being a bit late, I totally forgot about this on thursday.

Note for anybody with an existing kdevplatform build: After this update you
first need to completely remove any libkdevplatform* in your builddir and
installation dir and then start the build.
AFAIK no reason to completely remove the builddir for kdevplatform or kdevelop,
just the above and then run a simple make in both.

CCMAIL:kdevelop-devel


 M  +3 -0      CMakeLists.txt  
 M  +1 -1      editor/CMakeLists.txt  
 M  +1 -1      interfaces/CMakeLists.txt  
 M  +1 -1      language/CMakeLists.txt  
 M  +1 -1      outputview/CMakeLists.txt  
 M  +1 -1      project/CMakeLists.txt  
 M  +1 -1      shell/CMakeLists.txt  
 M  +1 -1      sublime/CMakeLists.txt  
 M  +1 -1      util/CMakeLists.txt  
 M  +1 -1      vcs/CMakeLists.txt  


--- trunk/KDE/kdevplatform/CMakeLists.txt #763289:763290
@@ -18,6 +18,9 @@
 # create config.h
 configure_file (config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
 
+set(KDEVPLATFORM_LIB_VERSION 1.0.0)
+set(KDEVPLATFORM_LIB_SOVERSION 1)
+
 add_subdirectory(cmake)
 add_subdirectory(sublime)
 add_subdirectory(interfaces)
--- trunk/KDE/kdevplatform/editor/CMakeLists.txt #763289:763290
@@ -15,7 +15,7 @@
 
 kde4_add_library(kdevplatformeditor SHARED ${kdevplatformeditor_LIB_SRCS})
 target_link_libraries(kdevplatformeditor ${KDE4_KPARTS_LIBS} ${KDE4_KTEXTEDITOR_LIBS})
-set_target_properties(kdevplatformeditor PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformeditor PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${KDEVPLATFORM_LIB_SOVERSION})
 install(TARGETS kdevplatformeditor DESTINATION ${LIB_INSTALL_DIR} )
 
 ########### install files ###############
--- trunk/KDE/kdevplatform/interfaces/CMakeLists.txt #763289:763290
@@ -23,7 +23,7 @@
 
 kde4_add_library(kdevplatforminterfaces SHARED ${kdevplatforminterfaces_LIB_SRCS})
 target_link_libraries(kdevplatforminterfaces ${KDE4_KIO_LIBS} ${KDE4_KUTILS_LIBS} ${KDE4_KPARTS_LIBS} ${KDE4_KNOTIFYCONFIG_LIBS} ${KDE4_KTEXTEDITOR_LIBS} ${KDE4_THREADWEAVER_LIBRARIES} ${QT_QTDESIGNER_LIBRARY} )
-set_target_properties(kdevplatforminterfaces PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatforminterfaces PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatforminterfaces DESTINATION ${LIB_INSTALL_DIR} )
 
 install(FILES
--- trunk/KDE/kdevplatform/language/CMakeLists.txt #763289:763290
@@ -47,7 +47,7 @@
 kde4_add_library(kdevplatformlanguage SHARED ${kdevplatformlanguage_LIB_SRCS})
 target_link_libraries(kdevplatformlanguage ${KDE4_KPARTS_LIBS} ${KDE4_KTEXTEDITOR_LIBS} ${KDE4_THREADWEAVER_LIBRARIES}
     kdevplatforminterfaces kdevplatformeditor)
-set_target_properties(kdevplatformlanguage PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformlanguage PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformlanguage DESTINATION ${LIB_INSTALL_DIR} )
 
 ########### install files ###############
--- trunk/KDE/kdevplatform/outputview/CMakeLists.txt #763289:763290
@@ -13,7 +13,7 @@
 )
 kde4_add_library( kdevplatformoutputview SHARED ${outputviewinterfaces_LIB_SRCS} )
 target_link_libraries(kdevplatformoutputview ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} )
-set_target_properties(kdevplatformoutputview PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformoutputview PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformoutputview DESTINATION ${LIB_INSTALL_DIR} )
 
  ########### install files ###############
--- trunk/KDE/kdevplatform/project/CMakeLists.txt #763289:763290
@@ -17,7 +17,7 @@
 
 kde4_add_library(kdevplatformproject SHARED ${kdevplatformproject_LIB_SRCS})
 target_link_libraries(kdevplatformproject ${QT_QTDESIGNER_LIBRARY} kdevplatforminterfaces )
-set_target_properties(kdevplatformproject PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformproject PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformproject DESTINATION ${LIB_INSTALL_DIR} )
 
 ########### install files ###############
--- trunk/KDE/kdevplatform/shell/CMakeLists.txt #763289:763290
@@ -38,7 +38,7 @@
 
 kde4_add_library(kdevplatformshell SHARED ${kdevplatformshell_LIB_SRCS})
 target_link_libraries(kdevplatformshell ${KDE4_KIO_LIBS} ${KDE4_KUTILS_LIBS} ${KDE4_KPARTS_LIBS} ${KDE4_KNOTIFYCONFIG_LIBS} ${KDE4_KTEXTEDITOR_LIBS} ${KDE4_THREADWEAVER_LIBRARIES} ${QT_QTDESIGNER_LIBRARY} kdevplatforminterfaces kdevplatformproject kdevplatformeditor kdevplatformlanguage sublime )
-set_target_properties(kdevplatformshell PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformshell PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformshell DESTINATION ${LIB_INSTALL_DIR} )
 
 install(FILES
--- trunk/KDE/kdevplatform/sublime/CMakeLists.txt #763289:763290
@@ -28,7 +28,7 @@
 
 kde4_add_library(sublime SHARED ${sublime_LIB_SRCS})
 target_link_libraries(sublime ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS})
-set_target_properties(sublime PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(sublime PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS sublime DESTINATION ${LIB_INSTALL_DIR} )
 
 
--- trunk/KDE/kdevplatform/util/CMakeLists.txt #763289:763290
@@ -15,7 +15,7 @@
 kde4_add_ui_files(kdevplatformutil_LIB_SRCS ${kdevplatformutil_LIB_US})
 kde4_add_library(kdevplatformutil SHARED ${kdevplatformutil_LIB_SRCS})
 target_link_libraries(kdevplatformutil ${KDE4_KDEUI_LIBS} kdevplatforminterfaces)
-set_target_properties(kdevplatformutil PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformutil PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformutil DESTINATION ${LIB_INSTALL_DIR} )
 
 ########### install files ###############
--- trunk/KDE/kdevplatform/vcs/CMakeLists.txt #763289:763290
@@ -29,7 +29,7 @@
 kde4_add_ui_files(kdevplatformvcs_LIB_SRCS ${kdevplatformvcs_UIS})
 kde4_add_library(kdevplatformvcs SHARED ${kdevplatformvcs_LIB_SRCS})
 target_link_libraries(kdevplatformvcs ${KDE4_KDEUI_LIBS} kdevplatforminterfaces )
-set_target_properties(kdevplatformvcs PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
+set_target_properties(kdevplatformvcs PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
 install(TARGETS kdevplatformvcs DESTINATION ${LIB_INSTALL_DIR} )
 
 install(FILES


----- End forwarded message -----

-- 
Go to a movie tonight.  Darkness becomes you.




More information about the KDevelop-devel mailing list