Hello community,
here is the log from the commit of package mysql-community-server for
openSUSE:Factory checked in at 2015-07-14 17:45:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mysql-community-server (Old)
and /work/SRC/openSUSE:Factory/.mysql-community-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mysql-community-server"
Changes:
--------
---
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.changes
2015-07-12 22:52:42.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.changes
2015-07-14 17:46:18.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Jul 13 12:49:32 UTC 2015 - [email protected]
+
+- Use proper syntax in systemd unit helper (boo#937767)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mysql-community-server.spec ++++++
--- /var/tmp/diff_new_pack.86U8it/_old 2015-07-14 17:46:19.000000000 +0200
+++ /var/tmp/diff_new_pack.86U8it/_new 2015-07-14 17:46:19.000000000 +0200
@@ -572,9 +572,9 @@
# and thus broken later on. Fixes bnc#906147
pushd "%{buildroot}%{_libdir}"
rm -f lib%{libname}_r.so*
-ln -sf lib%{libname}%{soname}.so.%{soname}.0.0 lib%{libname}_r.so
-ln -sf lib%{libname}%{soname}.so.%{soname}.0.0 lib%{libname}_r.so.%{soname}
-ln -sf lib%{libname}%{soname}.so.%{soname}.0.0 lib%{libname}_r.so.%{soname}.0.0
+ln -sf lib%{libname}.so.%{soname}.0.0 lib%{libname}_r.so
+ln -sf lib%{libname}.so.%{soname}.0.0 lib%{libname}_r.so.%{soname}
+ln -sf lib%{libname}.so.%{soname}.0.0 lib%{libname}_r.so.%{soname}.0.0
popd
# If not preffered simply reduce main develpackage to NULL
@@ -649,7 +649,7 @@
/usr/bin/systemd-tmpfiles --create %{_tmpfilesdir}/mysql.conf || :
# SLE11 Migration support
-for in in protected tmp; do
+for i in protected tmp; do
rmdir "$datadir"/.$i 2>/dev/null || :
done
# Remove any messages that could've been in place about the upgrade
++++++ configuration-tweaks.tar.bz2 ++++++
++++++ mysql-patches.tar.bz2 ++++++
++++++ mysql-systemd-helper ++++++
--- /var/tmp/diff_new_pack.86U8it/_old 2015-07-14 17:46:19.000000000 +0200
+++ /var/tmp/diff_new_pack.86U8it/_new 2015-07-14 17:46:19.000000000 +0200
@@ -20,10 +20,10 @@
# Read options - important for multi setup
if [[ -n "$INSTANCE" && "x$INSTANCE" != "xdefault" ]]; then
- opts="$(/usr/bin/my_print_defaults --mysqld mysqld_multi
"$INSTANCE")"
+ opts="$(/usr/bin/my_print_defaults mysqld mysqld_multi
"$INSTANCE")"
tmp_opts="$opts"
else
- opts="$(/usr/bin/my_print_defaults --mysqld)"
+ opts="$(/usr/bin/my_print_defaults mysqld)"
tmp_opts="$opts"
fi