Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pugaipadam for openSUSE:Factory checked in at 2026-03-10 17:50:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pugaipadam (Old) and /work/SRC/openSUSE:Factory/.pugaipadam.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pugaipadam" Tue Mar 10 17:50:43 2026 rev:2 rq:1337777 version:0+20250902.9645085 Changes: -------- --- /work/SRC/openSUSE:Factory/pugaipadam/pugaipadam.changes 2024-12-09 21:12:09.678446253 +0100 +++ /work/SRC/openSUSE:Factory/.pugaipadam.new.8177/pugaipadam.changes 2026-03-10 17:50:44.425175471 +0100 @@ -1,0 +2,19 @@ +Mon Dec 22 02:41:56 UTC 2025 - Richard Rahl <[email protected]> + +- switch over to obs_scm +- add fix-justfile.patch, as otherwise installing files into buildroot fails + +------------------------------------------------------------------- +Fri Oct 24 17:28:05 UTC 2025 - Richard Rahl <[email protected]> + +- Update to version 0+20250902.9645085: + * feat: Svg display + * cargo fix + * feat: Add inner workings for Svg support (reading svgs must be added now) + * feat: Add error handling, and support for more images + * add arrows + * feat: Add fullscreen support + * feat: Add cycling through images, base code for fullscreen button, and a + progress thing (1/14) + +------------------------------------------------------------------- Old: ---- pugaipadam-0+20241129.9d7309e.tar.zst New: ---- fix-justfile.patch pugaipadam-0+20250902.9645085.obscpio pugaipadam.obsinfo ----------(New B)---------- New:- switch over to obs_scm - add fix-justfile.patch, as otherwise installing files into buildroot fails ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pugaipadam.spec ++++++ --- /var/tmp/diff_new_pack.LT41xo/_old 2026-03-10 17:50:55.193620069 +0100 +++ /var/tmp/diff_new_pack.LT41xo/_new 2026-03-10 17:50:55.217621059 +0100 @@ -1,7 +1,7 @@ # # spec file for package pugaipadam # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,33 +16,38 @@ # +%define appid com.github.MrKomodoDragon.pugaipadam Name: pugaipadam -Version: 0+20241129.9d7309e +Version: 0+20250902.9645085 Release: 0 Summary: An elegant image viewer for cosmic License: GPL-3.0-only URL: https://github.com/MrKomodoDragon/pugaipadam Source0: %{name}-%{version}.tar.zst Source1: vendor.tar.zst +Patch0: fix-justfile.patch BuildRequires: cargo-packaging -BuildRequires: pkgconfig BuildRequires: just +BuildRequires: pkgconfig BuildRequires: pkgconfig(xkbcommon) %description %{summary}. %prep -%autosetup -a1 +%autosetup -a1 -p1 +mv res/%{appid}.xml res/%{appid}.metainfo.xml %build just build-release %install -install -Dm0755 target/release/%{name} %{buildroot}%{_bindir}/%{name} +just rootdir=%{buildroot} prefix=%{_prefix} install %files %license LICENSE %doc README.md %{_bindir}/%{name} +%{_datadir}/applications/%{appid}.desktop +%{_datadir}/metainfo/%{appid}.metainfo.xml ++++++ _service ++++++ --- /var/tmp/diff_new_pack.LT41xo/_old 2026-03-10 17:50:55.549634768 +0100 +++ /var/tmp/diff_new_pack.LT41xo/_new 2026-03-10 17:50:55.585636254 +0100 @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8" ?> <services> - <service name="tar_scm" mode="manual"> + <service name="obs_scm" mode="manual"> <param name="url">https://github.com/MrKomodoDragon/pugaipadam.git</param> <param name="scm">git</param> <param name="revision">main</param> @@ -10,7 +10,8 @@ <param name="filename">pugaipadam</param> <param name="changesgenerate">enable</param> </service> - <service name="recompress" mode="manual"> + <service name="tar" mode="buildtime" /> + <service name="recompress" mode="buildtime"> <param name="file">*.tar</param> <param name="compression">zstd</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.LT41xo/_old 2026-03-10 17:50:55.821645998 +0100 +++ /var/tmp/diff_new_pack.LT41xo/_new 2026-03-10 17:50:55.861647649 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/MrKomodoDragon/pugaipadam.git</param> - <param name="changesrevision">9d7309e5f087cc2bad2edd117d00c5ecac888614</param></service></servicedata> + <param name="changesrevision">9645085e7bbb0b1d5022d3556d12195d462402d9</param></service></servicedata> (No newline at EOF) ++++++ fix-justfile.patch ++++++ diff --git a/justfile b/justfile index 42b218e..1ec7c33 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,5 @@ -name := 'cosmic-app-template' -export APPID := 'com.example.CosmicAppTemplate' +name := 'pugaipadam' +export APPID := 'com.github.MrKomodoDragon.pugaipadam' rootdir := '' prefix := '/usr' @@ -69,9 +69,9 @@ install: install -Dm0755 {{bin-src}} {{bin-dst}} install -Dm0644 {{desktop-src}} {{desktop-dst}} install -Dm0644 {{metainfo-src}} {{metainfo-dst}} - for size in `ls {{icons-src}}`; do \ - install -Dm0644 "{{icons-src}}/$size/apps/{{APPID}}.svg" "{{icons-dst}}/$size/apps/{{APPID}}.svg"; \ - done +# for size in `ls {{icons-src}}`; do \ +# install -Dm0644 "{{icons-src}}/$size/apps/{{APPID}}.svg" "{{icons-dst}}/$size/apps/{{APPID}}.svg"; \ +# done # Installs files flatpak: ++++++ pugaipadam.obsinfo ++++++ name: pugaipadam version: 0+20250902.9645085 mtime: 1756821612 commit: 9645085e7bbb0b1d5022d3556d12195d462402d9 ++++++ vendor.tar.zst ++++++ /work/SRC/openSUSE:Factory/pugaipadam/vendor.tar.zst /work/SRC/openSUSE:Factory/.pugaipadam.new.8177/vendor.tar.zst differ: char 7, line 1
