Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package obs-git-init for openSUSE:Factory checked in at 2026-05-15 23:53:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/obs-git-init (Old) and /work/SRC/openSUSE:Factory/.obs-git-init.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "obs-git-init" Fri May 15 23:53:11 2026 rev:7 rq:1353376 version:0.2.6 Changes: -------- --- /work/SRC/openSUSE:Factory/obs-git-init/obs-git-init.changes 2026-05-08 16:48:02.939847664 +0200 +++ /work/SRC/openSUSE:Factory/.obs-git-init.new.1966/obs-git-init.changes 2026-05-15 23:53:19.088634737 +0200 @@ -1,0 +2,13 @@ +Fri May 15 11:37:11 UTC 2026 - Adrian Schröter <[email protected]> + +- Update to 0.2.6 + * fix double line detection for .gitignore files + +------------------------------------------------------------------- +Thu May 14 11:18:22 UTC 2026 - Adrian Schröter <[email protected]> + +- Update to 0.2.5 + * Extend .gitignore also with .assets + * Syntax fix for bs_mergechanges registration + +------------------------------------------------------------------- Old: ---- obs-git-init-0.2.4.obscpio New: ---- obs-git-init-0.2.6.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ obs-git-init.spec ++++++ --- /var/tmp/diff_new_pack.lGpNmx/_old 2026-05-15 23:53:19.636657296 +0200 +++ /var/tmp/diff_new_pack.lGpNmx/_new 2026-05-15 23:53:19.636657296 +0200 @@ -17,7 +17,7 @@ Name: obs-git-init -Version: 0.2.4 +Version: 0.2.6 Release: 0 Summary: A help service to setup git repositories for OBS License: GPL-2.0-or-later ++++++ _service ++++++ --- /var/tmp/diff_new_pack.lGpNmx/_old 2026-05-15 23:53:19.680659107 +0200 +++ /var/tmp/diff_new_pack.lGpNmx/_new 2026-05-15 23:53:19.684659272 +0200 @@ -2,8 +2,8 @@ <service name="obs_scm" mode="manual"> <param name="url">https://src.opensuse.org/openSUSE/obs-git-init</param> <param name="scm">git</param> - <param name="revision">0.2.4</param> - <param name="version">0.2.4</param> + <param name="revision">0.2.6</param> + <param name="version">0.2.6</param> </service> <service mode="manual" name="set_version" /> ++++++ obs-git-init-0.2.4.obscpio -> obs-git-init-0.2.6.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obs-git-init-0.2.4/obs-git-init new/obs-git-init-0.2.6/obs-git-init --- old/obs-git-init-0.2.4/obs-git-init 2026-05-08 09:17:41.000000000 +0200 +++ new/obs-git-init-0.2.6/obs-git-init 2026-05-15 13:36:10.000000000 +0200 @@ -50,8 +50,7 @@ unless ($cfg->exists($section, 'driver')) { $cfg->AddSection($section); $cfg->newval($section, 'name', 'Merging changes files by sorting of date'); - $cfg->newval($section, 'driver', 'driver = /usr/lib/obs/helper/bs_mergechanges %O %B %A > %A.tmp && mv %A.tmp %A -'); + $cfg->newval($section, 'driver', '/usr/lib/obs/helper/bs_mergechanges %O %B %A > %A.tmp && mv %A.tmp %A'); $cfg->WriteConfig($config_file) || die("ERROR: Write $config_file failed!\n"); } @@ -69,7 +68,7 @@ sub append { my ($prefix, $line, $lines) = @_; - $lines .= "$line\n" unless $lines =~ m/^$prefix/; + $lines .= "$line\n" unless $lines =~ m/^$prefix/m; return $lines; }; @@ -79,7 +78,7 @@ for (@{['7z', 'bsp', 'bz2', 'gem', 'gz', 'jar', 'lz', 'lzma', 'oxt', 'pdf', 'png', 'rpm', 'tbz', 'tbz2', 'tgz', 'ttf', 'txz', 'whl', 'xz', 'zip', 'zst']}) { - $gitattributes = append("*.$_ ", "*.$_ filter=lfs diff=lfs merge=lfs -text", $gitattributes); + $gitattributes = append("*.$_ ", "*.$_ filter=lfs diff=lfs merge=lfs -text", $gitattributes); } $gitattributes = append("*.changes ", "*.changes merge=merge-changes", $gitattributes); @@ -101,11 +100,13 @@ } close(FH); } -$gitignore = append("*.obscpio ", "*.obscpio", $gitignore); -$gitignore = append("*.osc ", "*.osc", $gitignore); -$gitignore = append("_build.* ", "_build.*", $gitignore); -$gitignore = append("_service:* ", "_service:*", $gitignore); -$gitignore = append(".pbuild ", ".pbuild", $gitignore); +$gitignore = append(".assets", ".assets", $gitignore); +$gitignore = append("*.obsinfo", "*.obsinfo", $gitignore); +$gitignore = append("*.obscpio", "*.obscpio", $gitignore); +$gitignore = append("*.osc", "*.osc", $gitignore); +$gitignore = append("_build.*", "_build.*", $gitignore); +$gitignore = append("_service:*", "_service:*", $gitignore); +$gitignore = append(".pbuild", ".pbuild", $gitignore); open(FH, '>', $ignore_file) or die $!; print FH $gitignore; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obs-git-init-0.2.4/w/.gitattributes new/obs-git-init-0.2.6/w/.gitattributes --- old/obs-git-init-0.2.4/w/.gitattributes 2026-05-08 09:17:41.000000000 +0200 +++ new/obs-git-init-0.2.6/w/.gitattributes 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -*.changes merge=merge-changes ++++++ obs-git-init.obsinfo ++++++ --- /var/tmp/diff_new_pack.lGpNmx/_old 2026-05-15 23:53:19.820664870 +0200 +++ /var/tmp/diff_new_pack.lGpNmx/_new 2026-05-15 23:53:19.820664870 +0200 @@ -1,5 +1,5 @@ name: obs-git-init -version: 0.2.4 -mtime: 1778224661 -commit: c86266e71e1e86e5418d61e1ba7591ea103dc34e95f1cf5ba4965768e3fcaf2f +version: 0.2.6 +mtime: 1778844970 +commit: 8af93ff3a1a939c6a8aba4fc99bec095217cebda5a7502ceecb77ddc5bda3e8f
