Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lxcfs for openSUSE:Factory checked in at 2025-08-17 14:50:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxcfs (Old) and /work/SRC/openSUSE:Factory/.lxcfs.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxcfs" Sun Aug 17 14:50:19 2025 rev:28 rq:1299968 version:6.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/lxcfs/lxcfs.changes 2025-05-05 22:58:31.045820856 +0200 +++ /work/SRC/openSUSE:Factory/.lxcfs.new.1085/lxcfs.changes 2025-08-17 14:50:30.836936443 +0200 @@ -1,0 +2,8 @@ +Sat Aug 16 17:17:24 UTC 2025 - Aleksa Sarai <asa...@suse.com> + +- Update to 6.0.5. The upstream changelog can be found at + <https://discuss.linuxcontainers.org/t/lxcfs-6-0-5-lts-has-been-released/24437> + + * No code changes, just a version bump to match the LXC and Incus LTS. + +------------------------------------------------------------------- Old: ---- lxcfs-6.0.4.tar.gz lxcfs-6.0.4.tar.gz.asc New: ---- lxcfs-6.0.5.tar.gz lxcfs-6.0.5.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxcfs.spec ++++++ --- /var/tmp/diff_new_pack.JGmbOJ/_old 2025-08-17 14:50:31.356958002 +0200 +++ /var/tmp/diff_new_pack.JGmbOJ/_new 2025-08-17 14:50:31.356958002 +0200 @@ -1,7 +1,7 @@ # # spec file for package lxcfs # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # Copyright (c) 2025 Andreas Stieger <andreas.stie...@gmx.de> # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: lxcfs -Version: 6.0.4 +Version: 6.0.5 Release: 0 Summary: FUSE filesystem for LXC License: Apache-2.0 ++++++ lxcfs-6.0.4.tar.gz -> lxcfs-6.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxcfs-6.0.4/.github/actions/testsuite/action.yml new/lxcfs-6.0.5/.github/actions/testsuite/action.yml --- old/lxcfs-6.0.4/.github/actions/testsuite/action.yml 2025-04-03 21:37:27.000000000 +0200 +++ new/lxcfs-6.0.5/.github/actions/testsuite/action.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,31 +0,0 @@ -name: Test suite -description: Runs the testsuite -inputs: - compiler: - required: true - fuse: - required: true - os: - required: true - -runs: - using: "composite" - steps: - - name: Build LXCFS - uses: ./.github/actions/build - with: - compiler: ${{ inputs.compiler }} - fuse: ${{ inputs.fuse }} - os: ${{ inputs.os }} - - - name: Test - shell: bash - env: - CC: ${{ inputs.compiler }} - run: | - echo "::group::Running the testsuite" - - echo 1 | sudo tee /sys/fs/cgroup/cpuset/cgroup.clone_children || true - sudo -E PATH="${PATH}" LD_LIBRARY_PATH="${LD_LIBRARY_PATH}" build/tests/main.sh - - echo "::endgroup::" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxcfs-6.0.4/.github/workflows/coverity.yml new/lxcfs-6.0.5/.github/workflows/coverity.yml --- old/lxcfs-6.0.4/.github/workflows/coverity.yml 2025-04-03 21:37:27.000000000 +0200 +++ new/lxcfs-6.0.5/.github/workflows/coverity.yml 2025-08-15 06:47:54.000000000 +0200 @@ -13,7 +13,7 @@ runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download Coverity Build Tool run: | diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxcfs-6.0.4/.github/workflows/tests.yml new/lxcfs-6.0.5/.github/workflows/tests.yml --- old/lxcfs-6.0.4/.github/workflows/tests.yml 2025-04-03 21:37:27.000000000 +0200 +++ new/lxcfs-6.0.5/.github/workflows/tests.yml 2025-08-15 06:47:54.000000000 +0200 @@ -7,8 +7,8 @@ contents: read jobs: - testsuite-hosted: - name: Test suite (x86_64) + testsuite: + name: Test suite strategy: fail-fast: false matrix: @@ -21,49 +21,30 @@ os: - ubuntu-22.04 - ubuntu-24.04 + - ubuntu-22.04-arm + - ubuntu-24.04-arm runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - - name: Run the testsuite - uses: ./.github/actions/testsuite + - name: Build LXCFS + uses: ./.github/actions/build with: compiler: ${{ matrix.compiler }} fuse: ${{ matrix.fuse }} os: ${{ matrix.os }} - testsuite-self-hosted: - name: Test suite (aarch64) - strategy: - fail-fast: false - matrix: - compiler: - - gcc - - clang - fuse: - - fuse - - fuse3 - os: - - ubuntu-22.04 - - ubuntu-24.04 - runs-on: - - self-hosted - - cpu-4 - - mem-4G - - disk-50G - - arch-arm64 - - image-${{ matrix.os }} - steps: - - name: Checkout code - uses: actions/checkout@v4 + - name: Test + env: + CC: ${{ matrix.compiler }} + run: | + echo "::group::Running the testsuite" - - name: Run the testsuite - uses: ./.github/actions/testsuite - with: - compiler: ${{ matrix.compiler }} - fuse: ${{ matrix.fuse }} - os: ${{ matrix.os }} + echo 1 | sudo tee /sys/fs/cgroup/cpuset/cgroup.clone_children || true + sudo -E PATH="${PATH}" LD_LIBRARY_PATH="${LD_LIBRARY_PATH}" build/tests/main.sh + + echo "::endgroup::" upgrade-test: name: Upgrade test @@ -79,7 +60,7 @@ runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build LXCFS uses: ./.github/actions/build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxcfs-6.0.4/meson.build new/lxcfs-6.0.5/meson.build --- old/lxcfs-6.0.4/meson.build 2025-04-03 21:37:27.000000000 +0200 +++ new/lxcfs-6.0.5/meson.build 2025-08-15 06:47:54.000000000 +0200 @@ -4,7 +4,7 @@ project( 'lxcfs', 'c', - version: '6.0.4', + version: '6.0.5', license: 'LGPLv2+', default_options: [ 'b_colorout=always',