Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ocp for openSUSE:Factory checked in 
at 2024-04-07 22:11:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ocp (Old)
 and      /work/SRC/openSUSE:Factory/.ocp.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ocp"

Sun Apr  7 22:11:56 2024 rev:7 rq:1165855 version:0.2.109

Changes:
--------
--- /work/SRC/openSUSE:Factory/ocp/ocp.changes  2024-04-03 17:20:34.781858494 
+0200
+++ /work/SRC/openSUSE:Factory/.ocp.new.1905/ocp.changes        2024-04-07 
22:14:09.308510537 +0200
@@ -1,0 +2,9 @@
+Fri Apr  5 09:31:30 UTC 2024 - Martin Hauke <mar...@gmx.de>
+
+- Update to version 0.2.109
+  Bugfix release
+  * Remove a gcc warning when compiling boot/psetting.c
+  * validate_xdg_dir_absolute() allocates a byte short when
+    building the string buffer in one of the code-paths.
+
+-------------------------------------------------------------------

Old:
----
  ocp-0.2.108.tar.bz2

New:
----
  ocp-0.2.109.tar.bz2

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

Other differences:
------------------
++++++ ocp.spec ++++++
--- /var/tmp/diff_new_pack.vHDght/_old  2024-04-07 22:14:10.028536943 +0200
+++ /var/tmp/diff_new_pack.vHDght/_new  2024-04-07 22:14:10.028536943 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           ocp
-Version:        0.2.108
+Version:        0.2.109
 Release:        0
 Summary:        Open Cubic Player for MOD/S3M/XM/IT/MIDI music files
 # Code is GPL-2.0-or-later, Graphics and animations are CC-BY-3.0
@@ -110,6 +110,8 @@
 # install images and animations
 cp -pv CPPIC*.TGA CPANI*.DAT %{buildroot}%{_datadir}/%{name}/data
 
+%check
+
 %files
 %license COPYING license-images.txt license-videos.txt
 %doc AUTHORS BUGS CREDITS KEYBOARD_REMAPS SUID

++++++ ocp-0.2.108.tar.bz2 -> ocp-0.2.109.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/Changelog new/ocp-0.2.109/Changelog
--- old/ocp-0.2.108/Changelog   2024-04-01 18:59:58.000000000 +0200
+++ new/ocp-0.2.109/Changelog   2024-04-04 22:05:25.000000000 +0200
@@ -1,3 +1,11 @@
+Version 0.2.109
+===============
+This is a bugfix release
+
+ * Remove a gcc warning when compiling boot/psetting.c
+ * validate_xdg_dir_absolute() allocates a byte short when building the string 
buffer in one of the code-paths.
+ * mingw builds expects adplugdb to be located within OCP data directory, not 
in the same directory as OCP.EXE (initial mingw builds did not have a data 
directory)
+
 Version 0.2.108
 ===============
 This is a bugfix release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/boot/kickload-unix.c 
new/ocp-0.2.109/boot/kickload-unix.c
--- old/ocp-0.2.108/boot/kickload-unix.c        2024-04-01 18:59:58.000000000 
+0200
+++ new/ocp-0.2.109/boot/kickload-unix.c        2024-04-04 21:54:03.000000000 
+0200
@@ -382,7 +382,7 @@
        }
        if (xdg)
        {
-               char *retval = malloc (strlen (xdg) + 5);
+               char *retval = malloc (strlen (xdg) + 5 + 1);
                if (retval)
                {
                        sprintf (retval, "%s%socp/",
@@ -783,7 +783,7 @@
                char settingsPath[PATH_MAX];
                if (find_directory(B_USER_SETTINGS_DIRECTORY, -1, false, 
settingsPath, sizeof(settingsPath)) == B_OK)
                {
-                       _cfConfigHomeDir = malloc (strlen (settingsPath) + 5);
+                       _cfConfigHomeDir = malloc (strlen (settingsPath) + 5 + 
1);
                        if (!_cfConfigHomeDir)
                        {
                                fprintf (stderr, "malloc() failed\n");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/boot/psetting.c 
new/ocp-0.2.109/boot/psetting.c
--- old/ocp-0.2.108/boot/psetting.c     2024-04-01 18:59:58.000000000 +0200
+++ new/ocp-0.2.109/boot/psetting.c     2024-04-04 21:54:03.000000000 +0200
@@ -103,7 +103,7 @@
                eol++;
        if ((eol[0]==';')||(eol[0]=='#'))
        {
-               strncpy(comment, eol, COMMENTBUF_LEN);
+               strncpy(comment, eol, COMMENTBUF_LEN-1);
                comment[COMMENTBUF_LEN-1]=0;
        }
        while (isspace(eol[-1]))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/configure new/ocp-0.2.109/configure
--- old/ocp-0.2.108/configure   2024-04-01 18:59:58.000000000 +0200
+++ new/ocp-0.2.109/configure   2024-04-04 21:54:03.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for ocp 0.2.108.
+# Generated by GNU Autoconf 2.71 for ocp 0.2.109.
 #
 # Report bugs to <stian.skjels...@gmail.com>.
 #
@@ -611,8 +611,8 @@
 # Identity of this package.
 PACKAGE_NAME='ocp'
 PACKAGE_TARNAME='ocp'
-PACKAGE_VERSION='0.2.108'
-PACKAGE_STRING='ocp 0.2.108'
+PACKAGE_VERSION='0.2.109'
+PACKAGE_STRING='ocp 0.2.109'
 PACKAGE_BUGREPORT='stian.skjels...@gmail.com'
 PACKAGE_URL=''
 
@@ -1495,7 +1495,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures ocp 0.2.108 to adapt to many kinds of systems.
+\`configure' configures ocp 0.2.109 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1561,7 +1561,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of ocp 0.2.108:";;
+     short | recursive ) echo "Configuration of ocp 0.2.109:";;
    esac
   cat <<\_ACEOF
 
@@ -1796,7 +1796,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-ocp configure 0.2.108
+ocp configure 0.2.109
 generated by GNU Autoconf 2.71
 
 Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2682,7 +2682,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by ocp $as_me 0.2.108, which was
+It was created by ocp $as_me 0.2.109, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -3655,20 +3655,20 @@
 
 
 cat >>confdefs.h <<_ACEOF
-#define DLLVERSION `printf 0x%04x%02x%02x 0 2 108`
+#define DLLVERSION `printf 0x%04x%02x%02x 0 2 109`
 _ACEOF
 
 MAJOR_VERSION=0
 
 MINOR_VERSION=2
 
-PATCH_VERSION=108
+PATCH_VERSION=109
 
 printf "%s\n" "#define OCP_MAJOR_VERSION 0" >>confdefs.h
 
 printf "%s\n" "#define OCP_MINOR_VERSION 2" >>confdefs.h
 
-printf "%s\n" "#define OCP_PATCH_VERSION 108" >>confdefs.h
+printf "%s\n" "#define OCP_PATCH_VERSION 109" >>confdefs.h
 
 
 
@@ -19331,7 +19331,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by ocp $as_me 0.2.108, which was
+This file was extended by ocp $as_me 0.2.109, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -19395,7 +19395,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-ocp config.status 0.2.108
+ocp config.status 0.2.109
 configured by $0, generated by GNU Autoconf 2.71,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/configure.ac new/ocp-0.2.109/configure.ac
--- old/ocp-0.2.108/configure.ac        2024-04-01 18:59:58.000000000 +0200
+++ new/ocp-0.2.109/configure.ac        2024-04-04 21:54:03.000000000 +0200
@@ -1,6 +1,6 @@
 m4_define([MAJOR_VERSION], [0])
 m4_define([MINOR_VERSION], [2])
-m4_define([PATCH_VERSION], [108])
+m4_define([PATCH_VERSION], [109])
 
AC_INIT([ocp],[MAJOR_VERSION.MINOR_VERSION.PATCH_VERSION],[stian.skjels...@gmail.com])
 AC_DEFINE_UNQUOTED(DLLVERSION, `printf 0x%04x%02x%02x MAJOR_VERSION 
MINOR_VERSION PATCH_VERSION`)
 AC_SUBST([MAJOR_VERSION], [MAJOR_VERSION])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ocp-0.2.108/playopl/Makefile 
new/ocp-0.2.109/playopl/Makefile
--- old/ocp-0.2.108/playopl/Makefile    2024-04-01 18:59:58.000000000 +0200
+++ new/ocp-0.2.109/playopl/Makefile    2024-04-04 21:54:03.000000000 +0200
@@ -44,13 +44,8 @@
 install:
 ifeq ($(HAVE_ADPLUG),1)
        $(CP) playopl$(LIB_SUFFIX) 
"$(DESTDIR)$(LIBDIROCP)/autoload/95-playopl$(LIB_SUFFIX)"
-ifneq ($(WINDOWS),1)
        mkdir -p "$(DESTDIR)$(DATADIROCP)/data"
        $(CP) adplugdb-git/adplug.db "$(DESTDIR)$(DATADIROCP)/data"
-else
-       mkdir -p "$(DESTDIR)$(DATADIROCP)"
-       $(CP) adplugdb-git/adplug.db "$(DESTDIR)$(DATADIROCP)"
-endif
 endif
 
 uninstall:

Reply via email to