Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rpcs3 for openSUSE:Factory checked 
in at 2023-02-19 18:19:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rpcs3 (Old)
 and      /work/SRC/openSUSE:Factory/.rpcs3.new.22824 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rpcs3"

Sun Feb 19 18:19:34 2023 rev:3 rq:1066622 version:0.0.26~git20230210

Changes:
--------
--- /work/SRC/openSUSE:Factory/rpcs3/rpcs3.changes      2023-02-11 
21:57:25.583661011 +0100
+++ /work/SRC/openSUSE:Factory/.rpcs3.new.22824/rpcs3.changes   2023-02-19 
18:19:49.165807942 +0100
@@ -1,0 +2,26 @@
+Fri Feb 10 15:07:22 UTC 2023 - i...@guoyunhe.me
+
+- Update to version 0.0.26~git20230210:
+  * Fix displaying of audio device when it's disconnected
+  * Update hidapi from 0.13.0 to 0.13.1
+  * Update SDL from 2.26.2 to 2.26.3
+  * overlays: review fixes
+  * overlays: Fix linux compilation
+  * overlays: fix home menu date format
+  * overlays: fix home menu entry center alignment
+  * overlays: add message box to home menu
+  * overlays: add pages to home menu
+  * evdev: allow more buttons on sony guitar
+  * evdev: optimize get_next_button_press pad id check
+  * rsx_debugger: replace malloc with buffer cache
+  * cli: Add option to boot a game with a specific pad profile
+  * cli: allow to start games in fullscreen
+  * cellGame: Truncate excess of characters in TITLE_ID
+  * Fix openGl overlay colors
+  * rsx: Don't accept garbage shader input
+  * FAudio cmake fix
+  * Disable 3rdparty FAudio if the SDL version is not available
+  * Update SDL download link
+  * Qt: add copy context menu entry to log viewer
+
+-------------------------------------------------------------------

Old:
----
  rpcs3-0.0.26~git20230205.obscpio

New:
----
  rpcs3-0.0.26~git20230210.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rpcs3.spec ++++++
--- /var/tmp/diff_new_pack.H9cEDG/_old  2023-02-19 18:19:53.741837019 +0100
+++ /var/tmp/diff_new_pack.H9cEDG/_new  2023-02-19 18:19:53.745837043 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           rpcs3
-Version:        0.0.26~git20230205
+Version:        0.0.26~git20230210
 Release:        0
 Summary:        PS3 emulator/debugger
 License:        GPL-2.0-only

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.H9cEDG/_old  2023-02-19 18:19:53.789837324 +0100
+++ /var/tmp/diff_new_pack.H9cEDG/_new  2023-02-19 18:19:53.793837349 +0100
@@ -5,6 +5,6 @@
   </service>
 <service name="tar_scm">
                 <param name="url">https://github.com/RPCS3/rpcs3.git</param>
-              <param 
name="changesrevision">8652b7d358fe975242dd2c51c91fd2968e6bcb82</param></service></servicedata>
+              <param 
name="changesrevision">465ca97531d015501e19aa9fbfae46300c78bf75</param></service></servicedata>
 (No newline at EOF)
 

++++++ intel-ittapi.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/intel-ittapi/CMakeLists.txt 
new/intel-ittapi/CMakeLists.txt
--- old/intel-ittapi/CMakeLists.txt     2023-01-27 18:48:20.000000000 +0100
+++ new/intel-ittapi/CMakeLists.txt     2023-02-08 20:28:17.000000000 +0100
@@ -15,6 +15,7 @@
 
 OPTION(FORCE_32 "Force a 32bit compile on 64bit" OFF)
 OPTION(ITT_API_IPT_SUPPORT "ptmarks support")
+OPTION(ITT_API_FORTRAN_SUPPORT "fortran support")
 
 IF(FORCE_32 AND UNIX)
     SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32")
@@ -90,22 +91,31 @@
     set(ARCH_PATH "x86")
 endif()
 
-set(ITT_FORTRAN 
include/fortran/${PLATFORM_PATH}/${ARCH_PATH}/ittfortran.${PLATFORM_EXT})
-set(ADVISOR_ANNOTATION 
include/fortran/${PLATFORM_PATH}/${ARCH_PATH}/advisor_annotate.${PLATFORM_EXT})
-set(JITPROFILING_SRC "src/ittnotify/jitprofiling.c")
+if(ITT_API_FORTRAN_SUPPORT)
+    set(ITT_FORTRAN 
include/fortran/${PLATFORM_PATH}/${ARCH_PATH}/ittfortran.${PLATFORM_EXT})
+    set(ADVISOR_ANNOTATION 
include/fortran/${PLATFORM_PATH}/${ARCH_PATH}/advisor_annotate.${PLATFORM_EXT})
+
+    add_library(ittnotify STATIC ${ITT_SRCS} ${ITT_PUBLIC_HDRS} ${ITT_PT} 
${ITT_FORTRAN})
+    add_library(advisor STATIC ${ADVISOR_ANNOTATION})
+else()
+    add_library(ittnotify STATIC ${ITT_SRCS} ${ITT_PUBLIC_HDRS} ${ITT_PT})
+endif()
 
-add_library(ittnotify STATIC ${ITT_SRCS} ${ITT_PUBLIC_HDRS} ${ITT_PT} 
${ITT_FORTRAN})
-add_library(advisor STATIC ${ADVISOR_ANNOTATION})
+set(JITPROFILING_SRC "src/ittnotify/jitprofiling.c")
 add_library(jitprofiling STATIC ${JITPROFILING_SRC})
 
 if(WIN32)
     SET_TARGET_PROPERTIES(ittnotify PROPERTIES OUTPUT_NAME libittnotify)
-    SET_TARGET_PROPERTIES(advisor PROPERTIES OUTPUT_NAME libadvisor)
     SET_TARGET_PROPERTIES(jitprofiling PROPERTIES OUTPUT_NAME libjitprofiling)
+    if(ITT_API_FORTRAN_SUPPORT)
+        SET_TARGET_PROPERTIES(advisor PROPERTIES OUTPUT_NAME libadvisor)
+    endif()
 else()
     SET_TARGET_PROPERTIES(ittnotify PROPERTIES OUTPUT_NAME ittnotify)
-    SET_TARGET_PROPERTIES(advisor PROPERTIES OUTPUT_NAME advisor)
     SET_TARGET_PROPERTIES(jitprofiling PROPERTIES OUTPUT_NAME jitprofiling)
+    if(ITT_API_FORTRAN_SUPPORT)
+        SET_TARGET_PROPERTIES(advisor PROPERTIES OUTPUT_NAME advisor)
+    endif()
 endif()
 
 if (NOT WIN32)
@@ -114,7 +124,9 @@
 endif()
 
 SET_TARGET_PROPERTIES(ittnotify PROPERTIES LINKER_LANGUAGE C)
-SET_TARGET_PROPERTIES(advisor PROPERTIES LINKER_LANGUAGE C)
+if(ITT_API_FORTRAN_SUPPORT)
+    SET_TARGET_PROPERTIES(advisor PROPERTIES LINKER_LANGUAGE C)
+endif()
 
 target_include_directories(ittnotify
     PUBLIC include src/ittnotify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/intel-ittapi/buildall.py new/intel-ittapi/buildall.py
--- old/intel-ittapi/buildall.py        2023-01-27 18:48:20.000000000 +0100
+++ new/intel-ittapi/buildall.py        2023-02-08 20:28:17.000000000 +0100
@@ -108,6 +108,7 @@
     parser.add_argument("-v", "--verbose", help="enable verbose output from 
build process", action="store_true")
     parser.add_argument("-pt", "--ptmark", help="enable anomaly detection 
support", action="store_true")
     parser.add_argument("--force_bits", choices=["32", "64"], help="specify 
bit version for the target")
+    parser.add_argument("-ft", "--fortran", help="enable fortran support", 
action="store_true")
     if sys.platform == 'win32' and vs_versions:
         parser.add_argument("--vs", help="specify visual studio version 
{default}", choices=vs_versions, default=vs_versions[0])
     args = parser.parse_args()
@@ -158,7 +159,8 @@
             ("-DFORCE_32=ON" if bits == '32' else ""),
             ("-DCMAKE_BUILD_TYPE=Debug" if args.debug else ""),
             ('-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON' if args.verbose else ''),
-            ("-DITT_API_IPT_SUPPORT=1" if args.ptmark else "")
+            ("-DITT_API_IPT_SUPPORT=1" if args.ptmark else ""),
+            ("-DITT_API_FORTRAN_SUPPORT=1" if args.fortran else "")
         ])))
 
         if sys.platform == 'win32':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/intel-ittapi/include/ittnotify.h 
new/intel-ittapi/include/ittnotify.h
--- old/intel-ittapi/include/ittnotify.h        2023-01-27 18:48:20.000000000 
+0100
+++ new/intel-ittapi/include/ittnotify.h        2023-02-08 20:28:17.000000000 
+0100
@@ -613,12 +613,12 @@
 
 /**
  * @enum __itt_collection_state
- * @brief Enumerator for collection state. All non-work states have negative 
values.
+ * @brief Enumerator for collection state.
  */
 typedef enum {
     __itt_collection_uninitialized = 0, /* uninitialized */
     __itt_collection_init_fail = 1, /* failed to init */
-    __itt_collection_collector_absent = 2, /* non work state collector exists 
*/
+    __itt_collection_collector_absent = 2, /* non work state collector is 
absent */
     __itt_collection_collector_exists = 3, /* work state collector exists */
     __itt_collection_init_successful = 4 /* success to init */
 } __itt_collection_state;

++++++ intel-ittapi.obsinfo ++++++
--- /var/tmp/diff_new_pack.H9cEDG/_old  2023-02-19 18:19:53.989838594 +0100
+++ /var/tmp/diff_new_pack.H9cEDG/_new  2023-02-19 18:19:53.989838594 +0100
@@ -1,5 +1,5 @@
 name: intel-ittapi
 version: 
-mtime: 1674841700
-commit: 319dc0dc5f8cf08e7784304776a3138cf6e487ab
+mtime: 1675884497
+commit: 1b94d1af2945e094c958a858f1b0ca86a474997a
 

++++++ rpcs3-0.0.26~git20230205.obscpio -> rpcs3-0.0.26~git20230210.obscpio 
++++++
/work/SRC/openSUSE:Factory/rpcs3/rpcs3-0.0.26~git20230205.obscpio 
/work/SRC/openSUSE:Factory/.rpcs3.new.22824/rpcs3-0.0.26~git20230210.obscpio 
differ: char 49, line 1

++++++ rpcs3.obsinfo ++++++
--- /var/tmp/diff_new_pack.H9cEDG/_old  2023-02-19 18:19:54.033838875 +0100
+++ /var/tmp/diff_new_pack.H9cEDG/_new  2023-02-19 18:19:54.033838875 +0100
@@ -1,5 +1,5 @@
 name: rpcs3
-version: 0.0.26~git20230205
-mtime: 1675598571
-commit: 8652b7d358fe975242dd2c51c91fd2968e6bcb82
+version: 0.0.26~git20230210
+mtime: 1675999160
+commit: 465ca97531d015501e19aa9fbfae46300c78bf75
 

Reply via email to