Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package swww for openSUSE:Factory checked in 
at 2025-04-17 16:07:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/swww (Old)
 and      /work/SRC/openSUSE:Factory/.swww.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "swww"

Thu Apr 17 16:07:47 2025 rev:14 rq:1269970 version:0.9.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/swww/swww.changes        2024-10-30 
17:39:27.160865087 +0100
+++ /work/SRC/openSUSE:Factory/.swww.new.30101/swww.changes     2025-04-20 
20:10:33.411631875 +0200
@@ -1,0 +2,5 @@
+Wed Apr 16 09:01:56 UTC 2025 - Soc Virnyl Estela 
<uncomfyhaloma...@opensuse.org>
+
+- Update vendored dependencies
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ swww.spec ++++++
--- /var/tmp/diff_new_pack.Rf78m3/_old  2025-04-20 20:10:35.255708993 +0200
+++ /var/tmp/diff_new_pack.Rf78m3/_new  2025-04-20 20:10:35.259709160 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package swww
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
 # upon. The license for this file, and modifications and additions to the

++++++ swww-0.9.5.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/swww-0.9.5/.github/workflows/check.yml 
new/swww-0.9.5/.github/workflows/check.yml
--- old/swww-0.9.5/.github/workflows/check.yml  2024-05-03 01:49:23.000000000 
+0200
+++ new/swww-0.9.5/.github/workflows/check.yml  1970-01-01 01:00:00.000000000 
+0100
@@ -1,32 +0,0 @@
-name: Check
-
-on:
-  workflow_call:
-
-env:
-  CARGO_TERM_COLOR: always
-  SCCACHE_GHA_ENABLED: "true"
-  RUSTC_WRAPPER: "sccache"
-
-jobs:
-  clippy:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-        with:
-          components: clippy
-      - run: cargo clippy --version
-      - run: cargo clippy --workspace --locked --tests
-
-  fmt:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-        with:
-          components: rustfmt
-      - run: cargo fmt --version
-      - run: cargo fmt --all --check
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/swww-0.9.5/.github/workflows/ci.yml 
new/swww-0.9.5/.github/workflows/ci.yml
--- old/swww-0.9.5/.github/workflows/ci.yml     2024-05-03 01:49:23.000000000 
+0200
+++ new/swww-0.9.5/.github/workflows/ci.yml     1970-01-01 01:00:00.000000000 
+0100
@@ -1,16 +0,0 @@
-name: CI
-
-on:
-  pull_request:
-  merge_group:
-  push:
-    branches:
-      - main
-
-jobs:
-  check:
-    uses: ./.github/workflows/check.yml
-  dependencies:
-    uses: ./.github/workflows/dependencies.yml
-  test:
-    uses: ./.github/workflows/test.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/swww-0.9.5/.github/workflows/dependencies.yml 
new/swww-0.9.5/.github/workflows/dependencies.yml
--- old/swww-0.9.5/.github/workflows/dependencies.yml   2024-05-03 
01:49:23.000000000 +0200
+++ new/swww-0.9.5/.github/workflows/dependencies.yml   1970-01-01 
01:00:00.000000000 +0100
@@ -1,46 +0,0 @@
-name: Dependencies
-
-on:
-  workflow_call:
-
-env:
-  CARGO_TERM_COLOR: always
-  SCCACHE_GHA_ENABLED: "true"
-  RUSTC_WRAPPER: "sccache"
-
-jobs:
-  advisories:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-      - uses: taiki-e/install-action@cargo-deny
-      - run: cargo deny check advisories
-
-  bans:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-      - uses: taiki-e/install-action@cargo-deny
-      - run: cargo deny check bans
-
-  licences:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-      - uses: taiki-e/install-action@cargo-deny
-      - run: cargo deny check licenses
-
-  sources:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-      - uses: taiki-e/install-action@cargo-deny
-      - run: cargo deny check sources
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/swww-0.9.5/.github/workflows/test.yml 
new/swww-0.9.5/.github/workflows/test.yml
--- old/swww-0.9.5/.github/workflows/test.yml   2024-05-03 01:49:23.000000000 
+0200
+++ new/swww-0.9.5/.github/workflows/test.yml   1970-01-01 01:00:00.000000000 
+0100
@@ -1,64 +0,0 @@
-name: Test
-
-on:
-  workflow_call:
-
-env:
-  CARGO_TERM_COLOR: always
-  SCCACHE_GHA_ENABLED: "true"
-  RUSTC_WRAPPER: "sccache"
-
-jobs:
-  nightly:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@nightly
-        with:
-          components: llvm-tools-preview
-      - uses: taiki-e/install-action@cargo-nextest
-      - uses: taiki-e/install-action@cargo-llvm-cov
-      - name: Run tests
-        run: cargo llvm-cov --workspace --locked nextest --html
-      - name: Upload test report
-        uses: actions/upload-artifact@v3
-        if: always()
-        with:
-          name: report
-          path: target/nextest/default/report.xml
-          retention-days: 30
-      - name: Upload coverage results
-        uses: actions/upload-artifact@v3
-        if: always()
-        with:
-          name: coverage
-          path: target/llvm-cov/
-          retention-days: 30
-
-  stable:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: dtolnay/rust-toolchain@stable
-      - uses: taiki-e/install-action@cargo-nextest
-      - run: cargo build --workspace --locked --verbose
-      - run: cargo nextest run --workspace --locked
-
-  msrv:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: mozilla-actions/sccache-action@v0.0.3
-      - uses: SebRollen/toml-action@v1.0.2
-        id: msrv
-        with:
-          file: 'Cargo.toml'
-          field: 'package.rust-version'
-      - uses: dtolnay/rust-toolchain@master
-        with:
-          toolchain: ${{ steps.msrv.outputs.value }}
-      - uses: taiki-e/install-action@cargo-nextest
-      - run: cargo build --workspace --locked --verbose
-      - run: cargo nextest run --workspace --locked

++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/swww/vendor.tar.zst 
/work/SRC/openSUSE:Factory/.swww.new.30101/vendor.tar.zst differ: char 7, line 1

Reply via email to