Hello community,

here is the log from the commit of package branding-openSUSE for 
openSUSE:Factory checked in at 2019-08-10 23:44:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/branding-openSUSE (Old)
 and      /work/SRC/openSUSE:Factory/.branding-openSUSE.new.9556 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "branding-openSUSE"

Sat Aug 10 23:44:33 2019 rev:107 rq:721709 version:84.87.20180403

Changes:
--------
--- /work/SRC/openSUSE:Factory/branding-openSUSE/branding-openSUSE.changes      
2019-04-09 20:16:27.113559450 +0200
+++ 
/work/SRC/openSUSE:Factory/.branding-openSUSE.new.9556/branding-openSUSE.changes
    2019-08-10 23:44:37.023629744 +0200
@@ -1,0 +2,6 @@
+Thu Aug  8 09:15:58 UTC 2019 - Fabian Vogt <[email protected]>
+
+- Add patch to fix parallel build:
+  * fix-parallel-build.patch
+
+-------------------------------------------------------------------

New:
----
  fix-parallel-build.patch

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

Other differences:
------------------
++++++ branding-openSUSE.spec ++++++
--- /var/tmp/diff_new_pack.7S9xR0/_old  2019-08-10 23:44:39.991629217 +0200
+++ /var/tmp/diff_new_pack.7S9xR0/_new  2019-08-10 23:44:40.023629211 +0200
@@ -37,6 +37,8 @@
 Group:              System/Fhs
 URL:                https://github.com/openSUSE/branding
 Source0:            branding-%{theme_version}.zip
+# PATCH-FIX-UPSTREAM
+Patch1:             fix-parallel-build.patch
 BuildRequires:      fdupes
 BuildRequires:      fribidi
 BuildRequires:      suse-module-tools
@@ -189,7 +191,7 @@
 %{theme_name} %{theme_version_clean} branding for the plymouth bootsplash
 
 %prep
-%setup -qn branding-%{theme_version}
+%autosetup -p1 -n branding-%{theme_version}
 
 %build
 %make_build


++++++ fix-parallel-build.patch ++++++
>From e2c96c5b2c15a15d63273a802cea1df3614966a4 Mon Sep 17 00:00:00 2001
From: Andreas Schwab <[email protected]>
Date: Tue, 23 Apr 2019 12:53:44 +0200
Subject: [PATCH] Fix parallel build

---
 Makefile | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/Makefile b/Makefile
index c3d9984..684dbc2 100644
--- a/Makefile
+++ b/Makefile
@@ -17,16 +17,16 @@ gfxboot.d:
        mkdir -p ~/.fonts openSUSE/gfxboot/data-boot/ 
openSUSE/gfxboot/data-install
        cp gfxboot/SourceSansPro-Light.ttf ~/.fonts
        for name in back welcome on off glow; do \
-               rsvg-convert raw-theme-drop/$${name}.svg -w 800 -a -o tmp.png; \
-               gm convert -quality 100 -interlace None -colorspace YCbCr 
-geometry 800x600 -sampling-factor 2x2 tmp.png 
openSUSE/gfxboot/data-install/$${name}.jpg; \
-               rm tmp.png; \
+               rsvg-convert raw-theme-drop/$${name}.svg -w 800 -a -o 
[email protected]; \
+               gm convert -quality 100 -interlace None -colorspace YCbCr 
-geometry 800x600 -sampling-factor 2x2 [email protected] 
openSUSE/gfxboot/data-install/$${name}.jpg; \
+               rm [email protected]; \
        done
-       rsvg-convert gfxboot/text.svg -w 114 -a -o tmp.png
-       gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 tmp.png openSUSE/gfxboot/data-install/text.jpg
-       rm tmp.png
-       rsvg-convert raw-theme-drop/back.svg -w 800 -a -o tmp.png
-       gm convert -quality 100 -interlace None -colorspace YCbCr -geometry 
800x600 -sampling-factor 2x2 tmp.png openSUSE/gfxboot/data-boot/back.jpg
-       rm tmp.png
+       rsvg-convert gfxboot/text.svg -w 114 -a -o [email protected]
+       gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 [email protected] openSUSE/gfxboot/data-install/text.jpg
+       rm [email protected]
+       rsvg-convert raw-theme-drop/back.svg -w 800 -a -o [email protected]
+       gm convert -quality 100 -interlace None -colorspace YCbCr -geometry 
800x600 -sampling-factor 2x2 [email protected] openSUSE/gfxboot/data-boot/back.jpg
+       rm [email protected]
        rm ~/.fonts/SourceSansPro-Light.ttf
 
 gfxboot.d_clean:
@@ -77,9 +77,9 @@ CLEAN_DEPS+=libreoffice.d_clean
 wallpaper.d:
        mkdir -p openSUSE/wallpapers 
openSUSE/wallpapers/openSUSEdefault/contents/images
        for size in 5120x3200 3840x2400 1280x1024 1600x1200 1920x1080 1920x1200 
1350x1080 1440x1080; do \
-               rsvg-convert raw-theme-drop/desktop-$${size}.svg -o tmp.png; \
-               gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 tmp.png 
openSUSE/wallpapers/openSUSEdefault/contents/images/$${size}.jpg; \
-               rm tmp.png; \
+               rsvg-convert raw-theme-drop/desktop-$${size}.svg -o [email protected]; 
\
+               gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 [email protected] 
openSUSE/wallpapers/openSUSEdefault/contents/images/$${size}.jpg; \
+               rm [email protected]; \
        done
        for size in 1600x1200 1920x1200 1920x1080; do \
                cp wallpapers/default-$${size}.jpg.desktop openSUSE/wallpapers; 
\
@@ -87,9 +87,9 @@ wallpaper.d:
                ln -sf openSUSE${VERSION_NO_DOT}-$${size}.jpg 
openSUSE/wallpapers/default-$${size}.jpg; \
                ln -sf openSUSEdefault/contents/images/$${size}.jpg 
openSUSE/wallpapers/openSUSE${VERSION_NO_DOT}-$${size}.jpg; \
        done
-       rsvg-convert raw-theme-drop/desktop-1920x1200.svg -o tmp.png
-       gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 tmp.png openSUSE/wallpapers/openSUSEdefault/screenshot.jpg
-       rm tmp.png
+       rsvg-convert raw-theme-drop/desktop-1920x1200.svg -o [email protected]
+       gm convert -quality 100 -interlace None -colorspace YCbCr 
-sampling-factor 2x2 [email protected] 
openSUSE/wallpapers/openSUSEdefault/screenshot.jpg
+       rm [email protected]
        cp -p kde-workspace/metadata.desktop 
openSUSE/wallpapers/openSUSEdefault/metadata.desktop
 
 wallpaper.d_clean:

Reply via email to