Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package obs-service-source_validator for 
openSUSE:Factory checked in at 2025-12-09 12:50:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/obs-service-source_validator (Old)
 and      /work/SRC/openSUSE:Factory/.obs-service-source_validator.new.1939 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "obs-service-source_validator"

Tue Dec  9 12:50:45 2025 rev:88 rq:1321703 version:0.42+4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/obs-service-source_validator/obs-service-source_validator.changes
        2025-10-02 19:22:08.383326931 +0200
+++ 
/work/SRC/openSUSE:Factory/.obs-service-source_validator.new.1939/obs-service-source_validator.changes
      2025-12-09 12:56:58.296643584 +0100
@@ -1,0 +2,11 @@
+Tue Dec 09 09:34:01 UTC 2025 - Ruediger Oertel <[email protected]>
+
+- Update to version 0.42+4:
+  * Report also dirassets as source
+
+-------------------------------------------------------------------
+Mon Dec  1 20:04:54 UTC 2025 - Antonio Teixeira <[email protected]>
+
+- Add PKGBUILD to enable builds for Arch Linux
+
+-------------------------------------------------------------------

Old:
----
  obs-service-source_validator-0.42+2.tar.xz

New:
----
  PKGBUILD
  obs-service-source_validator-0.42+4.tar.xz

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

Other differences:
------------------
++++++ obs-service-source_validator.spec ++++++
--- /var/tmp/diff_new_pack.43JExv/_old  2025-12-09 12:56:59.012673766 +0100
+++ /var/tmp/diff_new_pack.43JExv/_new  2025-12-09 12:56:59.016673934 +0100
@@ -1,6 +1,7 @@
 #
 # spec file for package obs-service-source_validator
 #
+# Copyright (c) 2025 SUSE LLC
 # Copyright (c) 2025 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
@@ -23,7 +24,7 @@
 %endif
 
 Name:           obs-service-source_validator
-Version:        0.42+2
+Version:        0.42+4
 Release:        0
 Summary:        An OBS source service: running all the osc source-validator 
checks
 License:        GPL-2.0-or-later

++++++ PKGBUILD ++++++
pkgname=obs-service-source_validator
pkgver=0.42+4
pkgrel=0
pkgdesc='An OBS source service: running all the osc source-validator checks'
arch=('any')
url='https://github.com/openSUSE/obs-service-source_validator'
license=('GPL-2.0-or-later')
depends=('build' 'bzip2' 'cpio' 'diffutils' 'gnupg' 'libxml2' 'patch' 
'perl-timedate' 'unzip' 'xz' 'zstd')
source=($pkgname-$pkgver.tar.xz)
sha256sums=('SKIP')

package() {
    cd "$pkgname-$pkgver"
    make DESTDIR=$pkgdir install
}

check() {
    cd "$pkgname-$pkgver"
    make VERBOSE=1 test
}

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.43JExv/_old  2025-12-09 12:56:59.088676970 +0100
+++ /var/tmp/diff_new_pack.43JExv/_new  2025-12-09 12:56:59.092677139 +0100
@@ -3,6 +3,6 @@
             <param 
name="url">git://github.com/openSUSE/obs-service-source_validator.git</param>
           <param 
name="changesrevision">c68d7a28c4ecd88b179359b030098503e75adc0b</param></service><service
 name="tar_scm">
                 <param 
name="url">https://github.com/openSUSE/obs-service-source_validator.git</param>
-              <param 
name="changesrevision">6466d7ab34378a74f6da2c4508dd7569ef8b63e7</param></service></servicedata>
+              <param 
name="changesrevision">3be834b0a3ef0b947e93d40646a284e3acfda3c5</param></service></servicedata>
 (No newline at EOF)
 

++++++ debian.dsc ++++++
--- /var/tmp/diff_new_pack.43JExv/_old  2025-12-09 12:56:59.120678318 +0100
+++ /var/tmp/diff_new_pack.43JExv/_new  2025-12-09 12:56:59.124678488 +0100
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: obs-service-source-validator
-Version: 0.42+2-0
+Version: 0.42+4-0
 Binary: obs-service-source-validator
 Maintainer: Hib Eris <[email protected]>
 Architecture: all

++++++ obs-service-source_validator-0.42+2.tar.xz -> 
obs-service-source_validator-0.42+4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/obs-service-source_validator-0.42+2/helpers/spec_query 
new/obs-service-source_validator-0.42+4/helpers/spec_query
--- old/obs-service-source_validator-0.42+2/helpers/spec_query  2025-10-01 
11:52:30.000000000 +0200
+++ new/obs-service-source_validator-0.42+4/helpers/spec_query  2025-12-09 
10:31:10.000000000 +0100
@@ -130,6 +130,11 @@
   $descr->{'sources'} = [map {$descr->{$_}} grep {/^source/} @skeys];
   $descr->{'patches'} = [map {$descr->{$_}} grep {/^patch/} @skeys];
   $descr->{'icons'} = [map {@{$descr->{$_}}} grep {/^icon/} @skeys];
+  for my $file (@{$descr->{'moveassets'} || []}) {
+         my $basename = $file;
+         $basename =~ s/.*\///;
+         $descr->{'sources'} = [grep {$_ ne $basename} @{$descr->{'sources'}}];
+  };
   return $descr;
 }
 
@@ -148,6 +153,7 @@
 sub print_sources {
   my ($descr) = @_;
   print "@{$descr->{'sources'}} " if @{$descr->{'sources'}};
+  print "@{$descr->{'dirassets'}} " if $descr->{'dirassets'};
   print "@{$descr->{'patches'}} " if @{$descr->{'patches'}};
   print "@{$descr->{'icons'}}" if @{$descr->{'icons'}};
   print "\n";

Reply via email to