r11493 - in packages/trunk/plee-the-bear/debian: . patches

Julien Jorge j-jorge-guest at alioth.debian.org
Thu Nov 25 20:54:03 UTC 2010


Author: j-jorge-guest
Date: 2010-11-25 20:54:02 +0000 (Thu, 25 Nov 2010)
New Revision: 11493

Removed:
   packages/trunk/plee-the-bear/debian/patches/editors-menu-section.diff
   packages/trunk/plee-the-bear/debian/patches/rpath-editors.diff
   packages/trunk/plee-the-bear/debian/patches/rpath-game.diff
Modified:
   packages/trunk/plee-the-bear/debian/changelog
   packages/trunk/plee-the-bear/debian/patches/series
   packages/trunk/plee-the-bear/debian/rules
Log:
- Set version to 0.5.1.
- Remove patches integrated upstream.
- Remove -j 4 flag passed to make in the rules file.

Modified: packages/trunk/plee-the-bear/debian/changelog
===================================================================
--- packages/trunk/plee-the-bear/debian/changelog	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/changelog	2010-11-25 20:54:02 UTC (rev 11493)
@@ -1,4 +1,4 @@
-plee-the-bear (0.5.0-1) experimental; urgency=low
+plee-the-bear (0.5.1-1) experimental; urgency=low
 
   [ Julien Jorge ]
   * New upstream release (Closes: #565062, #546514)

Deleted: packages/trunk/plee-the-bear/debian/patches/editors-menu-section.diff
===================================================================
--- packages/trunk/plee-the-bear/debian/patches/editors-menu-section.diff	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/patches/editors-menu-section.diff	2010-11-25 20:54:02 UTC (rev 11493)
@@ -1,30 +0,0 @@
-Index: plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-animation-editor
-===================================================================
---- plee-the-bear-0.4.1.orig/bear-factory/desktop/menu/bf-animation-editor	2009-10-16 22:06:09.000000000 +0200
-+++ plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-animation-editor	2009-10-16 22:06:23.000000000 +0200
-@@ -1,4 +1,4 @@
--?package(bear-factory):needs="X11" section="Apps/Editors" \
-+?package(bear-factory):needs="X11" section="Games/Tools" \
-   title="Bear Factory — Animation Editor" \
-   command="bf-animation-editor" \
-   hints="Animation editor for the Bear Engine." \
-Index: plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-level-editor
-===================================================================
---- plee-the-bear-0.4.1.orig/bear-factory/desktop/menu/bf-level-editor	2009-10-16 22:06:09.000000000 +0200
-+++ plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-level-editor	2009-10-16 22:06:23.000000000 +0200
-@@ -1,4 +1,4 @@
--?package(bear-factory):needs="X11" section="Apps/Editors" \
-+?package(bear-factory):needs="X11" section="Games/Tools" \
-   title="Bear Factory — Level Editor" \
-   command="bf-level-editor" \
-   hints="Level editor for the Bear Engine." \
-Index: plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-model-editor
-===================================================================
---- plee-the-bear-0.4.1.orig/bear-factory/desktop/menu/bf-model-editor	2009-10-16 22:06:09.000000000 +0200
-+++ plee-the-bear-0.4.1/bear-factory/desktop/menu/bf-model-editor	2009-10-16 22:06:23.000000000 +0200
-@@ -1,4 +1,4 @@
--?package(bear-factory):needs="X11" section="Apps/Editors" \
-+?package(bear-factory):needs="X11" section="Games/Tools" \
-   title="Bear Factory — Model Editor" \
-   command="bf-model-editor" \
-   hints="Model editor for the Bear Engine." \

Deleted: packages/trunk/plee-the-bear/debian/patches/rpath-editors.diff
===================================================================
--- packages/trunk/plee-the-bear/debian/patches/rpath-editors.diff	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/patches/rpath-editors.diff	2010-11-25 20:54:02 UTC (rev 11493)
@@ -1,68 +0,0 @@
-Index: plee-the-bear-0.5.0/bear-factory/animation-editor/src/bf/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-factory/animation-editor/src/bf/CMakeLists.txt	2010-11-17 21:55:20.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-factory/animation-editor/src/bf/CMakeLists.txt	2010-11-17 21:56:57.893047796 +0100
-@@ -19,6 +19,12 @@
- 
- add_executable( ${BF_AE_TARGET_NAME} ${BF_AE_SOURCE_FILES} )
- 
-+set_target_properties(
-+  ${BF_AE_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_FACTORY_INSTALL_LIBRARY_DIR}"
-+  )
-+
- target_link_libraries(
-   ${BF_AE_TARGET_NAME}
-   bear-editor
-Index: plee-the-bear-0.5.0/bear-factory/level-editor/src/bf/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-factory/level-editor/src/bf/CMakeLists.txt	2010-11-17 21:55:20.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-factory/level-editor/src/bf/CMakeLists.txt	2010-11-17 21:57:25.583305756 +0100
-@@ -76,6 +76,12 @@
- 
- add_executable( ${BF_LE_TARGET_NAME} ${BF_LE_SOURCE_FILES} )
- 
-+set_target_properties(
-+  ${BF_LE_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_FACTORY_INSTALL_LIBRARY_DIR}"
-+  )
-+
- target_link_libraries(
-   ${BF_LE_TARGET_NAME}
-   bear-editor
-Index: plee-the-bear-0.5.0/bear-factory/model-editor/src/bf/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-factory/model-editor/src/bf/CMakeLists.txt	2010-11-17 21:55:20.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-factory/model-editor/src/bf/CMakeLists.txt	2010-11-17 21:57:58.983302835 +0100
-@@ -66,6 +66,12 @@
- 
- add_executable( ${BF_ME_TARGET_NAME} ${BF_ME_SOURCE_FILES} )
- 
-+set_target_properties(
-+  ${BF_ME_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_FACTORY_INSTALL_LIBRARY_DIR}"
-+  )
-+
- target_link_libraries(
-   ${BF_ME_TARGET_NAME}
-   bear-editor
-Index: plee-the-bear-0.5.0/bear-factory/bear-editor/src/bf/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-factory/bear-editor/src/bf/CMakeLists.txt	2010-11-17 21:55:20.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-factory/bear-editor/src/bf/CMakeLists.txt	2010-11-17 21:58:23.144561867 +0100
-@@ -89,6 +89,12 @@
-   add_library( ${BF_E_TARGET_NAME} SHARED ${BF_E_SOURCE_FILES} )
- endif( WIN32 )
- 
-+set_target_properties(
-+  ${BF_E_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_FACTORY_INSTALL_LIBRARY_DIR}"
-+  )
-+
- target_link_libraries(
-   ${BF_E_TARGET_NAME}
-   ${wxWidgets_LIBRARIES}

Deleted: packages/trunk/plee-the-bear/debian/patches/rpath-game.diff
===================================================================
--- packages/trunk/plee-the-bear/debian/patches/rpath-game.diff	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/patches/rpath-game.diff	2010-11-25 20:54:02 UTC (rev 11493)
@@ -1,224 +0,0 @@
-Index: plee-the-bear-0.5.0/bear-engine/core/src/audio/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/audio/CMakeLists.txt	2009-09-22 19:43:12.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/audio/CMakeLists.txt	2010-11-17 22:03:18.653302913 +0100
-@@ -18,6 +18,12 @@
-   ${AUDIO_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${AUDIO_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${AUDIO_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/communication/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/communication/CMakeLists.txt	2009-09-22 19:43:12.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/communication/CMakeLists.txt	2010-11-17 22:07:06.427572409 +0100
-@@ -13,6 +13,12 @@
-   ${COMMUNICATION_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${COMMUNICATION_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${COMMUNICATION_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/debug/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/debug/CMakeLists.txt	2009-09-22 19:43:12.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/debug/CMakeLists.txt	2010-11-17 22:05:59.806799351 +0100
-@@ -11,6 +11,12 @@
-   ${DEBUG_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${DEBUG_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${DEBUG_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/engine/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/engine/CMakeLists.txt	2010-11-17 19:54:54.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-engine/core/src/engine/CMakeLists.txt	2010-11-17 22:05:42.348183864 +0100
-@@ -80,6 +80,12 @@
-   ${ENGINE_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${ENGINE_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${ENGINE_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR} )
-Index: plee-the-bear-0.5.0/bear-engine/core/src/gui/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/gui/CMakeLists.txt	2010-07-25 16:38:17.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/gui/CMakeLists.txt	2010-11-17 22:05:52.033048738 +0100
-@@ -20,6 +20,12 @@
-   ${GUI_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${GUI_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${GUI_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/input/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/input/CMakeLists.txt	2010-11-17 19:54:54.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-engine/core/src/input/CMakeLists.txt	2010-11-17 22:06:05.873306059 +0100
-@@ -23,6 +23,12 @@
-   ${INPUT_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${INPUT_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${INPUT_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/time/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/time/CMakeLists.txt	2009-09-22 19:43:12.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/time/CMakeLists.txt	2010-11-17 22:04:58.053304488 +0100
-@@ -11,6 +11,12 @@
-   ${TIME_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${TIME_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${TIME_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/universe/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/universe/CMakeLists.txt	2010-11-05 23:28:40.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-engine/core/src/universe/CMakeLists.txt	2010-11-17 22:06:13.263271645 +0100
-@@ -50,6 +50,12 @@
-   ${UNIVERSE_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${UNIVERSE_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${UNIVERSE_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/visual/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/visual/CMakeLists.txt	2010-05-21 17:05:33.000000000 +0200
-+++ plee-the-bear-0.5.0/bear-engine/core/src/visual/CMakeLists.txt	2010-11-17 22:05:05.883300194 +0100
-@@ -34,6 +34,12 @@
-   ${VISUAL_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${VISUAL_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${VISUAL_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/running_bear/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/running_bear/CMakeLists.txt	2010-11-17 19:54:54.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-engine/running_bear/CMakeLists.txt	2010-11-17 22:04:40.983922071 +0100
-@@ -12,6 +12,13 @@
-   )
- 
- add_executable( ${RUNNING_BEAR_TARGET_NAME} ${RUNNING_BEAR_SOURCE_FILES} )
-+
-+set_target_properties(
-+  ${RUNNING_BEAR_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${RUNNING_BEAR_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_EXECUTABLE_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/lib/src/generic_items/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/lib/src/generic_items/CMakeLists.txt	2010-11-05 23:28:40.000000000 +0100
-+++ plee-the-bear-0.5.0/bear-engine/lib/src/generic_items/CMakeLists.txt	2010-11-17 22:04:20.158441988 +0100
-@@ -93,6 +93,13 @@
-   )
- 
- add_library( ${GENERIC_ITEM_TARGET_NAME} SHARED ${GENERIC_ITEM_SOURCE_FILES} )
-+
-+set_target_properties(
-+  ${GENERIC_ITEM_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${GENERIC_ITEM_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/plee-the-bear/src/ptb/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/plee-the-bear/src/ptb/CMakeLists.txt	2010-11-17 19:54:54.000000000 +0100
-+++ plee-the-bear-0.5.0/plee-the-bear/src/ptb/CMakeLists.txt	2010-11-17 22:03:52.813304905 +0100
-@@ -191,6 +191,13 @@
- )
- 
- add_library( ${LIBPTB_TARGET_NAME} MODULE ${LIBPTB_SOURCE_FILES} )
-+
-+set_target_properties(
-+  ${LIBPTB_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${PTB_INSTALL_CUSTOM_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${LIBPTB_TARGET_NAME}
-   DESTINATION ${PTB_INSTALL_CUSTOM_LIBRARY_DIR}
-Index: plee-the-bear-0.5.0/bear-engine/core/src/expr/CMakeLists.txt
-===================================================================
---- plee-the-bear-0.5.0.orig/bear-engine/core/src/expr/CMakeLists.txt	2010-11-17 22:02:01.905550521 +0100
-+++ plee-the-bear-0.5.0/bear-engine/core/src/expr/CMakeLists.txt	2010-11-17 22:05:27.823304396 +0100
-@@ -19,6 +19,12 @@
-   ${EXPR_SOURCE_FILES}
-   )
- 
-+set_target_properties(
-+  ${EXPR_TARGET_NAME}
-+  PROPERTIES
-+  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
-+  )
-+
- install(
-   TARGETS ${EXPR_TARGET_NAME}
-   DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR} )

Modified: packages/trunk/plee-the-bear/debian/patches/series
===================================================================
--- packages/trunk/plee-the-bear/debian/patches/series	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/patches/series	2010-11-25 20:54:02 UTC (rev 11493)
@@ -1,5 +1,2 @@
 do-not-install-authors-files.diff
-rpath-editors.diff
 editors-default-dir.diff
-rpath-game.diff
-editors-menu-section.diff

Modified: packages/trunk/plee-the-bear/debian/rules
===================================================================
--- packages/trunk/plee-the-bear/debian/rules	2010-11-25 20:49:20 UTC (rev 11492)
+++ packages/trunk/plee-the-bear/debian/rules	2010-11-25 20:54:02 UTC (rev 11493)
@@ -48,7 +48,7 @@
 build-stamp: configure-stamp 
 	dh_testdir
 
-	cd $(BUILD_TREE); $(MAKE) -j 4
+	cd $(BUILD_TREE); $(MAKE)
 
 	touch $@
 




More information about the Pkg-games-commits mailing list