Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package deepin-desktop-schemas for 
openSUSE:Factory checked in at 2022-09-01 22:10:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/deepin-desktop-schemas (Old)
 and      /work/SRC/openSUSE:Factory/.deepin-desktop-schemas.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "deepin-desktop-schemas"

Thu Sep  1 22:10:28 2022 rev:7 rq:1000261 version:5.10.11

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/deepin-desktop-schemas/deepin-desktop-schemas.changes
    2022-04-22 21:54:30.678823570 +0200
+++ 
/work/SRC/openSUSE:Factory/.deepin-desktop-schemas.new.2083/deepin-desktop-schemas.changes
  2022-09-01 22:11:27.516291332 +0200
@@ -1,0 +2,7 @@
+Sat Aug 27 12:13:43 UTC 2022 - Hillwood Yang <[email protected]>
+
+- Update version to 5.10.11
+  * Optimize ui
+  * Fix bugs 
+
+-------------------------------------------------------------------
--- 
/work/SRC/openSUSE:Factory/deepin-desktop-schemas/deepin-override-tool.changes  
    2022-04-22 21:54:30.702823598 +0200
+++ 
/work/SRC/openSUSE:Factory/.deepin-desktop-schemas.new.2083/deepin-override-tool.changes
    2022-09-01 22:11:27.632291649 +0200
@@ -1,0 +2,5 @@
+Sat Aug 27 12:14:18 UTC 2022 - Hillwood Yang <[email protected]>
+
+- Update version to 5.10.11. Nothing changes in tool package 
+
+-------------------------------------------------------------------

Old:
----
  deepin-desktop-schemas-5.10.6.tar.gz

New:
----
  deepin-desktop-schemas-5.10.11.tar.gz

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

Other differences:
------------------
++++++ deepin-desktop-schemas.spec ++++++
--- /var/tmp/diff_new_pack.RuRxq0/_old  2022-09-01 22:11:28.204293213 +0200
+++ /var/tmp/diff_new_pack.RuRxq0/_new  2022-09-01 22:11:28.208293224 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           deepin-desktop-schemas
-Version:        5.10.6
+Version:        5.10.11
 Release:        0
 Summary:        GSettings deepin desktop-wide schemas
 License:        GPL-3.0-or-later

++++++ deepin-override-tool.spec ++++++
--- /var/tmp/diff_new_pack.RuRxq0/_old  2022-09-01 22:11:28.232293289 +0200
+++ /var/tmp/diff_new_pack.RuRxq0/_new  2022-09-01 22:11:28.236293300 +0200
@@ -23,7 +23,7 @@
 %define   repo            deepin-desktop-schemas
 
 Name:           deepin-override-tool
-Version:        5.10.6
+Version:        5.10.11
 Release:        0
 Summary:        Deepin override tool
 License:        GPL-3.0-or-later

++++++ deepin-desktop-schemas-5.10.6.tar.gz -> 
deepin-desktop-schemas-5.10.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/.github/workflows/backup-to-gitlab.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/backup-to-gitlab.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/backup-to-gitlab.yml    
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/backup-to-gitlab.yml   
2022-08-12 04:00:08.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-desktop-schemas-5.10.6/.github/workflows/call-build-deb.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-build-deb.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/call-build-deb.yml      
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/call-build-deb.yml     
2022-08-12 04:00:08.000000000 +0200
@@ -0,0 +1,17 @@
+name: Call build-deb
+on:
+  pull_request_target:
+    paths-ignore:
+      - ".github/workflows/**"
+    types: [ opened, closed, synchronize ]
+
+concurrency:
+  group: ${{ github.workflow }}-pull/${{ github.event.number }}
+  cancel-in-progress: true
+
+jobs:
+  check_job:
+    if: github.event.action != 'closed' || github.event.pull_request.merged
+    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-desktop-schemas-5.10.6/.github/workflows/call-build-distribution.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-build-distribution.yml
--- 
old/deepin-desktop-schemas-5.10.6/.github/workflows/call-build-distribution.yml 
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-build-distribution.yml
    2022-08-12 04:00:08.000000000 +0200
@@ -0,0 +1,17 @@
+name: Call build-distribution
+on:
+  push:
+    paths-ignore:
+      - ".github/workflows/**"
+  pull_request_target:
+    paths-ignore:
+      - ".github/workflows/**"
+
+jobs:
+  check_job:
+    uses: linuxdeepin/.github/.github/workflows/build-distribution.yml@master
+    secrets:
+      BUILD_GPG_PRIVATE_KEY: ${{ secrets.BUILD_GPG_PRIVATE_KEY }}
+      BUILD_SSH_PRIVATE_KEY: ${{ secrets.BUILD_SSH_PRIVATE_KEY }}
+      WEBDAV_PASSWD: ${{ secrets.WEBDAV_PASSWD }}
+      WEBDAV_USER: ${{ secrets.WEBDAV_USER }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/.github/workflows/call-chatOps.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-chatOps.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/call-chatOps.yml        
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/call-chatOps.yml       
2022-08-12 04:00:08.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-desktop-schemas-5.10.6/.github/workflows/call-clacheck.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-clacheck.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/call-clacheck.yml       
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/call-clacheck.yml      
2022-08-12 04:00:08.000000000 +0200
@@ -0,0 +1,16 @@
+name: Call CLA check
+on:
+  issue_comment:
+    types: [created]
+  pull_request_target:
+    types: [opened, closed, synchronize]
+
+concurrency:
+  group: ${{ github.workflow }}-pull/${{ github.event.number }}
+  cancel-in-progress: true
+
+jobs:
+  clacheck:
+    uses: linuxdeepin/.github/.github/workflows/cla-check.yml@master
+    secrets:
+      APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/.github/workflows/call-commitlint.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-commitlint.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/call-commitlint.yml     
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/call-commitlint.yml    
2022-08-12 04:00:08.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-desktop-schemas-5.10.6/.github/workflows/call-license-check.yml 
new/deepin-desktop-schemas-5.10.11/.github/workflows/call-license-check.yml
--- old/deepin-desktop-schemas-5.10.6/.github/workflows/call-license-check.yml  
1970-01-01 01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/.github/workflows/call-license-check.yml 
2022-08-12 04:00:08.000000000 +0200
@@ -0,0 +1,16 @@
+name: Call License and README Check
+on:
+  pull_request_target:
+    types: [opened, synchronize]
+
+permissions:
+  pull-requests: write
+  contents: read
+
+concurrency:
+  group: ${{ github.workflow }}-pull/${{ github.event.number }}
+  cancel-in-progress: true
+
+jobs:
+  license-check:
+    uses: linuxdeepin/.github/.github/workflows/license-check.yml@master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/deepin-desktop-schemas-5.10.6/archlinux/PKGBUILD 
new/deepin-desktop-schemas-5.10.11/archlinux/PKGBUILD
--- old/deepin-desktop-schemas-5.10.6/archlinux/PKGBUILD        1970-01-01 
01:00:00.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/archlinux/PKGBUILD       2022-08-12 
04:00:08.000000000 +0200
@@ -0,0 +1,50 @@
+# Maintainer: justforlxz <[email protected]>
+pkgname=deepin-desktop-schemas-git
+pkgver=5.10.2.r8.gd9e09d5
+pkgrel=1
+pkgdesc='GSettings deepin desktop-wide schemas'
+arch=('any')
+url="https://github.com/linuxdeepin/deepin-desktop-schemas";
+license=('GPL3')
+depends=('dconf' 'deepin-gtk-theme-git' 'deepin-icon-theme-git' 
'deepin-sound-theme-git')
+makedepends=('git' 'python' 'go' 'golang-deepin-lib-git')
+conflicts=('deepin-artwork-themes' 'deepin-desktop-schemas')
+provides=('deepin-desktop-schemas')
+groups=('deepin-git')
+source=('source.tar.gz')
+sha512sums=('SKIP')
+
+prepare() {
+ export GOPATH="$srcdir/build:/usr/share/gocode"
+  cd $deepin_source_name
+
+  # fix default background url
+  sed -i 
"s#/usr/share/backgrounds/default_background.jpg#/usr/share/backgrounds/deepin/desktop.jpg#"
 \
+    overrides/common/com.deepin.wrap.gnome.desktop.override 
schemas/com.deepin.dde.appearance.gschema.xml
+  # fix network checker url
+  sed -i "s#'https://www.chinauos.com', 
'https://www.uniontech.com'#'https://www.archlinux.org'#" 
schemas/com.deepin.dde.network-utils.gschema.xml
+}
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}
+"
+  export CGO_CFLAGS="${CFLAGS}
+"
+  export CGO_CXXFLAGS="${CXXFLAGS}
+"
+  export CGO_LDFLAGS="${LDFLAGS}
+"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  cd $deepin_source_name
+  make ARCH=x86
+}
+
+check() {
+  cd $deepin_source_name
+  make test
+}
+
+package() {
+  cd $deepin_source_name
+  make DESTDIR="$pkgdir" install
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.datetime.gschema.xml 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.datetime.gschema.xml
--- 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.datetime.gschema.xml   
    2022-02-22 10:22:16.000000000 +0100
+++ 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.datetime.gschema.xml  
    2022-08-12 04:00:08.000000000 +0200
@@ -27,12 +27,12 @@
             <description>Show Weekday Format</description>
         </key>
         <key type="i" name="short-date-format">
-            <default>0</default>
+            <default>3</default>
             <summary>ShortDate Format</summary>
             <description>Show ShortDate Format</description>
         </key>
         <key type="i" name="long-date-format">
-            <default>0</default>
+            <default>1</default>
             <summary>LongDate Format</summary>
             <description>Show LongDate Format</description>
         </key>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.dock.gschema.xml 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.dock.gschema.xml
--- old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.dock.gschema.xml   
2022-02-22 10:22:16.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.dock.gschema.xml  
2022-08-12 04:00:08.000000000 +0200
@@ -97,7 +97,7 @@
         </key>
 
        <key type="i" name="wireless-scan-interval">
-            <default>5</default>
+            <default>10</default>
             <summary></summary>
             <description>wireless scan interval</description>
         </key>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.keybinding.mediakey.gschema.xml
 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.keybinding.mediakey.gschema.xml
--- 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.dde.keybinding.mediakey.gschema.xml
    2022-02-22 10:22:16.000000000 +0100
+++ 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.dde.keybinding.mediakey.gschema.xml
   2022-08-12 04:00:08.000000000 +0200
@@ -178,10 +178,15 @@
         <!-- ignore XF86LaunchD-->
         <!-- ignore XF86LaunchE-->
         <!-- ignore XF86LaunchF-->
+        <key type="as" name="close">
+            <default>['XF86Close']</default>
+            <summary>Close window</summary>
+            <description>using "close" for x11 to avoid the same key whitch is 
used by wayland</description>
+        </key>
         <key type="as" name="media-close">
             <default>['XF86Close']</default>
             <summary>Close window</summary>
-            <description/>
+            <description>"media-close" is used by wayland</description>
         </key>
         <key type="as" name="copy">
             <default>['XF86Copy']</default>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.xsettings.gschema.xml 
new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.xsettings.gschema.xml
--- old/deepin-desktop-schemas-5.10.6/schemas/com.deepin.xsettings.gschema.xml  
2022-02-22 10:22:16.000000000 +0100
+++ new/deepin-desktop-schemas-5.10.11/schemas/com.deepin.xsettings.gschema.xml 
2022-08-12 04:00:08.000000000 +0200
@@ -403,7 +403,7 @@
         <description></description>
     </key>
     <key type="i" name="dtk-window-radius">
-      <default>18</default>
+      <default>8</default>
       <summary>The window radius last time</summary>
     </key>
     <key type="s" name="primary-monitor-name">

Reply via email to