Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package deepin-calculator for
openSUSE:Factory checked in at 2022-09-01 22:10:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/deepin-calculator (Old)
and /work/SRC/openSUSE:Factory/.deepin-calculator.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "deepin-calculator"
Thu Sep 1 22:10:00 2022 rev:6 rq:999752 version:5.7.21
Changes:
--------
--- /work/SRC/openSUSE:Factory/deepin-calculator/deepin-calculator.changes
2022-04-22 21:54:26.926819295 +0200
+++
/work/SRC/openSUSE:Factory/.deepin-calculator.new.2083/deepin-calculator.changes
2022-09-01 22:10:49.476187304 +0200
@@ -1,0 +2,7 @@
+Sat Jul 2 03:08:04 UTC 2022 - Hillwood Yang <[email protected]>
+
+- Update version to 5.7.21
+ * Fix bugs
+ * Update translations
+
+-------------------------------------------------------------------
@@ -4 +11 @@
-- Update version to 5.10.20
+- Update version to 5.7.20
Old:
----
deepin-calculator-5.7.20.tar.gz
New:
----
deepin-calculator-5.7.21.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ deepin-calculator.spec ++++++
--- /var/tmp/diff_new_pack.FjhmCx/_old 2022-09-01 22:10:49.960188628 +0200
+++ /var/tmp/diff_new_pack.FjhmCx/_new 2022-09-01 22:10:49.964188638 +0200
@@ -16,7 +16,7 @@
#
Name: deepin-calculator
-Version: 5.7.20
+Version: 5.7.21
Release: 0
Summary: The Deepin Calculator Application
License: GPL-3.0-or-later
++++++ deepin-calculator-5.7.20.tar.gz -> deepin-calculator-5.7.21.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/deepin-calculator-5.7.20/.github/workflows/backup-to-gitlab.yml
new/deepin-calculator-5.7.21/.github/workflows/backup-to-gitlab.yml
--- old/deepin-calculator-5.7.20/.github/workflows/backup-to-gitlab.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-calculator-5.7.21/.github/workflows/backup-to-gitlab.yml
2022-04-21 09:02:14.000000000 +0200
@@ -0,0 +1,52 @@
+name: backup to gitlab
+on: [push]
+
+concurrency:
+ group: ${{ github.workflow }}
+ cancel-in-progress: true
+
+jobs:
+ backup-to-gitlab:
+ if: github.repository_owner == 'linuxdeepin'
+ name: backup-to-gitlab
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ repository: "linuxdeepin/jenkins-bridge-client"
+ path: jenkins-bridge-client
+
+ - name: Install Client
+ run: |
+ cd $GITHUB_WORKSPACE/jenkins-bridge-client
+ go build .
+ sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
+ - name: Trigger sync
+ id: generate-runid
+ run: |
+ echo "::set-output name=RUN_ID::$(jenkins-bridge-client -triggerSync
-token '${{ secrets.BRIDGETOKEN }}')"
+ - name: Print log
+ run: |
+ jenkins-bridge-client -printlog -token "${{ secrets.BRIDGETOKEN }}"
-runid "${{ steps.generate-runid.outputs.RUN_ID }}"
+
+ backup-to-gitee:
+ if: github.repository_owner == 'linuxdeepin'
+ runs-on: ubuntu-latest
+ steps:
+ - name: create-repo
+ run: |
+ repo=${{ github.event.repository.name }}
+ homepage="https://github.com/linuxdeepin/${repo}"
+ description="mirror of ${homepage}"
+ # remove '.' prefix
+ repo=${repo#"."}
+ curl -X POST --header 'Content-Type: application/json;charset=UTF-8'
'https://gitee.com/api/v5/enterprises/linuxdeepin/repos' -d '{"private":
1,"access_token":"${{ secrets.GITEE_SYNC_TOKEN
}}","name":"'"$repo"'","description":"'"$description"'","homepage":"'"$homepage"'","has_issues":"false","has_wiki":"false","can_comment":"false"}'
|| true
+ - name: push
+ run: |
+ git clone --bare https://github.com/linuxdeepin/${{
github.event.repository.name }}.git .git
+ repo=${{ github.event.repository.name }}
+ # remove '.' prefix
+ repo=${repo#"."}
+ git remote set-url origin https://myml:${{ secrets.GITEE_SYNC_TOKEN
}}@gitee.com/linuxdeepin/${repo}.git
+ git push -f --all --prune origin
+ git push --tags origin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/deepin-calculator-5.7.20/.github/workflows/call-build-deb.yml
new/deepin-calculator-5.7.21/.github/workflows/call-build-deb.yml
--- old/deepin-calculator-5.7.20/.github/workflows/call-build-deb.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-calculator-5.7.21/.github/workflows/call-build-deb.yml
2022-04-21 09:02:14.000000000 +0200
@@ -0,0 +1,15 @@
+name: Call build-deb
+on:
+ pull_request_target:
+ paths-ignore:
+ - ".github/workflows/**"
+
+concurrency:
+ group: ${{ github.workflow }}-pull/${{ github.event.number }}
+ cancel-in-progress: true
+
+jobs:
+ check_job:
+ uses: linuxdeepin/.github/.github/workflows/build-deb.yml@master
+ secrets:
+ BridgeToken: ${{ secrets.BridgeToken }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/deepin-calculator-5.7.20/.github/workflows/call-chatOps.yml
new/deepin-calculator-5.7.21/.github/workflows/call-chatOps.yml
--- old/deepin-calculator-5.7.20/.github/workflows/call-chatOps.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-calculator-5.7.21/.github/workflows/call-chatOps.yml
2022-04-21 09:02:14.000000000 +0200
@@ -0,0 +1,10 @@
+name: chatOps
+on:
+ issue_comment:
+ types: [created]
+
+jobs:
+ chatopt:
+ uses: linuxdeepin/.github/.github/workflows/chatOps.yml@master
+ secrets:
+ APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/deepin-calculator-5.7.20/.github/workflows/call-commitlint.yml
new/deepin-calculator-5.7.21/.github/workflows/call-commitlint.yml
--- old/deepin-calculator-5.7.20/.github/workflows/call-commitlint.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-calculator-5.7.21/.github/workflows/call-commitlint.yml
2022-04-21 09:02:14.000000000 +0200
@@ -0,0 +1,11 @@
+name: Call commitlint
+on:
+ pull_request_target:
+
+concurrency:
+ group: ${{ github.workflow }}-pull/${{ github.event.number }}
+ cancel-in-progress: true
+
+jobs:
+ check_job:
+ uses: linuxdeepin/.github/.github/workflows/commitlint.yml@master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/deepin-calculator-5.7.20/.github/workflows/cppcheck.yml
new/deepin-calculator-5.7.21/.github/workflows/cppcheck.yml
--- old/deepin-calculator-5.7.20/.github/workflows/cppcheck.yml 1970-01-01
01:00:00.000000000 +0100
+++ new/deepin-calculator-5.7.21/.github/workflows/cppcheck.yml 2022-04-21
09:02:14.000000000 +0200
@@ -0,0 +1,26 @@
+name: cppcheck
+on:
+ pull_request_target:
+ paths-ignore:
+ - ".github/workflows/**"
+
+concurrency:
+ group: ${{ github.workflow }}-pull/${{ github.event.number }}
+ cancel-in-progress: true
+
+jobs:
+ cppchceck:
+ name: cppcheck
+ runs-on: ubuntu-latest
+ steps:
+ - run: export
+ - uses: actions/checkout@v2
+ with:
+ ref: ${{ github.event.pull_request.head.sha }}
+ persist-credentials: false
+ - uses: linuxdeepin/action-cppcheck@main
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ repository: ${{ github.repository }}
+ pull_request_id: ${{ github.event.pull_request.number }}
+ allow_approve: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/deepin-calculator-5.7.20/CMakeLists.txt
new/deepin-calculator-5.7.21/CMakeLists.txt
--- old/deepin-calculator-5.7.20/CMakeLists.txt 2022-03-28 05:28:14.000000000
+0200
+++ new/deepin-calculator-5.7.21/CMakeLists.txt 2022-04-21 09:02:14.000000000
+0200
@@ -131,3 +131,10 @@
#if (NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "loongarch64")
add_subdirectory(tests) #tests???ut??????????????????
#endif ()
+
+
+#?????????????????????
+if(CMAKE_COVERAGE_ARG STREQUAL "CMAKE_COVERAGE_ARG_ON")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -Wall -fprofile-arcs -ftest-coverage")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -fprofile-arcs
-ftest-coverage")
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/deepin-calculator-5.7.20/tests/CMakeLists.txt
new/deepin-calculator-5.7.21/tests/CMakeLists.txt
--- old/deepin-calculator-5.7.20/tests/CMakeLists.txt 2022-03-28
05:28:14.000000000 +0200
+++ new/deepin-calculator-5.7.21/tests/CMakeLists.txt 2022-04-21
09:02:14.000000000 +0200
@@ -175,7 +175,7 @@
add_dependencies(test ${PROJECT_NAME_TEST})
# ????????????gocv?????????????????????
-#set(CMAKE_CXX_FLAGS "-g -fprofile-arcs -ftest-coverage")
+set(CMAKE_CXX_FLAGS "-g -fprofile-arcs -ftest-coverage")
set(CMAKE_SAFETYTEST "${CMAKE_SAFETYTEST_ARG}")
if(CMAKE_SAFETYTEST STREQUAL "")
set(CMAKE_SAFETYTEST "CMAKE_SAFETYTEST_ARG_OFF")
@@ -187,8 +187,3 @@
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fsanitize=undefined,address -O2")
endif()
-#?????????????????????
-if(CMAKE_COVERAGE_ARG STREQUAL "CMAKE_COVERAGE_ARG_ON")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -Wall -fprofile-arcs -ftest-coverage")
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -fprofile-arcs
-ftest-coverage")
-endif()