Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package cosmic-launcher for openSUSE:Factory
checked in at 2026-08-28 19:57:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cosmic-launcher (Old)
and /work/SRC/openSUSE:Factory/.cosmic-launcher.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cosmic-launcher"
Fri Aug 28 19:57:37 2026 rev:14 rq:1374425 version:1.7.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/cosmic-launcher/cosmic-launcher.changes
2026-08-21 16:55:26.920473221 +0200
+++
/work/SRC/openSUSE:Factory/.cosmic-launcher.new.1265/cosmic-launcher.changes
2026-08-28 20:00:48.311130006 +0200
@@ -1,0 +2,12 @@
+Thu Aug 27 04:26:22 UTC 2026 - Richard Rahl <[email protected]>
+
+- Update to version 1.7.0:
+ * fix: wrong icon path
+ * i18n: set desktop entry name to Launcher
+ * chore: update justfile and xdgen scripts
+ * i18n: use xdgen to translate desktop entry and appstream metadata
+ * build: vendor cargo dependencies with --locked
+ * build: remove mold linker from justfile
+- fix-justfile.patch, as the desktop and metainfo dir was mangled
+
+-------------------------------------------------------------------
Old:
----
cosmic-launcher-1.6.0.obscpio
New:
----
cosmic-launcher-1.7.0.obscpio
fix-justfile.patch
----------(New B)----------
New: * build: remove mold linker from justfile
- fix-justfile.patch, as the desktop and metainfo dir was mangled
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ cosmic-launcher.spec ++++++
--- /var/tmp/diff_new_pack.cVFDvy/_old 2026-08-28 20:00:50.696213393 +0200
+++ /var/tmp/diff_new_pack.cVFDvy/_new 2026-08-28 20:00:50.702213602 +0200
@@ -18,13 +18,14 @@
%define appid com.system76.CosmicLauncher
Name: cosmic-launcher
-Version: 1.6.0
+Version: 1.7.0
Release: 0
Summary: Layer Shell frontend
License: GPL-3.0-only
URL: https://github.com/pop-os/cosmic-launcher
Source0: %{name}-%{version}.tar.zst
Source1: vendor.tar.zst
+Patch0: fix-justfile.patch
BuildRequires: cargo-packaging
BuildRequires: desktop-file-utils
BuildRequires: hicolor-icon-theme
@@ -43,7 +44,7 @@
when it is ready.
%prep
-%autosetup -a1
+%autosetup -a1 -p1
%build
just build-release
++++++ _service ++++++
--- /var/tmp/diff_new_pack.cVFDvy/_old 2026-08-28 20:00:50.807217273 +0200
+++ /var/tmp/diff_new_pack.cVFDvy/_new 2026-08-28 20:00:50.819217693 +0200
@@ -3,7 +3,7 @@
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/pop-os/cosmic-launcher.git</param>
<param name="scm">git</param>
- <param name="revision">refs/tags/epoch-1.6.0</param>
+ <param name="revision">refs/tags/epoch-1.7.0</param>
<param name="versionrewrite-pattern">epoch-(.*)</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-replacement">\1</param>
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.cVFDvy/_old 2026-08-28 20:00:50.903220630 +0200
+++ /var/tmp/diff_new_pack.cVFDvy/_new 2026-08-28 20:00:50.917221119 +0200
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/pop-os/cosmic-launcher.git</param>
- <param
name="changesrevision">a9ad093127884e5bdbe11beb1580427abc936947</param></service></servicedata>
+ <param
name="changesrevision">f7389d786f6a879ed99c8a61e760927a9221cfeb</param></service></servicedata>
(No newline at EOF)
++++++ cosmic-launcher-1.6.0.obscpio -> cosmic-launcher-1.7.0.obscpio ++++++
++++ 4247 lines of diff (skipped)
++++++ cosmic-launcher.obsinfo ++++++
--- /var/tmp/diff_new_pack.cVFDvy/_old 2026-08-28 20:00:51.327235454 +0200
+++ /var/tmp/diff_new_pack.cVFDvy/_new 2026-08-28 20:00:51.339235874 +0200
@@ -1,5 +1,5 @@
name: cosmic-launcher
-version: 1.6.0
-mtime: 1787054645
-commit: a9ad093127884e5bdbe11beb1580427abc936947
+version: 1.7.0
+mtime: 1787674953
+commit: f7389d786f6a879ed99c8a61e760927a9221cfeb
++++++ fix-justfile.patch ++++++
diff --git a/justfile b/justfile
index 4cdfeb9..6f10839 100644
--- a/justfile
+++ b/justfile
@@ -14,7 +14,7 @@ base-dir := absolute_path(clean(rootdir / prefix))
cargo-target-dir := env('CARGO_TARGET_DIR', 'target')
bin-src := if debug == '1' { 'debug' / name } else { cargo-target-dir /
'release' / name }
bin-dst := base-dir / 'bin' / name
-appdata-dst := base-dir / 'share' / 'appdata' / appdata
+appdata-dst := base-dir / 'share' / 'metainfo' / appdata
desktop-dst := base-dir / 'share' / 'applications' / desktop
icon-dst := base-dir / 'share' / 'icons' / 'hicolor' / 'scalable' / 'apps' /
appid + '.svg'
@@ -66,8 +66,8 @@ tokio-console: (build-release '--features console')
# Installs files
install:
install -Dm0755 {{bin-src}} {{bin-dst}}
- install -Dm0644 {{ 'target' / 'xdgen' / desktop }} {{desktop-dst}}
- install -Dm0644 {{ 'target' / 'xdgen' / appdata }} {{appdata-dst}}
+ install -Dm0644 {{ 'data' / desktop }} {{desktop-dst}}
+ install -Dm0644 {{ 'data' / appdata }} {{appdata-dst}}
install -Dm0644 {{ 'data' / 'icons' / appid + '.svg' }} {{icon-dst}}
# Uninstalls installed files
++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/cosmic-launcher/vendor.tar.zst
/work/SRC/openSUSE:Factory/.cosmic-launcher.new.1265/vendor.tar.zst differ:
char 7, line 1