[arch-commits] Commit in gitlab/trunk (PKGBUILD)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Thursday, May 28, 2020 @ 05:27:59
  Author: anatolik
Revision: 636134

Do not pull boot.rb and application.rb to /etc

Gitlab's boot.rb and application.rb are not really a configuration.
This are application code files. Let's keep it away from /etc.

Modified:
  gitlab/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 04:00:41 UTC (rev 636133)
+++ PKGBUILD2020-05-28 05:27:59 UTC (rev 636134)
@@ -22,8 +22,7 @@
 optdepends=('postgresql: database backend'
 'python-docutils: reStructuredText markup language support'
 'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/gitlab/application.rb"
-"etc/webapps/gitlab/database.yml"
+backup=("etc/webapps/gitlab/database.yml"
 "etc/webapps/gitlab/gitlab.yml"
 "etc/webapps/gitlab/resque.yml"
 "etc/webapps/gitlab/puma.rb"
@@ -144,9 +143,6 @@
   # to log right to /var/log/gitlab
   ln -fs "${_logdir}" "${pkgdir}${_datadir}/log"
 
-  # Fixes https://bugs.archlinux.org/task/59762
-  ln -s "${_datadir}/config/boot.rb" "${pkgdir}"/${_etcdir}/boot.rb
-
   # TODO: workhorse and shell secret files are the application data and should 
be stored under /var/lib/gitlab
   mv "${pkgdir}${_datadir}/.gitlab_workhorse_secret" 
"${pkgdir}${_etcdir}/gitlab_workhorse_secret"
   chmod 660 "${pkgdir}${_etcdir}/gitlab_workhorse_secret"
@@ -155,10 +151,8 @@
 
   ln -fs /etc/webapps/gitlab-shell/secret 
"${pkgdir}${_datadir}/.gitlab_shell_secret"
 
-  sed -i "s|require_relative '../lib|require '${_datadir}/lib|" 
config/application.rb
-
   # Install config files
-  for config_file in application.rb gitlab.yml database.yml puma.rb 
resque.yml; do
+  for config_file in gitlab.yml database.yml puma.rb resque.yml; do
 mv "config/${config_file}" "${pkgdir}${_etcdir}/"
 # TODO: configure rails app to use configs right from /etc
 ln -fs "${_etcdir}/${config_file}" "${pkgdir}${_datadir}/config/"


[arch-commits] Commit in keybase/repos/community-x86_64 (8 files)

2020-05-27 Thread Eli Schwartz via arch-commits
Date: Thursday, May 28, 2020 @ 04:00:41
  Author: eschwartz
Revision: 636133

archrelease: copy trunk to community-x86_64

Added:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
(from rev 636132, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
  keybase/repos/community-x86_64/PKGBUILD
(from rev 636132, keybase/trunk/PKGBUILD)
  keybase/repos/community-x86_64/kbfs.install
(from rev 636132, keybase/trunk/kbfs.install)
  keybase/repos/community-x86_64/keybase-gui
(from rev 636132, keybase/trunk/keybase-gui)
Deleted:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
  keybase/repos/community-x86_64/PKGBUILD
  keybase/repos/community-x86_64/kbfs.install
  keybase/repos/community-x86_64/keybase-gui

+
 0001-Don-t-use-electron-to-build.patch |  134 
 PKGBUILD   |  259 ---
 kbfs.install   |   30 +--
 keybase-gui|   29 ++-
 4 files changed, 235 insertions(+), 217 deletions(-)

Deleted: 0001-Don-t-use-electron-to-build.patch
===
--- 0001-Don-t-use-electron-to-build.patch  2020-05-28 03:59:49 UTC (rev 
636132)
+++ 0001-Don-t-use-electron-to-build.patch  2020-05-28 04:00:41 UTC (rev 
636133)
@@ -1,67 +0,0 @@
-From 7b4316eda537174fb8726d02c64584fa9d2b5650 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 21 Jun 2018 05:00:37 -0400
-Subject: [PATCH] Don't use electron to build
-

- shared/desktop/package.desktop.tsx   | 4 ++--
- shared/desktop/yarn-helper/index.tsx | 2 --
- shared/package.json  | 1 -
- 3 files changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
-index b10bb10295..f4b5fc3e6a 100644
 a/shared/desktop/package.desktop.tsx
-+++ b/shared/desktop/package.desktop.tsx
-@@ -133,7 +133,7 @@ function main() {
-   // use the same version as the currently-installed electron
-   console.log('Finding electron version')
-   try {
--packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
-+packagerOpts.electronVersion = 'unused string'
- console.log('Found electron version:', packagerOpts.electronVersion)
-   } catch (err) {
- console.log("Couldn't parse yarn list to find electron:", err)
-@@ -181,7 +181,7 @@ function startPack() {
- .catch(postPackError)
- })
-   })
--} else {
-+} else if (false) {
-   pack(platform, arch)
- .then(postPack(platform, arch))
- .catch(postPackError)
-diff --git a/shared/desktop/yarn-helper/index.tsx 
b/shared/desktop/yarn-helper/index.tsx
-index b80018f9f9..30f26606b4 100644
 a/shared/desktop/yarn-helper/index.tsx
-+++ b/shared/desktop/yarn-helper/index.tsx
-@@ -1,6 +1,5 @@
- // Helper for cross platform yarn run script commands
- import buildCommands from './build'
--import electronComands from './electron'
- import fontCommands from './font'
- import prettierCommands from './prettier'
- import {execSync} from 'child_process'
-@@ -14,7 +13,6 @@ const [, , command, ...rest] = process.argv
- const commands = {
-   ...buildCommands,
-   ...fontCommands,
--  ...electronComands,
-   ...prettierCommands,
-   help: {
- code: () => {
-diff --git a/shared/package.json b/shared/package.json
-index 373f43440e..14deb7fd99 100644
 a/shared/package.json
-+++ b/shared/package.json
-@@ -201,7 +201,6 @@
- "cross-env": "5.2.0",
- "css-loader": "3.2.0",
- "del": "3.0.0",
--"electron": "8.0.2",
- "electron-packager": "14.0.6",
- "eslint": "6.4.0",
- "eslint-plugin-filenames": "1.3.2",
--- 
-2.25.1
-

Copied: keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch 
(from rev 636132, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
===
--- 0001-Don-t-use-electron-to-build.patch  (rev 0)
+++ 0001-Don-t-use-electron-to-build.patch  2020-05-28 04:00:41 UTC (rev 
636133)
@@ -0,0 +1,67 @@
+From 7b4316eda537174fb8726d02c64584fa9d2b5650 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 21 Jun 2018 05:00:37 -0400
+Subject: [PATCH] Don't use electron to build
+
+---
+ shared/desktop/package.desktop.tsx   | 4 ++--
+ shared/desktop/yarn-helper/index.tsx | 2 --
+ shared/package.json  | 1 -
+ 3 files changed, 2 insertions(+), 5 deletions(-)
+
+diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
+index b10bb10295..f4b5fc3e6a 100644
+--- a/shared/desktop/package.desktop.tsx
 b/shared/desktop/package.desktop.tsx
+@@ -133,7 +133,7 @@ function main() {
+   // use the same version as the currently-installed electron
+   console.log('Finding electron version')
+   try {
+-

[arch-commits] Commit in keybase/trunk (PKGBUILD keybase-gui)

2020-05-27 Thread Eli Schwartz via arch-commits
Date: Thursday, May 28, 2020 @ 03:59:49
  Author: eschwartz
Revision: 636132

upgpkg: keybase 5.5.1-1: upstream release

adapt to deprecation of go-pie
make use of new `keybase version` option to check for needed service restarts

Modified:
  keybase/trunk/PKGBUILD
  keybase/trunk/keybase-gui

-+
 PKGBUILD|   25 ++---
 keybase-gui |9 -
 2 files changed, 26 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:31:54 UTC (rev 636131)
+++ PKGBUILD2020-05-28 03:59:49 UTC (rev 636132)
@@ -5,23 +5,23 @@
 pkgbase=keybase
 pkgname=('keybase' 'kbfs' 'keybase-gui')
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=5.4.2
+pkgver=5.5.1
 pkgrel=1
 arch=('x86_64')
 url='https://keybase.io/'
 license=('BSD')
 # git is needed for yarn...
-makedepends=('git' 'go-pie' 'yarn')
+makedepends=('git' 'go' 'yarn')
 
source=("https://github.com/keybase/client/releases/download/v${pkgver}/${pkgbase}-v${pkgver}.tar.xz"{,.sig}
 "keybase-gui"
 "0001-Don-t-use-electron-to-build.patch")
-sha512sums=('81c90a924dd27eeb0f9f264e729a0d047f9057949eebb42aec85f97fbb34627e07e23a3737fb419041de891126ccba2f0de55e5a37994ab96c46a7120ca25c21'
+sha512sums=('c203788c672168f506290ed02cee09e825103de047c02ce35515e7f509b2ca3a1e1bb1d2c895c8bfe484b9d0f175136cb4949a03f9d472181be8c33b388e7260'
 'SKIP'
-
'd672bdd308b2ab6f7b1248300f85f11b480e08149e1e4da5e01dac6c551b44dbfceb5c89d0fd17ce7a64c8b83cd4c7df14e24c31c2f37ae532abbb9099320290'
+
'dc52d7c3d5798d9b83a4e42ba70a071b1cd5cb95c8b695a4b7a33d85744762ae644feef58cf4d582c8d8c169be68d57f392c33ff0796490e88f01f09b4c207d2'
 
'1485e41432218b88aff71bbe68d265baad18c8b91b3d51cacdb4ac9b09abfb6cde91b9b87cb861cffeff92830159552307a89462c8697bb066416bd897e7b68b')
-b2sums=('f3d9850c0dcc70e4111d131561df6f89188da261f0cb0ca78f36d9a3277c61c001e2ddcf73f25c44fcdb866a0060a6f8f4325b2fd5dd5fcc0dc4202194ea5f8f'
+b2sums=('b98738e47c300ba34de9b32ea97551607d6a311969d2b33dc5917dc11013b5e8666260bdbd90d969d92f1883f576dcf1bcb6d9b2a5c5e2983728040a3cda2f3a'
 'SKIP'
-
'db6d63df77aa73c230128b5c6cd278215e0dfac2b42db861127571a6c867d8a305c18a5ea12a616669c77bd072ab8b26aa52379cbd8167c34bc043bfdcefec1d'
+
'ac27d14a9625a3bca6a4ac87adbe5bb2f0aee0c4a88bf39ac8b3d235801743b2e40e6cd7db26089398f016a25046a674f521b890ddf73c3c6637d0d6bf6e1397'
 
'164dd6f37fe38d3c840b2b92d41553e0be67985d7c8471833a9ff381c05b0c35f295bfc630aa3ce6e31afb70b805d071e8c0a438a504064d24f99720c1571b9a')
 validpgpkeys=('222B85B0F90BE2D24CFEB93F47484E50656D16C7') # Keybase.io Code 
Signing (v1) 
 
@@ -45,8 +45,19 @@
 build() {
 cd client-v${pkgver}/go/keybase
 
+# None of this should be necessary, but we duplicate the work of
+# makepkg.conf here since golang CGO can't be bothered to respect
+# standardized CFLAGS and we don't have native packaging integration for
+# either this or the go-specific flags. Must be done here to make sure
+# we're using debug or !buildflags.
+
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
 export GOPATH="${srcdir}/.gopath"
-# go build -a -tags production -gccgoflags "$CFLAGS $LDFLAGS" 
github.com/keybase/client/go/keybase
 go build -a -tags production -o ../bin/keybase 
github.com/keybase/client/go/keybase
 go build -a -tags production -o ../bin/kbnm 
github.com/keybase/client/go/kbnm
 go build -a -tags production -o ../bin/kbfsfuse 
github.com/keybase/client/go/kbfs/kbfsfuse

Modified: keybase-gui
===
--- keybase-gui 2020-05-28 00:31:54 UTC (rev 636131)
+++ keybase-gui 2020-05-28 03:59:49 UTC (rev 636132)
@@ -1,8 +1,15 @@
 #!/bin/sh
 
 keybase ctl init
-systemctl start --user keybase kbfs
 
+if ! keybase version --assert-matching >/dev/null 2>&1; then
+echo "restarting outdated services..."
+systemctl --user daemon-reload
+systemctl --user restart keybase kbfs
+else
+systemctl --user start keybase kbfs
+fi
+
 if [ $# -gt 0 ] || systemctl --user is-active --quiet keybase.gui; then
 exec electron /usr/share/keybase-app "$@"
 else


[arch-commits] Commit in acpi_call/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:44
  Author: heftig
Revision: 636128

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 636121, acpi_call/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 636121, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:44 UTC (rev 636128)
@@ -0,0 +1,33 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=322
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

[arch-commits] Commit in netfilter-fullconenat/repos (4 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:36
  Author: heftig
Revision: 636126

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/Kbuild
(from rev 636120, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 636120, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 636120, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

+
 Kbuild |1 +
 PKGBUILD   |   40 
 netfilter-fullconenat.conf |1 +
 3 files changed, 42 insertions(+)

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
636120, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-05-28 00:31:36 UTC (rev 636126)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
636120, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:36 UTC (rev 636126)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=22
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+source=("netfilter-fullconenat.conf" Kbuild
+
"${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat.git;)
+sha256sums=('a17dfdf1fd046219daeacc60065e3a81c80c2eb2cfdf6d8068278c509577f571'
+'7ff12ad066a68c65f23fc7e01654ca459ce3458172e3dce30f42553fa44dd7c2'
+'SKIP')
+
+pkgver() {
+  cd "$srcdir/${pkgname}"
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+build() {
+  cd $pkgname
+  ln -s ../Kbuild
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  # Install modules-load.conf
+  install -Dm644 netfilter-fullconenat.conf 
"${pkgdir}/usr/lib/modules-load.d/netfilter-fullconenat.conf"
+
+  install -Dt 
"${pkgdir}/usr/lib/modules/$(

[arch-commits] Commit in linux-lts/repos (5 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:57
  Author: heftig
Revision: 387746

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 387742, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 387742, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 387742, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 387742, linux-lts/trunk/sphinx-workaround.patch)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  132 
 PKGBUILD|  195 
 config  |10596 
++
 sphinx-workaround.patch |   15 
 4 files changed, 10938 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 387745:387746 to see the changes.


[arch-commits] Commit in broadcom-wl/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:54
  Author: heftig
Revision: 636131

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl/repos/community-testing-x86_64/
  broadcom-wl/repos/community-testing-x86_64/PKGBUILD
(from rev 636125, broadcom-wl/trunk/PKGBUILD)

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 636125, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:54 UTC (rev 636131)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=203
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

[arch-commits] Commit in tp_smapi/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:51
  Author: heftig
Revision: 636130

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 636123, tp_smapi/trunk/PKGBUILD)

--+
 PKGBUILD |   50 ++
 1 file changed, 50 insertions(+)

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 636123, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:51 UTC (rev 636130)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=210
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

[arch-commits] Commit in ndiswrapper-arch/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:46
  Author: heftig
Revision: 636117

1.62-62: linux 5.6.15.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:39 UTC (rev 636116)
+++ PKGBUILD2020-05-28 00:30:46 UTC (rev 636117)
@@ -3,7 +3,7 @@
 
 pkgname=ndiswrapper-arch
 pkgver=1.62
-pkgrel=61
+pkgrel=62
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


[arch-commits] Commit in linux-zen/repos (4 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:55
  Author: heftig
Revision: 387745

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 387742, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 387742, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/sphinx-workaround.patch
(from rev 387742, linux-zen/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  195 
 config  |10792 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11000 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 387744:387745 to see the changes.


[arch-commits] Commit in vhba-module/repos (4 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:47
  Author: heftig
Revision: 636129

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 636124, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 636124, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 636125, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   53 +
 dkms.conf |9 +
 3 files changed, 63 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
636124, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-05-28 00:31:47 UTC (rev 
636129)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 636124, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:47 UTC (rev 636129)
@@ -0,0 +1,53 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=46
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('59a3208a7b8fcf1bb03bd4d352ec89d06a8b6b84db325e31b0863b209dde3483'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

[arch-commits] Commit in nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:51
  Author: heftig
Revision: 387744

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 387742, nvidia/trunk/PKGBUILD)

--+
 PKGBUILD |   40 
 1 file changed, 40 insertions(+)

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 387742, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-28 00:31:51 UTC (rev 387744)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=440.82
+pkgrel=18
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in r8168-lts/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:30
  Author: heftig
Revision: 636124

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168-lts/repos/community-testing-x86_64/
  r8168-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, r8168-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 636118, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:30 UTC (rev 636124)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.02
+pkgrel=18
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz)
+sha256sums=('0f209762fa37b90c6ba347a815fd083c9d342e38dbec14273059a419e671df70')
+
+build() {
+   cd "r8168-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux-lts M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

[arch-commits] Commit in linux/repos (4 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:48
  Author: heftig
Revision: 387743

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 387742, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 387742, linux/trunk/config)
  linux/repos/testing-x86_64/sphinx-workaround.patch
(from rev 387742, linux/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  196 
 config  |10762 ++
 sphinx-workaround.patch |   13 
 3 files changed, 10971 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 387742:387743 to see the changes.


[arch-commits] Commit in acpi_call-lts/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:41
  Author: heftig
Revision: 636127

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call-lts/repos/community-testing-x86_64/
  acpi_call-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 636119, acpi_call-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 636119, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:41 UTC (rev 636127)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=150
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers')
+provides=('acpi_call')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-$pkgver
+  make KVERSION="$(

[arch-commits] Commit in wireguard-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:29
  Author: heftig
Revision: 387741

archrelease: copy trunk to testing-x86_64

Added:
  wireguard-lts/repos/testing-x86_64/
  wireguard-lts/repos/testing-x86_64/PKGBUILD
(from rev 387740, wireguard-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 387740, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-28 00:31:29 UTC (rev 387741)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200520
+pkgrel=3
+pkgdesc='Wireguard module for LTS Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "wireguard-dkms=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+build() {
+_kernver="$(

[arch-commits] Commit in virtualbox-host-modules-arch/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:17
  Author: heftig
Revision: 636119

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox-host-modules-arch/repos/community-testing-x86_64/
  virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, virtualbox-host-modules-arch/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 636118, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:17 UTC (rev 636119)
@@ -0,0 +1,38 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.8
+pkgrel=3
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

[arch-commits] Commit in r8168/repos (3 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:28
  Author: heftig
Revision: 636123

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 636118, r8168/trunk/0001-linux-5.6.patch)
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, r8168/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   71 +
 PKGBUILD |   44 ++
 2 files changed, 115 insertions(+)

Copied: r8168/repos/community-testing-x86_64/0001-linux-5.6.patch (from rev 
636118, r8168/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-05-28 00:31:28 UTC 
(rev 636123)
@@ -0,0 +1,71 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 0df6041..557823e 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -456,7 +456,11 @@ static void rtl8168_hw_config(struct net_device *dev);
+ static void rtl8168_hw_start(struct net_device *dev);
+ static int rtl8168_close(struct net_device *dev);
+ static void rtl8168_set_rx_mode(struct net_device *dev);
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0) 
++static void rtl8168_tx_timeout(struct net_device *dev, unsigned int new_mtu);
++#else
+ static void rtl8168_tx_timeout(struct net_device *dev);
++#endif
+ static struct net_device_stats *rtl8168_get_stats(struct net_device *dev);
+ static int rtl8168_rx_interrupt(struct net_device *, struct rtl8168_private 
*, napi_budget);
+ static int rtl8168_change_mtu(struct net_device *dev, int new_mtu);
+@@ -1615,7 +1619,14 @@ static int rtl8168_proc_open(struct inode *inode, 
struct file *file)
+ 
+ return single_open(file, show, dev);
+ }
+-
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++static const struct proc_ops rtl8168_proc_ops = {
++.proc_open   = rtl8168_proc_open,
++.proc_read   = seq_read,
++.proc_lseek  = seq_lseek,
++.proc_release= single_release,
++};
++#else
+ static const struct file_operations rtl8168_proc_fops = {
+ .open   = rtl8168_proc_open,
+ .read   = seq_read,
+@@ -1623,6 +1634,7 @@ static const struct file_operations rtl8168_proc_fops = {
+ .release= single_release,
+ };
+ #endif
++#endif
+ 
+ /*
+  * Table of proc files we need to create.
+@@ -1665,9 +1677,15 @@ static void rtl8168_proc_init(struct net_device *dev)
+ tp->proc_dir = dir;
+ proc_init_num++;
+ 
+-for (f = rtl8168_proc_files; f->name[0]; f++) {
+-if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
+-  _proc_fops, f->show)) {
++ for (f = rtl8168_proc_files; f->name[0]; f++) {
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++ if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
++  _proc_ops, f->show)) 
++#else
++ if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
++  _proc_fops, f->show))
++#endif
++ {
+ printk("Unable to initialize "
+"/proc/net/%s/%s/%s\n",
+MODULENAME, dev->name, f->name);
+@@ -27844,7 +27861,11 @@ static void rtl8168_reset_task(struct work_struct 
*work)
+ }
+ 
+ static void
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++rtl8168_tx_timeout(struct net_device *dev, unsigned int txqueue)
++#else
+ rtl8168_tx_timeout(struct net_device *dev)
++#endif
+ {
+ struct rtl8168_private *tp = netdev_priv(dev);
+ unsigned long flags;

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 636118, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:28 UTC (rev 636123)
@@ -0,0 +1,44 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.02
+pkgrel=17
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+0001-linux-5.6.patch)
+sha256sums=('0f209762fa37b90c6ba347a815fd083c9d342e38dbec14273059a419e671df70'
+'7d0c468036a6acd83d056d6c243b3ace8be34bf3d633aa24bf54b9c3595f8a0d')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 < ../0001-linux-5.6.patch
+}
+

[arch-commits] Commit in nvidia-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:36
  Author: heftig
Revision: 387742

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 387741, nvidia-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 387741, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-28 00:31:36 UTC (rev 387742)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=440.82
+pkgrel=18
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in ndiswrapper-arch/repos (6 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:32
  Author: heftig
Revision: 636125

archrelease: copy trunk to community-testing-x86_64

Added:
  ndiswrapper-arch/repos/community-testing-x86_64/
  ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.3.patch
(from rev 636118, ndiswrapper-arch/trunk/kernel-5.3.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 636118, ndiswrapper-arch/trunk/kernel-5.4.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.5.patch
(from rev 636118, ndiswrapper-arch/trunk/kernel-5.5.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.6.patch
(from rev 636118, ndiswrapper-arch/trunk/kernel-5.6.patch)

--+
 PKGBUILD |   44 +++
 kernel-5.3.patch |   69 +++
 kernel-5.4.patch |   22 +
 kernel-5.5.patch |   72 
 kernel-5.6.patch |   85 +
 5 files changed, 292 insertions(+)

Copied: ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
636118, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:32 UTC (rev 636125)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.62
+pkgrel=62
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("https://sourceforge.net/projects/ndiswrapper/files/stable/ndiswrapper-$pkgver.tar.gz;
+'kernel-5.3.patch' 'kernel-5.4.patch' 'kernel-5.5.patch' 
'kernel-5.6.patch')
+sha512sums=('a6e111bc699572642e44d6d31cc2f06374648a01b8dd7dd4e74d6ad5e187e39f99faee38f792c83a94d4618ae4d8866914fb3f60b1d80e838a753285ea7cf783'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d'
+
'36450042db79ed4545030276bff9db1bc9895259f38c1c0bf4dc238ad76ec61c2e08d437997dafd327f2a8fd1694d61e418941555e92144e3ec86c8066561429'
+
'ed543cbfb236de0a20e1f164c22c83cd19aec416b5f50a58cee731857231c667d166c36814047174bddda36261af71e92ecdb2944e5b818a603085af279fbd89'
+
'f37efd16a32c4a36607d43ccda0979a914521157e2095db4c331315638f24d440d8628ea7e98c96f92155e1df133478f0ce9eb76152e963eca4a3fecafbca155')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p2 -i "$srcdir"/kernel-5.3.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.4.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.5.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.6.patch
+}
+
+build() {
+  _kernver="$(task = NULL;
+   info->count = 0;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_setall(>cpus_allowed);
++#else
++  cpumask_setall(>cpus_mask);
++#endif
+ #endif
+   }
+   } while (0);
+diff --git a/ndiswrapper/driver/ntoskernel.h b/ndiswrapper/driver/ntoskernel.h
+index 3c4c6ff..8a71ae3 100644
+--- a/ndiswrapper/driver/ntoskernel.h
 b/ndiswrapper/driver/ntoskernel.h
+@@ -107,7 +107,11 @@ static cpumask_t cpumasks[NR_CPUS];
+ #endif /* CONFIG_SMP */
+ 
+ #ifndef tsk_cpus_allowed
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+ #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
++#else
++#define tsk_cpus_allowed(tsk) (&(tsk)->cpus_mask)
++#endif
+ #endif
+ 
+ #ifndef __packed
+@@ -631,7 +635,12 @@ struct irql_info {
+   int count;
+   struct mutex lock;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_t cpus_allowed;
++#else
++  const cpumask_t *cpus_ptr;
++  cpumask_t   cpus_mask;
++#endif
+ #endif
+   struct task_struct *task;
+ };
+@@ -658,7 +667,11 @@ static inline KIRQL raise_irql(KIRQL newirql)
+   /* TODO: is this enough to pin down to current cpu? */
+ #ifdef CONFIG_SMP
+   assert(task_cpu(current) == smp_processor_id());
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_copy(>cpus_allowed, tsk_cpus_allowed(current));
++#else
++  cpumask_copy(>cpus_mask, tsk_cpus_allowed(current));
++#endif
+   set_cpus_allowed_ptr(current, cpumask_of(smp_processor_id()));
+ #endif
+   put_cpu_var(irql_info);
+@@ -682,7 +695,11 @@ static inline void lower_irql(KIRQL oldirql)
+   if (--info->count == 0) {
+   info->task = NULL;
+ #ifdef CONFIG_SMP
++#if 

[arch-commits] Commit in deepin-anything-arch/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:48
  Author: heftig
Revision: 636118

5.0.1-83: linux 5.6.15.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:46 UTC (rev 636117)
+++ PKGBUILD2020-05-28 00:30:48 UTC (rev 636118)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=82
+pkgrel=83
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


[arch-commits] Commit in tp_smapi-lts/repos (2 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:19
  Author: heftig
Revision: 636120

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi-lts/repos/community-testing-x86_64/
  tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, tp_smapi-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   50 ++
 1 file changed, 50 insertions(+)

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 636118, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:19 UTC (rev 636120)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+pkgver=0.43
+pkgrel=69
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-lts-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tp_smapi
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd tp_smapi
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

[arch-commits] Commit in deepin-anything-arch/repos (3 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:21
  Author: heftig
Revision: 636121

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 636118, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, deepin-anything-arch/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   40 
 PKGBUILD |   35 +++
 2 files changed, 75 insertions(+)

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 636118, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-05-28 00:31:21 UTC 
(rev 636121)
@@ -0,0 +1,40 @@
+diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
+index 6a0e334..e25faf4 100644
+--- a/kernelmod/vfs_change.c
 b/kernelmod/vfs_change.c
+@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, 
char* buf, size_t size)
+   ))
+   continue;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+   time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#else
++  time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#endif
+   struct tm ts;
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
+   time_to_tm(shifted_secs, 0, );
+@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned 
int cmd, unsigned long
+   }
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+ static struct file_operations procfs_ops = {
+   .owner = THIS_MODULE,
+   .open = open_vfs_changes,
+@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
+   //.llseek = generic_file_llseek,
+   .release = release_vfs_changes,
+ };
++#else
++static struct proc_ops procfs_ops = {
++  .proc_open = open_vfs_changes,
++  .proc_read = read_vfs_changes,
++  .proc_ioctl = ioctl_vfs_changes,
++  .proc_lseek = no_llseek,
++  .proc_release = release_vfs_changes,
++};
++#endif
+ 
+ int __init init_vfs_changes(void)
+ {

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
636118, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:21 UTC (rev 636121)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=83
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;
+'0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+
'5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  patch -Np1 < ../0001-linux-5.6.patch
+}
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

[arch-commits] Commit in bbswitch/repos (3 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:31:24
  Author: heftig
Revision: 636122

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 636118, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 636118, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 PKGBUILD   |   45 +++
 2 files changed, 81 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 636118, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2020-05-28 00:31:24 UTC 
(rev 636122)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = _pm_handler

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 636118, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-28 00:31:24 UTC (rev 636122)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=323
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+"0001-proc_ops-struct.patch")
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1')
+
+prepare() {
+cd ${pkgbase}-${pkgver}
+patch -Np1 < $srcdir/0001-proc_ops-struct.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

[arch-commits] Commit in nvidia/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:43
  Author: heftig
Revision: 387740

440.82-18: linux 5.6.15.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:29:18 UTC (rev 387739)
+++ PKGBUILD2020-05-28 00:30:43 UTC (rev 387740)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=440.82
-pkgrel=17
+pkgrel=18
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


[arch-commits] Commit in vhba-module/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:37
  Author: heftig
Revision: 636115

20200106-46: linux 5.6.15.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:34 UTC (rev 636114)
+++ PKGBUILD2020-05-28 00:30:37 UTC (rev 636115)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=45
+pkgrel=46
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


[arch-commits] Commit in r8168/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:34
  Author: heftig
Revision: 636114

8.048.02-17: linux 5.6.15.arch1-1

Modified:
  r8168/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:32 UTC (rev 636113)
+++ PKGBUILD2020-05-28 00:30:34 UTC (rev 636114)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.02
-pkgrel=16
+pkgrel=17
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in acpi_call/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:39
  Author: heftig
Revision: 636116

1.1.0-322: linux 5.6.15.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:37 UTC (rev 636115)
+++ PKGBUILD2020-05-28 00:30:39 UTC (rev 636116)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=321
+pkgrel=322
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


[arch-commits] Commit in bbswitch/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:32
  Author: heftig
Revision: 636113

0.8-323: linux 5.6.15.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:30 UTC (rev 636112)
+++ PKGBUILD2020-05-28 00:30:32 UTC (rev 636113)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=322
+pkgrel=323
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


[arch-commits] Commit in tp_smapi/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:28
  Author: heftig
Revision: 636111

0.43-210: linux 5.6.15.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:26 UTC (rev 636110)
+++ PKGBUILD2020-05-28 00:30:28 UTC (rev 636111)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=209
+pkgrel=210
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


[arch-commits] Commit in broadcom-wl/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:30
  Author: heftig
Revision: 636112

6.30.223.271-203: linux 5.6.15.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:28 UTC (rev 636111)
+++ PKGBUILD2020-05-28 00:30:30 UTC (rev 636112)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=202
+pkgrel=203
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:26
  Author: heftig
Revision: 636110

6.1.8-3: linux 5.6.15.arch1-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:30:25 UTC (rev 636109)
+++ PKGBUILD2020-05-28 00:30:26 UTC (rev 636110)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.8
-pkgrel=2
+pkgrel=3
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'


[arch-commits] Commit in netfilter-fullconenat/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:30:25
  Author: heftig
Revision: 636109

r73.0cf3b48-22: linux 5.6.15.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:32 UTC (rev 636108)
+++ PKGBUILD2020-05-28 00:30:25 UTC (rev 636109)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=21
+pkgrel=22
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;


[arch-commits] Commit in linux/trunk (PKGBUILD config)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:29:18
  Author: heftig
Revision: 387739

5.6.15.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 ++--
 config   |8 
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:34 UTC (rev 387738)
+++ PKGBUILD2020-05-28 00:29:18 UTC (rev 387739)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.6.14.arch1
+pkgver=5.6.15.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'f392c9ecbb5177ea2573aaf22935322940ea2be0366f3fb9c9f861431f4aed21'
+'2a157fdbf3a6396e985db9ae5d11870a786717dca31de78cad09c06eb28761ff'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-05-28 00:24:34 UTC (rev 387738)
+++ config  2020-05-28 00:29:18 UTC (rev 387739)
@@ -1,18 +1,17 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.6.8-arch1 Kernel Configuration
+# Linux/x86 5.6.15-arch1 Kernel Configuration
 #
 
 #
-# Compiler: gcc (Arch Linux 9.3.0-1) 9.3.0
+# Compiler: gcc (GCC) 10.1.0
 #
 CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=90300
+CONFIG_GCC_VERSION=100100
 CONFIG_CLANG_VERSION=0
 CONFIG_CC_CAN_LINK=y
 CONFIG_CC_HAS_ASM_GOTO=y
 CONFIG_CC_HAS_ASM_INLINE=y
-CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_TABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -968,6 +967,7 @@
 CONFIG_QUEUED_SPINLOCKS=y
 CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
 CONFIG_QUEUED_RWLOCKS=y
+CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
 CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
 CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
 CONFIG_FREEZER=y


[arch-commits] Commit in acpi_call-lts/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:31
  Author: heftig
Revision: 636107

1.1.0-150: linux-lts 5.4.43-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:29 UTC (rev 636106)
+++ PKGBUILD2020-05-28 00:24:31 UTC (rev 636107)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=149
+pkgrel=150
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


[arch-commits] Commit in r8168-lts/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:32
  Author: heftig
Revision: 636108

8.048.02-18: linux-lts 5.4.43-1

Modified:
  r8168-lts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:31 UTC (rev 636107)
+++ PKGBUILD2020-05-28 00:24:32 UTC (rev 636108)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.02
-pkgrel=17
+pkgrel=18
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in wireguard-lts/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:34
  Author: heftig
Revision: 387738

1.0.20200520-3: linux-lts 5.4.43-1

Modified:
  wireguard-lts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:26 UTC (rev 387737)
+++ PKGBUILD2020-05-28 00:24:34 UTC (rev 387738)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200520
-pkgrel=2
+pkgrel=3
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


[arch-commits] Commit in tp_smapi-lts/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:29
  Author: heftig
Revision: 636106

0.43-69: linux-lts 5.4.43-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 23:43:14 UTC (rev 636105)
+++ PKGBUILD2020-05-28 00:24:29 UTC (rev 636106)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=68
+pkgrel=69
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


[arch-commits] Commit in nvidia-lts/trunk (PKGBUILD)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:26
  Author: heftig
Revision: 387737

440.82-18: linux-lts 5.4.43-1

Modified:
  nvidia-lts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:24:01 UTC (rev 387736)
+++ PKGBUILD2020-05-28 00:24:26 UTC (rev 387737)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=440.82
-pkgrel=17
+pkgrel=18
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')


[arch-commits] Commit in linux-lts/trunk (3 files)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:24:01
  Author: heftig
Revision: 387736

5.4.43-1

Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/config
Deleted:
  linux-lts/trunk/0002-gcc-common.h-Update-for-GCC-10.patch

---+
 0002-gcc-common.h-Update-for-GCC-10.patch |   92 
 PKGBUILD  |8 --
 config|7 --
 3 files changed, 6 insertions(+), 101 deletions(-)

Deleted: 0002-gcc-common.h-Update-for-GCC-10.patch
===
--- 0002-gcc-common.h-Update-for-GCC-10.patch   2020-05-28 00:23:48 UTC (rev 
387735)
+++ 0002-gcc-common.h-Update-for-GCC-10.patch   2020-05-28 00:24:01 UTC (rev 
387736)
@@ -1,92 +0,0 @@
-From 3651deb9b0421f9f3f88d95c9be02b15517927cf Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Pierret=20=28fepitre=29?=
- 
-Date: Tue, 7 Apr 2020 13:32:59 +0200
-Subject: [PATCH] gcc-common.h: Update for GCC 10
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Remove "params.h" include, which has been dropped in GCC 10.
-
-Remove is_a_helper() macro, which is now defined in gimple.h, as seen
-when running './scripts/gcc-plugin.sh g++ g++ gcc':
-
-In file included from :1:
-./gcc-plugins/gcc-common.h:852:13: error: redefinition of ‘static bool 
is_a_helper::test(U*) [with U = const gimple; T = const ggoto*]’
-  852 | inline bool is_a_helper::test(const_gimple gs)
-  | ^~
-In file included from ./gcc-plugins/gcc-common.h:125,
- from :1:
-/usr/lib/gcc/x86_64-redhat-linux/10/plugin/include/gimple.h:1037:1: note: 
‘static bool is_a_helper::test(U*) [with U = const gimple; T = const 
ggoto*]’ previously declared here
- 1037 | is_a_helper ::test (const gimple *gs)
-  | ^~~
-
-Add -Wno-format-diag to scripts/gcc-plugins/Makefile to avoid
-meaningless warnings from error() formats used by plugins:
-
-scripts/gcc-plugins/structleak_plugin.c: In function ‘int 
plugin_init(plugin_name_args*, plugin_gcc_version*)’:
-scripts/gcc-plugins/structleak_plugin.c:253:12: warning: unquoted sequence of 
2 consecutive punctuation characters ‘'-’ in format [-Wformat-diag]
-  253 |   error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, 
argv[i].key);
-  |^
-
-Signed-off-by: Frédéric Pierret (fepitre) 
-Link: 
https://lore.kernel.org/r/20200407113259.270172-1-frederic.pier...@qubes-os.org
-[kees: include -Wno-format-diag for plugin builds]
-Signed-off-by: Kees Cook 

- scripts/gcc-plugins/Makefile | 1 +
- scripts/gcc-plugins/gcc-common.h | 4 
- 2 files changed, 5 insertions(+)
-
-diff --git a/scripts/gcc-plugins/Makefile b/scripts/gcc-plugins/Makefile
-index aa0d0ec6936d..9e95862f2788 100644
 a/scripts/gcc-plugins/Makefile
-+++ b/scripts/gcc-plugins/Makefile
-@@ -11,6 +11,7 @@ else
-   HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu++98 
-fno-rtti
-   HOST_EXTRACXXFLAGS += -fno-exceptions -fasynchronous-unwind-tables -ggdb
-   HOST_EXTRACXXFLAGS += -Wno-narrowing -Wno-unused-variable
-+  HOST_EXTRACXXFLAGS += -Wno-format-diag
-   export HOST_EXTRACXXFLAGS
- endif
- 
-diff --git a/scripts/gcc-plugins/gcc-common.h 
b/scripts/gcc-plugins/gcc-common.h
-index 17f06079a712..9ad76b7f3f10 100644
 a/scripts/gcc-plugins/gcc-common.h
-+++ b/scripts/gcc-plugins/gcc-common.h
-@@ -35,7 +35,9 @@
- #include "ggc.h"
- #include "timevar.h"
- 
-+#if BUILDING_GCC_VERSION < 1
- #include "params.h"
-+#endif
- 
- #if BUILDING_GCC_VERSION <= 4009
- #include "pointer-set.h"
-@@ -847,19 +849,21 @@ static inline gimple gimple_build_assign_with_ops(enum 
tree_code subcode, tree l
-   return gimple_build_assign(lhs, subcode, op1, op2 PASS_MEM_STAT);
- }
- 
-+#if BUILDING_GCC_VERSION < 1
- template <>
- template <>
- inline bool is_a_helper::test(const_gimple gs)
- {
-   return gs->code == GIMPLE_GOTO;
- }
- 
- template <>
- template <>
- inline bool is_a_helper::test(const_gimple gs)
- {
-   return gs->code == GIMPLE_RETURN;
- }
-+#endif
- 
- static inline gasm *as_a_gasm(gimple stmt)
- {
--- 
-2.26.2
-

Modified: PKGBUILD
===
--- PKGBUILD2020-05-28 00:23:48 UTC (rev 387735)
+++ PKGBUILD2020-05-28 00:24:01 UTC (rev 387736)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgbase=linux-lts
-pkgver=5.4.42
+pkgver=5.4.43
 pkgrel=1
 pkgdesc='LTS Linux'
 url="https://www.kernel.org/;
@@ -17,7 +17,6 @@
   
https://www.kernel.org/pub/linux/kernel/v${pkgver%%.*}.x/${_srcname}.tar.{xz,sign}
   config # the main kernel config file
   0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
-  0002-gcc-common.h-Update-for-GCC-10.patch
   sphinx-workaround.patch
 )
 validpgpkeys=(
@@ -25,11 +24,10 @@
   

[arch-commits] Commit in linux-zen/trunk (PKGBUILD config)

2020-05-27 Thread Jan Steffens via arch-commits
Date: Thursday, May 28, 2020 @ 00:23:48
  Author: heftig
Revision: 387735

5.6.15.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD
  linux-zen/trunk/config

--+
 PKGBUILD |4 ++--
 config   |9 -
 2 files changed, 6 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 22:06:36 UTC (rev 387734)
+++ PKGBUILD2020-05-28 00:23:48 UTC (rev 387735)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.6.14.zen1
+pkgver=5.6.15.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'01db2a42315527698b76edee1a836af56b805e18c363086aa7cc57db377ad553'
+'dfdf44a4ac9b03f8a8206ad3b8b4d7e74b630eb19842be65d81b75f8eb363933'
 '8cb21e0b3411327b627a9dd15b8eb773295a0d2782b1a41b2a8839d1b2f5778c')
 
 export KBUILD_BUILD_HOST=archlinux

Modified: config
===
--- config  2020-05-27 22:06:36 UTC (rev 387734)
+++ config  2020-05-28 00:23:48 UTC (rev 387735)
@@ -1,19 +1,17 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.6.8-zen1 Kernel Configuration
+# Linux/x86 5.6.15-zen1 Kernel Configuration
 #
 
 #
-# Compiler: gcc (Arch Linux 9.3.0-1) 9.3.0
+# Compiler: gcc (GCC) 10.1.0
 #
 CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=90300
+CONFIG_GCC_VERSION=100100
 CONFIG_CLANG_VERSION=0
 CONFIG_CC_CAN_LINK=y
 CONFIG_CC_HAS_ASM_GOTO=y
 CONFIG_CC_HAS_ASM_INLINE=y
-CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
-CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_TABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -1002,6 +1000,7 @@
 CONFIG_QUEUED_SPINLOCKS=y
 CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
 CONFIG_QUEUED_RWLOCKS=y
+CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
 CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
 CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
 CONFIG_FREEZER=y


[arch-commits] Commit in borgmatic/repos/community-any (PKGBUILD PKGBUILD)

2020-05-27 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 27, 2020 @ 23:43:14
  Author: polyzen
Revision: 636105

archrelease: copy trunk to community-any

Added:
  borgmatic/repos/community-any/PKGBUILD
(from rev 636104, borgmatic/trunk/PKGBUILD)
Deleted:
  borgmatic/repos/community-any/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 23:42:51 UTC (rev 636104)
+++ PKGBUILD2020-05-27 23:43:14 UTC (rev 636105)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor: Alexander Görtz 
-# Contributor: Dan Beste 
-# Contributor: Julien Nicoulaud 
-# Contributor: stef204 
-
-pkgname=borgmatic
-pkgver=1.5.4
-pkgrel=1
-pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
-arch=('any')
-url=https://torsion.org/borgmatic
-license=('GPL3')
-depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
- 'python-ruamel-yaml' 'python-setuptools')
-optdepends=('python-llfuse: for mount action')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('a2d47c52cf3794e72f6e2c4637662114315cc0380fa7be204fbf49ba5e28376c')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
-}
-
-# vim: ts=2 sw=2 et:

Copied: borgmatic/repos/community-any/PKGBUILD (from rev 636104, 
borgmatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 23:43:14 UTC (rev 636105)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor: Alexander Görtz 
+# Contributor: Dan Beste 
+# Contributor: Julien Nicoulaud 
+# Contributor: stef204 
+
+pkgname=borgmatic
+pkgver=1.5.5
+pkgrel=1
+pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
+arch=('any')
+url=https://torsion.org/borgmatic
+license=('GPL3')
+depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
+ 'python-ruamel-yaml' 'python-setuptools')
+optdepends=('python-llfuse: for mount action')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f0ecbaa1afe391b6d4bc7ed25890ac65a5b302ea4f4ae8b5011df3e7dc93e376')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in borgmatic/trunk (PKGBUILD)

2020-05-27 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 27, 2020 @ 23:42:51
  Author: polyzen
Revision: 636104

upgpkg: borgmatic 1.5.5-1

Modified:
  borgmatic/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 23:32:12 UTC (rev 636103)
+++ PKGBUILD2020-05-27 23:42:51 UTC (rev 636104)
@@ -6,7 +6,7 @@
 # Contributor: stef204 
 
 pkgname=borgmatic
-pkgver=1.5.4
+pkgver=1.5.5
 pkgrel=1
 pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
 arch=('any')
@@ -16,7 +16,7 @@
  'python-ruamel-yaml' 'python-setuptools')
 optdepends=('python-llfuse: for mount action')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('a2d47c52cf3794e72f6e2c4637662114315cc0380fa7be204fbf49ba5e28376c')
+sha256sums=('f0ecbaa1afe391b6d4bc7ed25890ac65a5b302ea4f4ae8b5011df3e7dc93e376')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in tiled/trunk (PKGBUILD)

2020-05-27 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, May 27, 2020 @ 23:32:07
  Author: svenstaro
Revision: 636102

upgpkg: tiled 1.3.5-1

Modified:
  tiled/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 23:07:56 UTC (rev 636101)
+++ PKGBUILD2020-05-27 23:32:07 UTC (rev 636102)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
 pkgname=tiled
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'qt5-tools' 'python3')
 optdepends=('python3: Python plugin')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-sha512sums=('f78772f74d9f7a241ff9191ed6152f965b7a5342db877fa63a2d84f266d956cb2fa487776cf503db36bc5da9aa825c8bab87e13293e43a129f560020e323bd61')
+sha512sums=('f8c90ea6f1915af2b7b8254e1682899906c177be02eb4b09c89bb7c089ebd592f75670024b9734e3c5db71d1524570e7571ce443ea95d95515cb3a00fcbb66f3')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in tiled/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, May 27, 2020 @ 23:32:12
  Author: svenstaro
Revision: 636103

archrelease: copy trunk to community-x86_64

Added:
  tiled/repos/community-x86_64/PKGBUILD
(from rev 636102, tiled/trunk/PKGBUILD)
Deleted:
  tiled/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 23:32:07 UTC (rev 636102)
+++ PKGBUILD2020-05-27 23:32:12 UTC (rev 636103)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
-pkgname=tiled
-pkgver=1.3.4
-pkgrel=1
-pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
-arch=('x86_64')
-url='http://www.mapeditor.org'
-license=('GPL')
-replaces=('tiled-qt')
-depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11' 'qt5-declarative' 'qt5-quickcontrols2' 
'zstd')
-makedepends=('mesa' 'qt5-tools' 'python3')
-optdepends=('python3: Python plugin')
-source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-sha512sums=('f78772f74d9f7a241ff9191ed6152f965b7a5342db877fa63a2d84f266d956cb2fa487776cf503db36bc5da9aa825c8bab87e13293e43a129f560020e323bd61')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install INSTALL_ROOT="$pkgdir"
-}

Copied: tiled/repos/community-x86_64/PKGBUILD (from rev 636102, 
tiled/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 23:32:12 UTC (rev 636103)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=1.3.5
+pkgrel=1
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('x86_64')
+url='http://www.mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11' 'qt5-declarative' 'qt5-quickcontrols2' 
'zstd')
+makedepends=('mesa' 'qt5-tools' 'python3')
+optdepends=('python3: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
+sha512sums=('f8c90ea6f1915af2b7b8254e1682899906c177be02eb4b09c89bb7c089ebd592f75670024b9734e3c5db71d1524570e7571ce443ea95d95515cb3a00fcbb66f3')
+
+build() {
+  cd $pkgname-$pkgver
+  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install INSTALL_ROOT="$pkgdir"
+}


[arch-commits] Commit in tpm2-pkcs11/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Jonas Witschel via arch-commits
Date: Wednesday, May 27, 2020 @ 23:07:56
  Author: diabonas
Revision: 636101

archrelease: copy trunk to community-x86_64

Added:
  tpm2-pkcs11/repos/community-x86_64/PKGBUILD
(from rev 636100, tpm2-pkcs11/trunk/PKGBUILD)
Deleted:
  tpm2-pkcs11/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 49 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 23:04:21 UTC (rev 636100)
+++ PKGBUILD2020-05-27 23:07:56 UTC (rev 636101)
@@ -1,37 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=tpm2-pkcs11
-pkgver=1.2.0
-pkgrel=1
-pkgdesc='PKCS#11 interface for Trusted Platform Module 2.0 hardware'
-arch=('x86_64')
-url='https://github.com/tpm2-software/tpm2-pkcs11'
-license=('BSD')
-depends=('openssl' 'python-cryptography' 'python-pyasn1-modules' 'python-yaml' 
'sqlite' 'tpm2-tools')
-checkdepends=('cmocka' 'ibm-sw-tpm2' 'iproute2' 'java-hamcrest' 'junit' 
'libp11' 'opensc' 'tpm2-abrmd' 'wget' 'xxd')
-provides=('libtpm2_pkcs11.so')
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('e7de454b38388c4562fc92282855c1ed9a04c7968c358d6918137257fb5a1ca785c2297e8a34464ea04eed86acd9fc5b59c837027da9d3f195ec86ff0563feeb'
-'SKIP')
-validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1') # William Roberts 
(Bill Roberts) 
-
-build() {
-   cd "$pkgname-$pkgver"
-   export 
CLASSPATH="/usr/share/java/junit.jar:/usr/share/java/hamcrest-core.jar:$CLASSPATH"
-   ./configure --prefix=/usr $( ((CHECKFUNC)) && echo --enable-unit 
--enable-integration)
-   make
-   cd tools
-   python setup.py build
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-   cd tools
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: tpm2-pkcs11/repos/community-x86_64/PKGBUILD (from rev 636100, 
tpm2-pkcs11/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 23:07:56 UTC (rev 636101)
@@ -0,0 +1,49 @@
+# Maintainer: Jonas Witschel 
+pkgname=tpm2-pkcs11
+pkgver=1.2.0
+pkgrel=2
+pkgdesc='PKCS#11 interface for Trusted Platform Module 2.0 hardware'
+arch=('x86_64')
+url='https://github.com/tpm2-software/tpm2-pkcs11'
+license=('BSD')
+depends=('libyaml' 'openssl' 'python-cryptography' 'python-pyasn1-modules' 
'python-yaml' 'sqlite'
+ 'tpm2-tools' 'tpm2-tss' 'libtss2-esys.so' 'libtss2-mu.so' 
'libtss2-rc.so' 'libtss2-tctildr.so')
+checkdepends=('cmocka' 'ibm-sw-tpm2' 'iproute2' 'java-hamcrest' 'junit' 
'libp11' 'opensc' 'tpm2-abrmd' 'wget' 'xxd')
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc}
+
"tpm2-pkcs11-1.2.0_gcc-10-fix.patch::$url/commit/198e6035a503f1ba747ad2997cac94a27a9633ad.patch"
+
"tpm2-pkcs11-1.2.0_ibm-sw-tpm2-1628.patch::$url/commit/e4bb96cf4e6df883de8b9ab88e4768aa3d6621f0.patch")
+sha512sums=('e7de454b38388c4562fc92282855c1ed9a04c7968c358d6918137257fb5a1ca785c2297e8a34464ea04eed86acd9fc5b59c837027da9d3f195ec86ff0563feeb'
+'SKIP'
+
'52044f03027a5c3d64db2b43144d6e66aab09b3ef674fc3b65d3858154ac894eddd98473136fc3dbcba2df26cf9028c77379de0e172c7115a68200db1ae990aa'
+
'6aa7cef3e74f41fbd1f853d969c64c066df00a3065e8b2113bd92544be9a209a1feaec1078d1df8cc4cf625266d6cb88dc453887e7558d22558dbcfd936bc722')
+validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1') # William Roberts 
(Bill Roberts) 
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   # Fix test suite for GCC 10 
(https://github.com/tpm2-software/tpm2-pkcs11/pull/514)
+   patch --strip=1 --input="$srcdir/tpm2-pkcs11-1.2.0_gcc-10-fix.patch"
+   # Fix test suite for ibm-sw-tpm2 1628 
(https://github.com/tpm2-software/tpm2-pkcs11/pull/519)
+   patch --strip=1 
--input="$srcdir/tpm2-pkcs11-1.2.0_ibm-sw-tpm2-1628.patch"
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   export 
CLASSPATH="/usr/share/java/junit.jar:/usr/share/java/hamcrest-core.jar:$CLASSPATH"
+   ./configure --prefix=/usr $( ((CHECKFUNC)) && echo --enable-unit 
--enable-integration)
+   make
+   cd tools
+   python setup.py build
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+   cd tools
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in tpm2-pkcs11/trunk (PKGBUILD)

2020-05-27 Thread Jonas Witschel via arch-commits
Date: Wednesday, May 27, 2020 @ 23:04:21
  Author: diabonas
Revision: 636100

upgpkg: tpm2-pkcs11 1.2.0-2: fix compilation with GCC 10 and ibm-sw-tpm2, add 
libdeps, remove libprovides

libtpm2_pkcs11.so is meant to be dlopen()'ed instead of linked, so a
libprovides does not make sense.

Modified:
  tpm2-pkcs11/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 17 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 22:56:52 UTC (rev 636099)
+++ PKGBUILD2020-05-27 23:04:21 UTC (rev 636100)
@@ -1,19 +1,31 @@
 # Maintainer: Jonas Witschel 
 pkgname=tpm2-pkcs11
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='PKCS#11 interface for Trusted Platform Module 2.0 hardware'
 arch=('x86_64')
 url='https://github.com/tpm2-software/tpm2-pkcs11'
 license=('BSD')
-depends=('openssl' 'python-cryptography' 'python-pyasn1-modules' 'python-yaml' 
'sqlite' 'tpm2-tools')
+depends=('libyaml' 'openssl' 'python-cryptography' 'python-pyasn1-modules' 
'python-yaml' 'sqlite'
+ 'tpm2-tools' 'tpm2-tss' 'libtss2-esys.so' 'libtss2-mu.so' 
'libtss2-rc.so' 'libtss2-tctildr.so')
 checkdepends=('cmocka' 'ibm-sw-tpm2' 'iproute2' 'java-hamcrest' 'junit' 
'libp11' 'opensc' 'tpm2-abrmd' 'wget' 'xxd')
-provides=('libtpm2_pkcs11.so')
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc}
+
"tpm2-pkcs11-1.2.0_gcc-10-fix.patch::$url/commit/198e6035a503f1ba747ad2997cac94a27a9633ad.patch"
+
"tpm2-pkcs11-1.2.0_ibm-sw-tpm2-1628.patch::$url/commit/e4bb96cf4e6df883de8b9ab88e4768aa3d6621f0.patch")
 
sha512sums=('e7de454b38388c4562fc92282855c1ed9a04c7968c358d6918137257fb5a1ca785c2297e8a34464ea04eed86acd9fc5b59c837027da9d3f195ec86ff0563feeb'
-'SKIP')
+'SKIP'
+
'52044f03027a5c3d64db2b43144d6e66aab09b3ef674fc3b65d3858154ac894eddd98473136fc3dbcba2df26cf9028c77379de0e172c7115a68200db1ae990aa'
+
'6aa7cef3e74f41fbd1f853d969c64c066df00a3065e8b2113bd92544be9a209a1feaec1078d1df8cc4cf625266d6cb88dc453887e7558d22558dbcfd936bc722')
 validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1') # William Roberts 
(Bill Roberts) 
 
+prepare() {
+   cd "$pkgname-$pkgver"
+   # Fix test suite for GCC 10 
(https://github.com/tpm2-software/tpm2-pkcs11/pull/514)
+   patch --strip=1 --input="$srcdir/tpm2-pkcs11-1.2.0_gcc-10-fix.patch"
+   # Fix test suite for ibm-sw-tpm2 1628 
(https://github.com/tpm2-software/tpm2-pkcs11/pull/519)
+   patch --strip=1 
--input="$srcdir/tpm2-pkcs11-1.2.0_ibm-sw-tpm2-1628.patch"
+}
+
 build() {
cd "$pkgname-$pkgver"
export 
CLASSPATH="/usr/share/java/junit.jar:/usr/share/java/hamcrest-core.jar:$CLASSPATH"


[arch-commits] Commit in ibm-sw-tpm2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Jonas Witschel via arch-commits
Date: Wednesday, May 27, 2020 @ 22:56:52
  Author: diabonas
Revision: 636099

archrelease: copy trunk to community-x86_64

Added:
  ibm-sw-tpm2/repos/community-x86_64/PKGBUILD
(from rev 636098, ibm-sw-tpm2/trunk/PKGBUILD)
Deleted:
  ibm-sw-tpm2/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 22:56:46 UTC (rev 636098)
+++ PKGBUILD2020-05-27 22:56:52 UTC (rev 636099)
@@ -1,29 +0,0 @@
-# Maintainer: Jonas Witschel 
-
-pkgname=ibm-sw-tpm2
-pkgver=1563
-pkgrel=1
-pkgdesc="An implementation of the TCG TPM 2.0 specification by IBM"
-arch=(x86_64)
-url="https://sourceforge.net/projects/ibmswtpm2/;
-license=('BSD')
-depends=('openssl')
-source=("https://downloads.sourceforge.net/${pkgname//-}/ibmtpm${pkgver}.tar.gz;)
-sha512sums=('ff0b9e5f0d0070eb572b23641f7a0e70a8bc65cbf4b59dca1778be3bb014124011221a492147d4c492584e87af23e2f842ca6307641b3919f67a3f27f09312c0')
-
-prepare() {
-sed -e 's:$(CCFLAGS):& $(CFLAGS):' \
--e 's:$(LNFLAGS):& $(LDFLAGS):' \
--e 's:-Werror ::' -e 's:-ggdb -O0::' \
--i src/makefile
-}
-
-build() {
-cd src
-make
-}
-
-package() {
-install -Dm755 src/tpm_server -t "${pkgdir}"/usr/bin/
-install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: ibm-sw-tpm2/repos/community-x86_64/PKGBUILD (from rev 636098, 
ibm-sw-tpm2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 22:56:52 UTC (rev 636099)
@@ -0,0 +1,29 @@
+# Maintainer: Jonas Witschel 
+# Contributor: Bruno Pagani 
+pkgname=ibm-sw-tpm2
+pkgver=1628
+pkgrel=1
+pkgdesc='Implementation of the TCG Trusted Platform Module 2.0 specification'
+arch=('x86_64')
+url='https://sourceforge.net/projects/ibmswtpm2/'
+license=('BSD')
+depends=('openssl')
+source=("https://downloads.sourceforge.net/${pkgname//-}/ibmtpm$pkgver.tar.gz;)
+sha512sums=('ab47caa4406ba57c0afc6fadae304fc9ef5e3e125be0f2fb1955a419cf93cd5e9176e103f0b566825abc16cca00b795f98d2b407f0a2bf7b141ef4b025d907d0')
+
+prepare() {
+   sed -e 's|$(CCFLAGS)|& $(CFLAGS)|' \
+   -e 's|$(LNFLAGS)|& $(LDFLAGS)|' \
+   -e 's|-Werror ||' -e 's|-ggdb -O0||' \
+   -i src/makefile
+}
+
+build() {
+   cd src
+   make
+}
+
+package() {
+   install -Dm755 src/tpm_server -t "$pkgdir/usr/bin"
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}


[arch-commits] Commit in ibm-sw-tpm2/trunk (PKGBUILD)

2020-05-27 Thread Jonas Witschel via arch-commits
Date: Wednesday, May 27, 2020 @ 22:56:46
  Author: diabonas
Revision: 636098

upgpkg: ibm-sw-tpm2 1628-1: upstream release

Modified:
  ibm-sw-tpm2/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 4 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 22:35:28 UTC (rev 636097)
+++ PKGBUILD2020-05-27 22:56:46 UTC (rev 636098)
@@ -1,17 +1,15 @@
 # Maintainer: Jonas Witschel 
 # Contributor: Bruno Pagani 
 pkgname=ibm-sw-tpm2
-pkgver=1563
+pkgver=1628
 pkgrel=1
-pkgdesc='An implementation of the TCG TPM 2.0 specification by IBM'
+pkgdesc='Implementation of the TCG Trusted Platform Module 2.0 specification'
 arch=('x86_64')
 url='https://sourceforge.net/projects/ibmswtpm2/'
 license=('BSD')
 depends=('openssl')
-source=("https://downloads.sourceforge.net/${pkgname//-}/ibmtpm$pkgver.tar.gz;
-
'ibm-sw-tpm2-1563_gcc-10-fix.patch::https://github.com/kgoldman/ibmswtpm2/commit/9bd2926c0f359f143141c32c2b261ca100d804c8.patch')
-sha512sums=('ff0b9e5f0d0070eb572b23641f7a0e70a8bc65cbf4b59dca1778be3bb014124011221a492147d4c492584e87af23e2f842ca6307641b3919f67a3f27f09312c0'
-
'476cba6e66da9c88804c16ce961c4d25a64ece27242336b2fdaf3a32d4cf4d72c2cad48cbe8357607c3b6a67e507918400c0611472b23cf5d00057a392f278ef')
+source=("https://downloads.sourceforge.net/${pkgname//-}/ibmtpm$pkgver.tar.gz;)
+sha512sums=('ab47caa4406ba57c0afc6fadae304fc9ef5e3e125be0f2fb1955a419cf93cd5e9176e103f0b566825abc16cca00b795f98d2b407f0a2bf7b141ef4b025d907d0')
 
 prepare() {
sed -e 's|$(CCFLAGS)|& $(CFLAGS)|' \
@@ -18,9 +16,6 @@
-e 's|$(LNFLAGS)|& $(LDFLAGS)|' \
-e 's|-Werror ||' -e 's|-ggdb -O0||' \
-i src/makefile
-
-   # Fix compilation with GCC 10 
(https://github.com/kgoldman/ibmswtpm2/pull/3)
-   patch --strip=1 --input="$srcdir/ibm-sw-tpm2-1563_gcc-10-fix.patch"
 }
 
 build() {


[arch-commits] Commit in nextcloud-app-news/trunk (PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 22:35:22
  Author: dvzrv
Revision: 636096

upgpkg: nextcloud-app-news 14.1.11-1: Upgrading to 14.1.11.

Modified:
  nextcloud-app-news/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 22:19:03 UTC (rev 636095)
+++ PKGBUILD2020-05-27 22:35:22 UTC (rev 636096)
@@ -3,7 +3,7 @@
 
 pkgname=nextcloud-app-news
 _name=news
-pkgver=14.1.10
+pkgver=14.1.11
 pkgrel=1
 pkgdesc="An RSS/Atom feed aggregator"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('AGPL3')
 depends=('nextcloud')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('7e1054f84d844501731fb704069e406cde74af210b23f549a7a007c8f182f68aee94c959fe7e931ed16288b435d90333d8140868cdfaede7c393c65c0a739729')
+sha512sums=('196829cbc3cf999b3cd91e16c87ece96d1f8c360fc7d3d4334fb8b53c82469a67951b0865c5f68a2f33dcc36949c05970b72039b0f3237fdc4bee365c7a2527f')
 
 package() {
   install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"


[arch-commits] Commit in nextcloud-app-news/repos/community-any (PKGBUILD PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 22:35:28
  Author: dvzrv
Revision: 636097

archrelease: copy trunk to community-any

Added:
  nextcloud-app-news/repos/community-any/PKGBUILD
(from rev 636096, nextcloud-app-news/trunk/PKGBUILD)
Deleted:
  nextcloud-app-news/repos/community-any/PKGBUILD

--+
 PKGBUILD |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 22:35:22 UTC (rev 636096)
+++ PKGBUILD2020-05-27 22:35:28 UTC (rev 636097)
@@ -1,19 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-news
-_name=news
-pkgver=14.1.10
-pkgrel=1
-pkgdesc="An RSS/Atom feed aggregator"
-arch=('any')
-url="https://github.com/nextcloud/news;
-license=('AGPL3')
-depends=('nextcloud')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('7e1054f84d844501731fb704069e406cde74af210b23f549a7a007c8f182f68aee94c959fe7e931ed16288b435d90333d8140868cdfaede7c393c65c0a739729')
-
-package() {
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-news/repos/community-any/PKGBUILD (from rev 636096, 
nextcloud-app-news/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 22:35:28 UTC (rev 636097)
@@ -0,0 +1,19 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-news
+_name=news
+pkgver=14.1.11
+pkgrel=1
+pkgdesc="An RSS/Atom feed aggregator"
+arch=('any')
+url="https://github.com/nextcloud/news;
+license=('AGPL3')
+depends=('nextcloud')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
+sha512sums=('196829cbc3cf999b3cd91e16c87ece96d1f8c360fc7d3d4334fb8b53c82469a67951b0865c5f68a2f33dcc36949c05970b72039b0f3237fdc4bee365c7a2527f')
+
+package() {
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}


[arch-commits] Commit in solr/repos/community-any (8 files)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 22:19:03
  Author: dvzrv
Revision: 636095

archrelease: copy trunk to community-any

Added:
  solr/repos/community-any/PKGBUILD
(from rev 636094, solr/trunk/PKGBUILD)
  solr/repos/community-any/solr.service
(from rev 636094, solr/trunk/solr.service)
  solr/repos/community-any/solr.sysusers
(from rev 636094, solr/trunk/solr.sysusers)
  solr/repos/community-any/solr.tmpfiles
(from rev 636094, solr/trunk/solr.tmpfiles)
Deleted:
  solr/repos/community-any/PKGBUILD
  solr/repos/community-any/solr.service
  solr/repos/community-any/solr.sysusers
  solr/repos/community-any/solr.tmpfiles

---+
 PKGBUILD  |  195 
 solr.service  |   76 ++---
 solr.sysusers |2 
 solr.tmpfiles |6 -
 4 files changed, 140 insertions(+), 139 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 22:18:47 UTC (rev 636094)
+++ PKGBUILD2020-05-27 22:19:03 UTC (rev 636095)
@@ -1,97 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=solr
-pkgver=8.5.1
-pkgrel=1
-pkgdesc="Open source enterprise search platform built on Apache Lucene"
-arch=('any')
-url="https://lucene.apache.org/solr/;
-license=('Apache')
-depends=('bash' 'java-runtime>=8')
-makedepends=('ant' 'ivy' 'java-environment>=8')
-backup=("etc/${pkgname}/server/jetty-http.xml"
-"etc/${pkgname}/server/jetty-https.xml"
-"etc/${pkgname}/server/jetty-https8.xml"
-"etc/${pkgname}/server/jetty-ssl.xml"
-"etc/${pkgname}/server/jetty.xml"
-"etc/${pkgname}/server/webdefault.xml"
-"etc/${pkgname}/${pkgname}.in.sh"
-"etc/${pkgname}/${pkgname}.xml"
-"etc/${pkgname}/zoo.cfg")
-source=("https://archive.apache.org/dist/lucene/${pkgname}/${pkgver}/${pkgname}-${pkgver}-src.tgz"{,.asc}
-"${pkgname}.service"
-"${pkgname}.sysusers"
-"${pkgname}.tmpfiles")
-sha512sums=('342d8b40957d2ed22f0a8fb7a030bc2274d03305565406068b2a54c4a69f706f846298faf82f1933833170b14ad922f828cda325cd84f542bd5a305a8cb246a7'
-'SKIP'
-
'a34121427e9d3362e3424c8bf1f13e50dccbee4a1870bd8713a39c8bf79450462b12a98cc981af3a3522d176094b05e300468465100f27bcd44f08129f324430'
-
'06e5e40b96d2b6668790e4b166fc2867b9e694a2c72fd57eec702526e009b8b0495acbe16a5a27e259827477f4783ce87742f1f806254d8a2baec23b0b317058'
-
'9cc97763a50c11c305b06ce07f0b2936b8fcb0b1d43f8b469fe1399850cb009fc1eba297d295a386a556e5c042e189dba1b1fc96a54aa46964ed4db8e17d40a8')
-validpgpkeys=('2085660D9C1FCCACC4A479A3BF160FF14992A24C'  # Ishan 
Chattopadhyaya 
-  'E58A6F4D5B2B48AC66D5E53BD4F181881A42F9E6'  # Ignacio Vera (CODE 
SIGNING KEY) 
-  '81D3EB0408B4E1EB10AF443BA4F4C886B29BC2F4')  # Alan Woodward 
(CODE SIGNING KEY) 
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  ant ivy-bootstrap
-  rm -rvf "${pkgname}/bin/init.d"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cd "${pkgname}"
-  ant compile
-  ant server
-  ant dist
-}
-
-# TODO: make org.apache.solr.cloud.MetricsHistoryIntegrationTest.testGet pass
-# seemingly requires lucene to be built as well X_X
-# check() {
-#   cd "$pkgname-$pkgver"
-#   cd "${pkgname}"
-#   ant test
-# }
-
-package() {
-  cd "$pkgname-$pkgver"
-  # removing unneeded sources and build artifacts
-  rm -rvf ${pkgname}/contrib/*/src
-  find . -type f \( -iname "*build.xml" -o -iname "*ivy.xml" \) -delete
-  # script
-  install -vDm 755 "${pkgname}/bin/${pkgname}" -t "${pkgdir}/usr/bin"
-  # configuration
-  install -vDm 644 "${pkgname}/bin/${pkgname}.in.sh" \
--t "${pkgdir}/etc/${pkgname}"
-  install -vDm 644 "${pkgname}/server/etc/"*.xml \
--t "${pkgdir}/etc/${pkgname}/server"
-  install -vDm 644 "${pkgname}/server/${pkgname}/${pkgname}.xml" \
--t "${pkgdir}/etc/${pkgname}/"
-  install -vDm 644 "${pkgname}/server/${pkgname}/zoo.cfg" \
--t "${pkgdir}/etc/${pkgname}/"
-  install -vdm 755 "${pkgdir}/usr/share/${pkgname}"
-  # copy application
-  cp -rvL "${pkgname}/"{bin,contrib,dist,docs,example,licenses,server} \
-"${pkgdir}/usr/share/${pkgname}"
-  # symlink configuration into place
-  ln -svf "/etc/${pkgname}/${pkgname}.in.sh" \
-"${pkgdir}/usr/share/${pkgname}/"
-  ln -svf "/etc/${pkgname}/${pkgname}.xml" \
-"${pkgdir}/usr/share/${pkgname}/server/${pkgname}"
-  ln -svf "/etc/${pkgname}/zoo.cfg" \
-"${pkgdir}/usr/share/${pkgname}/server/${pkgname}"
-  for config in {jetty,jetty-{http,https,https8,ssl},webdefault}.xml; do
-ln -svf "/etc/${pkgname}/server/${config}" \
-  "${pkgdir}/usr/share/${pkgname}/server/etc/${config}"
-  done
-  # logs directory
-  install -vdm 750 "${pkgdir}/var/log/${pkgname}"
-  # docs
-  install -vDm 644 "${pkgname}/"{CHANGES,LUCENE_CHANGES,NOTICE,README}.txt \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 "../${pkgname}.service" -t 
"${pkgdir}/usr/lib/systemd/system/"
-  install -vDm 644 

[arch-commits] Commit in solr/trunk (PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 22:18:47
  Author: dvzrv
Revision: 636094

upgpkg: solr 8.5.2-1: Upgrading to 8.5.2.

Adding another maintainer PGP key (86EDB9C33B8517228E88A8F93E48C0C6EF362B9E).

Modified:
  solr/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:54:12 UTC (rev 636093)
+++ PKGBUILD2020-05-27 22:18:47 UTC (rev 636094)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=solr
-pkgver=8.5.1
+pkgver=8.5.2
 pkgrel=1
 pkgdesc="Open source enterprise search platform built on Apache Lucene"
 arch=('any')
@@ -22,7 +22,7 @@
 "${pkgname}.service"
 "${pkgname}.sysusers"
 "${pkgname}.tmpfiles")
-sha512sums=('342d8b40957d2ed22f0a8fb7a030bc2274d03305565406068b2a54c4a69f706f846298faf82f1933833170b14ad922f828cda325cd84f542bd5a305a8cb246a7'
+sha512sums=('cced21440ef023d4bf7ad58d07aa33ce13c38eedce5bbc2592e8ac0133880514d0fac352ff9aeb63673e2cd24b15f715cb4925afe0bba839744295288cb86b59'
 'SKIP'
 
'a34121427e9d3362e3424c8bf1f13e50dccbee4a1870bd8713a39c8bf79450462b12a98cc981af3a3522d176094b05e300468465100f27bcd44f08129f324430'
 
'06e5e40b96d2b6668790e4b166fc2867b9e694a2c72fd57eec702526e009b8b0495acbe16a5a27e259827477f4783ce87742f1f806254d8a2baec23b0b317058'
@@ -29,7 +29,8 @@
 
'9cc97763a50c11c305b06ce07f0b2936b8fcb0b1d43f8b469fe1399850cb009fc1eba297d295a386a556e5c042e189dba1b1fc96a54aa46964ed4db8e17d40a8')
 validpgpkeys=('2085660D9C1FCCACC4A479A3BF160FF14992A24C'  # Ishan 
Chattopadhyaya 
   'E58A6F4D5B2B48AC66D5E53BD4F181881A42F9E6'  # Ignacio Vera (CODE 
SIGNING KEY) 
-  '81D3EB0408B4E1EB10AF443BA4F4C886B29BC2F4')  # Alan Woodward 
(CODE SIGNING KEY) 
+  '81D3EB0408B4E1EB10AF443BA4F4C886B29BC2F4'  # Alan Woodward 
(CODE SIGNING KEY) 
+  '86EDB9C33B8517228E88A8F93E48C0C6EF362B9E') # Mike Drob (CODE 
SIGNING KEY) 
 
 prepare() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in htop/trunk (0002-gcc10.patch PKGBUILD)

2020-05-27 Thread Christian Hesse via arch-commits
Date: Wednesday, May 27, 2020 @ 22:06:36
  Author: eworm
Revision: 387734

fix build with gcc 10.x

Added:
  htop/trunk/0002-gcc10.patch
Modified:
  htop/trunk/PKGBUILD

--+
 0002-gcc10.patch |   39 +++
 PKGBUILD |7 +--
 2 files changed, 44 insertions(+), 2 deletions(-)

Added: 0002-gcc10.patch
===
--- 0002-gcc10.patch(rev 0)
+++ 0002-gcc10.patch2020-05-27 22:06:36 UTC (rev 387734)
@@ -0,0 +1,39 @@
+From ee711740d2809e7aa3ebd57d58bfc02b1e9b034b Mon Sep 17 00:00:00 2001
+From: David Seifert 
+Date: Thu, 23 Jan 2020 17:27:10 +0100
+Subject: [PATCH] Fix GCC 10 switch to `-fno-common` default
+
+---
+ CRT.h| 6 +++---
+ linux/LinuxProcess.h | 2 +-
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/CRT.h b/CRT.h
+index 933fe068..65998ac6 100644
+--- a/CRT.h
 b/CRT.h
+@@ -140,7 +140,7 @@ extern const char **CRT_treeStr;
+ 
+ extern int CRT_delay;
+ 
+-int* CRT_colors;
++extern int* CRT_colors;
+ 
+ extern int CRT_colorSchemes[LAST_COLORSCHEME][LAST_COLORELEMENT];
+ 
+@@ -150,13 +150,13 @@ extern int CRT_scrollHAmount;
+ 
+ extern int CRT_scrollWheelVAmount;
+ 
+-char* CRT_termType;
++extern char* CRT_termType;
+ 
+ // TODO move color scheme to Settings, perhaps?
+ 
+ extern int CRT_colorScheme;
+ 
+-void *backtraceArray[128];
++extern void *backtraceArray[128];
+ 
+ #if HAVE_SETUID_ENABLED
+ 

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:37 UTC (rev 387733)
+++ PKGBUILD2020-05-27 22:06:36 UTC (rev 387734)
@@ -17,15 +17,18 @@
 options=('!emptydirs' debug)
 validpgpkeys=('8460980B2B79786DE0C7FCC83FD8F43C2BB3C478') # Hisham Muhammad 

 
source=("https://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc}
-'0001-fix-option-string.patch')
+'0001-fix-option-string.patch'
+'0002-gcc10.patch')
 sha256sums=('d9d6826f10ce3887950d709b53ee1d8c1849a70fa38e91d5896ad8cbc6ba3c57'
 'SKIP'
-'e0ea3a91dfbc7f8c516a19e0d8890314845e768ea4132dfaa49c4d4e89ec10ca')
+'e0ea3a91dfbc7f8c516a19e0d8890314845e768ea4132dfaa49c4d4e89ec10ca'
+'f715a87cffc6375eb3915530f4b27455b00b9324b8ee9168c0b983ba2a536938')
 
 prepare() {
   cd "$pkgname-$pkgver"
 
   patch -Np1 < "${srcdir}"/0001-fix-option-string.patch
+  patch -Np1 < "${srcdir}"/0002-gcc10.patch
 }
 
 build() {


[arch-commits] Commit in materia-kde/repos/community-any (PKGBUILD PKGBUILD)

2020-05-27 Thread Bruno Pagani via arch-commits
Date: Wednesday, May 27, 2020 @ 21:54:12
  Author: archange
Revision: 636093

archrelease: copy trunk to community-any

Added:
  materia-kde/repos/community-any/PKGBUILD
(from rev 636092, materia-kde/trunk/PKGBUILD)
Deleted:
  materia-kde/repos/community-any/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:54:05 UTC (rev 636092)
+++ PKGBUILD2020-05-27 21:54:12 UTC (rev 636093)
@@ -1,37 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgbase=materia-kde
-pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20200312
-pkgrel=1
-pkgdesc="Materia theme for KDE Plasma 5"
-arch=(any)
-url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
-license=(GPL3)
-options=(!strip)
-source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('1d64af417a426ea0c73c55eef8e90e6e96af69e73cda8d35f16c7c0740ef187f')
-
-package_materia-kde() {
-optdepends=('materia-gtk-theme: Matching GTK theme'
-'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r plasma "${pkgdir}"/usr/share
-cp -r aurorae "${pkgdir}"/usr/share
-cp -r color-schemes "${pkgdir}"/usr/share
-cp -r konsole "${pkgdir}"/usr/share
-cp -r yakuake "${pkgdir}"/usr/share
-}
-
-package_kvantum-theme-materia() {
-pkgdesc="Materia theme for KDE Plasma 5"
-depends=(kvantum-qt5)
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r Kvantum "${pkgdir}"/usr/share
-}

Copied: materia-kde/repos/community-any/PKGBUILD (from rev 636092, 
materia-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:54:12 UTC (rev 636093)
@@ -0,0 +1,37 @@
+# Maintainer: Bruno Pagani 
+
+pkgbase=materia-kde
+pkgname=(materia-kde kvantum-theme-materia)
+pkgver=20200523
+pkgrel=1
+pkgdesc="Materia theme for KDE Plasma 5"
+arch=(any)
+url="https://github.com/PapirusDevelopmentTeam/${pkgbase};
+license=(GPL3)
+options=(!strip)
+source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha256sums=('7ef4cff72fd6cbb1f9c6d1a6a971c1f6dd2c766acd5fa5c4ca7592aacf6ccd1a')
+
+package_materia-kde() {
+optdepends=('materia-gtk-theme: Matching GTK theme'
+'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r plasma "${pkgdir}"/usr/share
+cp -r aurorae "${pkgdir}"/usr/share
+cp -r color-schemes "${pkgdir}"/usr/share
+cp -r konsole "${pkgdir}"/usr/share
+cp -r yakuake "${pkgdir}"/usr/share
+}
+
+package_kvantum-theme-materia() {
+pkgdesc="Materia theme for KDE Plasma 5"
+depends=(kvantum-qt5)
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r Kvantum "${pkgdir}"/usr/share
+}


[arch-commits] Commit in materia-kde/trunk (PKGBUILD)

2020-05-27 Thread Bruno Pagani via arch-commits
Date: Wednesday, May 27, 2020 @ 21:54:05
  Author: archange
Revision: 636092

upgpkg: materia-kde 20200523-1

Modified:
  materia-kde/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:53:50 UTC (rev 636091)
+++ PKGBUILD2020-05-27 21:54:05 UTC (rev 636092)
@@ -2,7 +2,7 @@
 
 pkgbase=materia-kde
 pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20200312
+pkgver=20200523
 pkgrel=1
 pkgdesc="Materia theme for KDE Plasma 5"
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL3)
 options=(!strip)
 source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('1d64af417a426ea0c73c55eef8e90e6e96af69e73cda8d35f16c7c0740ef187f')
+sha256sums=('7ef4cff72fd6cbb1f9c6d1a6a971c1f6dd2c766acd5fa5c4ca7592aacf6ccd1a')
 
 package_materia-kde() {
 optdepends=('materia-gtk-theme: Matching GTK theme'


[arch-commits] Commit in squashfs-tools/trunk (PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:53:42
  Author: spupykin
Revision: 636090

upgpkg: squashfs-tools 4.4-2

Modified:
  squashfs-tools/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:47:04 UTC (rev 636089)
+++ PKGBUILD2020-05-27 21:53:42 UTC (rev 636090)
@@ -5,8 +5,8 @@
 
 pkgname=squashfs-tools
 pkgver=4.4
-pkgrel=1
-_commit=52eb4c279cd283ed9802dd1ceb686560b22ffb67
+pkgrel=2
+_commit=c570c6188811088b12ffdd9665487a2960c997a0
 pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for 
Linux."
 url="https://github.com/plougher/squashfs-tools;
 license=("GPL")


[arch-commits] Commit in squashfs-tools/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:53:50
  Author: spupykin
Revision: 636091

archrelease: copy trunk to community-x86_64

Added:
  squashfs-tools/repos/community-x86_64/PKGBUILD
(from rev 636090, squashfs-tools/trunk/PKGBUILD)
Deleted:
  squashfs-tools/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:53:42 UTC (rev 636090)
+++ PKGBUILD2020-05-27 21:53:50 UTC (rev 636091)
@@ -1,39 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Aaron Griffin 
-# Original TU: Jeff Mickey 
-# Contributor: ciccio.a
-
-pkgname=squashfs-tools
-pkgver=4.4
-pkgrel=1
-_commit=52eb4c279cd283ed9802dd1ceb686560b22ffb67
-pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for 
Linux."
-url="https://github.com/plougher/squashfs-tools;
-license=("GPL")
-arch=('x86_64')
-depends=('zlib' 'lzo' 'xz' 'lz4' 'zstd')
-makedepends=('git')
-source=("git+https://github.com/plougher/squashfs-tools#commit=${_commit};)
-sha256sums=('SKIP')
-
-prepare() {
-cd "$srcdir"/${pkgname}/${pkgname}
-sed -i '1,1i#include ' mksquashfs.c unsquashfs.c
-}
-
-build() {
-cd "$srcdir"/${pkgname}/${pkgname}
-make \
-GZIP_SUPPORT=1 \
-XZ_SUPPORT=1 \
-LZO_SUPPORT=1 \
-LZMA_XZ_SUPPORT=1 \
-LZ4_SUPPORT=1 \
-ZSTD_SUPPORT=1 \
-XATTR_SUPPORT=1
-}
-
-package() {
-cd "$srcdir"/${pkgname}/${pkgname}
-make install INSTALL_DIR="${pkgdir}"/usr/bin
-}

Copied: squashfs-tools/repos/community-x86_64/PKGBUILD (from rev 636090, 
squashfs-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:53:50 UTC (rev 636091)
@@ -0,0 +1,39 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Aaron Griffin 
+# Original TU: Jeff Mickey 
+# Contributor: ciccio.a
+
+pkgname=squashfs-tools
+pkgver=4.4
+pkgrel=2
+_commit=c570c6188811088b12ffdd9665487a2960c997a0
+pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for 
Linux."
+url="https://github.com/plougher/squashfs-tools;
+license=("GPL")
+arch=('x86_64')
+depends=('zlib' 'lzo' 'xz' 'lz4' 'zstd')
+makedepends=('git')
+source=("git+https://github.com/plougher/squashfs-tools#commit=${_commit};)
+sha256sums=('SKIP')
+
+prepare() {
+cd "$srcdir"/${pkgname}/${pkgname}
+sed -i '1,1i#include ' mksquashfs.c unsquashfs.c
+}
+
+build() {
+cd "$srcdir"/${pkgname}/${pkgname}
+make \
+GZIP_SUPPORT=1 \
+XZ_SUPPORT=1 \
+LZO_SUPPORT=1 \
+LZMA_XZ_SUPPORT=1 \
+LZ4_SUPPORT=1 \
+ZSTD_SUPPORT=1 \
+XATTR_SUPPORT=1
+}
+
+package() {
+cd "$srcdir"/${pkgname}/${pkgname}
+make install INSTALL_DIR="${pkgdir}"/usr/bin
+}


[arch-commits] Commit in audacity/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 21:47:04
  Author: dvzrv
Revision: 636089

archrelease: copy trunk to community-x86_64

Added:
  audacity/repos/community-x86_64/PKGBUILD
(from rev 636088, audacity/trunk/PKGBUILD)
Deleted:
  audacity/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  144 +++--
 1 file changed, 74 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:46:33 UTC (rev 636088)
+++ PKGBUILD2020-05-27 21:47:04 UTC (rev 636089)
@@ -1,70 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Eric Bélanger 
-
-pkgname=audacity
-pkgver=2.4.1
-pkgrel=3
-epoch=1
-pkgdesc="A program that lets you manipulate digital audio waveforms"
-arch=('x86_64')
-url="https://audacityteam.org;
-license=('GPL2' 'CCPL')
-groups=('pro-audio')
-# upstream hard codes/vendors portaudio/portmidi
-# https://github.com/audacity/audacity/issues/522
-depends=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'libmad'
-'libsoxr' 'soundtouch' 'wxgtk3')
-makedepends=('alsa-lib' 'cmake' 'ffmpeg' 'flac' 'glib2' 'gtk3' 'jack' 'lame'
-'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
-'twolame' 'vamp-plugin-sdk')
-optdepends=('ffmpeg: additional import/export capabilities')
-source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz;)
-sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25')
-
-prepare() {
-  mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # the cmake setup is still more complicated and error-prone than the
-  # autotools setup:
-  # https://github.com/audacity/audacity/issues/519
-  # https://github.com/audacity/audacity/issues/520
-  # https://github.com/audacity/audacity/issues/521
-  WX_CONFIG=wx-config-gtk3 ./configure --prefix="/usr" \
---with-libsndfile="system" \
---with-ffmpeg="system" \
---with-expat="system" \
---with-lame="system" \
---with-libsoxr="system" \
---with-portaudio \
---with-portmidi \
---with-libflac \
---with-libid3tag \
---with-libsamplerate \
---with-sbsms \
---with-soundtouch \
---with-libtwolame \
---with-libvorbis \
---with-lv2
-  make
-}
-
-package() {
-  depends+=('libFLAC.so' 'libFLAC++.so' 'libasound.so' 'libgdk-3.so'
-  'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so' 'libid3tag.so'
-  'libjack.so' 'liblilv-0.so' 'libogg.so' 'libsndfile.so' 'libsuil-0.so'
-  'libtwolame.so' 'libvamp-hostsdk.so' 'libvorbis.so' 'libvorbisenc.so'
-  'libvorbisfile.so' 'libportSMF.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  # install libnyquist plugins, missing since 2.4.0:
-  # https://bugs.archlinux.org/task/66733
-  install -vDm 644 plug-ins/*.ny -t "${pkgdir}/usr/share/${pkgname}/plug-ins"
-  # install missing *.lsp files for nyquist plugins, missing since 2.4.0:
-  # https://bugs.archlinux.org/task/66739
-  install -vDm 644 nyquist/*.lsp -t "${pkgdir}/usr/share/${pkgname}/nyquist"
-}

Copied: audacity/repos/community-x86_64/PKGBUILD (from rev 636088, 
audacity/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:47:04 UTC (rev 636089)
@@ -0,0 +1,74 @@
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
+
+pkgname=audacity
+pkgver=2.4.1
+pkgrel=4
+epoch=1
+pkgdesc="A program that lets you manipulate digital audio waveforms"
+arch=('x86_64')
+url="https://audacityteam.org;
+license=('GPL2' 'CCPL')
+groups=('pro-audio')
+# upstream hard codes/vendors portaudio/portmidi
+# https://github.com/audacity/audacity/issues/522
+depends=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'libmad'
+'libsoxr' 'soundtouch' 'wxgtk3')
+makedepends=('alsa-lib' 'cmake' 'ffmpeg' 'flac' 'glib2' 'gtk3' 'jack' 'lame'
+'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
+'twolame' 'vamp-plugin-sdk')
+optdepends=('ffmpeg: additional import/export capabilities')
+source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz;
+
"${pkgname}-2.4.1-resize_crash.patch::https://github.com/dvzrv/audacity/commit/d7e769040b508aaf15ce7b51cc1a565d41cdb079.patch;)
+sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25'
+
'9c111b6d74ff0cd76f5f2db0ce513bf1c5400c41497220c87ea694f5b2b75c1e6bc1a817dd1fb2e81ed5ddcf2c610bb334a091c2cd8f7baea911f47cab4b')
+
+prepare() {
+  mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  # fix crash on resize: https://bugs.archlinux.org/task/66771
+  patch -Np1 -i "../${pkgname}-2.4.1-resize_crash.patch"
+  autoreconf -vfi

[arch-commits] Commit in audacity/trunk (PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 21:46:33
  Author: dvzrv
Revision: 636088

upgpkg: audacity 1:2.4.1-4: Rebuilding with fix for crash on resize (FS#66771).

Modified:
  audacity/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:41:31 UTC (rev 636087)
+++ PKGBUILD2020-05-27 21:46:33 UTC (rev 636088)
@@ -3,7 +3,7 @@
 
 pkgname=audacity
 pkgver=2.4.1
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A program that lets you manipulate digital audio waveforms"
 arch=('x86_64')
@@ -18,12 +18,16 @@
 'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
 'twolame' 'vamp-plugin-sdk')
 optdepends=('ffmpeg: additional import/export capabilities')
-source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz;)
-sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25')
+source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz;
+
"${pkgname}-2.4.1-resize_crash.patch::https://github.com/dvzrv/audacity/commit/d7e769040b508aaf15ce7b51cc1a565d41cdb079.patch;)
+sha512sums=('2f0a3f7e24dce91ae520e285dbb05778b68e0fe37b8ded55ac568b5f8135069951b3986764adc5d0791c165b283a3c19596f1d6f51ba17028e0eb04558c63f25'
+
'9c111b6d74ff0cd76f5f2db0ce513bf1c5400c41497220c87ea694f5b2b75c1e6bc1a817dd1fb2e81ed5ddcf2c610bb334a091c2cd8f7baea911f47cab4b')
 
 prepare() {
   mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
   cd "${pkgname}-${pkgver}"
+  # fix crash on resize: https://bugs.archlinux.org/task/66771
+  patch -Np1 -i "../${pkgname}-2.4.1-resize_crash.patch"
   autoreconf -vfi
 }
 


[arch-commits] Commit in redmine/trunk (PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:41:15
  Author: spupykin
Revision: 636086

upgpkg: redmine 4.1.1-1

Modified:
  redmine/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:41:01 UTC (rev 636085)
+++ PKGBUILD2020-05-27 21:41:15 UTC (rev 636086)
@@ -2,8 +2,8 @@
 # Contributor: Federico Cuello 
 
 pkgname=redmine
-pkgver=4.1.0
-pkgrel=2
+pkgver=4.1.1
+pkgrel=1
 pkgdesc="A flexible project management web application written using Ruby on 
Rails framework."
 arch=('any')
 url="https://www.redmine.org;
@@ -18,7 +18,7 @@
 source=("$url/releases/$pkgname-$pkgver.tar.gz"
"Gemfile.local"
"redmine.service")
-sha512sums=('d77eb4efe8d83a247c4462add8800297bd845276b93c7fd38b3eb5e36b7013dce39b8193b2c687de98d9da196fe8251b104363b1f16cdcbfd5a1af02d55812e7'
+sha512sums=('fe691318fe8464de197a49ac172ecfcd65047ca62273226f63549620475557cd27cf8e193355a665abef64fc0c9e59556b4732cdcaa8061746918b06a7afcf81'
 
'f9b19ae2c3ef548ccde3e6fcc0c37906e38496a145adb2b4161843db7ed64a2fd7c1b35a18d8bb23dc36e896a1505388b65df7bb768517a5cafbd43e0abc3a3f'
 
'0b897980a8920538674fa7585e1dbaef48a152226215d598c41b3fcf4ac6566b5866d6e3132c30c0adbdc0d8e0080e2541cb4a119aedc6bef24fd6c129abd4eb')
 


[arch-commits] Commit in redmine/repos/community-any (6 files)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:41:31
  Author: spupykin
Revision: 636087

archrelease: copy trunk to community-any

Added:
  redmine/repos/community-any/Gemfile.local
(from rev 636086, redmine/trunk/Gemfile.local)
  redmine/repos/community-any/PKGBUILD
(from rev 636086, redmine/trunk/PKGBUILD)
  redmine/repos/community-any/redmine.service
(from rev 636086, redmine/trunk/redmine.service)
Deleted:
  redmine/repos/community-any/Gemfile.local
  redmine/repos/community-any/PKGBUILD
  redmine/repos/community-any/redmine.service

-+
 Gemfile.local   |   18 -
 PKGBUILD|  102 +++---
 redmine.service |   30 +++
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: Gemfile.local
===
--- Gemfile.local   2020-05-27 21:41:15 UTC (rev 636086)
+++ Gemfile.local   2020-05-27 21:41:31 UTC (rev 636087)
@@ -1,9 +0,0 @@
-gem "xpath", "< 4.0"
-gem "capybara", "~> 3.25.0"
-gem "ffi", ">= 0"
-gem "childprocess", "= 0.9.0"
-gem "docile", "= 1.1.5"
-gem "metaclass", "= 0.0.4"
-gem "mocha", ">= 1.4.0"
-gem "mysql2", "~> 0.5.0"
-gem "pg", "~> 1.1.4"

Copied: redmine/repos/community-any/Gemfile.local (from rev 636086, 
redmine/trunk/Gemfile.local)
===
--- Gemfile.local   (rev 0)
+++ Gemfile.local   2020-05-27 21:41:31 UTC (rev 636087)
@@ -0,0 +1,9 @@
+gem "xpath", "< 4.0"
+gem "capybara", "~> 3.25.0"
+gem "ffi", ">= 0"
+gem "childprocess", "= 0.9.0"
+gem "docile", "= 1.1.5"
+gem "metaclass", "= 0.0.4"
+gem "mocha", ">= 1.4.0"
+gem "mysql2", "~> 0.5.0"
+gem "pg", "~> 1.1.4"

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:41:15 UTC (rev 636086)
+++ PKGBUILD2020-05-27 21:41:31 UTC (rev 636087)
@@ -1,51 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Federico Cuello 
-
-pkgname=redmine
-pkgver=4.1.0
-pkgrel=2
-pkgdesc="A flexible project management web application written using Ruby on 
Rails framework."
-arch=('any')
-url="https://www.redmine.org;
-license=('GPL2')
-depends=('ruby2.6' 'libmagick6' 'libxml2' 'libxslt')
-makedepends=('mariadb-libs' 'postgresql-libs')
-optdepends=('apache: A supported application server'
-'nginx: A supported application server'
-'mysql: MySQL database support'
-'postgresql: PostgreSQL database support'
-'sqlite: SQLite database support')
-source=("$url/releases/$pkgname-$pkgver.tar.gz"
-   "Gemfile.local"
-   "redmine.service")
-sha512sums=('d77eb4efe8d83a247c4462add8800297bd845276b93c7fd38b3eb5e36b7013dce39b8193b2c687de98d9da196fe8251b104363b1f16cdcbfd5a1af02d55812e7'
-
'f9b19ae2c3ef548ccde3e6fcc0c37906e38496a145adb2b4161843db7ed64a2fd7c1b35a18d8bb23dc36e896a1505388b65df7bb768517a5cafbd43e0abc3a3f'
-
'0b897980a8920538674fa7585e1dbaef48a152226215d598c41b3fcf4ac6566b5866d6e3132c30c0adbdc0d8e0080e2541cb4a119aedc6bef24fd6c129abd4eb')
-
-build() {
-cd "$srcdir"/redmine-$pkgver
-
-export PATH=/opt/ruby2.6/bin:$PATH
-export PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig"
-
-cp "${srcdir}"/Gemfile.local Gemfile.local
-bundle-2.6 lock
-bundle-2.6 install --no-cache --deployment --without development test
-}
-
-package() {
-install -dm 755 "$pkgdir"/usr/share/webapps/
-cp -a --no-preserve=ownership "$srcdir"/redmine-$pkgver 
"$pkgdir"/usr/share/webapps/redmine
-
-install -Dm0644 "${srcdir}"/redmine.service 
"${pkgdir}"/usr/lib/systemd/system/redmine.service
-
-cd "$pkgdir"/usr/share/webapps/redmine
-rm -rf files log
-install -dm0755 -o http -g http "$pkgdir"/var/lib/redmine/files
-install -dm0755 -o http -g http "$pkgdir"/var/log/redmine
-mv tmp "$pkgdir"/var/lib/redmine/tmp
-chown -R http:http "$pkgdir"/var/lib/redmine/tmp
-ln -s /var/log/redmine log
-ln -s /var/lib/redmine/files files
-ln -s /var/lib/redmine/tmp tmp
-}

Copied: redmine/repos/community-any/PKGBUILD (from rev 636086, 
redmine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:41:31 UTC (rev 636087)
@@ -0,0 +1,51 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Federico Cuello 
+
+pkgname=redmine
+pkgver=4.1.1
+pkgrel=1
+pkgdesc="A flexible project management web application written using Ruby on 
Rails framework."
+arch=('any')
+url="https://www.redmine.org;
+license=('GPL2')
+depends=('ruby2.6' 'libmagick6' 'libxml2' 'libxslt')
+makedepends=('mariadb-libs' 'postgresql-libs')
+optdepends=('apache: A supported application server'
+'nginx: A supported application server'
+'mysql: MySQL database support'
+'postgresql: PostgreSQL database support'
+'sqlite: SQLite database support')

[arch-commits] Commit in menu-cache/trunk (2 files)

2020-05-27 Thread Balló György via arch-commits
Date: Wednesday, May 27, 2020 @ 21:40:47
  Author: bgyorgy
Revision: 636084

upgpkg: menu-cache 1.1.0-2: Fix build

Added:
  menu-cache/trunk/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
Modified:
  menu-cache/trunk/PKGBUILD

---+
 PKGBUILD  |   14 +-
 menu-cache-1.1.0-0001-Support-gcc10-compilation.patch |  108 
 2 files changed, 119 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:36:25 UTC (rev 636083)
+++ PKGBUILD2020-05-27 21:40:47 UTC (rev 636084)
@@ -5,7 +5,7 @@
 
 pkgname=menu-cache
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Caching mechanism for freedesktop.org compliant menus'
 arch=('x86_64')
 license=('GPL2')
@@ -12,9 +12,17 @@
 url='https://lxde.org/'
 depends=('libfm-extra')
 makedepends=('gtk-doc')
-source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-sha256sums=('ed02eb459dcb398f69b9fa5bf4dd813020405afc84331115469cdf7be9273ec7')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz
+menu-cache-1.1.0-0001-Support-gcc10-compilation.patch)
+sha256sums=('ed02eb459dcb398f69b9fa5bf4dd813020405afc84331115469cdf7be9273ec7'
+'393723ca805cb5ffb5eee2ad00a1c4624b513ca72bfb6a880d71907fb96e83de')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix build (taken from Fedora)
+  patch -Np1 -i ../menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \

Added: menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
===
--- menu-cache-1.1.0-0001-Support-gcc10-compilation.patch   
(rev 0)
+++ menu-cache-1.1.0-0001-Support-gcc10-compilation.patch   2020-05-27 
21:40:47 UTC (rev 636084)
@@ -0,0 +1,108 @@
+From 1ce739649b4d66339a03fc0ec9ee7a2f7c141780 Mon Sep 17 00:00:00 2001
+From: Mamoru TASAKA 
+Date: Fri, 24 Jan 2020 13:33:00 +0900
+Subject: [PATCH] Support gcc10 compilation
+
+gcc10 now defaults to -fno-common, and with gcc10 menu-cache compilation fails 
like
+
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:167: multiple definition of 
`DirDirs'; main.o:menu-cache-gen/menu-tags.h:167: first defined here
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:164: multiple definition of 
`AppDirs'; main.o:menu-cache-gen/menu-tags.h:164: first defined here
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:52: multiple definition of 
`menuTag_Layout'; main.o:menu-cache-gen/menu-tags.h:52: first defined here
+
+
+This patch fixes compilation with gcc10: properly declaring variables in 
header with "extern", and also removing some unneeded variables in header files.
+---
+ menu-cache-gen/menu-tags.h | 55 --
+ 1 file changed, 17 insertions(+), 38 deletions(-)
+
+diff --git a/menu-cache-gen/menu-tags.h b/menu-cache-gen/menu-tags.h
+index f3fd7d3..f71c0bc 100644
+--- a/menu-cache-gen/menu-tags.h
 b/menu-cache-gen/menu-tags.h
+@@ -22,38 +22,17 @@
+ #include 
+ #include 
+ 
+-FmXmlFileTag menuTag_Menu;
+-FmXmlFileTag menuTag_AppDir;
+-FmXmlFileTag menuTag_DefaultAppDirs;
+-FmXmlFileTag menuTag_DirectoryDir;
+-FmXmlFileTag menuTag_DefaultDirectoryDirs;
+-FmXmlFileTag menuTag_Include;
+-FmXmlFileTag menuTag_Exclude;
+-FmXmlFileTag menuTag_Filename;
+-FmXmlFileTag menuTag_Or;
+-FmXmlFileTag menuTag_And;
+-FmXmlFileTag menuTag_Not;
+-FmXmlFileTag menuTag_Category;
+-FmXmlFileTag menuTag_MergeFile;
+-FmXmlFileTag menuTag_MergeDir;
+-FmXmlFileTag menuTag_DefaultMergeDirs;
+-FmXmlFileTag menuTag_Directory;
+-FmXmlFileTag menuTag_Name;
+-FmXmlFileTag menuTag_Deleted;
+-FmXmlFileTag menuTag_NotDeleted;
+-FmXmlFileTag menuTag_OnlyUnallocated;
+-FmXmlFileTag menuTag_NotOnlyUnallocated;
+-FmXmlFileTag menuTag_All;
+-FmXmlFileTag menuTag_LegacyDir;
+-FmXmlFileTag menuTag_KDELegacyDirs;
+-FmXmlFileTag menuTag_Move;
+-FmXmlFileTag menuTag_Old;
+-FmXmlFileTag menuTag_New;
+-FmXmlFileTag menuTag_Layout;
+-FmXmlFileTag menuTag_DefaultLayout;
+-FmXmlFileTag menuTag_Menuname;
+-FmXmlFileTag menuTag_Separator;
+-FmXmlFileTag menuTag_Merge;
++extern FmXmlFileTag menuTag_AppDir;
++extern FmXmlFileTag menuTag_DirectoryDir;
++extern FmXmlFileTag menuTag_Include;
++extern FmXmlFileTag menuTag_Exclude;
++extern FmXmlFileTag menuTag_Filename;
++extern FmXmlFileTag menuTag_Or;
++extern FmXmlFileTag menuTag_And;
++extern FmXmlFileTag menuTag_Not;
++extern FmXmlFileTag menuTag_Category;
++extern FmXmlFileTag menuTag_All;
++extern FmXmlFileTag menuTag_LegacyDir;
+ 
+ typedef enum {
+ MERGE_NONE, /* starting value */
+@@ -152,19 +131,19 @@ typedef struct {
+ } MenuRule;
+ 
+ /* requested language(s) */
+-char **languages;
++extern char **languages;
+ 
+ /* list of menu files to monitor */
+-GSList *MenuFiles;
++extern GSList *MenuFiles;
+ 
+ /* list of 

[arch-commits] Commit in menu-cache/repos/community-x86_64 (3 files)

2020-05-27 Thread Balló György via arch-commits
Date: Wednesday, May 27, 2020 @ 21:41:01
  Author: bgyorgy
Revision: 636085

archrelease: copy trunk to community-x86_64

Added:
  menu-cache/repos/community-x86_64/PKGBUILD
(from rev 636084, menu-cache/trunk/PKGBUILD)
  
menu-cache/repos/community-x86_64/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
(from rev 636084, 
menu-cache/trunk/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch)
Deleted:
  menu-cache/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   67 +
 menu-cache-1.1.0-0001-Support-gcc10-compilation.patch |  108 
 2 files changed, 145 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:40:47 UTC (rev 636084)
+++ PKGBUILD2020-05-27 21:41:01 UTC (rev 636085)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=menu-cache
-pkgver=1.1.0
-pkgrel=1
-pkgdesc='Caching mechanism for freedesktop.org compliant menus'
-arch=('x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-depends=('libfm-extra')
-makedepends=('gtk-doc')
-source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-sha256sums=('ed02eb459dcb398f69b9fa5bf4dd813020405afc84331115469cdf7be9273ec7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib \
---enable-gtk-doc
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: menu-cache/repos/community-x86_64/PKGBUILD (from rev 636084, 
menu-cache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:41:01 UTC (rev 636085)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=menu-cache
+pkgver=1.1.0
+pkgrel=2
+pkgdesc='Caching mechanism for freedesktop.org compliant menus'
+arch=('x86_64')
+license=('GPL2')
+url='https://lxde.org/'
+depends=('libfm-extra')
+makedepends=('gtk-doc')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz
+menu-cache-1.1.0-0001-Support-gcc10-compilation.patch)
+sha256sums=('ed02eb459dcb398f69b9fa5bf4dd813020405afc84331115469cdf7be9273ec7'
+'393723ca805cb5ffb5eee2ad00a1c4624b513ca72bfb6a880d71907fb96e83de')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix build (taken from Fedora)
+  patch -Np1 -i ../menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--enable-gtk-doc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
menu-cache/repos/community-x86_64/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch
 (from rev 636084, 
menu-cache/trunk/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch)
===
--- menu-cache-1.1.0-0001-Support-gcc10-compilation.patch   
(rev 0)
+++ menu-cache-1.1.0-0001-Support-gcc10-compilation.patch   2020-05-27 
21:41:01 UTC (rev 636085)
@@ -0,0 +1,108 @@
+From 1ce739649b4d66339a03fc0ec9ee7a2f7c141780 Mon Sep 17 00:00:00 2001
+From: Mamoru TASAKA 
+Date: Fri, 24 Jan 2020 13:33:00 +0900
+Subject: [PATCH] Support gcc10 compilation
+
+gcc10 now defaults to -fno-common, and with gcc10 menu-cache compilation fails 
like
+
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:167: multiple definition of 
`DirDirs'; main.o:menu-cache-gen/menu-tags.h:167: first defined here
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:164: multiple definition of 
`AppDirs'; main.o:menu-cache-gen/menu-tags.h:164: first defined here
+/bin/ld: menu-merge.o:menu-cache-gen/menu-tags.h:52: multiple definition of 
`menuTag_Layout'; main.o:menu-cache-gen/menu-tags.h:52: first defined here
+
+
+This patch fixes compilation with gcc10: properly declaring variables in 
header with "extern", and also removing some unneeded variables in header files.
+---
+ menu-cache-gen/menu-tags.h | 55 --
+ 1 file changed, 17 insertions(+), 38 deletions(-)
+
+diff --git a/menu-cache-gen/menu-tags.h b/menu-cache-gen/menu-tags.h
+index f3fd7d3..f71c0bc 100644
+--- a/menu-cache-gen/menu-tags.h
 b/menu-cache-gen/menu-tags.h
+@@ -22,38 +22,17 @@
+ #include 
+ #include 
+ 
+-FmXmlFileTag menuTag_Menu;
+-FmXmlFileTag menuTag_AppDir;
+-FmXmlFileTag menuTag_DefaultAppDirs;
+-FmXmlFileTag menuTag_DirectoryDir;
+-FmXmlFileTag menuTag_DefaultDirectoryDirs;
+-FmXmlFileTag menuTag_Include;
+-FmXmlFileTag menuTag_Exclude;
+-FmXmlFileTag menuTag_Filename;
+-FmXmlFileTag menuTag_Or;

[arch-commits] Commit in gitlab/repos (14 files)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Wednesday, May 27, 2020 @ 21:36:25
  Author: anatolik
Revision: 636083

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab/repos/community-testing-x86_64/
  gitlab/repos/community-testing-x86_64/PKGBUILD
(from rev 636082, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-testing-x86_64/build_fix.patch
(from rev 636082, gitlab/trunk/build_fix.patch)
  gitlab/repos/community-testing-x86_64/configs.patch
(from rev 636082, gitlab/trunk/configs.patch)
  gitlab/repos/community-testing-x86_64/gitlab-backup.service
(from rev 636082, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-testing-x86_64/gitlab-backup.timer
(from rev 636082, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-testing-x86_64/gitlab-mailroom.service
(from rev 636082, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-testing-x86_64/gitlab-puma.service
(from rev 636082, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-testing-x86_64/gitlab-sidekiq.service
(from rev 636082, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-testing-x86_64/gitlab.install
(from rev 636082, gitlab/trunk/gitlab.install)
  gitlab/repos/community-testing-x86_64/gitlab.logrotate
(from rev 636082, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-testing-x86_64/gitlab.target
(from rev 636082, gitlab/trunk/gitlab.target)
  gitlab/repos/community-testing-x86_64/gitlab.tmpfiles.d
(from rev 636082, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-testing-x86_64/ruby27-pop-extra-arg.patch
(from rev 636082, gitlab/trunk/ruby27-pop-extra-arg.patch)

+
 PKGBUILD   |  185 +++
 build_fix.patch|   23 +
 configs.patch  |  184 ++
 gitlab-backup.service  |   20 
 gitlab-backup.timer|   10 ++
 gitlab-mailroom.service|   22 +
 gitlab-puma.service|   34 +++
 gitlab-sidekiq.service |   31 +++
 gitlab.install |   34 +++
 gitlab.logrotate   |6 +
 gitlab.target  |7 +
 gitlab.tmpfiles.d  |1 
 ruby27-pop-extra-arg.patch |   26 ++
 13 files changed, 583 insertions(+)

Copied: gitlab/repos/community-testing-x86_64/PKGBUILD (from rev 636082, 
gitlab/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-27 21:36:25 UTC (rev 636083)
@@ -0,0 +1,185 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Jonas Heinrich 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+# Contributor: Caleb Maclennan 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab
+pkgver=13.0.1
+pkgrel=1
+pkgdesc="Project management and code hosting application"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-foss;
+license=('MIT')
+options=(!buildflags)
+depends=('ruby' 'ruby-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs' 'openssl')
+makedepends=('cmake' 'postgresql' 'yarn' 'go' 'nodejs')
+optdepends=('postgresql: database backend'
+'python-docutils: reStructuredText markup language support'
+'smtp-server: mail server in order to receive mail notifications')
+backup=("etc/webapps/gitlab/application.rb"
+"etc/webapps/gitlab/database.yml"
+"etc/webapps/gitlab/gitlab.yml"
+"etc/webapps/gitlab/resque.yml"
+"etc/webapps/gitlab/puma.rb"
+"etc/logrotate.d/gitlab")
+source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
+configs.patch
+build_fix.patch
+gitlab-puma.service
+gitlab-sidekiq.service
+gitlab-backup.service
+gitlab-mailroom.service
+gitlab-backup.timer
+gitlab.target
+gitlab.tmpfiles.d
+gitlab.logrotate
+ruby27-pop-extra-arg.patch)
+install='gitlab.install'
+sha512sums=('SKIP'
+
'9b054872e2017dae3acd0534c0608634cf7c5f996672e589c3b9988ce18b110423b63f5207585c2ba4941b516606a2a9a8db6fd320012a4d90cf3beca147a220'
+
'9623de113358d3d6e49047f688e272d9394579734ace1bd647497e8717a90784546d27e547a29197a16c80d72ad9f2c79eb65f8edc631deadf2ec90ee86ea44b'
+
'af5c9d2247e7c1b340865253a3ba4134ee889f11733d055f758c186d9898c78b3d6877a61b88eb31e96670419d7acf21c758c281ab7d7022f81e17388032b9f9'
+
'cbaeea4ac8bb5a882eb8a75715ed1d7ac073b2b65074f9b3fbd31aaa10cce72e2580e888a34a40b39014eeaf2ea4fdf74e9589a44149d0d92bc8b55c468dfe07'
+   

[arch-commits] Commit in gitlab/trunk (PKGBUILD)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Wednesday, May 27, 2020 @ 21:35:24
  Author: anatolik
Revision: 636082

upgpkg: gitlab 13.0.1-1

Modified:
  gitlab/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:33:32 UTC (rev 636081)
+++ PKGBUILD2020-05-27 21:35:24 UTC (rev 636082)
@@ -10,8 +10,8 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab
-pkgver=13.0.0
-pkgrel=2
+pkgver=13.0.1
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-foss;
@@ -44,8 +44,8 @@
 sha512sums=('SKIP'
 
'9b054872e2017dae3acd0534c0608634cf7c5f996672e589c3b9988ce18b110423b63f5207585c2ba4941b516606a2a9a8db6fd320012a4d90cf3beca147a220'
 
'9623de113358d3d6e49047f688e272d9394579734ace1bd647497e8717a90784546d27e547a29197a16c80d72ad9f2c79eb65f8edc631deadf2ec90ee86ea44b'
-
'8d759f1ae3391a0bafe8cfbbddfa6e7bfb5b587439f9f750e34e0bbf85c6c514da7c6932d74be284746f596bf2c4bdddfeff66f81ae39f73e43a9b5326bc688f'
-
'31fccf265783fd6c95fd94036d2f1148945d5fc9b713d108632d931b0cc51a5e166972956d042d5f30fe411d68a056794461103832ce9afbd4654923a8bde531'
+
'af5c9d2247e7c1b340865253a3ba4134ee889f11733d055f758c186d9898c78b3d6877a61b88eb31e96670419d7acf21c758c281ab7d7022f81e17388032b9f9'
+
'cbaeea4ac8bb5a882eb8a75715ed1d7ac073b2b65074f9b3fbd31aaa10cce72e2580e888a34a40b39014eeaf2ea4fdf74e9589a44149d0d92bc8b55c468dfe07'
 
'0cbb9a1631b529a83d5c6db95fd3a684c8f06073890b31f6262c339360444e7452275d804fb6a119a3d61a0ef1b76d0e956f260a12f032d54c00308e8d9520b0'
 
'15de5b11a31d733bd5b6fa50faa2395dbe53c252bd52f937e67cdc940de17554e946d1e7f9746538a6be0cc12024fc2816c2b64a56e16762abaca75562a7512d'
 
'c76d634647336aaf157bc66ba094a363e971c0d275875a7df4521819147f54cd4c709eb8e024cdac9e900d99167e8a78a222587e7292e915573ef29060e6ec21'


[arch-commits] Commit in embree/trunk (PKGBUILD)

2020-05-27 Thread Bruno Pagani via arch-commits
Date: Wednesday, May 27, 2020 @ 21:33:26
  Author: archange
Revision: 636080

upgpkg: embree 3.10.0-1

Modified:
  embree/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:32:55 UTC (rev 636079)
+++ PKGBUILD2020-05-27 21:33:26 UTC (rev 636080)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=embree
-pkgver=3.9.0
+pkgver=3.10.0
 pkgrel=1
 pkgdesc="Collection of high-performance ray tracing kernels"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(intel-tbb)
 makedepends=(cmake ispc freeglut libxmu openexr)
 
source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('53855e2ceb639289b20448ae9deab991151aa5f0bc7f9cc02f2af4dd6199d5d1')
+sha256sums=('f1f7237360165fb8859bf71ee5dd8caec1fe02d4d2f49e89c11d250afa067aff')
 
 build() {
 cmake -B build -S ${pkgname}-${pkgver} \


[arch-commits] Commit in embree/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Bruno Pagani via arch-commits
Date: Wednesday, May 27, 2020 @ 21:33:32
  Author: archange
Revision: 636081

archrelease: copy trunk to community-x86_64

Added:
  embree/repos/community-x86_64/PKGBUILD
(from rev 636080, embree/trunk/PKGBUILD)
Deleted:
  embree/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:33:26 UTC (rev 636080)
+++ PKGBUILD2020-05-27 21:33:32 UTC (rev 636081)
@@ -1,29 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Bruno Pagani 
-
-pkgname=embree
-pkgver=3.9.0
-pkgrel=1
-pkgdesc="Collection of high-performance ray tracing kernels"
-arch=(x86_64)
-url="https://embree.github.io/;
-license=(Apache)
-depends=(intel-tbb)
-makedepends=(cmake ispc freeglut libxmu openexr)
-source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('53855e2ceb639289b20448ae9deab991151aa5f0bc7f9cc02f2af4dd6199d5d1')
-
-build() {
-cmake -B build -S ${pkgname}-${pkgver} \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DEMBREE_TUTORIALS=OFF \
-  -DEMBREE_MAX_ISA="AVX512SKX"
-# Embree detects actual ISA at runtime
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-}

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 636080, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:33:32 UTC (rev 636081)
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+
+pkgname=embree
+pkgver=3.10.0
+pkgrel=1
+pkgdesc="Collection of high-performance ray tracing kernels"
+arch=(x86_64)
+url="https://embree.github.io/;
+license=(Apache)
+depends=(intel-tbb)
+makedepends=(cmake ispc freeglut libxmu openexr)
+source=(https://github.com/embree/embree/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('f1f7237360165fb8859bf71ee5dd8caec1fe02d4d2f49e89c11d250afa067aff')
+
+build() {
+cmake -B build -S ${pkgname}-${pkgver} \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DEMBREE_TUTORIALS=OFF \
+  -DEMBREE_MAX_ISA="AVX512SKX"
+# Embree detects actual ISA at runtime
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in gavl/trunk (PKGBUILD)

2020-05-27 Thread Balló György via arch-commits
Date: Wednesday, May 27, 2020 @ 21:32:32
  Author: bgyorgy
Revision: 636078

upgpkg: gavl 1.4.0-4: Fix build

Modified:
  gavl/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:29:27 UTC (rev 636077)
+++ PKGBUILD2020-05-27 21:32:32 UTC (rev 636078)
@@ -5,7 +5,7 @@
 
 pkgname=gavl
 pkgver=1.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Low level library, upon which multimedia APIs can be built'
 arch=('x86_64')
 url='http://gmerlin.sourceforge.net/'
@@ -15,6 +15,12 @@
 source=("https://downloads.sourceforge.net/gmerlin/$pkgname-$pkgver.tar.gz;)
 sha256sums=('51aaac41391a915bd9bad07710957424b046410a276e7deaff24a870929d33ce')
 
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix build
+  sed -i 's|volume_test_LDADD = ../gavl/libgavl.la|volume_test_LDADD = -lm 
../gavl/libgavl.la|' src/Makefile.{am,in}
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --with-cpuflags=none


[arch-commits] Commit in gavl/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Balló György via arch-commits
Date: Wednesday, May 27, 2020 @ 21:32:55
  Author: bgyorgy
Revision: 636079

archrelease: copy trunk to community-x86_64

Added:
  gavl/repos/community-x86_64/PKGBUILD
(from rev 636078, gavl/trunk/PKGBUILD)
Deleted:
  gavl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   61 +
 1 file changed, 33 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:32:32 UTC (rev 636078)
+++ PKGBUILD2020-05-27 21:32:55 UTC (rev 636079)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Lukas Fleischer 
-# Contributor: Robert Emil Berge 
-# Contributor: Mateusz Herych 
-
-pkgname=gavl
-pkgver=1.4.0
-pkgrel=3
-pkgdesc='Low level library, upon which multimedia APIs can be built'
-arch=('x86_64')
-url='http://gmerlin.sourceforge.net/'
-license=('GPL')
-depends=('glibc')
-makedepends=('doxygen')
-source=("https://downloads.sourceforge.net/gmerlin/$pkgname-$pkgver.tar.gz;)
-sha256sums=('51aaac41391a915bd9bad07710957424b046410a276e7deaff24a870929d33ce')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-cpuflags=none
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gavl/repos/community-x86_64/PKGBUILD (from rev 636078, 
gavl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:32:55 UTC (rev 636079)
@@ -0,0 +1,33 @@
+# Maintainer: Balló György 
+# Contributor: Lukas Fleischer 
+# Contributor: Robert Emil Berge 
+# Contributor: Mateusz Herych 
+
+pkgname=gavl
+pkgver=1.4.0
+pkgrel=4
+pkgdesc='Low level library, upon which multimedia APIs can be built'
+arch=('x86_64')
+url='http://gmerlin.sourceforge.net/'
+license=('GPL')
+depends=('glibc')
+makedepends=('doxygen')
+source=("https://downloads.sourceforge.net/gmerlin/$pkgname-$pkgver.tar.gz;)
+sha256sums=('51aaac41391a915bd9bad07710957424b046410a276e7deaff24a870929d33ce')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix build
+  sed -i 's|volume_test_LDADD = ../gavl/libgavl.la|volume_test_LDADD = -lm 
../gavl/libgavl.la|' src/Makefile.{am,in}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-cpuflags=none
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gsoap/trunk (LICENSE PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:29:27
  Author: spupykin
Revision: 636077

gsoap: clean up

Modified:
  gsoap/trunk/PKGBUILD
Deleted:
  gsoap/trunk/LICENSE

--+
 LICENSE  |  163 -
 PKGBUILD |8 +-
 2 files changed, 3 insertions(+), 168 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-05-27 21:26:38 UTC (rev 636076)
+++ LICENSE 2020-05-27 21:29:27 UTC (rev 636077)
@@ -1,163 +0,0 @@
-gSOAP Public License
-Version 1.3a
-The gSOAP public license is derived from the Mozilla Public License (MPL1.1). 
The sections that were deleted from the original MPL1.1 text are 1.0.1, 
2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The 
modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last 
sentence), and 3.6 (simplified).
-1  DEFINITIONS.
-
-1.0.1.
-1.1. "Contributor"
-means each entity that creates or contributes to the creation of 
Modifications.
-1.2. "Contributor Version"
-means the combination of the Original Code, prior Modifications used by a 
Contributor, and the Modifications made by that particular Contributor.
-1.3. "Covered Code"
-means the Original Code, or Modifications or the combination of the 
Original Code, and Modifications, in each case including portions thereof.
-1.4. "Electronic Distribution Mechanism"
-means a mechanism generally accepted in the software development community 
for the electronic transfer of data.
-1.5. "Executable"
-means Covered Code in any form other than Source Code.
-1.6. "Initial Developer"
-means the individual or entity identified as the Initial Developer in the 
Source Code notice required by Exhibit A.
-1.7. "Larger Work"
-means a work which combines Covered Code or portions thereof with code not 
governed by the terms of this License.
-1.8. "License"
-means this document.
-1.8.1. "Licensable"
-means having the right to grant, to the maximum extent possible, whether 
at the time of the initial grant or subsequently acquired, any and all of the 
rights conveyed herein.
-1.9. "Modifications"
-means any addition to or deletion from the substance or structure of 
either the Original Code or any previous Modifications. When Covered Code is 
released as a series of files, a Modification is:
-
-A.
-Any addition to or deletion from the contents of a file containing 
Original Code or previous Modifications.
-B.
-Any new file that contains any part of the Original Code, or previous 
Modifications. 
-
-1.10. "Original Code"
-means Source Code of computer software code which is described in the 
Source Code notice required by Exhibit A as Original Code, and which, at the 
time of its release under this License is not already Covered Code governed by 
this License.
-1.10.1. "Patent Claims"
-means any patent claim(s), now owned or hereafter acquired, including 
without limitation, method, process, and apparatus claims, in any patent 
Licensable by grantor.
-1.11. "Source Code"
-means the preferred form of the Covered Code for making modifications to 
it, including all modules it contains, plus any associated interface definition 
files, scripts used to control compilation and installation of an Executable, 
or source code differential comparisons against either the Original Code or 
another well known, available Covered Code of the Contributor's choice. The 
Source Code can be in a compressed or archival form, provided the appropriate 
decompression or de-archiving software is widely available for no charge.
-1.12. "You" (or "Your")
-means an individual or a legal entity exercising rights under, and 
complying with all of the terms of, this License or a future version of this 
License issued under Section 6.1. For legal entities, "You" includes any entity 
which controls, is controlled by, or is under common control with You. For 
purposes of this definition, "control" means (a) the power, direct or indirect, 
to cause the direction or management of such entity, whether by contract or 
otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding 
shares or beneficial ownership of such entity.
-
-2  SOURCE CODE LICENSE.
-
-2.1. The Initial Developer Grant.
-
-The Initial Developer hereby grants You a world-wide, royalty-free, 
non-exclusive license, subject to third party intellectual property claims:
-
-(a)
-under intellectual property rights (other than patent or trademark) 
Licensable by Initial Developer to use, reproduce, modify, display, perform, 
sublicense and distribute the Original Code (or portions thereof) with or 
without Modifications, and/or as part of a Larger Work; and
-(b)
-under patents now or hereafter owned or controlled by Initial 
Developer, to make, have made, use and sell ("offer to sell and import") the 
Original Code, Modifications, or 

[arch-commits] Commit in yoshimi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 21:26:38
  Author: dvzrv
Revision: 636076

archrelease: copy trunk to community-x86_64

Added:
  yoshimi/repos/community-x86_64/PKGBUILD
(from rev 636075, yoshimi/trunk/PKGBUILD)
Deleted:
  yoshimi/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  104 +
 1 file changed, 57 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:26:15 UTC (rev 636075)
+++ PKGBUILD2020-05-27 21:26:38 UTC (rev 636076)
@@ -1,47 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: David Adler 
-
-pkgname=yoshimi
-pkgver=1.7.1
-pkgrel=1
-pkgdesc="A sophisticated soft-synth originally forked from ZynAddSubFX"
-arch=('x86_64')
-url="https://yoshimi.github.io/;
-license=('GPL2')
-groups=('pro-audio')
-depends=('cairo' 'fftw' 'fltk' 'gcc-libs' 'glibc'
-'libmxml.so' 'zlib')
-makedepends=('cmake' 'libasound.so' 'libjack.so' 'libreadline.so'
-'libncursesw.so' 'lv2')
-# checkdepends=('lv2lint')
-optdepends=('libasound.so: for standalone application'
-'libjack.so: for standalone application'
-'libreadline.so: for standalone application'
-'libncursesw.so: for standalone application')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('d422c08caa6bf20665442b2d88fc4ccc41b881d719d5150d1cd3d2617f2216b18c112107c5723cb1077da0ba2278a3eb2db0a8dda4ce3c6315e3875cbfaf421c')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_DATAROOTDIR='/usr/share' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib' \
--B build\
-src
-  make VERBOSE=1 -C build
-}
-
-# lv2 plugin requires banks to be in some absolute location to be tested
-# check() {
-#   cd "${pkgname}-${pkgver}"
-#   cp -v build/LV2_Plugin/${pkgname}_lv2.so src/LV2_Plugin/
-#   LV2_PATH="${PWD}/src/" lv2lint "http://yoshimi.sourceforge.net/lv2_plugin;
-# }
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" VERBOSE=1 -C build install
-  install -vDm 644 {Changelog,Dependencies,README.txt,Yoshimi_Helpers} \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-}
-# vim:set ts=2 sw=2 et:

Copied: yoshimi/repos/community-x86_64/PKGBUILD (from rev 636075, 
yoshimi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:26:38 UTC (rev 636076)
@@ -0,0 +1,57 @@
+# Maintainer: David Runge 
+# Contributor: David Adler 
+
+pkgname=yoshimi
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="A sophisticated soft-synth originally forked from ZynAddSubFX"
+arch=('x86_64')
+url="https://yoshimi.github.io/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('cairo' 'fftw' 'fltk' 'gcc-libs' 'glibc'
+'libmxml.so' 'zlib')
+makedepends=('cmake' 'libasound.so' 'libjack.so' 'libreadline.so'
+'libncursesw.so' 'lv2')
+# checkdepends=('lv2lint')
+optdepends=('libasound.so: for standalone application'
+'libjack.so: for standalone application'
+'libreadline.so: for standalone application'
+'libncursesw.so: for standalone application')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+
"${pkgname}-1.7.1-lv2-1.8.0.patch::https://github.com/Yoshimi/yoshimi/commit/4bb8bfe9f9f40dd53f9a3098f8f87ad993147935.patch;)
+sha512sums=('d422c08caa6bf20665442b2d88fc4ccc41b881d719d5150d1cd3d2617f2216b18c112107c5723cb1077da0ba2278a3eb2db0a8dda4ce3c6315e3875cbfaf421c'
+
'206e0302d45dd36102adda295f533777913c76e7e53c7151ac796185590ebbd010a23f1b97d5a23d09b59d4ff207eda46234f3bd3e348992267b6e9e1234e1d3')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix compatibility with lv2 >= 1.18.0
+  patch -Np1 -i "../${pkgname}-1.7.1-lv2-1.8.0.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_DATAROOTDIR='/usr/share' \
+-DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
+-B build\
+src
+  make VERBOSE=1 -C build
+}
+
+# lv2 plugin requires banks to be in some absolute location to be tested
+# check() {
+#   cd "${pkgname}-${pkgver}"
+#   cp -v build/LV2_Plugin/${pkgname}_lv2.so src/LV2_Plugin/
+#   LV2_PATH="${PWD}/src/" lv2lint "http://yoshimi.sourceforge.net/lv2_plugin;
+# }
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" VERBOSE=1 -C build install
+  install -vDm 644 {Changelog,Dependencies,README.txt,Yoshimi_Helpers} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in yoshimi/trunk (PKGBUILD)

2020-05-27 Thread David Runge via arch-commits
Date: Wednesday, May 27, 2020 @ 21:26:15
  Author: dvzrv
Revision: 636075

upgpkg: yoshimi 1.7.1-2: Rebuilding with fix for lv2 >= 1.18.0.

Modified:
  yoshimi/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 13 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:16:34 UTC (rev 636074)
+++ PKGBUILD2020-05-27 21:26:15 UTC (rev 636075)
@@ -3,7 +3,7 @@
 
 pkgname=yoshimi
 pkgver=1.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A sophisticated soft-synth originally forked from ZynAddSubFX"
 arch=('x86_64')
 url="https://yoshimi.github.io/;
@@ -18,14 +18,24 @@
 'libjack.so: for standalone application'
 'libreadline.so: for standalone application'
 'libncursesw.so: for standalone application')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('d422c08caa6bf20665442b2d88fc4ccc41b881d719d5150d1cd3d2617f2216b18c112107c5723cb1077da0ba2278a3eb2db0a8dda4ce3c6315e3875cbfaf421c')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+
"${pkgname}-1.7.1-lv2-1.8.0.patch::https://github.com/Yoshimi/yoshimi/commit/4bb8bfe9f9f40dd53f9a3098f8f87ad993147935.patch;)
+sha512sums=('d422c08caa6bf20665442b2d88fc4ccc41b881d719d5150d1cd3d2617f2216b18c112107c5723cb1077da0ba2278a3eb2db0a8dda4ce3c6315e3875cbfaf421c'
+
'206e0302d45dd36102adda295f533777913c76e7e53c7151ac796185590ebbd010a23f1b97d5a23d09b59d4ff207eda46234f3bd3e348992267b6e9e1234e1d3')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix compatibility with lv2 >= 1.18.0
+  patch -Np1 -i "../${pkgname}-1.7.1-lv2-1.8.0.patch"
+}
+
 build() {
   cd "${pkgname}-${pkgver}"
   cmake -DCMAKE_INSTALL_PREFIX='/usr' \
 -DCMAKE_INSTALL_DATAROOTDIR='/usr/share' \
 -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
 -B build\
 src
   make VERBOSE=1 -C build


[arch-commits] Commit in deepin-desktop-schemas/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:16:16
  Author: felixonmars
Revision: 636073

upgpkg: deepin-desktop-schemas 5.5.0.4-1

Modified:
  deepin-desktop-schemas/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:14:25 UTC (rev 636072)
+++ PKGBUILD2020-05-27 21:16:16 UTC (rev 636073)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop-schemas
-pkgver=5.5.0.1
+pkgver=5.5.0.4
 pkgrel=1
 pkgdesc='GSettings deepin desktop-wide schemas'
 arch=('any')
@@ -16,7 +16,7 @@
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-desktop-schemas/archive/$pkgver.tar.gz;
 
https://github.com/linuxdeepin/deepin-desktop-schemas/commit/bf0c4e43f6b6d508ddd346c2d1e865dae9ae947d.patch)
-sha512sums=('5f49efe7b9271a6a2851dc33ebde5af5711e3ee239fd2a47caf279302b6ed36e5a3f91cb71904f2b162cebcd8c0e445b3272d4ee2397b304fcd4c93339d5048c'
+sha512sums=('2aed05d6c4f8c1eda6eaaddd90ee9330654345fdc7b181ff7d0a2b04a0d8d80c37a5a7bbc36346c5ec4c1aa7d50c99fc8ee3ba0b8d872470b9bc8bf06d96308e'
 
'be13e501baf0517da19618011219b53d633a4186840b20b24d134e5d667c4ab1b6b716c09c78faf802b32ecf3f6f6e5e2f84744a5919b28645f002739d07ea82')
 
 prepare() {


[arch-commits] Commit in deepin-desktop-schemas/repos/community-any (2 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:16:34
  Author: felixonmars
Revision: 636074

archrelease: copy trunk to community-any

Added:
  deepin-desktop-schemas/repos/community-any/PKGBUILD
(from rev 636073, deepin-desktop-schemas/trunk/PKGBUILD)
Deleted:
  deepin-desktop-schemas/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:16:16 UTC (rev 636073)
+++ PKGBUILD2020-05-27 21:16:34 UTC (rev 636074)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop-schemas
-pkgver=5.5.0.1
-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' 'deepin-icon-theme' 'deepin-sound-theme')
-makedepends=('python' 'go-pie' 'golang-deepin-lib')
-conflicts=('deepin-artwork-themes')
-replaces=('deepin-artwork-themes')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-desktop-schemas/archive/$pkgver.tar.gz;
-
https://github.com/linuxdeepin/deepin-desktop-schemas/commit/bf0c4e43f6b6d508ddd346c2d1e865dae9ae947d.patch)
-sha512sums=('5f49efe7b9271a6a2851dc33ebde5af5711e3ee239fd2a47caf279302b6ed36e5a3f91cb71904f2b162cebcd8c0e445b3272d4ee2397b304fcd4c93339d5048c'
-
'be13e501baf0517da19618011219b53d633a4186840b20b24d134e5d667c4ab1b6b716c09c78faf802b32ecf3f6f6e5e2f84744a5919b28645f002739d07ea82')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  cd deepin-desktop-schemas-$pkgver
-  # disable swap-sched
-  patch -Rp1 -i ../bf0c4e43f6b6d508ddd346c2d1e865dae9ae947d.patch
-  # fix default background url
-  sed -i 
"s#^picture-uri.*#picture-uri='file:///usr/share/backgrounds/deepin/desktop.jpg'#"
 overrides/common/com.deepin.wrap.gnome.desktop.override
-}
-
-build() {
-  cd deepin-desktop-schemas-$pkgver
-  make ARCH=x86
-}
-
-check() {
-  cd deepin-desktop-schemas-$pkgver
-  make test
-}
-
-package() {
-  cd deepin-desktop-schemas-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-desktop-schemas/repos/community-any/PKGBUILD (from rev 636073, 
deepin-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:16:34 UTC (rev 636074)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop-schemas
+pkgver=5.5.0.4
+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' 'deepin-icon-theme' 'deepin-sound-theme')
+makedepends=('python' 'go-pie' 'golang-deepin-lib')
+conflicts=('deepin-artwork-themes')
+replaces=('deepin-artwork-themes')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-desktop-schemas/archive/$pkgver.tar.gz;
+
https://github.com/linuxdeepin/deepin-desktop-schemas/commit/bf0c4e43f6b6d508ddd346c2d1e865dae9ae947d.patch)
+sha512sums=('2aed05d6c4f8c1eda6eaaddd90ee9330654345fdc7b181ff7d0a2b04a0d8d80c37a5a7bbc36346c5ec4c1aa7d50c99fc8ee3ba0b8d872470b9bc8bf06d96308e'
+
'be13e501baf0517da19618011219b53d633a4186840b20b24d134e5d667c4ab1b6b716c09c78faf802b32ecf3f6f6e5e2f84744a5919b28645f002739d07ea82')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  cd deepin-desktop-schemas-$pkgver
+  # disable swap-sched
+  patch -Rp1 -i ../bf0c4e43f6b6d508ddd346c2d1e865dae9ae947d.patch
+  # fix default background url
+  sed -i 
"s#^picture-uri.*#picture-uri='file:///usr/share/backgrounds/deepin/desktop.jpg'#"
 overrides/common/com.deepin.wrap.gnome.desktop.override
+}
+
+build() {
+  cd deepin-desktop-schemas-$pkgver
+  make ARCH=x86
+}
+
+check() {
+  cd deepin-desktop-schemas-$pkgver
+  make test
+}
+
+package() {
+  cd deepin-desktop-schemas-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kcm-fcitx5/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:14:25
  Author: felixonmars
Revision: 636072

archrelease: copy trunk to community-x86_64

Added:
  kcm-fcitx5/repos/community-x86_64/PKGBUILD
(from rev 636071, kcm-fcitx5/trunk/PKGBUILD)
Deleted:
  kcm-fcitx5/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:14:09 UTC (rev 636071)
+++ PKGBUILD2020-05-27 21:14:25 UTC (rev 636072)
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=kcm-fcitx5
-pkgver=0.0.0.20200527
-_commit=a5a966bbdae3ea3791b50278eef36c7f4f324f79
-pkgrel=1
-pkgdesc="KDE Config Module for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/kcm-fcitx5;
-license=('GPL')
-depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews')
-optdepends=('kdeclarative: for KCM support'
-'kirigami2: for KCM support')
-makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
-source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
-sha512sums=('ef10df477277ccf21f53551bdf591107a3774b2999f59786316ced9582dd8ef286ff8f0b3ca162532e2c1ed76591b0aefdb8a3fa5df74ef0b3da29193a16906f')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: kcm-fcitx5/repos/community-x86_64/PKGBUILD (from rev 636071, 
kcm-fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:14:25 UTC (rev 636072)
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=kcm-fcitx5
+pkgver=0.0.0.20200528
+_commit=c51d4bf6872b3acd6f9f75238d1f7cf3c5f142e4
+pkgrel=1
+pkgdesc="KDE Config Module for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/kcm-fcitx5;
+license=('GPL')
+depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews')
+optdepends=('kdeclarative: for KCM support'
+'kirigami2: for KCM support')
+makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
+source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
+sha512sums=('910d22790aeab93d76861fed8836a6bf9c6a0f08212c2c3cf55924f717778121825a1740206d7061a0d9f5511b403516e72242aa9054fb88b56220da4799a2e3')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
+  make
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kcm-fcitx5/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:14:09
  Author: felixonmars
Revision: 636071

upgpkg: kcm-fcitx5 0.0.0.20200528-1

Modified:
  kcm-fcitx5/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:12:19 UTC (rev 636070)
+++ PKGBUILD2020-05-27 21:14:09 UTC (rev 636071)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=kcm-fcitx5
-pkgver=0.0.0.20200527
-_commit=a5a966bbdae3ea3791b50278eef36c7f4f324f79
+pkgver=0.0.0.20200528
+_commit=c51d4bf6872b3acd6f9f75238d1f7cf3c5f142e4
 pkgrel=1
 pkgdesc="KDE Config Module for Fcitx5"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 'kirigami2: for KCM support')
 makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'python')
 
source=("https://github.com/fcitx/kcm-fcitx5/archive/$_commit/kcm-fcitx5-$_commit.tar.gz;)
-sha512sums=('ef10df477277ccf21f53551bdf591107a3774b2999f59786316ced9582dd8ef286ff8f0b3ca162532e2c1ed76591b0aefdb8a3fa5df74ef0b3da29193a16906f')
+sha512sums=('910d22790aeab93d76861fed8836a6bf9c6a0f08212c2c3cf55924f717778121825a1740206d7061a0d9f5511b403516e72242aa9054fb88b56220da4799a2e3')
 
 build(){
   cd $pkgname-$_commit


[arch-commits] Commit in gitlab/trunk (gitlab-puma.service gitlab-sidekiq.service)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Wednesday, May 27, 2020 @ 21:12:19
  Author: anatolik
Revision: 636070

Remove mysql-specific code

https://about.gitlab.com/blog/2019/06/27/removing-mysql-support/

Modified:
  gitlab/trunk/gitlab-puma.service
  gitlab/trunk/gitlab-sidekiq.service

+
 gitlab-puma.service|4 ++--
 gitlab-sidekiq.service |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: gitlab-puma.service
===
--- gitlab-puma.service 2020-05-27 21:11:10 UTC (rev 636069)
+++ gitlab-puma.service 2020-05-27 21:12:19 UTC (rev 636070)
@@ -1,8 +1,8 @@
 [Unit]
 Description=GitLab Puma Server
 Requires=redis.service
-Wants=mysqld.service postgresql.service
-After=redis.service mysqld.service postgresql.service network.target
+Wants=postgresql.service
+After=redis.service postgresql.service network.target
 StartLimitIntervalSec=100s
 
 [Service]

Modified: gitlab-sidekiq.service
===
--- gitlab-sidekiq.service  2020-05-27 21:11:10 UTC (rev 636069)
+++ gitlab-sidekiq.service  2020-05-27 21:12:19 UTC (rev 636070)
@@ -1,8 +1,8 @@
 [Unit]
 Description=GitLab Sidekiq Worker
 Requires=redis.service gitlab-puma.service
-Wants=mysqld.service postgresql.service
-After=redis.service mysqld.service postgresql.service network.target 
gitlab-puma.service
+Wants=postgresql.service
+After=redis.service postgresql.service network.target gitlab-puma.service
 JoinsNamespaceOf=gitlab-puma.service
 StartLimitIntervalSec=100s
 


[arch-commits] Commit in gitlab/trunk (PKGBUILD gitlab.install)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Wednesday, May 27, 2020 @ 21:10:57
  Author: anatolik
Revision: 636068

PKGBUILD cleanup

Remove legacy directories inside application root directory
Remove old bug workarounds

Modified:
  gitlab/trunk/PKGBUILD
  gitlab/trunk/gitlab.install

+
 PKGBUILD   |   40 +---
 gitlab.install |7 ++-
 2 files changed, 19 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:10:52 UTC (rev 636067)
+++ PKGBUILD2020-05-27 21:10:57 UTC (rev 636068)
@@ -61,18 +61,12 @@
 _logdir="/var/log/gitlab"
 
 prepare() {
-  # Get first 7 characters from sha1 which has 40 characters in total
-  local revision=$(ls -d gitlab-foss | rev | cut -c 34-40 | rev)
-
   cd gitlab-foss
 
-  patch -p1 < ../build_fix.patch
-
   # GitLab tries to read its revision information from a file.
-  echo "${revision}" > REVISION
+  git rev-parse --short HEAD > REVISION
 
-  export SKIP_STORAGE_VALIDATION='true'
-
+  patch -p1 < ../build_fix.patch
   patch -p1 < ../configs.patch
   # '/home/git' path in the config files indicates a default path that need to 
be adjusted
   grep -FqR '/home/git' config || exit 1
@@ -79,8 +73,8 @@
 
   cp config/gitlab.yml.example config/gitlab.yml
   cp config/database.yml.postgresql config/database.yml
+  cp config/puma.rb.example config/puma.rb
   cp config/resque.yml.example config/resque.yml
-  cp config/puma.rb.example config/puma.rb
 
   echo "Setting up systemd service files ..."
   for service_file in gitlab-sidekiq.service gitlab-puma.service 
gitlab.logrotate gitlab-backup.service gitlab-mailroom.service; do
@@ -118,9 +112,10 @@
 }
 
 package() {
-  cd gitlab-foss
   depends+=('gitlab-shell')
 
+  cd gitlab-foss
+
   install -d "${pkgdir}/usr/share/webapps"
 
   cp -r "${srcdir}"/gitlab-foss "${pkgdir}${_datadir}"
@@ -143,18 +138,16 @@
   install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
   install -dm755 "${pkgdir}/usr/share/doc/gitlab"
 
-  ln -fs /run/gitlab "${pkgdir}${_homedir}/pids"
-  ln -fs /run/gitlab "${pkgdir}${_homedir}/sockets"
-  ln -fs ${_datadir}/log "${pkgdir}${_homedir}/log"
+  rm -r "${pkgdir}${_datadir}"/{builds,tmp,log}
 
-  rm -rf "${pkgdir}${_datadir}/public/uploads" && ln -fs "${_homedir}/uploads" 
"${pkgdir}${_datadir}/public/uploads"
-  rm -rf "${pkgdir}${_datadir}/builds" && ln -fs "${_homedir}/builds" 
"${pkgdir}${_datadir}/builds"
-  rm -rf "${pkgdir}${_datadir}/tmp" && ln -fs /var/tmp 
"${pkgdir}${_datadir}/tmp"
-  rm -rf "${pkgdir}${_datadir}/log" && ln -fs "${_logdir}" 
"${pkgdir}${_datadir}/log"
+  # TODO: Rails uses log dir under the rails root. Figure out if it is 
possible to configure rails
+  # to log right to /var/log/gitlab
+  ln -fs "${_logdir}" "${pkgdir}${_datadir}/log"
 
   # Fixes https://bugs.archlinux.org/task/59762
   ln -s "${_datadir}/config/boot.rb" "${pkgdir}"/${_etcdir}/boot.rb
 
+  # TODO: workhorse and shell secret files are the application data and should 
be stored under /var/lib/gitlab
   mv "${pkgdir}${_datadir}/.gitlab_workhorse_secret" 
"${pkgdir}${_etcdir}/gitlab_workhorse_secret"
   chmod 660 "${pkgdir}${_etcdir}/gitlab_workhorse_secret"
   chown root:105 "${pkgdir}${_etcdir}/gitlab_workhorse_secret"
@@ -167,14 +160,12 @@
   # Install config files
   for config_file in application.rb gitlab.yml database.yml puma.rb 
resque.yml; do
 mv "config/${config_file}" "${pkgdir}${_etcdir}/"
-[[ -f "${pkgdir}${_datadir}/config/${config_file}" ]] && rm 
"${pkgdir}${_datadir}/config/${config_file}"
+# TODO: configure rails app to use configs right from /etc
 ln -fs "${_etcdir}/${config_file}" "${pkgdir}${_datadir}/config/"
   done
 
-  # Install database symlink
-  ln -fs "${_etcdir}/database.yml" "${pkgdir}${_datadir}/config/database.yml"
-
   # Install secrets symlink
+  # TODO: ruby uses _datadir to load config files. Figure out if we can load 
files directly from /etc
   ln -fs "${_etcdir}/secrets.yml" "${pkgdir}${_datadir}/config/secrets.yml"
 
   # Install license and help files
@@ -181,12 +172,7 @@
   mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG.md PROCESS.md VERSION 
config/*.{example,postgresql} "${pkgdir}/usr/share/doc/gitlab"
   install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/gitlab/LICENSE"
 
-  # https://gitlab.com/gitlab-org/gitlab-foss/issues/765
-  cp -r "${pkgdir}${_datadir}/doc" "${pkgdir}${_datadir}/public/help"
-  find "${pkgdir}${_datadir}/public/help" -name "*.md" -exec rm {} \;
-  find "${pkgdir}${_datadir}/public/help/" -depth -type d -empty -exec rmdir 
{} \;
-
-  chown 105:105 "${pkgdir}${_datadir}/db/schema.rb"
+  # TODO: structure.sql looks more like an application data and should be 
stored under /var/lib/gitlab
   chown 105:105 "${pkgdir}${_datadir}/db/structure.sql"
 
   # Install systemd service files

Modified: gitlab.install
===
--- gitlab.install  2020-05-27 

[arch-commits] Commit in fcitx5-chinese-addons/repos/community-x86_64 (2 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:11:10
  Author: felixonmars
Revision: 636069

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD
(from rev 636068, fcitx5-chinese-addons/trunk/PKGBUILD)
Deleted:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:10:57 UTC (rev 636068)
+++ PKGBUILD2020-05-27 21:11:10 UTC (rev 636069)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20200527.1
-_commit=1bfac7a9f011fe930b32bb4199e1d691e89c1377
-_pytablever=20121124
-pkgrel=1
-pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-chinese-addons;
-license=('GPL')
-conflicts=('fcitx')
-depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
-makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua')
-optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
-source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
-https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
-https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
-noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('deec8790367c84aee7deb7c31c9797bd4e36d57b734477d6a97f1eb4302e49502e7c29742803d5f9dc438a674297deb9b77ade26e9bbd59e58538f78502f3a18'
-
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
-
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
-
-prepare() {
-  cd $pkgname-$_commit/modules/pinyinhelper
-  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
-  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
-}
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD (from rev 636068, 
fcitx5-chinese-addons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:11:10 UTC (rev 636069)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-chinese-addons
+pkgver=0.0.0.20200528
+_commit=f5eac0e3e4d5bed3bd10940c9de6a255a6a5d6fc
+_pytablever=20121124
+pkgrel=1
+pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-chinese-addons;
+license=('GPL')
+conflicts=('fcitx')
+depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
+makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua')
+optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
+source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
+https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
+https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
+noextract=(py_table-$_pytablever.tar.gz)
+sha512sums=('e246707b2c17614504b65f58114ab79a02ef457efe77e49c94a84ca436b30dccf7e55289c0a3f69db7c64d7342f31f7df0382df5d0d79e2fc9f9c48d17602b89'
+
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
+
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
+
+prepare() {
+  cd $pkgname-$_commit/modules/pinyinhelper
+  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
+  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
+}
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in fcitx5-chinese-addons/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:10:52
  Author: felixonmars
Revision: 636067

upgpkg: fcitx5-chinese-addons 0.0.0.20200528-1

Modified:
  fcitx5-chinese-addons/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:09:18 UTC (rev 636066)
+++ PKGBUILD2020-05-27 21:10:52 UTC (rev 636067)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20200527.1
-_commit=1bfac7a9f011fe930b32bb4199e1d691e89c1377
+pkgver=0.0.0.20200528
+_commit=f5eac0e3e4d5bed3bd10940c9de6a255a6a5d6fc
 _pytablever=20121124
 pkgrel=1
 pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
@@ -18,7 +18,7 @@
 https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
 https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
 noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('deec8790367c84aee7deb7c31c9797bd4e36d57b734477d6a97f1eb4302e49502e7c29742803d5f9dc438a674297deb9b77ade26e9bbd59e58538f78502f3a18'
+sha512sums=('e246707b2c17614504b65f58114ab79a02ef457efe77e49c94a84ca436b30dccf7e55289c0a3f69db7c64d7342f31f7df0382df5d0d79e2fc9f9c48d17602b89'
 
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
 
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
 


[arch-commits] Commit in fcitx5/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:09:18
  Author: felixonmars
Revision: 636066

archrelease: copy trunk to community-x86_64

Added:
  fcitx5/repos/community-x86_64/PKGBUILD
(from rev 636065, fcitx5/trunk/PKGBUILD)
Deleted:
  fcitx5/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:09:01 UTC (rev 636065)
+++ PKGBUILD2020-05-27 21:09:18 UTC (rev 636066)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=0.0.0.20200527.1
-_commit=f15312262d9f66037675b61d91386ed97b1a4c48
-_endictver=20121020
-pkgrel=1
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5;
-license=('GPL')
-conflicts=('fcitx')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'cldr-emoji-annotation')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
-https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('ee606dfcdbbedb63e6e668db71b8223bcd7915399594e81cca6d5be92fb6709fc07f61bf84bd20efbc092abcc7422a9989ab1fbfae49e9704a99c73fc6da55f4'
-
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
-
-prepare() {
-  cd $pkgname-$_commit/src/modules/spell/dict
-  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-check() {
-  cd $pkgname-$_commit
-  make test
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 636065, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:09:18 UTC (rev 636066)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=0.0.0.20200528
+_commit=89f8d1b8436a9e8b51e6f2c7eae8e80b5f08a13a
+_endictver=20121020
+pkgrel=1
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5;
+license=('GPL')
+conflicts=('fcitx')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'cldr-emoji-annotation')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
+https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
+sha512sums=('d103a364d7822755ce2f9ce21b2a745c38dd8f9c5d28763a96f55f345c807b101c0ed77562bb888097159ddedcd0d9641d06aff0a4f63f542096190d5c4a2330'
+
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
+
+prepare() {
+  cd $pkgname-$_commit/src/modules/spell/dict
+  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+check() {
+  cd $pkgname-$_commit
+  make test
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in python-hypothesis/repos/community-any (PKGBUILD PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:08:53
  Author: felixonmars
Revision: 636064

archrelease: copy trunk to community-any

Added:
  python-hypothesis/repos/community-any/PKGBUILD
(from rev 636063, python-hypothesis/trunk/PKGBUILD)
Deleted:
  python-hypothesis/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:08:37 UTC (rev 636063)
+++ PKGBUILD2020-05-27 21:08:53 UTC (rev 636064)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.15.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('d3fdc2ec2d66353da2ee790eae8ecef0bf168320a90556b5877844af975765c1da37a104765a3ca07e3143621be5cb01acfa7d19cc3222a52a0cd6eb63f6c0be')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 636063, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:08:53 UTC (rev 636064)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.16.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('66366c172aaed84f1fb5fe0cef4e0fccfa4f65c31a94d52cf3a49b44b535f8366e71974f2aaa7b39d1d1b4171fd92cbfe4bbbac8ec4b9c4ccd2b0e5d15976d26')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in fcitx5/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:09:01
  Author: felixonmars
Revision: 636065

upgpkg: fcitx5 0.0.0.20200528-1

Modified:
  fcitx5/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:08:53 UTC (rev 636064)
+++ PKGBUILD2020-05-27 21:09:01 UTC (rev 636065)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5
-pkgver=0.0.0.20200527.1
-_commit=f15312262d9f66037675b61d91386ed97b1a4c48
+pkgver=0.0.0.20200528
+_commit=89f8d1b8436a9e8b51e6f2c7eae8e80b5f08a13a
 _endictver=20121020
 pkgrel=1
 pkgdesc="Next generation of fcitx"
@@ -18,7 +18,7 @@
 makedepends=('extra-cmake-modules')
 
source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
 https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('ee606dfcdbbedb63e6e668db71b8223bcd7915399594e81cca6d5be92fb6709fc07f61bf84bd20efbc092abcc7422a9989ab1fbfae49e9704a99c73fc6da55f4'
+sha512sums=('d103a364d7822755ce2f9ce21b2a745c38dd8f9c5d28763a96f55f345c807b101c0ed77562bb888097159ddedcd0d9641d06aff0a4f63f542096190d5c4a2330'
 
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
 
 prepare() {


[arch-commits] Commit in python-hypothesis/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:08:37
  Author: felixonmars
Revision: 636063

upgpkg: python-hypothesis 5.16.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:07:27 UTC (rev 636062)
+++ PKGBUILD2020-05-27 21:08:37 UTC (rev 636063)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.15.1
+pkgver=5.16.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -19,7 +19,7 @@
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('d3fdc2ec2d66353da2ee790eae8ecef0bf168320a90556b5877844af975765c1da37a104765a3ca07e3143621be5cb01acfa7d19cc3222a52a0cd6eb63f6c0be')
+sha512sums=('66366c172aaed84f1fb5fe0cef4e0fccfa4f65c31a94d52cf3a49b44b535f8366e71974f2aaa7b39d1d1b4171fd92cbfe4bbbac8ec4b9c4ccd2b0e5d15976d26')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


[arch-commits] Commit in libime/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:07:27
  Author: felixonmars
Revision: 636062

archrelease: copy trunk to community-x86_64

Added:
  libime/repos/community-x86_64/PKGBUILD
(from rev 636061, libime/trunk/PKGBUILD)
Deleted:
  libime/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:07:09 UTC (rev 636061)
+++ PKGBUILD2020-05-27 21:07:27 UTC (rev 636062)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=libime
-pkgver=0.0.0.20200526.1
-_commit=e9eceb9d271cdad829c61d534f95a9bc8b11d93d
-_kenlmcommit=96d303cfb1a0c21b8f060dbad640d7ab301c019a
-_lm_sc_ver=20140820
-_dict_ver=20200310
-pkgrel=1
-pkgdesc="A library to support generic input method implementation"
-arch=('x86_64')
-url="https://github.com/fcitx/libime;
-license=('GPL')
-depends=('boost-libs' 'fcitx5')
-makedepends=('boost' 'extra-cmake-modules' 'python')
-source=($pkgname-$_commit.tar.gz::https://github.com/fcitx/libime/archive/$_commit.tar.gz
-
kenlm-$_kenlmcommit.tar.gz::https://github.com/kpu/kenlm/archive/$_kenlmcommit.tar.gz
-https://download.fcitx-im.org/data/lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
-https://download.fcitx-im.org/data/dict.utf8-$_dict_ver.tar.xz
-https://download.fcitx-im.org/data/table.tar.gz)
-noextract=(lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
-   dict.utf8-$_dict_ver.tar.xz
-   table.tar.gz)
-sha512sums=('ca649174646c1ecd1d93d283d2d22d5a01510a13ba7dc556fbd2ab21748a5215ed3423a54fc2f8346c12438279842756ac97ea99b485b0df6c70bdae04633d32'
-
'c39210f5a52512b23ab20ecd396def4780ea78eef25ed935dec2667ad68ae822c0e53556725374fed6ccb427732a9101e76467b487eb729539f063b28ca17d3e'
-
'ea3ede62eb993c4d21ca7cf339635f4686493a0cefd57df4a31f00a001e67502a13ff9612ff667b941b82b47de00be9f3c9689677d04195a7ef8716bac087519'
-
'c50323faac069940da65c508f52372e902657c38d82c48570b1133a34c96fd0cb63f254e390d6d3ff200024b79ee30bc0499c17191949c7a4b0eba167fd1ee14'
-
'99e1d69c679355fcf3e117a1ef39b131cbd3af841387d2335757247d840b90ff6b7323e16fca98cf7a043033faf250d2e9c6d47b96845d18c278a0cf6f30fec9')
-
-prepare() {
-  cd $pkgname-$_commit/src/libime/core
-  rmdir kenlm
-  ln -s "$srcdir"/kenlm-$_kenlmcommit ./kenlm
-
-  cd "$srcdir"/$pkgname-$_commit/data
-  ln -s "$srcdir"/lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
-  ln -s "$srcdir"/dict.utf8-$_dict_ver.tar.xz
-  ln -s "$srcdir"/table.tar.gz
-}
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: libime/repos/community-x86_64/PKGBUILD (from rev 636061, 
libime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:07:27 UTC (rev 636062)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=libime
+pkgver=0.0.0.20200528
+_commit=a8deb391f8daa5981a5b07b0fe7658bb12e7841e
+_kenlmcommit=96d303cfb1a0c21b8f060dbad640d7ab301c019a
+_lm_sc_ver=20140820
+_dict_ver=20200310
+pkgrel=1
+pkgdesc="A library to support generic input method implementation"
+arch=('x86_64')
+url="https://github.com/fcitx/libime;
+license=('GPL')
+depends=('boost-libs' 'fcitx5')
+makedepends=('boost' 'extra-cmake-modules' 'python')
+source=($pkgname-$_commit.tar.gz::https://github.com/fcitx/libime/archive/$_commit.tar.gz
+
kenlm-$_kenlmcommit.tar.gz::https://github.com/kpu/kenlm/archive/$_kenlmcommit.tar.gz
+https://download.fcitx-im.org/data/lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
+https://download.fcitx-im.org/data/dict.utf8-$_dict_ver.tar.xz
+https://download.fcitx-im.org/data/table.tar.gz)
+noextract=(lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
+   dict.utf8-$_dict_ver.tar.xz
+   table.tar.gz)
+sha512sums=('51f232251a9f4902b57ea931561751f390ea5d817c6cc0f48b96baeead9dafea4eae296cc3191bfb208ef219fa255a532395e4ea0fab6986884e0ea1b215d2e2'
+
'c39210f5a52512b23ab20ecd396def4780ea78eef25ed935dec2667ad68ae822c0e53556725374fed6ccb427732a9101e76467b487eb729539f063b28ca17d3e'
+
'ea3ede62eb993c4d21ca7cf339635f4686493a0cefd57df4a31f00a001e67502a13ff9612ff667b941b82b47de00be9f3c9689677d04195a7ef8716bac087519'
+
'c50323faac069940da65c508f52372e902657c38d82c48570b1133a34c96fd0cb63f254e390d6d3ff200024b79ee30bc0499c17191949c7a4b0eba167fd1ee14'
+
'99e1d69c679355fcf3e117a1ef39b131cbd3af841387d2335757247d840b90ff6b7323e16fca98cf7a043033faf250d2e9c6d47b96845d18c278a0cf6f30fec9')
+
+prepare() {
+  cd $pkgname-$_commit/src/libime/core
+  rmdir kenlm
+  ln -s "$srcdir"/kenlm-$_kenlmcommit ./kenlm
+
+  cd "$srcdir"/$pkgname-$_commit/data
+  ln -s 

[arch-commits] Commit in libime/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:07:09
  Author: felixonmars
Revision: 636061

upgpkg: libime 0.0.0.20200528-1

Modified:
  libime/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:02:53 UTC (rev 636060)
+++ PKGBUILD2020-05-27 21:07:09 UTC (rev 636061)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=libime
-pkgver=0.0.0.20200526.1
-_commit=e9eceb9d271cdad829c61d534f95a9bc8b11d93d
+pkgver=0.0.0.20200528
+_commit=a8deb391f8daa5981a5b07b0fe7658bb12e7841e
 _kenlmcommit=96d303cfb1a0c21b8f060dbad640d7ab301c019a
 _lm_sc_ver=20140820
 _dict_ver=20200310
@@ -22,7 +22,7 @@
 noextract=(lm_sc.3gm.arpa-$_lm_sc_ver.tar.bz2
dict.utf8-$_dict_ver.tar.xz
table.tar.gz)
-sha512sums=('ca649174646c1ecd1d93d283d2d22d5a01510a13ba7dc556fbd2ab21748a5215ed3423a54fc2f8346c12438279842756ac97ea99b485b0df6c70bdae04633d32'
+sha512sums=('51f232251a9f4902b57ea931561751f390ea5d817c6cc0f48b96baeead9dafea4eae296cc3191bfb208ef219fa255a532395e4ea0fab6986884e0ea1b215d2e2'
 
'c39210f5a52512b23ab20ecd396def4780ea78eef25ed935dec2667ad68ae822c0e53556725374fed6ccb427732a9101e76467b487eb729539f063b28ca17d3e'
 
'ea3ede62eb993c4d21ca7cf339635f4686493a0cefd57df4a31f00a001e67502a13ff9612ff667b941b82b47de00be9f3c9689677d04195a7ef8716bac087519'
 
'c50323faac069940da65c508f52372e902657c38d82c48570b1133a34c96fd0cb63f254e390d6d3ff200024b79ee30bc0499c17191949c7a4b0eba167fd1ee14'


[arch-commits] Commit in gsoap/repos/community-x86_64 (5 files)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 21:02:53
  Author: spupykin
Revision: 636060

archrelease: copy trunk to community-x86_64

Added:
  gsoap/repos/community-x86_64/LICENSE
(from rev 636059, gsoap/trunk/LICENSE)
  gsoap/repos/community-x86_64/PKGBUILD
(from rev 636059, gsoap/trunk/PKGBUILD)
Deleted:
  gsoap/repos/community-x86_64/0001-no-xlocale.patch
  gsoap/repos/community-x86_64/LICENSE
  gsoap/repos/community-x86_64/PKGBUILD

---+
 0001-no-xlocale.patch |   41 --
 LICENSE   |  326 
 PKGBUILD  |   83 +---
 3 files changed, 201 insertions(+), 249 deletions(-)

Deleted: 0001-no-xlocale.patch
===
--- 0001-no-xlocale.patch   2020-05-27 21:02:44 UTC (rev 636059)
+++ 0001-no-xlocale.patch   2020-05-27 21:02:53 UTC (rev 636060)
@@ -1,41 +0,0 @@
-diff -wbBur gsoap-2.8/gsoap/stdsoap2.h gsoap-2.8.my/gsoap/stdsoap2.h
 gsoap-2.8/gsoap/stdsoap2.h 2018-03-08 18:45:36.0 +0300
-+++ gsoap-2.8.my/gsoap/stdsoap2.h  2018-03-28 15:51:38.342848826 +0300
-@@ -338,7 +338,6 @@
- #  define HAVE_MBTOWC
- #  define HAVE_INTTYPES_H
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(_AIX43)
- #  define HAVE_SNPRINTF
-@@ -419,7 +418,6 @@
- #  define HAVE_ISNAN
- #  define HAVE_ISINF
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(__VMS)
- #  include 
-@@ -720,11 +718,6 @@
- # endif
- #endif
- 
--/* force inclusion of xlocale.h */
--#if defined(WITH_INCLUDE_XLOCALE_H) && !defined(HAVE_XLOCALE_H)
--# define HAVE_XLOCALE_H
--#endif
--
- #ifdef WITH_C_LOCALE
- # include 
- # if defined(WIN32) && !defined(CYGWIN)
-@@ -732,9 +725,6 @@
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = _create_locale(LC_ALL, "C")))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(_free_locale((soap)->c_locale), ((soap)->c_locale = NULL)))
- # else
--#  if defined(HAVE_XLOCALE_H)
--#   include 
--#  endif
- #  define SOAP_LOCALE_T locale_t
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = newlocale(LC_ALL_MASK, "C", NULL)))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(freelocale((soap)->c_locale), ((soap)->c_locale = NULL)))

Deleted: LICENSE
===
--- LICENSE 2020-05-27 21:02:44 UTC (rev 636059)
+++ LICENSE 2020-05-27 21:02:53 UTC (rev 636060)
@@ -1,163 +0,0 @@
-gSOAP Public License
-Version 1.3a
-The gSOAP public license is derived from the Mozilla Public License (MPL1.1). 
The sections that were deleted from the original MPL1.1 text are 1.0.1, 
2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The 
modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last 
sentence), and 3.6 (simplified).
-1  DEFINITIONS.
-
-1.0.1.
-1.1. "Contributor"
-means each entity that creates or contributes to the creation of 
Modifications.
-1.2. "Contributor Version"
-means the combination of the Original Code, prior Modifications used by a 
Contributor, and the Modifications made by that particular Contributor.
-1.3. "Covered Code"
-means the Original Code, or Modifications or the combination of the 
Original Code, and Modifications, in each case including portions thereof.
-1.4. "Electronic Distribution Mechanism"
-means a mechanism generally accepted in the software development community 
for the electronic transfer of data.
-1.5. "Executable"
-means Covered Code in any form other than Source Code.
-1.6. "Initial Developer"
-means the individual or entity identified as the Initial Developer in the 
Source Code notice required by Exhibit A.
-1.7. "Larger Work"
-means a work which combines Covered Code or portions thereof with code not 
governed by the terms of this License.
-1.8. "License"
-means this document.
-1.8.1. "Licensable"
-means having the right to grant, to the maximum extent possible, whether 
at the time of the initial grant or subsequently acquired, any and all of the 
rights conveyed herein.
-1.9. "Modifications"
-means any addition to or deletion from the substance or structure of 
either the Original Code or any previous Modifications. When Covered Code is 
released as a series of files, a Modification is:
-
-A.
-Any addition to or deletion from the contents of a file containing 
Original Code or previous Modifications.
-B.
-Any new file that contains any part of the Original Code, or previous 
Modifications. 
-
-1.10. "Original Code"
-means Source Code of computer software code which is described in the 
Source Code notice required by Exhibit A as Original Code, and which, at the 
time of its release under this License is not already Covered Code governed by 
this License.
-1.10.1. "Patent 

[arch-commits] Commit in golang-github-linuxdeepin-go-dbus-factory/repos/community-any (2 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:02:09
  Author: felixonmars
Revision: 636058

archrelease: copy trunk to community-any

Added:
  golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD
(from rev 636057, golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD)
Deleted:
  golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:01:49 UTC (rev 636057)
+++ PKGBUILD2020-05-27 21:02:09 UTC (rev 636058)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=golang-github-linuxdeepin-go-dbus-factory
-pkgver=1.6.4
-pkgrel=1
-pkgdesc='GO DBus factory for DDE'
-arch=('any')
-url="https://github.com/linuxdeepin/go-dbus-factory;
-license=('GPL3')
-depends=('golang-deepin-lib')
-makedepends=('go-pie')
-provides=('deepin-go-dbus-factory')
-conflicts=('deepin-go-dbus-factory')
-replaces=('deepin-go-dbus-factory')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('97b74f3c759062bae3b95d5f4c2db62cd98559d64161724070546e556b147af05ae19b5084310c091c83368393df26380032c4e24ef8412a751a6bfed3cef754')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p "$srcdir"/build/src/github.com/linuxdeepin
-  cp -a "$srcdir"/go-dbus-factory-$pkgver 
"$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-}
-
-build() {
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  make bin
-
-  # Suggested by upstream: don't run
-  # ./gen.sh
-}
-
-check() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  go test -v $(go list ./...)
-}
-
-package() {
-  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
-  install -dm755 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory
-  cp -a com.* org.* net.* object_manager 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory/
-}

Copied: golang-github-linuxdeepin-go-dbus-factory/repos/community-any/PKGBUILD 
(from rev 636057, golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:02:09 UTC (rev 636058)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=golang-github-linuxdeepin-go-dbus-factory
+pkgver=1.6.4.4
+pkgrel=1
+pkgdesc='GO DBus factory for DDE'
+arch=('any')
+url="https://github.com/linuxdeepin/go-dbus-factory;
+license=('GPL3')
+depends=('golang-deepin-lib')
+makedepends=('go-pie')
+provides=('deepin-go-dbus-factory')
+conflicts=('deepin-go-dbus-factory')
+replaces=('deepin-go-dbus-factory')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
+sha512sums=('e39add0ac206fcae97ab82f2443566efc2a81585340d0da9d02daec743fdc320a33dcc8b60131cebbba56dec60fe15808ae9350ceb69c91d0ff830f7e31a44a6')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p "$srcdir"/build/src/github.com/linuxdeepin
+  cp -a "$srcdir"/go-dbus-factory-$pkgver 
"$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+}
+
+build() {
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  make bin
+
+  # Suggested by upstream: don't run
+  # ./gen.sh
+}
+
+check() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  go test -v $(go list ./...)
+}
+
+package() {
+  cd "$srcdir"/build/src/github.com/linuxdeepin/go-dbus-factory
+  install -dm755 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory
+  cp -a com.* org.* net.* object_manager 
"$pkgdir"/usr/share/gocode/src/github.com/linuxdeepin/go-dbus-factory/
+}


[arch-commits] Commit in golang-github-linuxdeepin-go-dbus-factory/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:01:49
  Author: felixonmars
Revision: 636057

upgpkg: golang-github-linuxdeepin-go-dbus-factory 1.6.4.4-1

Modified:
  golang-github-linuxdeepin-go-dbus-factory/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:01:36 UTC (rev 636056)
+++ PKGBUILD2020-05-27 21:01:49 UTC (rev 636057)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=golang-github-linuxdeepin-go-dbus-factory
-pkgver=1.6.4
+pkgver=1.6.4.4
 pkgrel=1
 pkgdesc='GO DBus factory for DDE'
 arch=('any')
@@ -15,7 +15,7 @@
 conflicts=('deepin-go-dbus-factory')
 replaces=('deepin-go-dbus-factory')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-dbus-factory/archive/$pkgver.tar.gz;)
-sha512sums=('97b74f3c759062bae3b95d5f4c2db62cd98559d64161724070546e556b147af05ae19b5084310c091c83368393df26380032c4e24ef8412a751a6bfed3cef754')
+sha512sums=('e39add0ac206fcae97ab82f2443566efc2a81585340d0da9d02daec743fdc320a33dcc8b60131cebbba56dec60fe15808ae9350ceb69c91d0ff830f7e31a44a6')
 
 prepare() {
   export GOPATH="$srcdir/build:/usr/share/gocode"


[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:01:19
  Author: felixonmars
Revision: 636055

upgpkg: v2ray-domain-list-community 202005271609-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 21:00:52 UTC (rev 636054)
+++ PKGBUILD2020-05-27 21:01:19 UTC (rev 636055)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=202005270909
+pkgver=202005271609
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('f2db7bfb899b9e4fe8690911da4f4e239fec933fca726f3498709a60aa65b987d260cb5bc918d7affd279483935c1632081b20f94a6c67bd683c9827229c8cbb')
+sha512sums=('3f5d6ce256994b389df69e989dc92b80a98de56781b85ee5cf8a2257534d9697212a81d3d613e9a09b75ca18b91cfd0aa01a8dc4622257ca8801cc551ab15d48')
 
 prepare() {
   mkdir .gopath


[arch-commits] Commit in python-pytest-randomly/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:00:33
  Author: felixonmars
Revision: 636053

upgpkg: python-pytest-randomly 3.4.0-1

Modified:
  python-pytest-randomly/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:37 UTC (rev 636052)
+++ PKGBUILD2020-05-27 21:00:33 UTC (rev 636053)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pytest-randomly
-pkgver=3.3.1
+pkgver=3.4.0
 pkgrel=1
 pkgdesc='Pytest plugin to randomly order tests and control random.seed'
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python-pytest')
 checkdepends=('python-factory-boy' 'python-faker' 'python-numpy' 
'python-pytest-xdist')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-randomly/archive/$pkgver.tar.gz;)
-sha512sums=('242274b1e9fcbb03278766ddd46e8d3dca2374f09db0d111feb0bebdabab4d46ecc63d17f17e692cf4adf662dd3b450f87fe14e248488acb4d3c629567d54458')
+sha512sums=('00d3558f76073e285d2f303eb12bb9026fe7726f5605d761b42b205c71ca383fbd3055a096280db2b03e70bb683b1e506ff617918cb3f383d391efb7cc7b3c01')
 
 build() {
   cd pytest-randomly-$pkgver


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:01:36
  Author: felixonmars
Revision: 636056

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 636055, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:01:19 UTC (rev 636055)
+++ PKGBUILD2020-05-27 21:01:36 UTC (rev 636056)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=202005270909
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2ray/domain-list-community;
-license=('MIT')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('f2db7bfb899b9e4fe8690911da4f4e239fec933fca726f3498709a60aa65b987d260cb5bc918d7affd279483935c1632081b20f94a6c67bd683c9827229c8cbb')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2ray
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2ray/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
636055, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:01:36 UTC (rev 636056)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=202005271609
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2ray/domain-list-community;
+license=('MIT')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('3f5d6ce256994b389df69e989dc92b80a98de56781b85ee5cf8a2257534d9697212a81d3d613e9a09b75ca18b91cfd0aa01a8dc4622257ca8801cc551ab15d48')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2ray
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2ray/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2ray/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-pytest-randomly/repos/community-any (2 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 21:00:52
  Author: felixonmars
Revision: 636054

archrelease: copy trunk to community-any

Added:
  python-pytest-randomly/repos/community-any/PKGBUILD
(from rev 636053, python-pytest-randomly/trunk/PKGBUILD)
Deleted:
  python-pytest-randomly/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 21:00:33 UTC (rev 636053)
+++ PKGBUILD2020-05-27 21:00:52 UTC (rev 636054)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-randomly
-pkgver=3.3.1
-pkgrel=1
-pkgdesc='Pytest plugin to randomly order tests and control random.seed'
-arch=('any')
-license=('BSD')
-url='https://github.com/pytest-dev/pytest-randomly'
-depends=('python-pytest')
-checkdepends=('python-factory-boy' 'python-faker' 'python-numpy' 
'python-pytest-xdist')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-randomly/archive/$pkgver.tar.gz;)
-sha512sums=('242274b1e9fcbb03278766ddd46e8d3dca2374f09db0d111feb0bebdabab4d46ecc63d17f17e692cf4adf662dd3b450f87fe14e248488acb4d3c629567d54458')
-
-build() {
-  cd pytest-randomly-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pytest-randomly-$pkgver
-  # TODO: Understand why...
-  PYTHONPATH="$PWD/src" pytest --deselect 
tests/test_pytest_randomly.py::test_entrypoint_injection
-}
-
-package() {
-  cd pytest-randomly-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-randomly/repos/community-any/PKGBUILD (from rev 636053, 
python-pytest-randomly/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 21:00:52 UTC (rev 636054)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-randomly
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='Pytest plugin to randomly order tests and control random.seed'
+arch=('any')
+license=('BSD')
+url='https://github.com/pytest-dev/pytest-randomly'
+depends=('python-pytest')
+checkdepends=('python-factory-boy' 'python-faker' 'python-numpy' 
'python-pytest-xdist')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-randomly/archive/$pkgver.tar.gz;)
+sha512sums=('00d3558f76073e285d2f303eb12bb9026fe7726f5605d761b42b205c71ca383fbd3055a096280db2b03e70bb683b1e506ff617918cb3f383d391efb7cc7b3c01')
+
+build() {
+  cd pytest-randomly-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pytest-randomly-$pkgver
+  # TODO: Understand why...
+  PYTHONPATH="$PWD/src" pytest --deselect 
tests/test_pytest_randomly.py::test_entrypoint_injection
+}
+
+package() {
+  cd pytest-randomly-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-net-dns/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:37
  Author: felixonmars
Revision: 387733

archrelease: copy trunk to extra-any

Added:
  perl-net-dns/repos/extra-any/PKGBUILD
(from rev 387732, perl-net-dns/trunk/PKGBUILD)
Deleted:
  perl-net-dns/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:18 UTC (rev 387732)
+++ PKGBUILD2020-05-27 20:57:37 UTC (rev 387733)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-net-dns
-pkgver=1.23
-pkgrel=1
-pkgdesc="Perl Module: Interface to the DNS resolver"
-arch=('any')
-license=('PerlArtistic')
-url="https://search.cpan.org/dist/Net-DNS/;
-depends=('perl-digest-hmac' 'perl-net-ip')
-checkdepends=('perl-test-pod' 'perl-mime-base32' 'perl-net-dns-sec')
-optdepends=('perl-io-socket-inet6: IPv6 support'
-'perl-socket6: IPv6 support')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz;)
-sha512sums=('23c9df9e12340687d3399cbe7fb5f94dfa4ceae94be77227c42f0f707470ef90194ef64aa953ee36da5c2ba6a28d2bb4b59de04a9722ae3b0db6162916bde2b1')
-
-build() {
-  cd Net-DNS-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Net-DNS-$pkgver
-  make test
-}
-
-package() {
-  cd Net-DNS-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-net-dns/repos/extra-any/PKGBUILD (from rev 387732, 
perl-net-dns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 20:57:37 UTC (rev 387733)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-net-dns
+pkgver=1.24
+pkgrel=1
+pkgdesc="Perl Module: Interface to the DNS resolver"
+arch=('any')
+license=('PerlArtistic')
+url="https://search.cpan.org/dist/Net-DNS/;
+depends=('perl-digest-hmac' 'perl-net-ip')
+checkdepends=('perl-test-pod' 'perl-mime-base32' 'perl-net-dns-sec')
+optdepends=('perl-io-socket-inet6: IPv6 support'
+'perl-socket6: IPv6 support')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz;)
+sha512sums=('4223eeb5b63664d5c1dd9ad4105f167d4864b09be0f795df25f77b89177912969d8fd12063252bd738b27986718145e0ddb8086ecc68a5387e76522e7e1abef5')
+
+build() {
+  cd Net-DNS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Net-DNS-$pkgver
+  make test
+}
+
+package() {
+  cd Net-DNS-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-net-dns/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:18
  Author: felixonmars
Revision: 387732

upgpkg: perl-net-dns 1.24-1

Modified:
  perl-net-dns/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 20:33:16 UTC (rev 387731)
+++ PKGBUILD2020-05-27 20:57:18 UTC (rev 387732)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-net-dns
-pkgver=1.23
+pkgver=1.24
 pkgrel=1
 pkgdesc="Perl Module: Interface to the DNS resolver"
 arch=('any')
@@ -13,7 +13,7 @@
 'perl-socket6: IPv6 support')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz;)
-sha512sums=('23c9df9e12340687d3399cbe7fb5f94dfa4ceae94be77227c42f0f707470ef90194ef64aa953ee36da5c2ba6a28d2bb4b59de04a9722ae3b0db6162916bde2b1')
+sha512sums=('4223eeb5b63664d5c1dd9ad4105f167d4864b09be0f795df25f77b89177912969d8fd12063252bd738b27986718145e0ddb8086ecc68a5387e76522e7e1abef5')
 
 build() {
   cd Net-DNS-$pkgver


[arch-commits] Commit in deepin-dock/trunk (PKGBUILD)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:15
  Author: felixonmars
Revision: 636050

upgpkg: deepin-dock 5.1.0.11-1

Modified:
  deepin-dock/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:05 UTC (rev 636049)
+++ PKGBUILD2020-05-27 20:57:15 UTC (rev 636050)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=5.1.0.9
-pkgrel=2
+pkgver=5.1.0.11
+pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-dock;
@@ -17,7 +17,7 @@
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz;
  deepin-dock-qt5.15.patch)
-sha512sums=('0d88e418ee21702f2786c47cce923c534cb7a564152eabb4706d54265c7675b563278949286e4fd247b06fa9b521e62b454d97ce28481b13730ad7f387e3d45f'
+sha512sums=('e6d8cf3bf026872b65f76c989bd8a9d57fe16c17a75d6a9289046008fbdc230ce4f5e5892f870af1e064a1c460103141ac08999c9fe9ba6029c7b3f5fb37e3b4'
 
'1fb3a6490e152d081f5fdff655e503dac602cb29b231df252edd664bf8b5ffcc589efd7d96b7b61e53f620670b110dcd5e1952fe5b88fe65fbf8acf8ce8812fd')
 
 prepare() {


[arch-commits] Commit in deepin-dock/repos/community-testing-x86_64 (4 files)

2020-05-27 Thread Felix Yan via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:37
  Author: felixonmars
Revision: 636052

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-dock/repos/community-testing-x86_64/PKGBUILD
(from rev 636051, deepin-dock/trunk/PKGBUILD)
  deepin-dock/repos/community-testing-x86_64/deepin-dock-qt5.15.patch
(from rev 636051, deepin-dock/trunk/deepin-dock-qt5.15.patch)
Deleted:
  deepin-dock/repos/community-testing-x86_64/PKGBUILD
  deepin-dock/repos/community-testing-x86_64/deepin-dock-qt5.15.patch

--+
 PKGBUILD |   72 +--
 deepin-dock-qt5.15.patch |  120 ++---
 2 files changed, 96 insertions(+), 96 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:16 UTC (rev 636051)
+++ PKGBUILD2020-05-27 20:57:37 UTC (rev 636052)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=5.1.0.9
-pkgrel=2
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('qt5-svg' 'deepin-menu' 'deepin-daemon' 'deepin-launcher' 
'deepin-qt5integration'
- 'deepin-qt-dbus-factory' 'deepin-network-utils' 'libdbusmenu-qt5')
-makedepends=('cmake' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz;
- deepin-dock-qt5.15.patch)
-sha512sums=('0d88e418ee21702f2786c47cce923c534cb7a564152eabb4706d54265c7675b563278949286e4fd247b06fa9b521e62b454d97ce28481b13730ad7f387e3d45f'
-
'1fb3a6490e152d081f5fdff655e503dac602cb29b231df252edd664bf8b5ffcc589efd7d96b7b61e53f620670b110dcd5e1952fe5b88fe65fbf8acf8ce8812fd')
-
-prepare() {
-  patch -d dde-dock-$pkgver -p1 -i ../deepin-dock-qt5.15.patch # Fix build 
with Qt 5.15
-}
-
-build() {
-  cd dde-dock-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DDOCK_TRAY_USE_NATIVE_POPUP=YES
-  make
-}
-
-package() {
-  cd dde-dock-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-dock/repos/community-testing-x86_64/PKGBUILD (from rev 636051, 
deepin-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 20:57:37 UTC (rev 636052)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=5.1.0.11
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('qt5-svg' 'deepin-menu' 'deepin-daemon' 'deepin-launcher' 
'deepin-qt5integration'
+ 'deepin-qt-dbus-factory' 'deepin-network-utils' 'libdbusmenu-qt5')
+makedepends=('cmake' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz;
+ deepin-dock-qt5.15.patch)
+sha512sums=('e6d8cf3bf026872b65f76c989bd8a9d57fe16c17a75d6a9289046008fbdc230ce4f5e5892f870af1e064a1c460103141ac08999c9fe9ba6029c7b3f5fb37e3b4'
+
'1fb3a6490e152d081f5fdff655e503dac602cb29b231df252edd664bf8b5ffcc589efd7d96b7b61e53f620670b110dcd5e1952fe5b88fe65fbf8acf8ce8812fd')
+
+prepare() {
+  patch -d dde-dock-$pkgver -p1 -i ../deepin-dock-qt5.15.patch # Fix build 
with Qt 5.15
+}
+
+build() {
+  cd dde-dock-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DDOCK_TRAY_USE_NATIVE_POPUP=YES
+  make
+}
+
+package() {
+  cd dde-dock-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: deepin-dock-qt5.15.patch
===
--- deepin-dock-qt5.15.patch2020-05-27 20:57:16 UTC (rev 636051)
+++ deepin-dock-qt5.15.patch2020-05-27 20:57:37 UTC (rev 636052)
@@ -1,60 +0,0 @@
-diff --git a/plugins/onboard/onboarditem.cpp b/plugins/onboard/onboarditem.cpp
-index e43a0917..a7b29345 100644
 a/plugins/onboard/onboarditem.cpp
-+++ b/plugins/onboard/onboarditem.cpp
-@@ -23,6 +23,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff --git a/plugins/shutdown/shutdownwidget.cpp 
b/plugins/shutdown/shutdownwidget.cpp
-index 8b62a4ab..a303df4e 100644
 a/plugins/shutdown/shutdownwidget.cpp
-+++ b/plugins/shutdown/shutdownwidget.cpp
-@@ -23,6 +23,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff --git a/plugins/tray/fashiontray/containers/spliteranimated.cpp 
b/plugins/tray/fashiontray/containers/spliteranimated.cpp
-index 92d4ca1c..3feb06f4 100644
 a/plugins/tray/fashiontray/containers/spliteranimated.cpp
-+++ b/plugins/tray/fashiontray/containers/spliteranimated.cpp
-@@ -1,6 +1,7 @@
- #include 

[arch-commits] Commit in arch-wiki-docs/repos/community-any (PKGBUILD PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:16
  Author: spupykin
Revision: 636051

archrelease: copy trunk to community-any

Added:
  arch-wiki-docs/repos/community-any/PKGBUILD
(from rev 636049, arch-wiki-docs/trunk/PKGBUILD)
Deleted:
  arch-wiki-docs/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-27 20:57:15 UTC (rev 636050)
+++ PKGBUILD2020-05-27 20:57:16 UTC (rev 636051)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=arch-wiki-docs
-pkgdesc="Pages from Arch Wiki optimized for offline browsing"
-pkgver=20190826
-_commit=cdac9661818e5923d3a318789540028805fd7461
-pkgrel=1
-arch=('any')
-url="https://github.com/lahwaacz/arch-wiki-docs;
-license=('FDL')
-options=('!strip')
-makedepends=('git' 'python' 'python-simplemediawiki' 'python-lxml' 
'python-cssselect')
-source=("git://github.com/lahwaacz/arch-wiki-docs.git#commit=${_commit}")
-md5sums=('SKIP')
-
-pkgver() {
-  date "+%Y%m%d"
-}
-
-prepare() {
-  cd "$pkgname"
-  LANG=en_US.UTF-8 python arch-wiki-docs.py --output-directory 
"$srcdir/build_wiki" --clean --safe-filenames
-}
-
-package() {
-  install -dm755 "$pkgdir/usr/share/doc/arch-wiki/html"
-  cp -r "$srcdir"/build_wiki/* "$pkgdir/usr/share/doc/arch-wiki/html/"
-}

Copied: arch-wiki-docs/repos/community-any/PKGBUILD (from rev 636049, 
arch-wiki-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-27 20:57:16 UTC (rev 636051)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=arch-wiki-docs
+pkgdesc="Pages from Arch Wiki optimized for offline browsing"
+pkgver=20200527
+_commit=cdac9661818e5923d3a318789540028805fd7461
+pkgrel=1
+arch=('any')
+url="https://github.com/lahwaacz/arch-wiki-docs;
+license=('FDL')
+options=('!strip')
+makedepends=('git' 'python' 'python-simplemediawiki' 'python-lxml' 
'python-cssselect')
+source=("git://github.com/lahwaacz/arch-wiki-docs.git#commit=${_commit}")
+md5sums=('SKIP')
+
+pkgver() {
+  date "+%Y%m%d"
+}
+
+prepare() {
+  cd "$pkgname"
+  LANG=en_US.UTF-8 python arch-wiki-docs.py --output-directory 
"$srcdir/build_wiki" --clean --safe-filenames
+}
+
+package() {
+  install -dm755 "$pkgdir/usr/share/doc/arch-wiki/html"
+  cp -r "$srcdir"/build_wiki/* "$pkgdir/usr/share/doc/arch-wiki/html/"
+}


[arch-commits] Commit in arch-wiki-docs/trunk (PKGBUILD)

2020-05-27 Thread Sergej Pupykin via arch-commits
Date: Wednesday, May 27, 2020 @ 20:57:05
  Author: spupykin
Revision: 636049

upgpkg: arch-wiki-docs 20200527-1

Modified:
  arch-wiki-docs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 20:51:41 UTC (rev 636048)
+++ PKGBUILD2020-05-27 20:57:05 UTC (rev 636049)
@@ -2,7 +2,7 @@
 
 pkgname=arch-wiki-docs
 pkgdesc="Pages from Arch Wiki optimized for offline browsing"
-pkgver=20190826
+pkgver=20200527
 _commit=cdac9661818e5923d3a318789540028805fd7461
 pkgrel=1
 arch=('any')


  1   2   3   4   >