Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tail-tray for openSUSE:Factory checked in at 2026-05-06 19:18:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tail-tray (Old) and /work/SRC/openSUSE:Factory/.tail-tray.new.30200 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tail-tray" Wed May 6 19:18:31 2026 rev:25 rq:1351098 version:0.2.32 Changes: -------- --- /work/SRC/openSUSE:Factory/tail-tray/tail-tray.changes 2026-04-21 12:44:05.168596361 +0200 +++ /work/SRC/openSUSE:Factory/.tail-tray.new.30200/tail-tray.changes 2026-05-06 19:20:46.300189857 +0200 @@ -1,0 +2,8 @@ +Wed May 06 05:14:32 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 0.2.32: + * Bump version to 0.2.32 to get new Ubuntu LTS builds + * [CI] - Add Ubuntu 26.04 resolute to tagged releases + * [CI] - Add Ubuntu 26.04 dev builds + +------------------------------------------------------------------- Old: ---- tail-tray-0.2.31.obscpio New: ---- tail-tray-0.2.32.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tail-tray.spec ++++++ --- /var/tmp/diff_new_pack.FJUp8z/_old 2026-05-06 19:20:46.932215888 +0200 +++ /var/tmp/diff_new_pack.FJUp8z/_new 2026-05-06 19:20:46.932215888 +0200 @@ -17,7 +17,7 @@ Name: tail-tray -Version: 0.2.31 +Version: 0.2.32 Release: 0 Summary: Tailscale tray menu and UI for the KDE Plasma Desktop License: GPL-3.0-only ++++++ _service ++++++ --- /var/tmp/diff_new_pack.FJUp8z/_old 2026-05-06 19:20:46.984218029 +0200 +++ /var/tmp/diff_new_pack.FJUp8z/_new 2026-05-06 19:20:46.988218195 +0200 @@ -2,8 +2,8 @@ <service name="obs_scm" mode="manual"> <param name="url">https://github.com/SneWs/tail-tray</param> <param name="scm">git</param> - <param name="revision">refs/tags/v0.2.31</param> - <param name="match-tag">v0.2.31</param> + <param name="revision">refs/tags/v0.2.32</param> + <param name="match-tag">v0.2.32</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.FJUp8z/_old 2026-05-06 19:20:47.008219018 +0200 +++ /var/tmp/diff_new_pack.FJUp8z/_new 2026-05-06 19:20:47.016219347 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/SneWs/tail-tray</param> - <param name="changesrevision">47cf07894fe21ddea5ecd84462b161bba4d84667</param></service></servicedata> + <param name="changesrevision">12b54eeb85bc7f69050851f0306652aae3217402</param></service></servicedata> (No newline at EOF) ++++++ tail-tray-0.2.31.obscpio -> tail-tray-0.2.32.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tail-tray-0.2.31/.github/workflows/tagged-releases.yml new/tail-tray-0.2.32/.github/workflows/tagged-releases.yml --- old/tail-tray-0.2.31/.github/workflows/tagged-releases.yml 2026-04-20 00:35:28.000000000 +0200 +++ new/tail-tray-0.2.32/.github/workflows/tagged-releases.yml 2026-05-04 17:13:26.000000000 +0200 @@ -76,18 +76,18 @@ debchange --controlmaint --local="ubuntu-24.04-noble" "New upstream release" buildpackage-opts: --build=binary --no-sign - - name: Package DEB file for Ubuntu 25.10 + - name: Package DEB file for Ubuntu 26.04 uses: jtdor/build-deb-action@v1 env: DEB_BUILD_OPTIONS: noautodbgsym with: artifacts-dir: build - docker-image: ubuntu:25.10 + docker-image: ubuntu:26.04 extra-build-deps: devscripts git libkf6notifications-dev extra-cmake-modules qt6-tools-dev qt6-tools-dev-tools davfs2 buildpackage-opts: --build=binary --no-sign before-build-hook: | git checkout debian/changelog - debchange --controlmaint --local="ubuntu-25.10-plucky" "New upstream release" + debchange --controlmaint --local="ubuntu-26.04-resolute" "New upstream release" cmake -B ${{ steps.strings.outputs.build-output-dir }} \ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tail-tray-0.2.31/.github/workflows/ubuntu-26_04-build.yml new/tail-tray-0.2.32/.github/workflows/ubuntu-26_04-build.yml --- old/tail-tray-0.2.31/.github/workflows/ubuntu-26_04-build.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/tail-tray-0.2.32/.github/workflows/ubuntu-26_04-build.yml 2026-05-04 17:13:26.000000000 +0200 @@ -0,0 +1,71 @@ +name: Build Ubuntu 26.04 - Deb + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "**" ] + +jobs: + build: + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + build_type: [Release] + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Set reusable strings + id: strings + shell: bash + run: | + echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" + + - name: Create structure + shell: bash + run: | + mkdir -p ${{ steps.strings.outputs.build-output-dir }} + echo "Build output directory: ${{ steps.strings.outputs.build-output-dir }}" + + - name: Package DEB file for Ubuntu 26.04 + uses: jtdor/build-deb-action@v1 + env: + DEB_BUILD_OPTIONS: noautodbgsym + with: + artifacts-dir: build + docker-image: ubuntu:26.04 + extra-build-deps: devscripts git libkf6notifications-dev extra-cmake-modules qt6-tools-dev qt6-tools-dev-tools davfs2 + buildpackage-opts: --build=binary --no-sign + before-build-hook: | + apt-get install libkf6notifications-dev + git checkout debian/changelog + cmake -B ${{ steps.strings.outputs.build-output-dir }} \ + -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ + -DKNOTIFICATIONS_ENABLED=ON \ + -S /github/workspace \ + -G "Unix Makefiles" + + debchange --controlmaint --local="ubuntu-26.04-plucky~git$(git rev-parse --short HEAD)" "CI build" + + - name: Upload DEB for PR builds + if: github.event_name == 'pull_request' + uses: actions/upload-artifact@v7 + with: + name: Ubuntu-26.04.deb + path: ${{ steps.strings.outputs.build-output-dir }}/*.deb + overwrite: true + archive: false + + - name: Upload DEB files + if: github.ref == 'refs/heads/master' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + shell: bash + run: | + mv ${{ steps.strings.outputs.build-output-dir }}/*ubuntu-26.04*.deb ${{ steps.strings.outputs.build-output-dir }}/tail-tray-ubuntu-26.04.deb + gh release upload latest ${{ steps.strings.outputs.build-output-dir }}/*.deb --clobber diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tail-tray-0.2.31/CMakeLists.txt new/tail-tray-0.2.32/CMakeLists.txt --- old/tail-tray-0.2.31/CMakeLists.txt 2026-04-20 00:35:28.000000000 +0200 +++ new/tail-tray-0.2.32/CMakeLists.txt 2026-05-04 17:13:26.000000000 +0200 @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(tail-tray VERSION 0.2.31 LANGUAGES CXX) +project(tail-tray VERSION 0.2.32 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tail-tray-0.2.31/debian/changelog new/tail-tray-0.2.32/debian/changelog --- old/tail-tray-0.2.31/debian/changelog 2026-04-20 00:35:28.000000000 +0200 +++ new/tail-tray-0.2.32/debian/changelog 2026-05-04 17:13:26.000000000 +0200 @@ -1,5 +1,5 @@ -tail-tray (0.2.31) UNRELEASED; urgency=medium +tail-tray (0.2.32) UNRELEASED; urgency=medium * New upstream release. - -- Marcus Grenängen <[email protected]> Tue, 10 Feb 2026 07:37:01 +0100 + -- Marcus Grenängen <[email protected]> Tue, 4 May 2026 17:12:08 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tail-tray-0.2.31/src/Version.h new/tail-tray-0.2.32/src/Version.h --- old/tail-tray-0.2.31/src/Version.h 2026-04-20 00:35:28.000000000 +0200 +++ new/tail-tray-0.2.32/src/Version.h 2026-05-04 17:13:26.000000000 +0200 @@ -1,6 +1,6 @@ #pragma once -#define TAIL_TRAY_VERSION "0.2.31" +#define TAIL_TRAY_VERSION "0.2.32" #define TAIL_TRAY_VERSION_MAJOR 0 #define TAIL_TRAY_VERSION_MINOR 2 -#define TAIL_TRAY_VERSION_PATCH 31 +#define TAIL_TRAY_VERSION_PATCH 32 ++++++ tail-tray.obsinfo ++++++ --- /var/tmp/diff_new_pack.FJUp8z/_old 2026-05-06 19:20:47.432236482 +0200 +++ /var/tmp/diff_new_pack.FJUp8z/_new 2026-05-06 19:20:47.436236646 +0200 @@ -1,5 +1,5 @@ name: tail-tray -version: 0.2.31 -mtime: 1776638128 -commit: 47cf07894fe21ddea5ecd84462b161bba4d84667 +version: 0.2.32 +mtime: 1777907606 +commit: 12b54eeb85bc7f69050851f0306652aae3217402
