[arch-commits] Commit in js78/repos/extra-x86_64 (PKGBUILD PKGBUILD lto-pgo.diff)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 18:56:42
  Author: heftig
Revision: 400109

archrelease: copy trunk to extra-x86_64

Added:
  js78/repos/extra-x86_64/PKGBUILD
(from rev 400108, js78/trunk/PKGBUILD)
  js78/repos/extra-x86_64/lto-pgo.diff
(from rev 400108, js78/trunk/lto-pgo.diff)
Deleted:
  js78/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  241 +
 lto-pgo.diff |   92 +
 2 files changed, 215 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 18:56:27 UTC (rev 400108)
+++ PKGBUILD2020-11-10 18:56:42 UTC (rev 400109)
@@ -1,118 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=js78
-pkgver=78.4.0
-pkgrel=1
-pkgdesc="JavaScript interpreter and libraries - Version 78"
-arch=(x86_64)
-url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey;
-license=(MPL)
-depends=(gcc-libs readline zlib sh)
-makedepends=(zip autoconf2.13 python-setuptools python-psutil rust llvm clang 
lld)
-checkdepends=(mercurial git)
-_relver=${pkgver}esr
-source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc})
-sha256sums=('8e3cf0bbf1062768134db2eb10ab774731ca5ec6694b65def82234bb0a9170fc'
-'SKIP')
-validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
-
-# Make sure the duplication between bin and lib is found
-COMPRESSZST+=(--long)
-
-prepare() {
-  cd firefox-$pkgver
-  mkdir obj
-}
-
-build() {
-  local configure_args=(
---prefix=/usr
---disable-debug
---disable-debug-symbols
---disable-jemalloc
---disable-strip
---enable-hardening
---enable-linker=lld
---enable-optimize
---enable-readline
---enable-release
---enable-rust-simd
---enable-shared-js
---enable-tests
---with-intl-api
---with-system-zlib
---without-system-icu
-  )
-
-  export CC='clang --target=x86_64-unknown-linux-gnu'
-  export CXX='clang++ --target=x86_64-unknown-linux-gnu'
-  export AR=llvm-ar
-  export NM=llvm-nm
-  export RANLIB=llvm-ranlib
-
-  cd firefox-$pkgver/obj
-
-  # Do 3-tier PGO
-  echo "Building instrumented JS..."
-  sh ../js/src/configure "${configure_args[@]}" \
---enable-profile-generate=cross
-  make
-
-  echo "Profiling instrumented JS..."
-  (
-local js="$PWD/dist/bin/js"
-export LLVM_PROFILE_FILE="$PWD/js-%p-%m.profraw"
-
-cd ../js/src/octane
-"$js" run.js
-
-cd ../../../third_party/webkit/PerformanceTests/ARES-6
-"$js" cli.js
-
-cd ../SunSpider/sunspider-0.9.1
-"$js" sunspider-standalone-driver.js
-  )
-
-  llvm-profdata merge -o merged.profdata *.profraw
-
-  stat -c "Profile data found (%s bytes)" merged.profdata
-  test -s merged.profdata
-
-  echo "Removing instrumented JS..."
-  make clobber
-
-  echo "Building optimized JS..."
-  sh ../js/src/configure "${configure_args[@]}" \
---enable-lto=cross \
---enable-profile-use=cross \
---with-pgo-profile-path="$PWD/merged.profdata"
-  make
-}
-
-check() {
-  local jstests_extra_args=(
---format=none
---exclude-random
---wpt=disabled
-  ) jittest_extra_args=(
---format=none
---timeout 300
-  ) jittest_test_args=(
-basic
-  )
-
-  cd firefox-$pkgver/obj
-  make -C js/src check-jstests check-jit-test \
-JSTESTS_EXTRA_ARGS="${jstests_extra_args[*]}" \
-JITTEST_EXTRA_ARGS="${jittest_extra_args[*]}" \
-JITTEST_TEST_ARGS="${jittest_test_args[*]}"
-}
-
-package() {
-  cd firefox-$pkgver/obj
-  make DESTDIR="$pkgdir" install
-  rm "$pkgdir"/usr/lib/*.ajs
-  find "$pkgdir"/usr/{lib/pkgconfig,include} -type f -exec chmod -c a-x {} +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: js78/repos/extra-x86_64/PKGBUILD (from rev 400108, js78/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 18:56:42 UTC (rev 400109)
@@ -0,0 +1,123 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=js78
+pkgver=78.4.1
+pkgrel=1
+pkgdesc="JavaScript interpreter and libraries - Version 78"
+arch=(x86_64)
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey;
+license=(MPL)
+depends=(gcc-libs readline zlib sh)
+makedepends=(zip autoconf2.13 python-setuptools python-psutil rust llvm clang 
lld)
+checkdepends=(mercurial git)
+_relver=${pkgver}esr
+source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc}
+lto-pgo.diff)
+sha256sums=('1978eedd975b1cf95bd4a04b2381560d1ad9a4223032717f23fac26e3458a760'
+'SKIP'
+'7b3d631c20a8de8d0bfd4de77e8ebeffa0bd0aa536abed713c36931ea4810926')
+validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
+
+# Make sure the duplication between bin and lib is found
+COMPRESSZST+=(--long)
+

[arch-commits] Commit in pipewire/repos/extra-x86_64 (4 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 18:50:19
  Author: heftig
Revision: 400105

archrelease: copy trunk to extra-x86_64

Added:
  pipewire/repos/extra-x86_64/PKGBUILD
(from rev 400104, pipewire/trunk/PKGBUILD)
  pipewire/repos/extra-x86_64/pipewire.install
(from rev 400104, pipewire/trunk/pipewire.install)
Deleted:
  pipewire/repos/extra-x86_64/PKGBUILD
  pipewire/repos/extra-x86_64/pipewire.install

--+
 PKGBUILD |  217 ++---
 pipewire.install |   28 +++---
 2 files changed, 124 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 18:50:05 UTC (rev 400104)
+++ PKGBUILD2020-11-10 18:50:19 UTC (rev 400105)
@@ -1,107 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=pipewire
-pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa)
-pkgver=0.3.15
-pkgrel=1
-pkgdesc="Server and user space API to deal with multimedia pipelines"
-url="https://pipewire.org;
-license=(LGPL2.1)
-arch=(x86_64)
-makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
- alsa-lib gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader
- dbus libsndfile bluez-libs vulkan-headers)
-_commit=16872549e3a2433f49f27c1875dfd432377ca0be  # tags/0.3.15
-source=("git+https://github.com/PipeWire/pipewire#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  arch-meson $pkgbase build \
--D docs=true \
--D udevrulesdir=/usr/lib/udev/rules.d
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-_ver=${pkgver:0:3}
-
-package_pipewire() {
-  depends=(gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader bluez-libs
-   alsa-card-profiles
-   libdbus-1.so libsndfile.so libudev.so libasound.so libsystemd.so
-   libglib-2.0.so libgobject-2.0.so)
-  optdepends=('pipewire-docs: Documentation'
-  'pipewire-jack: JACK support'
-  'pipewire-pulse: PulseAudio support')
-  provides=(libpipewire-$_ver.so)
-  backup=(etc/pipewire/pipewire.conf)
-  install=pipewire.install
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  cd "$pkgdir"
-
-  mkdir -p etc/alsa/conf.d
-  ln -st etc/alsa/conf.d /usr/share/alsa/alsa.conf.d/50-pipewire.conf 
-
-  _pick docs usr/share/doc
-
-  _pick pulse usr/bin/pw-pulse usr/lib/pipewire-$_ver/pulse
-  _pick pulse usr/lib/pipewire-$_ver/libpipewire-module-protocol-pulse.so
-  _pick pulse usr/share/man/man1/pw-pulse.1
-
-  _pick jack usr/bin/pw-jack usr/lib/pipewire-$_ver/jack
-  _pick jack usr/lib/spa-0.2/jack
-  _pick jack usr/share/man/man1/pw-jack.1
-
-  # Use alsa-card-profiles built with Pulseaudio
-  rm -rv "$pkgdir"/usr/share/alsa-card-profile
-}
-
-package_pipewire-docs() {
-  pkgdesc+=" (documentation)"
-  mv docs/* "$pkgdir"
-}
-
-package_pipewire-jack() {
-  pkgdesc+=" (JACK support)"
-  depends=(libpipewire-$_ver.so libjack.so)
-  mv jack/* "$pkgdir"
-}
-
-package_pipewire-pulse() {
-  pkgdesc+=" (PulseAudio support)"
-  depends=(libpipewire-$_ver.so libglib-2.0.so)
-  mv pulse/* "$pkgdir"
-}
-
-package_pipewire-alsa() {
-  pkgdesc="ALSA Configuration for PipeWire"
-  depends=(libpipewire-$_ver.so)
-
-  mkdir -p "$pkgdir/etc/alsa/conf.d"
-  ln -st "$pkgdir/etc/alsa/conf.d" 
/usr/share/alsa/alsa.conf.d/99-pipewire-default.conf
-}

Copied: pipewire/repos/extra-x86_64/PKGBUILD (from rev 400104, 
pipewire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 18:50:19 UTC (rev 400105)
@@ -0,0 +1,110 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=pipewire
+pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa)
+pkgver=0.3.15
+pkgrel=2
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="https://pipewire.org;
+license=(LGPL2.1)
+arch=(x86_64)
+makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
+ alsa-lib gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader
+ dbus libsndfile bluez-libs vulkan-headers)
+_commit=16872549e3a2433f49f27c1875dfd432377ca0be  # tags/0.3.15
+source=("git+https://github.com/PipeWire/pipewire#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+
+  # Fix Chrome
+  git cherry-pick -n b8c7b36d3b8be16593f554964cf2f852c21b5c2c
+}
+
+build() {
+  arch-meson $pkgbase build \
+-D docs=true \
+-D 

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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 18:50:05
  Author: heftig
Revision: 400104

0.3.15-2

Modified:
  pipewire/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 18:46:26 UTC (rev 400103)
+++ PKGBUILD2020-11-10 18:50:05 UTC (rev 400104)
@@ -4,7 +4,7 @@
 pkgbase=pipewire
 pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa)
 pkgver=0.3.15
-pkgrel=1
+pkgrel=2
 pkgdesc="Server and user space API to deal with multimedia pipelines"
 url="https://pipewire.org;
 license=(LGPL2.1)
@@ -23,6 +23,9 @@
 
 prepare() {
   cd $pkgbase
+
+  # Fix Chrome
+  git cherry-pick -n b8c7b36d3b8be16593f554964cf2f852c21b5c2c
 }
 
 build() {


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:47
  Author: heftig
Revision: 400078

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  199 
 config  |11131 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11343 insertions(+)

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


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:46
  Author: heftig
Revision: 400077

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 400074, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  
linux-lts/repos/testing-x86_64/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch
(from rev 400075, 
linux-lts/trunk/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 400075, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 400075, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 400076, linux-lts/trunk/sphinx-workaround.patch)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  129 
 0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch |  689 
 PKGBUILD|  197 
 config  |10596 
++
 sphinx-workaround.patch |   15 
 5 files changed, 11626 insertions(+)

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


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:42
  Author: heftig
Revision: 749579

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 749577, tp_smapi-lts/trunk/PKGBUILD)

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 749577, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:42 UTC (rev 749579)
@@ -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=103
+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 vhba-module/repos (4 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:43
  Author: heftig
Revision: 749580

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 749577, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 749577, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 749578, vhba-module/trunk/dkms.conf)

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

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
749577, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-11-10 15:19:43 UTC (rev 
749580)
@@ -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 749577, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:43 UTC (rev 749580)
@@ -0,0 +1,54 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=85
+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 linux/repos (4 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:43
  Author: heftig
Revision: 400076

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  199 
 config  |11081 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11293 insertions(+)

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


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:33
  Author: heftig
Revision: 749576

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 749571, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 749573, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 749574, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 749571, 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-11-10 15:19:33 UTC 
(rev 749576)
@@ -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/0002-kernel-5.7.patch (from rev 
749573, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2020-11-10 15:19:33 UTC 
(rev 749576)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 749574, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:33 UTC (rev 749576)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=362
+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 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.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 acpi_call-lts/repos (2 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:30
  Author: heftig
Revision: 749572

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 749568, acpi_call-lts/trunk/PKGBUILD)

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 749568, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:30 UTC (rev 749572)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.2.1
+pkgrel=2
+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' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+provides=('acpi_call')
+
+build() {
+  _kernver=$(

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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:31
  Author: heftig
Revision: 749574

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 749568, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 749568, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 749569, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
749568, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-11-10 15:19:31 UTC (rev 749574)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
749568, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:31 UTC (rev 749574)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=61
+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 virtualbox-host-modules-arch/repos (2 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:29
  Author: heftig
Revision: 749571

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 749568, virtualbox-host-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 749568, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:29 UTC (rev 749571)
@@ -0,0 +1,45 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.16
+pkgrel=7
+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 wireguard-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:39
  Author: heftig
Revision: 400073

archrelease: copy trunk to testing-x86_64

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

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 400072, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-10 15:19:39 UTC (rev 400073)
@@ -0,0 +1,30 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200908
+pkgrel=14
+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 r8168-lts/repos (2 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:29
  Author: heftig
Revision: 749570

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 749568, r8168-lts/trunk/PKGBUILD)

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 749568, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:29 UTC (rev 749570)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.03
+pkgrel=36
+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=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+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 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:32
  Author: heftig
Revision: 749575

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 749571, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:32 UTC (rev 749575)
@@ -0,0 +1,38 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=41
+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)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:34
  Author: heftig
Revision: 749577

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 749575, acpi_call/trunk/PKGBUILD)

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 749575, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:34 UTC (rev 749577)
@@ -0,0 +1,66 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.1
+pkgrel=2
+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 broadcom-wl/repos (2 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:31
  Author: heftig
Revision: 749573

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 749569, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 749569, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:31 UTC (rev 749573)
@@ -0,0 +1,48 @@
+# 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=242
+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 deepin-anything-arch/repos (3 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:40
  Author: heftig
Revision: 749578

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 749577, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 749577, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 749577, 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-11-10 15:19:40 UTC 
(rev 749578)
@@ -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 
749577, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:40 UTC (rev 749578)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=122
+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 nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:40
  Author: heftig
Revision: 400074

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 400072, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-10 15:19:40 UTC (rev 400074)
@@ -0,0 +1,44 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=455.38
+pkgrel=6
+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 nvidia-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:41
  Author: heftig
Revision: 400075

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 400072, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-10 15:19:41 UTC (rev 400075)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=455.38
+pkgrel=4
+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 tp_smapi/repos (2 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:19:28
  Author: heftig
Revision: 749569

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 749568, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 749568, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-10 15:19:28 UTC (rev 749569)
@@ -0,0 +1,48 @@
+# 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=249
+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 tp_smapi-lts/trunk (PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:17:36
  Author: heftig
Revision: 749566

0.43-103: linux-lts 5.4.76-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:29 UTC (rev 749565)
+++ PKGBUILD2020-11-10 15:17:36 UTC (rev 749566)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=102
+pkgrel=103
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:17:40
  Author: heftig
Revision: 400072

1.0.20200908-14: linux-lts 5.4.76-1

Modified:
  wireguard-lts/trunk/PKGBUILD

--+
 PKGBUILD |   13 +
 1 file changed, 1 insertion(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:17:35 UTC (rev 400071)
+++ PKGBUILD2020-11-10 15:17:40 UTC (rev 400072)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200908
-pkgrel=13
+pkgrel=14
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')
@@ -28,14 +28,3 @@
   # compress each module individually
   find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
 }
-
-
-
-
-
-
-
-
-
-
-


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:17:39
  Author: heftig
Revision: 749568

8.048.03-36: linux-lts 5.4.76-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:17:37 UTC (rev 749567)
+++ PKGBUILD2020-11-10 15:17:39 UTC (rev 749568)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.03
-pkgrel=35
+pkgrel=36
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:17:37
  Author: heftig
Revision: 749567

1.2.1-2: linux-lts 5.4.76-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:17:36 UTC (rev 749566)
+++ PKGBUILD2020-11-10 15:17:37 UTC (rev 749567)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 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')
@@ -58,3 +58,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:17:35
  Author: heftig
Revision: 400071

455.38-4: linux-lts 5.4.76-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:16:54 UTC (rev 400070)
+++ PKGBUILD2020-11-10 15:17:35 UTC (rev 400071)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=455.38
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')
@@ -39,3 +39,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:16:54
  Author: heftig
Revision: 400070

5.4.76-1

Modified:
  
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
  linux-lts/trunk/PKGBUILD

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |2 +-
 PKGBUILD|6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
===
--- 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 
2020-11-10 15:14:54 UTC (rev 400069)
+++ 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 
2020-11-10 15:16:54 UTC (rev 400070)
@@ -40,7 +40,7 @@
bool "PID Namespaces"
default y
 diff --git a/kernel/fork.c b/kernel/fork.c
-index e3d5963d8c6f..26bca4170e37 100644
+index 419fff8eb9e5..70da21e5c06a 100644
 --- a/kernel/fork.c
 +++ b/kernel/fork.c
 @@ -106,6 +106,11 @@

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:14:54 UTC (rev 400069)
+++ PKGBUILD2020-11-10 15:16:54 UTC (rev 400070)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgbase=linux-lts
-pkgver=5.4.75
+pkgver=5.4.76
 pkgrel=1
 pkgdesc='LTS Linux'
 url="https://www.kernel.org/;
@@ -25,10 +25,10 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
 )
 # https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256sums=('d2466fd6eb5433e7bf287b617b11b2640c65a7ea93a57eb7a80d7f537cbc1470'
+sha256sums=('6f565fd31af5e1df7520c88d36d61db0f14b8fd7cc77aeb6c9b7b2ac25bef7d2'
 'SKIP'
 '760ec068a7a1d8e6d4af17c2a77bd0bcec6198ba31e003f6304313d43e3632a0'
-'0160432bb1a8e695aac2b389852fb2fa0967b4e56633d3af21232d62292195c2'
+'b439f57b84bc98730c0265695abb92385ee4dcd35a5c00d4cb3d3155c75fb491'
 '4fd74bb2a7101d700fba91806141339d8c9e46a14f8fc1fe276cfb68f1eec0f5'
 'b7c814c8183e4645947a6dcc3cbf80431de8a8fd4e895b780f9a5fd92f82cb8e')
 


[arch-commits] Commit in wireguard-dkms/repos/extra-x86_64 (3 files)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:14:54
  Author: heftig
Revision: 400069

archrelease: copy trunk to extra-x86_64

Added:
  wireguard-dkms/repos/extra-x86_64/PKGBUILD
(from rev 400068, wireguard-dkms/trunk/PKGBUILD)
  wireguard-dkms/repos/extra-x86_64/lts.diff
(from rev 400068, wireguard-dkms/trunk/lts.diff)
Deleted:
  wireguard-dkms/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   61 -
 lts.diff |   12 
 2 files changed, 48 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 15:14:39 UTC (rev 400068)
+++ PKGBUILD2020-11-10 15:14:54 UTC (rev 400069)
@@ -1,25 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Jason A. Donenfeld 
-
-pkgname=wireguard-dkms
-pkgver=1.0.20200908
-pkgrel=1
-pkgdesc='next generation secure network tunnel - module sources'
-arch=('x86_64')
-url='https://www.wireguard.com/'
-license=('GPL')
-depends=('dkms')
-provides=('WIREGUARD-MODULE')
-validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

-source=("https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${pkgver}.tar"{.xz,.asc})
-sha256sums=('ad33b2d2267a37e0f65c97e65e7d4d926d5aef7d530c251b63fbf919048eead9'
-'SKIP')
-
-package() {
-   cd wireguard-linux-compat-${pkgver}/
-
-   make -C src/ \
-   DESTDIR="${pkgdir}/" \
-   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
-   dkms-install
-}

Copied: wireguard-dkms/repos/extra-x86_64/PKGBUILD (from rev 400068, 
wireguard-dkms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 15:14:54 UTC (rev 400069)
@@ -0,0 +1,36 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-dkms
+pkgver=1.0.20200908
+pkgrel=2
+pkgdesc='next generation secure network tunnel - module sources'
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+depends=('dkms')
+provides=('WIREGUARD-MODULE')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${pkgver}.tar"{.xz,.asc}
+lts.diff)
+sha256sums=('ad33b2d2267a37e0f65c97e65e7d4d926d5aef7d530c251b63fbf919048eead9'
+'SKIP'
+'40512118e30e26486b94026caac3d4a35dd55cbd244472ec1adb91878f4c12b3')
+
+prepare() {
+   cd wireguard-linux-compat-${pkgver}/
+
+   # Fix build against linux-lts 5.4.76
+   patch -Np1 -i ../lts.diff
+}
+
+package() {
+   cd wireguard-linux-compat-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
+   dkms-install
+}
+
+# vim:set noet sw=0:

Copied: wireguard-dkms/repos/extra-x86_64/lts.diff (from rev 400068, 
wireguard-dkms/trunk/lts.diff)
===
--- lts.diff(rev 0)
+++ lts.diff2020-11-10 15:14:54 UTC (rev 400069)
@@ -0,0 +1,12 @@
+diff -u -r wireguard-linux-compat-1.0.20200908/src/compat/compat-asm.h 
wireguard-linux-compat-1.0.20200908-lts/src/compat/compat-asm.h
+--- wireguard-linux-compat-1.0.20200908/src/compat/compat-asm.h
2020-09-08 16:22:40.0 +
 wireguard-linux-compat-1.0.20200908-lts/src/compat/compat-asm.h
2020-11-10 15:05:43.720093522 +
+@@ -40,7 +40,7 @@
+ #undef pull
+ #endif
+ 
+-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 76)
+ #define SYM_FUNC_START ENTRY
+ #define SYM_FUNC_END ENDPROC
+ #endif


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:14:39
  Author: heftig
Revision: 400068

1.0.20200908-2: fix build against linux-lts 5.4.76

Added:
  wireguard-dkms/trunk/lts.diff
Modified:
  wireguard-dkms/trunk/PKGBUILD

--+
 PKGBUILD |   17 ++---
 lts.diff |   12 
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:28 UTC (rev 400067)
+++ PKGBUILD2020-11-10 15:14:39 UTC (rev 400068)
@@ -3,7 +3,7 @@
 
 pkgname=wireguard-dkms
 pkgver=1.0.20200908
-pkgrel=1
+pkgrel=2
 pkgdesc='next generation secure network tunnel - module sources'
 arch=('x86_64')
 url='https://www.wireguard.com/'
@@ -11,10 +11,19 @@
 depends=('dkms')
 provides=('WIREGUARD-MODULE')
 validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

-source=("https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${pkgver}.tar"{.xz,.asc})
+source=("https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${pkgver}.tar"{.xz,.asc}
+lts.diff)
 sha256sums=('ad33b2d2267a37e0f65c97e65e7d4d926d5aef7d530c251b63fbf919048eead9'
-'SKIP')
+'SKIP'
+'40512118e30e26486b94026caac3d4a35dd55cbd244472ec1adb91878f4c12b3')
 
+prepare() {
+   cd wireguard-linux-compat-${pkgver}/
+
+   # Fix build against linux-lts 5.4.76
+   patch -Np1 -i ../lts.diff
+}
+
 package() {
cd wireguard-linux-compat-${pkgver}/
 
@@ -23,3 +32,5 @@
DKMSDIR="/usr/src/wireguard-${pkgver}/" \
dkms-install
 }
+
+# vim:set noet sw=0:

Added: lts.diff
===
--- lts.diff(rev 0)
+++ lts.diff2020-11-10 15:14:39 UTC (rev 400068)
@@ -0,0 +1,12 @@
+diff -u -r wireguard-linux-compat-1.0.20200908/src/compat/compat-asm.h 
wireguard-linux-compat-1.0.20200908-lts/src/compat/compat-asm.h
+--- wireguard-linux-compat-1.0.20200908/src/compat/compat-asm.h
2020-09-08 16:22:40.0 +
 wireguard-linux-compat-1.0.20200908-lts/src/compat/compat-asm.h
2020-11-10 15:05:43.720093522 +
+@@ -40,7 +40,7 @@
+ #undef pull
+ #endif
+ 
+-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 76)
+ #define SYM_FUNC_START ENTRY
+ #define SYM_FUNC_END ENDPROC
+ #endif


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:28
  Author: heftig
Revision: 400067

455.38-6: linux 5.9.7.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:00:17 UTC (rev 400066)
+++ PKGBUILD2020-11-10 15:01:28 UTC (rev 400067)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=455.38
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;
@@ -41,3 +41,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:22
  Author: heftig
Revision: 749561

0.8-362: linux 5.9.7.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:21 UTC (rev 749560)
+++ PKGBUILD2020-11-10 15:01:22 UTC (rev 749561)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=361
+pkgrel=362
 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-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:19
  Author: heftig
Revision: 749559

0.43-249: linux 5.9.7.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:18 UTC (rev 749558)
+++ PKGBUILD2020-11-10 15:01:19 UTC (rev 749559)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=248
+pkgrel=249
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:23
  Author: heftig
Revision: 749562

8.048.03-41: linux 5.9.7.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:22 UTC (rev 749561)
+++ PKGBUILD2020-11-10 15:01:23 UTC (rev 749562)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=40
+pkgrel=41
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:29
  Author: heftig
Revision: 749565

5.0.1-122: linux 5.9.7.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:26 UTC (rev 749564)
+++ PKGBUILD2020-11-10 15:01:29 UTC (rev 749565)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=121
+pkgrel=122
 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 vhba-module/trunk (PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:25
  Author: heftig
Revision: 749563

20200106-85: linux 5.9.7.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:23 UTC (rev 749562)
+++ PKGBUILD2020-11-10 15:01:25 UTC (rev 749563)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=84
+pkgrel=85
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:16
  Author: heftig
Revision: 749557

r73.0cf3b48-61: linux 5.9.7.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 14:53:44 UTC (rev 749556)
+++ PKGBUILD2020-11-10 15:01:16 UTC (rev 749557)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=60
+pkgrel=61
 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 acpi_call/trunk (PKGBUILD)

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:26
  Author: heftig
Revision: 749564

1.2.1-2: linux 5.9.7.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:25 UTC (rev 749563)
+++ PKGBUILD2020-11-10 15:01:26 UTC (rev 749564)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 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')
@@ -63,3 +63,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:21
  Author: heftig
Revision: 749560

6.30.223.271-242: linux 5.9.7.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:19 UTC (rev 749559)
+++ PKGBUILD2020-11-10 15:01:21 UTC (rev 749560)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=241
+pkgrel=242
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -45,3 +45,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:01:18
  Author: heftig
Revision: 749558

6.1.16-7: linux 5.9.7.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:01:16 UTC (rev 749557)
+++ PKGBUILD2020-11-10 15:01:18 UTC (rev 749558)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.16
-pkgrel=6
+pkgrel=7
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'
@@ -42,3 +42,4 @@
 
 
 
+


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:00:17
  Author: heftig
Revision: 400066

5.9.7.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 15:00:15 UTC (rev 400065)
+++ PKGBUILD2020-11-10 15:00:17 UTC (rev 400066)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.9.6.zen1
+pkgver=5.9.7.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-11-10 Thread Jan Steffens via arch-commits
Date: Tuesday, November 10, 2020 @ 15:00:15
  Author: heftig
Revision: 400065

5.9.7.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 14:14:12 UTC (rev 400064)
+++ PKGBUILD2020-11-10 15:00:15 UTC (rev 400065)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.9.6.arch1
+pkgver=5.9.7.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}


[arch-commits] Commit in glade/trunk (PKGBUILD python-dep.diff)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 17:32:44
  Author: heftig
Revision: 399867

try to fix build with python3

Added:
  glade/trunk/python-dep.diff
Modified:
  glade/trunk/PKGBUILD

-+
 PKGBUILD|9 +++--
 python-dep.diff |   13 +
 2 files changed, 20 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 17:23:51 UTC (rev 399866)
+++ PKGBUILD2020-11-09 17:32:44 UTC (rev 399867)
@@ -16,8 +16,10 @@
 groups=(gnome-extra)
 provides=(libgladeui-2.so)
 _commit=9b3f55387f03920e1bf1cea9b7e9c911421cbb3e  # tags/GLADE_3_38_1^0
-source=("git+https://gitlab.gnome.org/GNOME/glade.git#commit=$_commit;)
-sha256sums=('SKIP')
+source=("git+https://gitlab.gnome.org/GNOME/glade.git#commit=$_commit;
+python-dep.diff)
+sha256sums=('SKIP'
+'dc1ed48403d473fcacef37fc6dd693e0442e7fed31bb852b20957c71595e2124')
 
 pkgver() {
   cd $pkgname
@@ -26,6 +28,9 @@
 
 prepare() {
   cd $pkgname
+
+  # Fix build with Python 3.9
+  git apply -3 ../python-dep.diff
 }
 
 build() {

Added: python-dep.diff
===
--- python-dep.diff (rev 0)
+++ python-dep.diff 2020-11-09 17:32:44 UTC (rev 399867)
@@ -0,0 +1,13 @@
+diff --git i/meson.build w/meson.build
+index fc4c4492..0c4b412f 100644
+--- i/meson.build
 w/meson.build
+@@ -153,7 +153,7 @@ pygobject_version = '3.8.0'
+ pygobject_dep = dependency('pygobject-3.0', version: '>= ' + 
pygobject_version, required: get_option('python'))
+ have_python = pygobject_dep.found()
+ if have_python
+-  python_dep = dependency('python-3.8-embed', version: '>= 3.8')
++  python_dep = import('python').find_installation().dependency(embed: true)
+ 
+   version_array = pygobject_version.split('.')
+   config_h.set('PYGOBJECT_REQUIRED_MAJOR', version_array[0].to_int())


[arch-commits] Commit in firefox-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 16:53:38
  Author: heftig
Revision: 399830

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 399829, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  468 ++---
 1 file changed, 234 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-09 16:53:20 UTC (rev 399829)
+++ PKGBUILD2020-11-09 16:53:38 UTC (rev 399830)
@@ -1,234 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=82.0.2
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=(any)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn "Bengali"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca-valencia "Catalan (Valencian)"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-CA  "English (Canadian)"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mk "Macedonian"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'oc "Occitan"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tl "Tagalog"'
-  'tr "Turkish"'
-  'trs"Chicahuaxtla Triqui"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('37fc2dfed2ac7d6197455b868ad4cf7039e5432942654a97a86aac401ea9261c'
-'e220bef7397d3b96ea5bf5614264bc2b2d86f25f65604540c9e047015df4b5ec'
-'cc7b03be04d008112c40d33f6cccbd0634f6a9fdfdc96bd6a77fdea0d2a0ab27'
-'042cf28ae2640cd70e363b9c0428092eaab1386a51c80b7b3bf04227e979cdf7'
-'fa3a242c35835064c4f511cbc733d6c4d6ac23a01ceb8070b3392a8ca9bd6e60'
-'0fb6730e8dbce44cae834d01db3d8d9814835730ceb0986c146d198379cc4bc7'
-'05ad222b737e55d9dc50d29788bb4a18700d12a656e62ed0c210ccf1cbac2a6b'
-'0792f2a651de67e1e7cff3e9da58a0c5ede7976d4304632af2bf9fe2d54fdbe8'
-'147c325154e74415ef7568a0a5913e902426477c46cdcbcbe9bad27a91c8a533'
-'d432757388c9865ff8d62854af485a492a3fb0772615345d75df89bdc4e13c04'
-'c6ebc6103290a0c9875b00aa781ce746727751b2d9aa9f5ec6abcb80fd044187'
-'31280b9b44c4c3db91fd8f8762251b2ad613e946873867bb859d0a47bb859d4f'
-

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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 16:53:03
  Author: heftig
Revision: 399828

82.0.3-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 16:51:56 UTC (rev 399827)
+++ PKGBUILD2020-11-09 16:53:03 UTC (rev 399828)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=82.0.2
+pkgver=82.0.3
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
@@ -22,7 +22,7 @@
 
source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
 0001-Use-remoting-name-for-GDK-application-names.patch
 $pkgname.desktop)
-sha256sums=('8851cae2df9923844c3dc97a4f77f6f3c86cc6f298b888b38949fbf74fcf2ca9'
+sha256sums=('4df40aecf4b71107c4816db585bcd425f093123f29d8563bc2443a8659058691'
 'SKIP'
 '1dba448eb1605c9dc73c22861a5394b50055909399f056baee4887b29af1b51e'
 '298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf')


[arch-commits] Commit in firefox/repos/extra-x86_64 (8 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 16:53:20
  Author: heftig
Revision: 399829

archrelease: copy trunk to extra-x86_64

Added:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 399828, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 399828, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 399828, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/upload-symbol-archive
(from rev 399828, firefox/trunk/upload-symbol-archive)
Deleted:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/upload-symbol-archive

+
 0001-Use-remoting-name-for-GDK-application-names.patch |  112 +-
 PKGBUILD   |  434 -
 firefox.desktop|  680 +++
 upload-symbol-archive  |   50 -
 4 files changed, 638 insertions(+), 638 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2020-11-09 
16:53:03 UTC (rev 399828)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2020-11-09 
16:53:20 UTC (rev 399829)
@@ -1,56 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp |  6 +-
- widget/gtk/nsAppShell.cpp   | 11 ---
- 2 files changed, 5 insertions(+), 12 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index a16521852d05..d0be5a088d8c 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3832,11 +3832,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
-index cfe022e65d82..06325264dbb1 100644
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -159,13 +160,9 @@ nsresult nsAppShell::Init() {
-   // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
-   //
-   // Only bother doing this for the parent process, since it's the one
--  // creating top-level windows. (At this point, a child process hasn't
--  // received the list of registered chrome packages, so the
--  // GetBrandShortName call would fail anyway.)
--  nsAutoString brandName;
--  mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--  if (!brandName.IsEmpty()) {
--gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+  // creating top-level windows.
-+  if (gAppData) {
-+gdk_set_program_class(gAppData->remotingName);
-   }
- }
-   }

Copied: 
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 399828, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  
(rev 0)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2020-11-09 
16:53:20 UTC (rev 399829)
@@ -0,0 +1,56 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp |  6 +-
+ widget/gtk/nsAppShell.cpp   | 11 ---
+ 2 files changed, 5 insertions(+), 12 deletions(-)
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+index a16521852d05..d0be5a088d8c 100644
+--- a/toolkit/xre/nsAppRunner.cpp
 b/toolkit/xre/nsAppRunner.cpp
+@@ -3832,11 +3832,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
+   // consistently.
+ 
+   // Set program name to the one defined in application.ini.
+-  {
+-nsAutoCString program(gAppData->name);
+-ToLowerCase(program);
+-g_set_prgname(program.get());
+-  }
++  g_set_prgname(gAppData->remotingName);
+ 
+   // 

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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 15:11:32
  Author: heftig
Revision: 746961

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-api/repos/community-staging-x86_64/
  deepin-api/repos/community-staging-x86_64/PKGBUILD
(from rev 746960, deepin-api/trunk/PKGBUILD)
  deepin-api/repos/community-staging-x86_64/deepin-api.install
(from rev 746960, deepin-api/trunk/deepin-api.install)
  deepin-api/repos/community-staging-x86_64/deepin-api.sysusers
(from rev 746960, deepin-api/trunk/deepin-api.sysusers)

-+
 PKGBUILD|   57 ++
 deepin-api.install  |   16 ++
 deepin-api.sysusers |1 
 3 files changed, 74 insertions(+)

Copied: deepin-api/repos/community-staging-x86_64/PKGBUILD (from rev 746960, 
deepin-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-09 15:11:32 UTC (rev 746961)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=5.3.0.11
+pkgrel=2
+pkgdesc='Golang bindings for dde-daemon'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-api;
+license=('GPL3')
+# alsa-utils: alsactl used in sound-theme-player
+# bc: used in adjust-grub-theme
+# fontconfig: fc-match used in adjust-grub-theme
+# librsvg: rsvg-convert used in adjust-grub-theme
+# util-linux: rfkill used in device
+depends=('alsa-utils' 'bc' 'fontconfig' 'glib2' 'gdk-pixbuf-xlib' 'gtk3' 
'libcanberra-pulse'
+ 'librsvg' 'libxi' 'libxfixes' 'poppler-glib' 'util-linux' 'xcur2png' 
'blur-effect')
+makedepends=('git' 'deepin-gettext-tools' 'golang-deepin-gir' 
'golang-deepin-lib'
+ 'golang-github-linuxdeepin-go-dbus-factory' 
'golang-github-linuxdeepin-go-x11-client'
+ 'golang-github-nfnt-resize' 'bzr' 'go-pie')
+provides=('golang-deepin-dde-api')
+groups=('deepin')
+install=deepin-api.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-api/archive/$pkgver.tar.gz;
+deepin-api.sysusers)
+sha512sums=('e21dfc527e97b4c7cbf519be9c017549b44b412fe0776969f320c26fc27aa24411396dc7ac81ba3c8bd2e24d1d690abe2ee83eb0bbe96011d2e4afbea5948cd2'
+
'e894eb3928af9e244fa78010fdf16c8abb6ce18df114cf05327d02b18774d6ba5b023e4dfa0d07042f4e44a5c6e2ddb55b07f3e0db466a0e6169b52465fdefd6')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p build/src/pkg.deepin.io/dde/api
+  cp -a dde-api-$pkgver/* build/src/pkg.deepin.io/dde/api/
+
+  # golang-deepin-lib's dependency, remove when go packaging resumes
+  go get github.com/cryptix/wav github.com/godbus/dbus 
github.com/fsnotify/fsnotify
+
+  go get github.com/disintegration/imaging github.com/fogleman/gg 
github.com/mattn/go-sqlite3 github.com/gosexy/gettext github.com/rickb777/date
+}
+
+build(){
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  cd dde-api-$pkgver
+  make
+}
+
+package() {
+  cd dde-api-$pkgver
+  make DESTDIR="$pkgdir" SYSTEMD_LIB_DIR=/usr/lib install
+
+  install -Dm644 ../deepin-api.sysusers 
"$pkgdir"/usr/lib/sysusers.d/deepin-api.conf
+}

Copied: deepin-api/repos/community-staging-x86_64/deepin-api.install (from rev 
746960, deepin-api/trunk/deepin-api.install)
===
--- community-staging-x86_64/deepin-api.install (rev 0)
+++ community-staging-x86_64/deepin-api.install 2020-11-09 15:11:32 UTC (rev 
746961)
@@ -0,0 +1,16 @@
+post_install() {
+  # We need to know uid and gid to create /var/lib/deepin-sound-player with 
proper
+  # permissions. So keep systemd-sysusers invocation here despite having
+  # pacman hooks.
+  systemd-sysusers deepin-sound-player.conf
+  mkdir -p var/lib/deepin-sound-player
+  chown -R deepin-sound-player:deepin-sound-player var/lib/deepin-sound-player
+}
+
+post_upgrade() {
+  if (( $(vercmp $2 5.2.0.1-2) < 0)); then
+usermod -d /var/lib/deepin-sound-player deepin-sound-player
+mkdir -p var/lib/deepin-sound-player
+chown -R deepin-sound-player:deepin-sound-player 
var/lib/deepin-sound-player
+  fi
+}

Copied: deepin-api/repos/community-staging-x86_64/deepin-api.sysusers (from rev 
746960, deepin-api/trunk/deepin-api.sysusers)
===
--- community-staging-x86_64/deepin-api.sysusers
(rev 0)
+++ community-staging-x86_64/deepin-api.sysusers2020-11-09 15:11:32 UTC 
(rev 746961)
@@ -0,0 +1 @@
+u deepin-sound-player - "Deepin Sound Player" /var/lib/deepin-sound-player


[arch-commits] Commit in deepin-daemon/repos (5 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 15:11:33
  Author: heftig
Revision: 746962

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-daemon/repos/community-staging-x86_64/
  deepin-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 746960, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-staging-x86_64/dde-daemon_5.9.4.2.diff
(from rev 746960, deepin-daemon/trunk/dde-daemon_5.9.4.2.diff)
  deepin-daemon/repos/community-staging-x86_64/deepin-daemon.install
(from rev 746960, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-staging-x86_64/deepin-daemon.sysusers
(from rev 746960, deepin-daemon/trunk/deepin-daemon.sysusers)

-+
 PKGBUILD|   72 ++
 dde-daemon_5.9.4.2.diff |   34 +
 deepin-daemon.install   |3 +
 deepin-daemon.sysusers  |2 +
 4 files changed, 111 insertions(+)

Copied: deepin-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 746960, 
deepin-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-09 15:11:33 UTC (rev 746962)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-daemon
+pkgver=5.11.0.36
+pkgrel=2
+pkgdesc='Daemon handling the DDE session settings'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-daemon;
+license=('GPL3')
+depends=('deepin-desktop-schemas' 'ddcutil' 'deepin-api' 'gvfs' 'iso-codes' 
'lsb-release'
+ 'mobile-broadband-provider-info' 'deepin-polkit-agent'
+ 'deepin-polkit-agent-ext-gnomekeyring' 'udisks2' 'upower'
+ 'libxkbfile' 'accountsservice' 'deepin-desktop-base' 'bamf' 
'pulseaudio'
+ 'org.freedesktop.secrets' 'noto-fonts' 'imwheel')
+makedepends=('golang-github-linuxdeepin-go-dbus-factory' 'golang-deepin-gir' 
'golang-deepin-lib'
+ 'golang-deepin-dde-api' 'golang-github-nfnt-resize' 
'golang-gopkg-yaml.v2' 'sqlite' 'deepin-gettext-tools'
+ 'git' 'mercurial' 'python-gobject' 'networkmanager' 'bluez' 'go')
+optdepends=('networkmanager: for network management support'
+'bluez: for bluetooth support'
+'iw: for miracast module'
+'proxychains-ng: for proxy configuration module')
+conflicts=('dde-daemon')
+replaces=('dde-daemon')
+groups=('deepin')
+install="$pkgname.install"
+source=("https://github.com/linuxdeepin/dde-daemon/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+dde-daemon_5.9.4.2.diff
+'deepin-daemon.sysusers')
+sha512sums=('d36e5629950ac76094da1c79bec1cfc19c2da61ac4adbd7f65ba925ade4162bcf44856e6876512b27b79bb799ad22d732e0078bf647c9e4ae178a88d545a70ac'
+
'5329b86309dcdea88347b0ee8fbee04023328571479edc8e026ba78895deca59ca6195743f398b42a4b8fd9cfae3a0b7308ce8fff9a50adf40011fd1bd8715ae'
+
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a')
+
+prepare() {
+  cd dde-daemon-$pkgver
+  patch -p1 -i ../dde-daemon_5.9.4.2.diff
+
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+
+  # golang-deepin-lib's dependency, remove when go packaging resumes
+  go get github.com/cryptix/wav
+
+  go get github.com/axgle/mahonia github.com/msteinert/pam 
github.com/gosexy/gettext github.com/rickb777/date \
+ github.com/jinzhu/gorm github.com/kelvins/sunrisesunset 
github.com/mozillazg/go-pinyin github.com/teambition/rrule-go \
+ golang.org/x/xerrors github.com/mattn/go-sqlite3 
github.com/fsnotify/fsnotify github.com/godbus/dbus
+
+  sed -i 
's#/usr/share/backgrounds/default_background.jpg#/usr/share/backgrounds/deepin/desktop.jpg#'
 accounts/user.go
+}
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  cd dde-daemon-$pkgver
+  make -C network/nm_generator gen-nm-code
+  make
+}
+
+package() {
+  cd dde-daemon-$pkgver
+  make DESTDIR="$pkgdir" PAM_MODULE_DIR=usr/lib/security install
+
+  mv "$pkgdir"{,/usr}/lib/systemd
+  mv "$pkgdir"{,/usr}/lib/udev
+  rmdir "$pkgdir"/lib
+
+  install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
+}

Copied: deepin-daemon/repos/community-staging-x86_64/dde-daemon_5.9.4.2.diff 
(from rev 746960, deepin-daemon/trunk/dde-daemon_5.9.4.2.diff)
===
--- community-staging-x86_64/dde-daemon_5.9.4.2.diff
(rev 0)
+++ community-staging-x86_64/dde-daemon_5.9.4.2.diff2020-11-09 15:11:33 UTC 
(rev 746962)
@@ -0,0 +1,34 @@
+diff --git a/system/gesture/core.c b/system/gesture/core.c
+index f953cc1c..4a49749e 100644

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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 15:10:53
  Author: heftig
Revision: 746960

5.11.0.36-2: gdk-pixbuf-xlib rebuild

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 15:06:25 UTC (rev 746959)
+++ PKGBUILD2020-11-09 15:10:53 UTC (rev 746960)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-daemon
 pkgver=5.11.0.36
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon handling the DDE session settings'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:58:48
  Author: heftig
Revision: 399745

82.0.3-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:55:09 UTC (rev 399744)
+++ PKGBUILD2020-11-09 14:58:48 UTC (rev 399745)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=82.0.2
+pkgver=82.0.3
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -136,99 +136,99 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('37fc2dfed2ac7d6197455b868ad4cf7039e5432942654a97a86aac401ea9261c'
-'e220bef7397d3b96ea5bf5614264bc2b2d86f25f65604540c9e047015df4b5ec'
-'cc7b03be04d008112c40d33f6cccbd0634f6a9fdfdc96bd6a77fdea0d2a0ab27'
-'042cf28ae2640cd70e363b9c0428092eaab1386a51c80b7b3bf04227e979cdf7'
-'fa3a242c35835064c4f511cbc733d6c4d6ac23a01ceb8070b3392a8ca9bd6e60'
-'0fb6730e8dbce44cae834d01db3d8d9814835730ceb0986c146d198379cc4bc7'
-'05ad222b737e55d9dc50d29788bb4a18700d12a656e62ed0c210ccf1cbac2a6b'
-'0792f2a651de67e1e7cff3e9da58a0c5ede7976d4304632af2bf9fe2d54fdbe8'
-'147c325154e74415ef7568a0a5913e902426477c46cdcbcbe9bad27a91c8a533'
-'d432757388c9865ff8d62854af485a492a3fb0772615345d75df89bdc4e13c04'
-'c6ebc6103290a0c9875b00aa781ce746727751b2d9aa9f5ec6abcb80fd044187'
-'31280b9b44c4c3db91fd8f8762251b2ad613e946873867bb859d0a47bb859d4f'
-'251394c4b313e0c002df01311940a107e4f78b0979a5809441b95ecbe75b78a2'
-'4d9c0d4266c375f1df00556c2f12aa767d2df780e8e184535631ef2ffdc12cc8'
-'cf3c078435eed6155ef1c04798a1dab06b26dc305e6f34309bd870c7c887aae0'
-'0dbb339e4d80502d7f19bfbcf7e4fc1b149848aa1b64fe0e77fb3d23efa52dbc'
-'e80f89d5fa78e4045e6c3402527cb613ab922e5fdbb96be8517dea1d0bbcd70a'
-'4338da996f2e909265aa63927962f49badb27ee34f7d87b23ae38972594dd7eb'
-'4354be7bf9e50d64e725c9371de14f2bbd75b9d460c6668045a3d99724671c08'
-'0aa138eeec43a99792ec4c425eedcb48da2024cc689341cc2e97b69d8f68fed8'
-'a4a039fc51c7f90ac743c4eb224c8770ded5243a2638ea511791a68f531eb482'
-'d4ed5bd92ce61daa8133ba7263ae5c104b6ea1df0c01d0aef1afa86df489631a'
-'29eec83e25b51e9f54e30b183097e04faf935332622be5017bc0e48c5644e96f'
-'36b1460fc0102fffd59ed2507cdb3e26fa0d1ee10b026ae94e536b2e0d40ec78'
-'2863e52608707e60b3ca0d1fc6f851e65f265ee8d3b012f620736da727d0f45c'
-'eb104fd3cb5bdda21138f33f22bd9a8031e656aa4759f095b9f5e297cacb9d94'
-'acbcd14075f741837ddafdbe8f37267fad6226fe7bc11a8ed3616029a4fc3090'
-'00e607b58a24a8e3e7969ffe8826ec1254ad12ff855ec204bcfc0313c051bc30'
-'3a34a4910149fcc3e23764b477211babc910b7320a0752841e8ecd608d7481ab'
-'3b61ec1190b23944d36aae7915d8e4037ec8c989f82633f77266072bf7c8f725'
-'d9f6b14ecf18669001a574adb7f24ed648d95906b2df37f2cb1ebab7e7a6748b'
-'8ff9f80bb579ba24ef8cb86b1ce279e7a989c295ee1cc0c9edb361faa0a06188'
-'fc32206580e99d12947765f714a3b012abcb7e5566f405042b188be31a5bdd75'
-'4ae35e6db1401e3052d0bfdcf72f1d6d37a969d5eafae70e9faa77c2976ea4bb'
-'37f73fb84c02e18490eef55ac67275c034439b136164517ad7d90a46621c8cd4'
-'169c674e2b1ed64d2f1804701238aa98305aa4cd411ecce51c8e20b69e799f23'
-'a65f0b54504efe6dcef6cf04bb1205d827b922c011573249ec859733d19590c0'
-'53dfa8ff9543e47f81087712f4cf5b05cf78de29c16614b31c81ef2e5cd7917e'
-'5c51465a3e5f6e748a0ed0fadf13b06ff5018278ac36b85480a87cb1d8bc4837'
-'0e4096f46c1d1ecd4de73a93ef5f489259fc5a3048400c78948a422953f91d9f'
-'f05c64afe4058b81bfb52be1404918f362f79e59d7500213b59af661a958d2e4'
-'f389848667ee6c51547d156d33f9861128aac83cb39a3d5ad397e587d5f97334'
-'b660c88d965907d506b2c7c435e8a1b992ec626ce1660d717673786a1070ba68'
-'81e2ca5fddc4849767079561968afea019087e45d44bce0d93e7b64c457ee7b6'
-'ae2cf3040bea117ad6ba0bb2609e30832a38d11b7289a56e583a7b48c0a13e9e'
-'0ac3f6f6c86e1a3ab2ea3fd7048057ab28bbbc672189db1db8f913bb4b8c9d1c'
-'dcf29373bba58eff7328912fc4453ffbe5de6166bd4795e3c4bd0d93a2831444'
-'f10ac04c805471309e8bf4ff1d5996798edda96b65d19a2250c1815b4116bbbc'
-'2fe5560893df1ff790cb59b0ef953483d07629737696dcab375363b0b452e2a0'
-'d9cfd13ef264e2cd858cd2fbf9c1cc930e39c7166bfefb810172e895f0a05077'
-'df8c1c0c1aa8c61c374c54070e91a1eab53a938edc40d2ff27c62382a576ec0d'
-'f0dbe6c7eed8ae42e88520940562f37060871e531592e9e50f7ce2b60f52ac9a'
-'a3d69cb234e9643fedb8106b2ff5e60bee1238b106ac2691fd59bc2f4499efc2'
-   

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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:54:37
  Author: heftig
Revision: 746951

archrelease: copy trunk to community-staging-x86_64

Added:
  sbxkb/repos/community-staging-x86_64/
  sbxkb/repos/community-staging-x86_64/PKGBUILD
(from rev 746950, sbxkb/trunk/PKGBUILD)

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

Copied: sbxkb/repos/community-staging-x86_64/PKGBUILD (from rev 746950, 
sbxkb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-09 14:54:37 UTC (rev 746951)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=sbxkb
+pkgver=0.7.6
+pkgrel=5
+pkgdesc="Simple tray XKB indicator"
+arch=('x86_64')
+license=('GPL2')
+url="http://downloads.sourceforge.net/project/staybox;
+depends=('gtk2')
+makedepends=('pkgconfig')
+source=(https://downloads.sourceforge.net/project/staybox/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('d43cff3014f566e47080ea828910f2ab856d28dce5cc7a526726a4f1666cc9fca8dcc7616b40d91e405e1db3b8d6373bbb97d96e6e36f496d9047f37328b04dc')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  LDFLAGS+=' -lX11'
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+}


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:54:54
  Author: heftig
Revision: 399743

1.9.1-2: gdk-pixbuf-xlib rebuild

Modified:
  icewm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:54:38 UTC (rev 399742)
+++ PKGBUILD2020-11-09 14:54:54 UTC (rev 399743)
@@ -3,12 +3,13 @@
 
 pkgname=icewm
 pkgver=1.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A Window Manager designed for speed, usability, and consistency"
 arch=('x86_64')
 url="https://ice-wm.org/;
 license=('LGPL')
-depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft' 
'libxcomposite' 'libxdamage' 'gdk-pixbuf2' 'libxpm')
+depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft'
+ 'libxcomposite' 'libxdamage' 'gdk-pixbuf-xlib' 'libxpm')
 makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
 optdepends=('perl: for icewm-menu-xrandr')
 
source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)


[arch-commits] Commit in icewm/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:55:09
  Author: heftig
Revision: 399744

archrelease: copy trunk to staging-x86_64

Added:
  icewm/repos/staging-x86_64/
  icewm/repos/staging-x86_64/PKGBUILD
(from rev 399743, icewm/trunk/PKGBUILD)

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

Copied: icewm/repos/staging-x86_64/PKGBUILD (from rev 399743, 
icewm/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 14:55:09 UTC (rev 399744)
@@ -0,0 +1,27 @@
+# Maintainer:
+# Contributor: Eric Bélanger 
+
+pkgname=icewm
+pkgver=1.9.1
+pkgrel=2
+pkgdesc="A Window Manager designed for speed, usability, and consistency"
+arch=('x86_64')
+url="https://ice-wm.org/;
+license=('LGPL')
+depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft'
+ 'libxcomposite' 'libxdamage' 'gdk-pixbuf-xlib' 'libxpm')
+makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
+optdepends=('perl: for icewm-menu-xrandr')
+source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
+sha256sums=('edd4ddadbd3440b18008c242f99a92cddf0d0f462ae84797495dc66a5e9e833a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:55:30
  Author: heftig
Revision: 746952

5.3.0.11-2: gdk-pixbuf-xlib rebuild

Modified:
  deepin-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:54:37 UTC (rev 746951)
+++ PKGBUILD2020-11-09 14:55:30 UTC (rev 746952)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-api
 pkgver=5.3.0.11
-pkgrel=1
+pkgrel=2
 pkgdesc='Golang bindings for dde-daemon'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-api;
@@ -14,8 +14,8 @@
 # fontconfig: fc-match used in adjust-grub-theme
 # librsvg: rsvg-convert used in adjust-grub-theme
 # util-linux: rfkill used in device
-depends=('alsa-utils' 'bc' 'fontconfig' 'glib2' 'gdk-pixbuf2' 'gtk3' 
'libcanberra-pulse' 'librsvg'
- 'libxi' 'libxfixes' 'poppler-glib' 'util-linux' 'xcur2png' 
'blur-effect')
+depends=('alsa-utils' 'bc' 'fontconfig' 'glib2' 'gdk-pixbuf-xlib' 'gtk3' 
'libcanberra-pulse'
+ 'librsvg' 'libxi' 'libxfixes' 'poppler-glib' 'util-linux' 'xcur2png' 
'blur-effect')
 makedepends=('git' 'deepin-gettext-tools' 'golang-deepin-gir' 
'golang-deepin-lib'
  'golang-github-linuxdeepin-go-dbus-factory' 
'golang-github-linuxdeepin-go-x11-client'
  'golang-github-nfnt-resize' 'bzr' 'go-pie')


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:54:38
  Author: heftig
Revision: 399742

archrelease: copy trunk to staging-x86_64

Added:
  xscreensaver/repos/staging-x86_64/
  xscreensaver/repos/staging-x86_64/LICENSE
(from rev 399741, xscreensaver/trunk/LICENSE)
  xscreensaver/repos/staging-x86_64/PKGBUILD
(from rev 399741, xscreensaver/trunk/PKGBUILD)

--+
 LICENSE  |   10 ++
 PKGBUILD |   58 ++
 2 files changed, 68 insertions(+)

Copied: xscreensaver/repos/staging-x86_64/LICENSE (from rev 399741, 
xscreensaver/trunk/LICENSE)
===
--- staging-x86_64/LICENSE  (rev 0)
+++ staging-x86_64/LICENSE  2020-11-09 14:54:38 UTC (rev 399742)
@@ -0,0 +1,10 @@
+/* xscreensaver, Copyright (c) 1991-2013 Jamie Zawinski 
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  No representations are made about the suitability of this
+ * software for any purpose.  It is provided "as is" without express or 
+ * implied warranty.
+ */

Copied: xscreensaver/repos/staging-x86_64/PKGBUILD (from rev 399741, 
xscreensaver/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 14:54:38 UTC (rev 399742)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgname=xscreensaver
+pkgver=5.44
+pkgrel=3
+pkgdesc='Screen saver and locker for the X Window System'
+url='https://www.jwz.org/xscreensaver/'
+arch=('x86_64')
+license=('BSD')
+depends=('libglade' 'libxmu' 'glu' 'xorg-appres' 'perl-libwww' 'libsystemd.so'
+ 'libxcrypt' 'libcrypt.so' 'libxi' 'libxxf86vm' 'libxrandr' 
'libxinerama'
+ 'libxt' 'libx11' 'libxext' 'pam' 'glibc' 'gdk-pixbuf-xlib')
+makedepends=('bc' 'intltool' 'libxpm' 'gdm' 'systemd' 'systemd-libs')
+optdepends=('gdm: for login manager support')
+backup=('etc/pam.d/xscreensaver')
+source=(https://www.jwz.org/xscreensaver/${pkgname}-${pkgver}.tar.gz
+LICENSE)
+sha512sums=('9d9144dec6f075c2d6a1c3cd45123a98d6d0cd732d6c3e3389e97b3f802b8f8765a188d1e35f97f123ca0a64661ea616b7b710577063c311da3d99d8439f1dae'
+
'863c699479b2ec2775a0d1cba22e615929194a14af164b3513e46a0c04229da6547255a4da8f7f1bbb40906898c124ed3c9ec2436b76b62affcb62385af9783e')
+b2sums=('102025aa2f57672ed3547f0e9bab989566fb8e50ecae8b9e4078ec5ee5de3cad09fec107695335ef236ad9fe19b2638978366a180a998d77b0ce8a2a5d1ebde3'
+
'cacb6ba39d6ecb8703ef5f5a7dc74de0ca805cce73b43a8b9b6b4c255c909aa9b5e692de76c2fbd4da26ce6efb5f2a46138c43b1b37f53cee6d20fd6ed41f4a9')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed 's|-std=c89||' -i configure.in
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--with-x-app-defaults=/usr/share/X11/app-defaults \
+--with-pam \
+--with-login-manager \
+--with-gtk \
+--with-gl \
+--without-gle \
+--with-pixbuf \
+--with-jpeg
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d "${pkgdir}/etc/pam.d"
+  make install_prefix="${pkgdir}" install
+  install -Dm 644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  # remove sticky bit
+  chmod 755 "${pkgdir}/usr/bin/xscreensaver"
+  echo "NotShowIn=KDE;GNOME;" >> 
"${pkgdir}/usr/share/applications/xscreensaver-properties.desktop"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:54:11
  Author: heftig
Revision: 746950

0.7.6-5: gdk-pixbuf-xlib rebuild

Modified:
  sbxkb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:34:48 UTC (rev 746949)
+++ PKGBUILD2020-11-09 14:54:11 UTC (rev 746950)
@@ -2,7 +2,7 @@
 
 pkgname=sbxkb
 pkgver=0.7.6
-pkgrel=4
+pkgrel=5
 pkgdesc="Simple tray XKB indicator"
 arch=('x86_64')
 license=('GPL2')
@@ -14,7 +14,7 @@
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver}
-  export LDFLAGS=-lX11
+  LDFLAGS+=' -lX11'
   ./configure --sysconfdir=/etc --prefix=/usr
   make
 }


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:54:09
  Author: heftig
Revision: 399741

5.44-3: gdk-pixbuf-xlib rebuild

Modified:
  xscreensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:54:09 UTC (rev 399740)
+++ PKGBUILD2020-11-09 14:54:09 UTC (rev 399741)
@@ -3,7 +3,7 @@
 
 pkgname=xscreensaver
 pkgver=5.44
-pkgrel=2
+pkgrel=3
 pkgdesc='Screen saver and locker for the X Window System'
 url='https://www.jwz.org/xscreensaver/'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('libglade' 'libxmu' 'glu' 'xorg-appres' 'perl-libwww' 'libsystemd.so'
  'libxcrypt' 'libcrypt.so' 'libxi' 'libxxf86vm' 'libxrandr' 
'libxinerama'
- 'libxt' 'libx11' 'libxext' 'pam' 'glibc')
+ 'libxt' 'libx11' 'libxext' 'pam' 'glibc' 'gdk-pixbuf-xlib')
 makedepends=('bc' 'intltool' 'libxpm' 'gdm' 'systemd' 'systemd-libs')
 optdepends=('gdm: for login manager support')
 backup=('etc/pam.d/xscreensaver')


[arch-commits] Commit in gdk-pixbuf2/repos/staging-x86_64 (6 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:18:09
  Author: heftig
Revision: 399733

archrelease: copy trunk to staging-x86_64

Added:
  gdk-pixbuf2/repos/staging-x86_64/PKGBUILD
(from rev 399732, gdk-pixbuf2/trunk/PKGBUILD)
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf-query-loaders.hook
(from rev 399732, gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders.hook)
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf2.install
(from rev 399732, gdk-pixbuf2/trunk/gdk-pixbuf2.install)
Deleted:
  gdk-pixbuf2/repos/staging-x86_64/PKGBUILD
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf-query-loaders.hook
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf2.install

---+
 PKGBUILD  |   92 
 gdk-pixbuf-query-loaders.hook |   22 -
 gdk-pixbuf2.install   |6 +-
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-09 14:17:46 UTC (rev 399732)
+++ PKGBUILD2020-11-09 14:18:09 UTC (rev 399733)
@@ -1,46 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gdk-pixbuf2
-pkgver=2.42.0
-pkgrel=1
-pkgdesc="An image loading library"
-arch=(x86_64)
-url="https://wiki.gnome.org/Projects/GdkPixbuf;
-license=(LGPL2.1)
-depends=(glib2 libpng libtiff libjpeg libx11 shared-mime-info)
-makedepends=(gtk-doc gobject-introspection git meson)
-provides=(libgdk_pixbuf-2.0.so)
-install=gdk-pixbuf2.install
-_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
-gdk-pixbuf-query-loaders.hook)
-sha256sums=('SKIP'
-'9fb71d95e6a212779eb0f88dde5a3cee0df7f4d9183f8f9ce286f8cdc14428f0')
-
-pkgver() {
-  cd gdk-pixbuf
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gdk-pixbuf
-}
-
-build() {
-  arch-meson gdk-pixbuf build \
--D docs=true \
--D installed_tests=false
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gdk-pixbuf2/repos/staging-x86_64/PKGBUILD (from rev 399732, 
gdk-pixbuf2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-09 14:18:09 UTC (rev 399733)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gdk-pixbuf2
+pkgver=2.42.0
+pkgrel=2
+pkgdesc="An image loading library"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/GdkPixbuf;
+license=(LGPL)
+depends=(glib2 libpng libtiff libjpeg shared-mime-info)
+makedepends=(gtk-doc gobject-introspection git meson)
+provides=(libgdk_pixbuf-2.0.so)
+install=gdk-pixbuf2.install
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
+gdk-pixbuf-query-loaders.hook)
+sha256sums=('SKIP'
+'9fb71d95e6a212779eb0f88dde5a3cee0df7f4d9183f8f9ce286f8cdc14428f0')
+
+pkgver() {
+  cd gdk-pixbuf
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gdk-pixbuf
+}
+
+build() {
+  arch-meson gdk-pixbuf build \
+-D docs=true \
+-D installed_tests=false
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gdk-pixbuf-query-loaders.hook
===
--- gdk-pixbuf-query-loaders.hook   2020-11-09 14:17:46 UTC (rev 399732)
+++ gdk-pixbuf-query-loaders.hook   2020-11-09 14:18:09 UTC (rev 399733)
@@ -1,11 +0,0 @@
-[Trigger]
-Type = Path
-Operation = Install
-Operation = Upgrade
-Operation = Remove
-Target = usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so
-
-[Action]
-Description = Probing GDK-Pixbuf loader modules...
-When = PostTransaction
-Exec = /usr/bin/gdk-pixbuf-query-loaders --update-cache

Copied: gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf-query-loaders.hook (from 
rev 399732, gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders.hook)
===
--- gdk-pixbuf-query-loaders.hook   (rev 0)
+++ gdk-pixbuf-query-loaders.hook   2020-11-09 14:18:09 UTC (rev 399733)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so
+
+[Action]
+Description = Probing GDK-Pixbuf loader modules...
+When = PostTransaction
+Exec = /usr/bin/gdk-pixbuf-query-loaders --update-cache

Deleted: gdk-pixbuf2.install

[arch-commits] Commit in lib32-gdk-pixbuf2/trunk (PKGBUILD)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:17:44
  Author: heftig
Revision: 746946

2.42.0-2: remove libx11, fix license

Modified:
  lib32-gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:17:33 UTC (rev 746945)
+++ PKGBUILD2020-11-09 14:17:44 UTC (rev 746946)
@@ -3,12 +3,12 @@
 
 pkgname=lib32-gdk-pixbuf2
 pkgver=2.42.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An image loading library (32-bit)"
 arch=(x86_64)
 url="https://wiki.gnome.org/Projects/GdkPixbuf;
-license=(LGPL2.1)
-depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg lib32-libx11 
gdk-pixbuf2)
+license=(LGPL)
+depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg gdk-pixbuf2)
 makedepends=(git meson)
 provides=(libgdk_pixbuf-2.0.so)
 install=lib32-gdk-pixbuf2.install


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:17:46
  Author: heftig
Revision: 399732

2.42.0-2: remove libx11, fix license

Modified:
  gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:11:23 UTC (rev 399731)
+++ PKGBUILD2020-11-09 14:17:46 UTC (rev 399732)
@@ -3,12 +3,12 @@
 
 pkgname=gdk-pixbuf2
 pkgver=2.42.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An image loading library"
 arch=(x86_64)
 url="https://wiki.gnome.org/Projects/GdkPixbuf;
-license=(LGPL2.1)
-depends=(glib2 libpng libtiff libjpeg libx11 shared-mime-info)
+license=(LGPL)
+depends=(glib2 libpng libtiff libjpeg shared-mime-info)
 makedepends=(gtk-doc gobject-introspection git meson)
 provides=(libgdk_pixbuf-2.0.so)
 install=gdk-pixbuf2.install


[arch-commits] Commit in lib32-gdk-pixbuf2/repos/multilib-staging-x86_64 (6 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 14:18:09
  Author: heftig
Revision: 746947

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/PKGBUILD
(from rev 746946, lib32-gdk-pixbuf2/trunk/PKGBUILD)
  
lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook
(from rev 746946, lib32-gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders-32.hook)
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/lib32-gdk-pixbuf2.install
(from rev 746946, lib32-gdk-pixbuf2/trunk/lib32-gdk-pixbuf2.install)
Deleted:
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/PKGBUILD
  
lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/lib32-gdk-pixbuf2.install

--+
 PKGBUILD |  108 ++---
 gdk-pixbuf-query-loaders-32.hook |   22 +++
 lib32-gdk-pixbuf2.install|6 +-
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-09 14:17:44 UTC (rev 746946)
+++ PKGBUILD2020-11-09 14:18:09 UTC (rev 746947)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-
-pkgname=lib32-gdk-pixbuf2
-pkgver=2.42.0
-pkgrel=1
-pkgdesc="An image loading library (32-bit)"
-arch=(x86_64)
-url="https://wiki.gnome.org/Projects/GdkPixbuf;
-license=(LGPL2.1)
-depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg lib32-libx11 
gdk-pixbuf2)
-makedepends=(git meson)
-provides=(libgdk_pixbuf-2.0.so)
-install=lib32-gdk-pixbuf2.install
-_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
-gdk-pixbuf-query-loaders-32.hook)
-sha256sums=('SKIP'
-'60f0f8c2c022f9adef0902bdb4b89881e81f3388cd2e2e4830456eea10f49bae')
-
-pkgver() {
-  cd gdk-pixbuf
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gdk-pixbuf
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson gdk-pixbuf build \
---libdir /usr/lib32 \
--D introspection=disabled \
--D installed_tests=false
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  rm -rf "$pkgdir"/usr/{include,lib,share}
-  find "$pkgdir/usr/bin" -type f -not -name gdk-pixbuf-query-loaders -delete
-  mv "$pkgdir"/usr/bin/gdk-pixbuf-query-loaders{,-32}
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/PKGBUILD (from rev 
746946, lib32-gdk-pixbuf2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-09 14:18:09 UTC (rev 746947)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-gdk-pixbuf2
+pkgver=2.42.0
+pkgrel=2
+pkgdesc="An image loading library (32-bit)"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/GdkPixbuf;
+license=(LGPL)
+depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg gdk-pixbuf2)
+makedepends=(git meson)
+provides=(libgdk_pixbuf-2.0.so)
+install=lib32-gdk-pixbuf2.install
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
+gdk-pixbuf-query-loaders-32.hook)
+sha256sums=('SKIP'
+'60f0f8c2c022f9adef0902bdb4b89881e81f3388cd2e2e4830456eea10f49bae')
+
+pkgver() {
+  cd gdk-pixbuf
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gdk-pixbuf
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson gdk-pixbuf build \
+--libdir /usr/lib32 \
+-D introspection=disabled \
+-D installed_tests=false
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  rm -rf "$pkgdir"/usr/{include,lib,share}
+  find "$pkgdir/usr/bin" -type f -not -name gdk-pixbuf-query-loaders -delete
+  mv "$pkgdir"/usr/bin/gdk-pixbuf-query-loaders{,-32}
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gdk-pixbuf-query-loaders-32.hook
===
--- gdk-pixbuf-query-loaders-32.hook2020-11-09 14:17:44 UTC (rev 746946)
+++ gdk-pixbuf-query-loaders-32.hook2020-11-09 14:18:09 UTC (rev 746947)
@@ -1,11 +0,0 @@
-[Trigger]
-Type = Path
-Operation = Install
-Operation = Upgrade
-Operation = Remove
-Target = usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/*.so
-
-[Action]
-Description = Probing 32-bit GDK-Pixbuf loader modules...
-When = 

[arch-commits] Commit in gdk-pixbuf-xlib/repos (2 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:58:17
  Author: heftig
Revision: 399721

archrelease: copy trunk to staging-x86_64

Added:
  gdk-pixbuf-xlib/repos/staging-x86_64/
  gdk-pixbuf-xlib/repos/staging-x86_64/PKGBUILD
(from rev 399720, gdk-pixbuf-xlib/trunk/PKGBUILD)

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

Copied: gdk-pixbuf-xlib/repos/staging-x86_64/PKGBUILD (from rev 399720, 
gdk-pixbuf-xlib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 13:58:17 UTC (rev 399721)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gdk-pixbuf-xlib
+pkgver=0+23
+pkgrel=1
+pkgdesc="Deprecated Xlib integration for GdkPixbuf"
+arch=(x86_64)
+url="https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib;
+license=(LGPL2.1)
+depends=(gdk-pixbuf2 libx11)
+makedepends=(gtk-doc git meson)
+_commit=3116b8ae55501cf48d16970aa2b50a5530e15223  # master
+source=("git+$url.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  #git describe --tags | sed 's/-/+/g'
+  echo "0+$(git rev-list --count HEAD)"
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libgdk_pixbuf-2.0.so)
+  provides+=(libgdk_pixbuf_xlib-2.0.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in gdk-pixbuf-xlib/trunk (PKGBUILD)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:58:03
  Author: heftig
Revision: 399720

0+23-1

Modified:
  gdk-pixbuf-xlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 13:56:31 UTC (rev 399719)
+++ PKGBUILD2020-11-09 13:58:03 UTC (rev 399720)
@@ -1,7 +1,7 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gdk-pixbuf-xlib
-pkgver=2.40.1
+pkgver=0+23
 pkgrel=1
 pkgdesc="Deprecated Xlib integration for GdkPixbuf"
 arch=(x86_64)
@@ -9,23 +9,23 @@
 license=(LGPL2.1)
 depends=(gdk-pixbuf2 libx11)
 makedepends=(gtk-doc git meson)
-_commit=dc22ea36f69755007c66877284596df270532cc1  # master
+_commit=3116b8ae55501cf48d16970aa2b50a5530e15223  # master
 source=("git+$url.git#commit=$_commit")
 sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  #git describe --tags | sed 's/-/+/g'
+  echo "0+$(git rev-list --count HEAD)"
 }
 
 prepare() {
   cd $pkgname
-  git tag -f 2.40.1 dc22ea36f69755007c66877284596df270532cc1
 }
 
 build() {
   arch-meson $pkgname build -D gtk_doc=true
-  ninja -C build
+  meson compile -C build
 }
 
 check() {
@@ -33,6 +33,9 @@
 }
 
 package() {
+  depends+=(libgdk_pixbuf-2.0.so)
+  provides+=(libgdk_pixbuf_xlib-2.0.so)
+
   DESTDIR="$pkgdir" meson install -C build
 }
 


[arch-commits] Commit in lib32-gdk-pixbuf2/repos (4 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:41:32
  Author: heftig
Revision: 746923

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/PKGBUILD
(from rev 746922, lib32-gdk-pixbuf2/trunk/PKGBUILD)
  
lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook
(from rev 746922, lib32-gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders-32.hook)
  lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/lib32-gdk-pixbuf2.install
(from rev 746922, lib32-gdk-pixbuf2/trunk/lib32-gdk-pixbuf2.install)

--+
 PKGBUILD |   54 +
 gdk-pixbuf-query-loaders-32.hook |   11 +++
 lib32-gdk-pixbuf2.install|3 ++
 3 files changed, 68 insertions(+)

Copied: lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/PKGBUILD (from rev 
746922, lib32-gdk-pixbuf2/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2020-11-09 13:41:32 UTC (rev 746923)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-gdk-pixbuf2
+pkgver=2.42.0
+pkgrel=1
+pkgdesc="An image loading library (32-bit)"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/GdkPixbuf;
+license=(LGPL2.1)
+depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg lib32-libx11 
gdk-pixbuf2)
+makedepends=(git meson)
+provides=(libgdk_pixbuf-2.0.so)
+install=lib32-gdk-pixbuf2.install
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
+gdk-pixbuf-query-loaders-32.hook)
+sha256sums=('SKIP'
+'60f0f8c2c022f9adef0902bdb4b89881e81f3388cd2e2e4830456eea10f49bae')
+
+pkgver() {
+  cd gdk-pixbuf
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gdk-pixbuf
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson gdk-pixbuf build \
+--libdir /usr/lib32 \
+-D introspection=disabled \
+-D installed_tests=false
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  rm -rf "$pkgdir"/usr/{include,lib,share}
+  find "$pkgdir/usr/bin" -type f -not -name gdk-pixbuf-query-loaders -delete
+  mv "$pkgdir"/usr/bin/gdk-pixbuf-query-loaders{,-32}
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook
 (from rev 746922, lib32-gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders-32.hook)
===
--- multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook
(rev 0)
+++ multilib-staging-x86_64/gdk-pixbuf-query-loaders-32.hook2020-11-09 
13:41:32 UTC (rev 746923)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/*.so
+
+[Action]
+Description = Probing 32-bit GDK-Pixbuf loader modules...
+When = PostTransaction
+Exec = /usr/bin/gdk-pixbuf-query-loaders-32 --update-cache

Copied: 
lib32-gdk-pixbuf2/repos/multilib-staging-x86_64/lib32-gdk-pixbuf2.install (from 
rev 746922, lib32-gdk-pixbuf2/trunk/lib32-gdk-pixbuf2.install)
===
--- multilib-staging-x86_64/lib32-gdk-pixbuf2.install   
(rev 0)
+++ multilib-staging-x86_64/lib32-gdk-pixbuf2.install   2020-11-09 13:41:32 UTC 
(rev 746923)
@@ -0,0 +1,3 @@
+pre_remove() {
+rm -f usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache
+}


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:41:31
  Author: heftig
Revision: 399718

archrelease: copy trunk to staging-x86_64

Added:
  gdk-pixbuf2/repos/staging-x86_64/
  gdk-pixbuf2/repos/staging-x86_64/PKGBUILD
(from rev 399717, gdk-pixbuf2/trunk/PKGBUILD)
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf-query-loaders.hook
(from rev 399717, gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders.hook)
  gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf2.install
(from rev 399717, gdk-pixbuf2/trunk/gdk-pixbuf2.install)

---+
 PKGBUILD  |   46 
 gdk-pixbuf-query-loaders.hook |   11 +
 gdk-pixbuf2.install   |3 ++
 3 files changed, 60 insertions(+)

Copied: gdk-pixbuf2/repos/staging-x86_64/PKGBUILD (from rev 399717, 
gdk-pixbuf2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 13:41:31 UTC (rev 399718)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gdk-pixbuf2
+pkgver=2.42.0
+pkgrel=1
+pkgdesc="An image loading library"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/GdkPixbuf;
+license=(LGPL2.1)
+depends=(glib2 libpng libtiff libjpeg libx11 shared-mime-info)
+makedepends=(gtk-doc gobject-introspection git meson)
+provides=(libgdk_pixbuf-2.0.so)
+install=gdk-pixbuf2.install
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
+gdk-pixbuf-query-loaders.hook)
+sha256sums=('SKIP'
+'9fb71d95e6a212779eb0f88dde5a3cee0df7f4d9183f8f9ce286f8cdc14428f0')
+
+pkgver() {
+  cd gdk-pixbuf
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gdk-pixbuf
+}
+
+build() {
+  arch-meson gdk-pixbuf build \
+-D docs=true \
+-D installed_tests=false
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf-query-loaders.hook (from 
rev 399717, gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders.hook)
===
--- staging-x86_64/gdk-pixbuf-query-loaders.hook
(rev 0)
+++ staging-x86_64/gdk-pixbuf-query-loaders.hook2020-11-09 13:41:31 UTC 
(rev 399718)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so
+
+[Action]
+Description = Probing GDK-Pixbuf loader modules...
+When = PostTransaction
+Exec = /usr/bin/gdk-pixbuf-query-loaders --update-cache

Copied: gdk-pixbuf2/repos/staging-x86_64/gdk-pixbuf2.install (from rev 399717, 
gdk-pixbuf2/trunk/gdk-pixbuf2.install)
===
--- staging-x86_64/gdk-pixbuf2.install  (rev 0)
+++ staging-x86_64/gdk-pixbuf2.install  2020-11-09 13:41:31 UTC (rev 399718)
@@ -0,0 +1,3 @@
+pre_remove() {
+rm -f /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
+}


[arch-commits] Commit in libgda/repos/extra-x86_64 (5 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:39:45
  Author: heftig
Revision: 399717

archrelease: copy trunk to extra-x86_64

Added:
  libgda/repos/extra-x86_64/0001-Use-single-header-with-GtkSource.patch
(from rev 399716, libgda/trunk/0001-Use-single-header-with-GtkSource.patch)
  libgda/repos/extra-x86_64/PKGBUILD
(from rev 399716, libgda/trunk/PKGBUILD)
Deleted:
  
libgda/repos/extra-x86_64/0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch
  libgda/repos/extra-x86_64/PKGBUILD
  libgda/repos/extra-x86_64/fix-crash.diff

-+
 0001-Use-single-header-with-GtkSource.patch |  118 +
 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch |   68 ---
 PKGBUILD|  217 
--
 fix-crash.diff  |   21 
 4 files changed, 226 insertions(+), 198 deletions(-)

Copied: libgda/repos/extra-x86_64/0001-Use-single-header-with-GtkSource.patch 
(from rev 399716, libgda/trunk/0001-Use-single-header-with-GtkSource.patch)
===
--- 0001-Use-single-header-with-GtkSource.patch (rev 0)
+++ 0001-Use-single-header-with-GtkSource.patch 2020-11-09 13:39:45 UTC (rev 
399717)
@@ -0,0 +1,118 @@
+From  Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Corentin=20No=C3=ABl?= 
+Date: Wed, 4 Apr 2018 22:51:50 +0100
+Subject: [PATCH] Use single header with GtkSource
+
+---
+ libgda-ui/data-entries/plugins/gdaui-entry-text.c   | 10 +-
+ libgda-ui/data-entries/plugins/libmain.c| 10 +-
+ tools/browser/data-manager/data-favorite-selector.c | 10 +-
+ tools/browser/data-manager/xml-spec-editor.c| 10 +-
+ tools/browser/query-exec/query-editor.c | 10 +-
+ 5 files changed, 5 insertions(+), 45 deletions(-)
+
+diff --git a/libgda-ui/data-entries/plugins/gdaui-entry-text.c 
b/libgda-ui/data-entries/plugins/gdaui-entry-text.c
+index e359820eb..b483128a4 100644
+--- a/libgda-ui/data-entries/plugins/gdaui-entry-text.c
 b/libgda-ui/data-entries/plugins/gdaui-entry-text.c
+@@ -25,15 +25,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ #define LANGUAGE_SQL "gda-sql"
+ 
+diff --git a/libgda-ui/data-entries/plugins/libmain.c 
b/libgda-ui/data-entries/plugins/libmain.c
+index a30c2db2c..c3a0f8f53 100644
+--- a/libgda-ui/data-entries/plugins/libmain.c
 b/libgda-ui/data-entries/plugins/libmain.c
+@@ -39,15 +39,7 @@
+ #endif
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ 
+ static GdauiDataEntry *plugin_entry_filesel_create_func (GdaDataHandler 
*handler, GType type, const gchar *options);
+diff --git a/tools/browser/data-manager/data-favorite-selector.c 
b/tools/browser/data-manager/data-favorite-selector.c
+index d472fd5f6..815204d64 100644
+--- a/tools/browser/data-manager/data-favorite-selector.c
 b/tools/browser/data-manager/data-favorite-selector.c
+@@ -33,15 +33,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ 
+ struct _DataFavoriteSelectorPrivate {
+diff --git a/tools/browser/data-manager/xml-spec-editor.c 
b/tools/browser/data-manager/xml-spec-editor.c
+index f4b893a00..b337d107c 100644
+--- a/tools/browser/data-manager/xml-spec-editor.c
 b/tools/browser/data-manager/xml-spec-editor.c
+@@ -28,15 +28,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-#ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-#endif
+-
+-#include 
+-#include 
+-#include 
+-#include 
+-#include 
++#include 
+ #endif
+ 
+ struct _XmlSpecEditorPrivate {
+diff --git a/tools/browser/query-exec/query-editor.c 
b/tools/browser/query-exec/query-editor.c
+index 061aefb9d..7cb9923ac 100644
+--- a/tools/browser/query-exec/query-editor.c
 b/tools/browser/query-exec/query-editor.c
+@@ -22,15 +22,7 @@
+ #include 
+ #include 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ #include "query-editor.h"
+ #include 

Deleted: 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch
===
--- 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch 
2020-11-09 13:36:59 UTC (rev 

[arch-commits] Commit in lib32-gdk-pixbuf2/trunk (PKGBUILD)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:37:04
  Author: heftig
Revision: 746922

2.42.0-1

Modified:
  lib32-gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 13:22:00 UTC (rev 746921)
+++ PKGBUILD2020-11-09 13:37:04 UTC (rev 746922)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-gdk-pixbuf2
-pkgver=2.40.0+6+g5432316df
+pkgver=2.42.0
 pkgrel=1
 pkgdesc="An image loading library (32-bit)"
 arch=(x86_64)
@@ -10,8 +10,9 @@
 license=(LGPL2.1)
 depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg lib32-libx11 
gdk-pixbuf2)
 makedepends=(git meson)
+provides=(libgdk_pixbuf-2.0.so)
 install=lib32-gdk-pixbuf2.install
-_commit=5432316df6b8106d279c4972ebade240edd66d13  # gdk-pixbuf-2-40
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
 gdk-pixbuf-query-loaders-32.hook)
 sha256sums=('SKIP'
@@ -33,7 +34,7 @@
 
   arch-meson gdk-pixbuf build \
 --libdir /usr/lib32 \
--D gir=false \
+-D introspection=disabled \
 -D installed_tests=false
   meson compile -C build
 }


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

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:36:59
  Author: heftig
Revision: 399716

2.42.0-1

Modified:
  gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 13:36:24 UTC (rev 399715)
+++ PKGBUILD2020-11-09 13:36:59 UTC (rev 399716)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gdk-pixbuf2
-pkgver=2.40.0+6+g5432316df
+pkgver=2.42.0
 pkgrel=1
 pkgdesc="An image loading library"
 arch=(x86_64)
@@ -10,8 +10,9 @@
 license=(LGPL2.1)
 depends=(glib2 libpng libtiff libjpeg libx11 shared-mime-info)
 makedepends=(gtk-doc gobject-introspection git meson)
+provides=(libgdk_pixbuf-2.0.so)
 install=gdk-pixbuf2.install
-_commit=5432316df6b8106d279c4972ebade240edd66d13  # gdk-pixbuf-2-40
+_commit=43ce0077ed7162a32680ff8cd9c0c91ff0afce20  # tags/2.42.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
 gdk-pixbuf-query-loaders.hook)
 sha256sums=('SKIP'


[arch-commits] Commit in libgda/trunk (4 files)

2020-11-09 Thread Jan Steffens via arch-commits
Date: Monday, November 9, 2020 @ 13:36:24
  Author: heftig
Revision: 399715

5.2.10-1

Added:
  libgda/trunk/0001-Use-single-header-with-GtkSource.patch
(from rev 399714, libgda/trunk/fix-crash.diff)
Modified:
  libgda/trunk/PKGBUILD
Deleted:
  libgda/trunk/0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch
  libgda/trunk/fix-crash.diff

-+
 0001-Use-single-header-with-GtkSource.patch |  118 
++
 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch |   68 -
 PKGBUILD|   27 +-
 fix-crash.diff  |   21 -
 4 files changed, 131 insertions(+), 103 deletions(-)

Copied: libgda/trunk/0001-Use-single-header-with-GtkSource.patch (from rev 
399714, libgda/trunk/fix-crash.diff)
===
--- 0001-Use-single-header-with-GtkSource.patch (rev 0)
+++ 0001-Use-single-header-with-GtkSource.patch 2020-11-09 13:36:24 UTC (rev 
399715)
@@ -0,0 +1,118 @@
+From  Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Corentin=20No=C3=ABl?= 
+Date: Wed, 4 Apr 2018 22:51:50 +0100
+Subject: [PATCH] Use single header with GtkSource
+
+---
+ libgda-ui/data-entries/plugins/gdaui-entry-text.c   | 10 +-
+ libgda-ui/data-entries/plugins/libmain.c| 10 +-
+ tools/browser/data-manager/data-favorite-selector.c | 10 +-
+ tools/browser/data-manager/xml-spec-editor.c| 10 +-
+ tools/browser/query-exec/query-editor.c | 10 +-
+ 5 files changed, 5 insertions(+), 45 deletions(-)
+
+diff --git a/libgda-ui/data-entries/plugins/gdaui-entry-text.c 
b/libgda-ui/data-entries/plugins/gdaui-entry-text.c
+index e359820eb..b483128a4 100644
+--- a/libgda-ui/data-entries/plugins/gdaui-entry-text.c
 b/libgda-ui/data-entries/plugins/gdaui-entry-text.c
+@@ -25,15 +25,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ #define LANGUAGE_SQL "gda-sql"
+ 
+diff --git a/libgda-ui/data-entries/plugins/libmain.c 
b/libgda-ui/data-entries/plugins/libmain.c
+index a30c2db2c..c3a0f8f53 100644
+--- a/libgda-ui/data-entries/plugins/libmain.c
 b/libgda-ui/data-entries/plugins/libmain.c
+@@ -39,15 +39,7 @@
+ #endif
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ 
+ static GdauiDataEntry *plugin_entry_filesel_create_func (GdaDataHandler 
*handler, GType type, const gchar *options);
+diff --git a/tools/browser/data-manager/data-favorite-selector.c 
b/tools/browser/data-manager/data-favorite-selector.c
+index d472fd5f6..815204d64 100644
+--- a/tools/browser/data-manager/data-favorite-selector.c
 b/tools/browser/data-manager/data-favorite-selector.c
+@@ -33,15 +33,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ 
+ struct _DataFavoriteSelectorPrivate {
+diff --git a/tools/browser/data-manager/xml-spec-editor.c 
b/tools/browser/data-manager/xml-spec-editor.c
+index f4b893a00..b337d107c 100644
+--- a/tools/browser/data-manager/xml-spec-editor.c
 b/tools/browser/data-manager/xml-spec-editor.c
+@@ -28,15 +28,7 @@
+ #include 
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-#ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-#endif
+-
+-#include 
+-#include 
+-#include 
+-#include 
+-#include 
++#include 
+ #endif
+ 
+ struct _XmlSpecEditorPrivate {
+diff --git a/tools/browser/query-exec/query-editor.c 
b/tools/browser/query-exec/query-editor.c
+index 061aefb9d..7cb9923ac 100644
+--- a/tools/browser/query-exec/query-editor.c
 b/tools/browser/query-exec/query-editor.c
+@@ -22,15 +22,7 @@
+ #include 
+ #include 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++  #include 
+ #endif
+ #include "query-editor.h"
+ #include 

Deleted: 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch
===
--- 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch 
2020-11-09 12:59:32 UTC (rev 399714)
+++ 0001-libgda-report-remove-trml2pdf-trml2html-functionalit.patch 
2020-11-09 13:36:24 UTC (rev 399715)
@@ -1,68 +0,0 @@
-diff --git a/libgda-report/RML/gda-report-rml-document.c 

[arch-commits] Commit in lib32-pango/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2020-11-08 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 21:50:55
  Author: heftig
Revision: 746735

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pango/repos/multilib-x86_64/PKGBUILD
(from rev 746734, lib32-pango/trunk/PKGBUILD)
Deleted:
  lib32-pango/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 21:50:31 UTC (rev 746734)
+++ PKGBUILD2020-11-08 21:50:55 UTC (rev 746735)
@@ -1,51 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Biru Ionut 
-# Contributor: Pierre Schmitz 
-# Contributor: Mikko Seppälä 
-
-pkgname=lib32-pango
-pkgver=1.46.2
-pkgrel=1
-epoch=1
-pkgdesc="A library for layout and rendering of text (32-bit)"
-url="https://www.pango.org/;
-arch=(x86_64)
-license=(LGPL)
-depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
-makedepends=(git meson)
-checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
-provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=296711130ef90d9555bd6ada5b258bb75d622c12  # tags/1.46.2^0
-source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pango
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd pango
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson pango build \
---libdir=/usr/lib32 \
--D introspection=false
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  rm -r "$pkgdir"/usr/{bin,include}
-}
-
-# vim:set sw=2 et:

Copied: lib32-pango/repos/multilib-x86_64/PKGBUILD (from rev 746734, 
lib32-pango/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 21:50:55 UTC (rev 746735)
@@ -0,0 +1,51 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Biru Ionut 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-pango
+pkgver=1.48.0
+pkgrel=1
+epoch=1
+pkgdesc="A library for layout and rendering of text (32-bit)"
+url="https://www.pango.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
+makedepends=(git meson)
+checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
+provides=(libpango{,cairo,ft2,xft}-1.0.so)
+_commit=a39fea44c7c9f982fcca6d639929545dd3e09eb7  # tags/1.48.0^0
+source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pango
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd pango
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson pango build \
+--libdir=/usr/lib32 \
+-D introspection=disabled
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  rm -r "$pkgdir"/usr/{bin,include}
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in pango/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-08 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 21:50:54
  Author: heftig
Revision: 399647

archrelease: copy trunk to extra-x86_64

Added:
  pango/repos/extra-x86_64/PKGBUILD
(from rev 399646, pango/trunk/PKGBUILD)
Deleted:
  pango/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 21:50:05 UTC (rev 399646)
+++ PKGBUILD2020-11-08 21:50:54 UTC (rev 399647)
@@ -1,47 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=pango
-pkgver=1.46.2
-pkgrel=3
-epoch=1
-pkgdesc="A library for layout and rendering of text"
-url="https://www.pango.org/;
-arch=(x86_64)
-license=(LGPL)
-depends=(libthai cairo libxft harfbuzz fribidi)
-makedepends=(gobject-introspection help2man gtk-doc git meson sysprof)
-checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
-provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=296711130ef90d9555bd6ada5b258bb75d622c12  # tags/1.46.2^0
-source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pango
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd pango
-}
-
-build() {
-  arch-meson pango build \
--D gtk_doc=true \
--D sysprof=enabled
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-
-  # Avoid a dep on sysprof
-  sed -i 's/, sysprof-capture-4//' "$pkgdir"/usr/lib/pkgconfig/*.pc
-}
-
-# vim:set sw=2 et:

Copied: pango/repos/extra-x86_64/PKGBUILD (from rev 399646, 
pango/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 21:50:54 UTC (rev 399647)
@@ -0,0 +1,47 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=pango
+pkgver=1.48.0
+pkgrel=1
+epoch=1
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz fribidi)
+makedepends=(gobject-introspection help2man gtk-doc git meson sysprof)
+checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
+provides=(libpango{,cairo,ft2,xft}-1.0.so)
+_commit=a39fea44c7c9f982fcca6d639929545dd3e09eb7  # tags/1.48.0^0
+source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pango
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd pango
+}
+
+build() {
+  arch-meson pango build \
+-D gtk_doc=true \
+-D sysprof=enabled
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  # Avoid a dep on sysprof
+  sed -i 's/, sysprof-capture-4//' "$pkgdir"/usr/lib/pkgconfig/*.pc
+}
+
+# vim:set sw=2 et:


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

2020-11-08 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 21:50:31
  Author: heftig
Revision: 746734

1.48.0-1

Modified:
  lib32-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 21:14:39 UTC (rev 746733)
+++ PKGBUILD2020-11-08 21:50:31 UTC (rev 746734)
@@ -4,7 +4,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-pango
-pkgver=1.46.2
+pkgver=1.48.0
 pkgrel=1
 epoch=1
 pkgdesc="A library for layout and rendering of text (32-bit)"
@@ -15,7 +15,7 @@
 makedepends=(git meson)
 checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
 provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=296711130ef90d9555bd6ada5b258bb75d622c12  # tags/1.46.2^0
+_commit=a39fea44c7c9f982fcca6d639929545dd3e09eb7  # tags/1.48.0^0
 source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -35,7 +35,7 @@
 
   arch-meson pango build \
 --libdir=/usr/lib32 \
--D introspection=false
+-D introspection=disabled
   meson compile -C build
 }
 


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

2020-11-08 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 21:50:05
  Author: heftig
Revision: 399646

1.48.0-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 20:47:41 UTC (rev 399645)
+++ PKGBUILD2020-11-08 21:50:05 UTC (rev 399646)
@@ -2,8 +2,8 @@
 # Contributor: Jan de Groot 
 
 pkgname=pango
-pkgver=1.46.2
-pkgrel=3
+pkgver=1.48.0
+pkgrel=1
 epoch=1
 pkgdesc="A library for layout and rendering of text"
 url="https://www.pango.org/;
@@ -13,7 +13,7 @@
 makedepends=(gobject-introspection help2man gtk-doc git meson sysprof)
 checkdepends=(ttf-dejavu cantarell-fonts noto-fonts noto-fonts-emoji)
 provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=296711130ef90d9555bd6ada5b258bb75d622c12  # tags/1.46.2^0
+_commit=a39fea44c7c9f982fcca6d639929545dd3e09eb7  # tags/1.48.0^0
 source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in imagemagick6/repos/extra-x86_64 (4 files)

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:46:27
  Author: heftig
Revision: 399612

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick6/repos/extra-x86_64/PKGBUILD
(from rev 399611, imagemagick6/trunk/PKGBUILD)
  imagemagick6/repos/extra-x86_64/arch-fonts.diff
(from rev 399611, imagemagick6/trunk/arch-fonts.diff)
Deleted:
  imagemagick6/repos/extra-x86_64/PKGBUILD
  imagemagick6/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  224 +++---
 arch-fonts.diff |  214 +--
 2 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 00:46:14 UTC (rev 399611)
+++ PKGBUILD2020-11-08 00:46:27 UTC (rev 399612)
@@ -1,112 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.11.35
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://legacy.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('dcbaa0a3762ae685b1debe0ad12852e775204829a363fb992d52ff7511341713'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
-PKG_CONFIG="/usr/bin/env PKG_CONFIG_PATH=/usr/lib/$pkgbase/pkgconfig 
pkg-config" \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check || :
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install pkgconfigdir="/usr/lib/$pkgbase/pkgconfig"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Drop tools
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-6/policy.xml
-
-# Use correct options for inkscape<1.0
-  sed -e 's|--export-file|--export-png|' -i 
"$pkgdir"/etc/ImageMagick-6/delegates.xml
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 399611, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 00:46:27 UTC (rev 399612)
@@ -0,0 +1,112 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.11.37
+pkgrel=1
+pkgdesc="An image viewing/manipulation program (version 6)"
+url="https://legacy.imagemagick.org/;
+arch=(x86_64)
+license=(custom)
+depends=(libltdl lcms2 

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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:46:14
  Author: heftig
Revision: 399611

6.9.11.37-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
+++ PKGBUILD2020-11-08 00:46:14 UTC (rev 399611)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.11.35
+pkgver=6.9.11.37
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('dcbaa0a3762ae685b1debe0ad12852e775204829a363fb992d52ff7511341713'
+sha256sums=('d1369d56727c3c0201d15180ece09902fe406325037c692ee8ccaf90a17726a7'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:26
  Author: heftig
Revision: 399609

3.38.0.1-1

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:44:16 UTC (rev 399608)
+++ PKGBUILD2020-11-08 00:36:26 UTC (rev 399609)
@@ -3,7 +3,7 @@
 # Contributor: Michel Brabants 
 
 pkgname=seahorse
-pkgver=3.38.0
+pkgver=3.38.0.1
 pkgrel=1
 epoch=1
 pkgdesc="GNOME application for managing PGP keys."
@@ -14,7 +14,7 @@
  libhandy)
 makedepends=(libldap yelp-tools gobject-introspection vala git meson)
 provides=(x11-ssh-askpass)
-_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
+_commit=3a4a1d7fd2b610e945ebe3074518247a99c90a63  # tags/3.38.0.1^0
 source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -25,7 +25,6 @@
 
 prepare() {
   cd $pkgname
-  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
 }
 
 build() {


[arch-commits] Commit in seahorse/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:44
  Author: heftig
Revision: 399610

archrelease: copy trunk to extra-x86_64

Added:
  seahorse/repos/extra-x86_64/PKGBUILD
(from rev 399609, seahorse/trunk/PKGBUILD)
Deleted:
  seahorse/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 00:36:26 UTC (rev 399609)
+++ PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Michel Brabants 
-
-pkgname=seahorse
-pkgver=3.38.0
-pkgrel=1
-epoch=1
-pkgdesc="GNOME application for managing PGP keys."
-url="https://wiki.gnome.org/Apps/Seahorse;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
- libhandy)
-makedepends=(libldap yelp-tools gobject-introspection vala git meson)
-provides=(x11-ssh-askpass)
-_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
-source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
-}
-
-build() {
-  arch-meson $pkgname build -D manpage=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: seahorse/repos/extra-x86_64/PKGBUILD (from rev 399609, 
seahorse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Michel Brabants 
+
+pkgname=seahorse
+pkgver=3.38.0.1
+pkgrel=1
+epoch=1
+pkgdesc="GNOME application for managing PGP keys."
+url="https://wiki.gnome.org/Apps/Seahorse;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
+ libhandy)
+makedepends=(libldap yelp-tools gobject-introspection vala git meson)
+provides=(x11-ssh-askpass)
+_commit=3a4a1d7fd2b610e945ebe3074518247a99c90a63  # tags/3.38.0.1^0
+source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D manpage=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in gnome-contacts/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-07 Thread Jan Steffens via arch-commits
Date: Saturday, November 7, 2020 @ 19:05:07
  Author: heftig
Revision: 399586

archrelease: copy trunk to extra-x86_64

Added:
  gnome-contacts/repos/extra-x86_64/PKGBUILD
(from rev 399585, gnome-contacts/trunk/PKGBUILD)
Deleted:
  gnome-contacts/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-07 19:04:31 UTC (rev 399585)
+++ PKGBUILD2020-11-07 19:05:07 UTC (rev 399586)
@@ -1,39 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-contacts
-pkgver=3.38
-pkgrel=1
-pkgdesc="Contacts Manager for GNOME"
-url="https://wiki.gnome.org/Apps/Contacts;
-arch=(x86_64)
-license=(GPL2)
-depends=(gtk3 folks gnome-desktop dconf gnome-online-accounts libgee cheese
- libhandy)
-makedepends=(vala gobject-introspection git meson appstream-glib)
-groups=(gnome)
-_commit=626c6e3d99b61a6c3ab4368d45bdae7e7461e10f  # tags/3.38^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-contacts.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-contacts/repos/extra-x86_64/PKGBUILD (from rev 399585, 
gnome-contacts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-07 19:05:07 UTC (rev 399586)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-contacts
+pkgver=3.38.1
+pkgrel=1
+pkgdesc="Contacts Manager for GNOME"
+url="https://wiki.gnome.org/Apps/Contacts;
+arch=(x86_64)
+license=(GPL2)
+depends=(gtk3 folks gnome-desktop dconf gnome-online-accounts libgee cheese
+ libhandy)
+makedepends=(vala gobject-introspection git meson appstream-glib)
+groups=(gnome)
+_commit=570af2285b2af97b7aeb7218c4fa8a1408811ddf  # tags/3.38.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-contacts.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in seahorse/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-07 Thread Jan Steffens via arch-commits
Date: Saturday, November 7, 2020 @ 19:05:08
  Author: heftig
Revision: 399587

archrelease: copy trunk to extra-x86_64

Added:
  seahorse/repos/extra-x86_64/PKGBUILD
(from rev 399585, seahorse/trunk/PKGBUILD)
Deleted:
  seahorse/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-07 19:05:07 UTC (rev 399586)
+++ PKGBUILD2020-11-07 19:05:08 UTC (rev 399587)
@@ -1,41 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Michel Brabants 
-
-pkgname=seahorse
-pkgver=3.37.2+29+g1d84684a
-pkgrel=1
-epoch=1
-pkgdesc="GNOME application for managing PGP keys."
-url="https://wiki.gnome.org/Apps/Seahorse;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
- libhandy0)
-makedepends=(libldap yelp-tools gobject-introspection vala git meson)
-provides=(x11-ssh-askpass)
-_commit=1d84684a2b2876f92b250d9cfa4d5b178d09978e  # master
-source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D manpage=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: seahorse/repos/extra-x86_64/PKGBUILD (from rev 399585, 
seahorse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-07 19:05:08 UTC (rev 399587)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Michel Brabants 
+
+pkgname=seahorse
+pkgver=3.38.0
+pkgrel=1
+epoch=1
+pkgdesc="GNOME application for managing PGP keys."
+url="https://wiki.gnome.org/Apps/Seahorse;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
+ libhandy)
+makedepends=(libldap yelp-tools gobject-introspection vala git meson)
+provides=(x11-ssh-askpass)
+_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
+source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
+}
+
+build() {
+  arch-meson $pkgname build -D manpage=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Saturday, November 7, 2020 @ 19:04:31
  Author: heftig
Revision: 399585

3.38.0-1

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 18:55:27 UTC (rev 399584)
+++ PKGBUILD2020-11-07 19:04:31 UTC (rev 399585)
@@ -3,7 +3,7 @@
 # Contributor: Michel Brabants 
 
 pkgname=seahorse
-pkgver=3.37.2+29+g1d84684a
+pkgver=3.38.0
 pkgrel=1
 epoch=1
 pkgdesc="GNOME application for managing PGP keys."
@@ -11,10 +11,10 @@
 arch=(x86_64)
 license=(GPL)
 depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
- libhandy0)
+ libhandy)
 makedepends=(libldap yelp-tools gobject-introspection vala git meson)
 provides=(x11-ssh-askpass)
-_commit=1d84684a2b2876f92b250d9cfa4d5b178d09978e  # master
+_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
 source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -25,6 +25,7 @@
 
 prepare() {
   cd $pkgname
+  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
 }
 
 build() {


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Saturday, November 7, 2020 @ 18:55:27
  Author: heftig
Revision: 399584

3.38.1-1

Modified:
  gnome-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 18:03:15 UTC (rev 399583)
+++ PKGBUILD2020-11-07 18:55:27 UTC (rev 399584)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gnome-contacts
-pkgver=3.38
+pkgver=3.38.1
 pkgrel=1
 pkgdesc="Contacts Manager for GNOME"
 url="https://wiki.gnome.org/Apps/Contacts;
@@ -12,7 +12,7 @@
  libhandy)
 makedepends=(vala gobject-introspection git meson appstream-glib)
 groups=(gnome)
-_commit=626c6e3d99b61a6c3ab4368d45bdae7e7461e10f  # tags/3.38^0
+_commit=570af2285b2af97b7aeb7218c4fa8a1408811ddf  # tags/3.38.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-contacts.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:09
  Author: heftig
Revision: 743549

archrelease: copy trunk to community-testing-x86_64

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

--+
 PKGBUILD |   96 ++---
 1 file changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:09 UTC (rev 743548)
+++ PKGBUILD2020-11-05 21:51:09 UTC (rev 743549)
@@ -1,48 +0,0 @@
-# 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=247
-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="$(
+# 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=248
+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 vhba-module/repos/community-testing-x86_64 (6 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:08
  Author: heftig
Revision: 743547

archrelease: copy trunk to community-testing-x86_64

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

---+
 60-vhba.rules |2 -
 PKGBUILD  |  108 
 dkms.conf |   18 -
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: 60-vhba.rules
===
--- 60-vhba.rules   2020-11-05 21:51:07 UTC (rev 743546)
+++ 60-vhba.rules   2020-11-05 21:51:08 UTC (rev 743547)
@@ -1 +0,0 @@
-ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
743541, vhba-module/trunk/60-vhba.rules)
===
--- 60-vhba.rules   (rev 0)
+++ 60-vhba.rules   2020-11-05 21:51:08 UTC (rev 743547)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:07 UTC (rev 743546)
+++ PKGBUILD2020-11-05 21:51:08 UTC (rev 743547)
@@ -1,54 +0,0 @@
-# Maintainer: Ray Rashif 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgbase=vhba-module
-pkgname=(vhba-module vhba-module-dkms)
-pkgver=20200106
-pkgrel=83
-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="$(
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=84
+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 virtualbox-host-modules-arch/repos/community-testing-x86_64 (2 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:06
  Author: heftig
Revision: 743545

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:05 UTC (rev 743544)
+++ PKGBUILD2020-11-05 21:51:06 UTC (rev 743545)
@@ -1,43 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Ionut Biru 
-
-pkgname='virtualbox-host-modules-arch'
-pkgver=6.1.16
-pkgrel=5
-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="$(
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.16
+pkgrel=6
+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 linux-zen/repos/testing-x86_64 (6 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:14
  Author: heftig
Revision: 399561

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  398 
 config  |22262 +++---
 sphinx-workaround.patch |   26 
 3 files changed, 11343 insertions(+), 11343 deletions(-)

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


[arch-commits] Commit in linux/repos/testing-x86_64 (6 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:15
  Author: heftig
Revision: 399562

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  398 
 config  |22162 +++---
 sphinx-workaround.patch |   26 
 3 files changed, 11293 insertions(+), 11293 deletions(-)

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


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:07
  Author: heftig
Revision: 743546

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:06 UTC (rev 743545)
+++ PKGBUILD2020-11-05 21:51:07 UTC (rev 743546)
@@ -1,38 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bob Fanger < bfanger(at)gmail >
-# Contributor: Filip , Det < nimetonmaili(at)gmail >
-
-pkgname=r8168
-pkgver=8.048.03
-pkgrel=39
-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)
-sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
-
-build() {
-   cd "$pkgname-$pkgver"
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/src/linux M="$PWD/src" \
-   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
-   modules
-}
-
-package() {
-   depends=('glibc' 'linux')
-
-   local extradir=/usr/lib/modules/$(
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=40
+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)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:05
  Author: heftig
Revision: 743544

archrelease: copy trunk to community-testing-x86_64

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

--+
 0001-linux-5.6.patch |   80 -
 PKGBUILD |   72 ++--
 2 files changed, 76 insertions(+), 76 deletions(-)

Deleted: 0001-linux-5.6.patch
===
--- 0001-linux-5.6.patch2020-11-05 21:51:05 UTC (rev 743543)
+++ 0001-linux-5.6.patch2020-11-05 21:51:05 UTC (rev 743544)
@@ -1,40 +0,0 @@
-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/0001-linux-5.6.patch (from 
rev 743541, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- 0001-linux-5.6.patch(rev 0)
+++ 0001-linux-5.6.patch2020-11-05 21:51:05 UTC (rev 743544)
@@ -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)
+ {

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:05 UTC (rev 743543)
+++ PKGBUILD2020-11-05 21:51:05 UTC (rev 743544)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-anything-arch
-pkgver=5.0.1
-pkgrel=120
-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')

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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:05
  Author: heftig
Revision: 743543

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:04 UTC (rev 743542)
+++ PKGBUILD2020-11-05 21:51:05 UTC (rev 743543)
@@ -1,46 +0,0 @@
-# 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=240
-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=$(
+
+_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=241
+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 netfilter-fullconenat/repos/community-testing-x86_64 (6 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:09
  Author: heftig
Revision: 743548

archrelease: copy trunk to community-testing-x86_64

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

+
 Kbuild |2 -
 PKGBUILD   |   82 +--
 netfilter-fullconenat.conf |2 -
 3 files changed, 43 insertions(+), 43 deletions(-)

Deleted: Kbuild
===
--- Kbuild  2020-11-05 21:51:08 UTC (rev 743547)
+++ Kbuild  2020-11-05 21:51:09 UTC (rev 743548)
@@ -1 +0,0 @@
-obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
743541, netfilter-fullconenat/trunk/Kbuild)
===
--- Kbuild  (rev 0)
+++ Kbuild  2020-11-05 21:51:09 UTC (rev 743548)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:08 UTC (rev 743547)
+++ PKGBUILD2020-11-05 21:51:09 UTC (rev 743548)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Edward Pacman 
-
-pkgname=netfilter-fullconenat
-pkgver=r73.0cf3b48
-pkgrel=59
-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/$(
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=60
+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 bbswitch/repos/community-testing-x86_64 (6 files)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:12
  Author: heftig
Revision: 743550

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 743547, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 743549, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 743549, bbswitch/trunk/PKGBUILD)
Deleted:
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
  bbswitch/repos/community-testing-x86_64/PKGBUILD

+
 0001-proc_ops-struct.patch |   72 +++---
 0002-kernel-5.7.patch  |   22 -
 PKGBUILD   |  100 +--
 3 files changed, 97 insertions(+), 97 deletions(-)

Deleted: 0001-proc_ops-struct.patch
===
--- 0001-proc_ops-struct.patch  2020-11-05 21:51:09 UTC (rev 743549)
+++ 0001-proc_ops-struct.patch  2020-11-05 21:51:12 UTC (rev 743550)
@@ -1,36 +0,0 @@
-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/0001-proc_ops-struct.patch 
(from rev 743547, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- 0001-proc_ops-struct.patch  (rev 0)
+++ 0001-proc_ops-struct.patch  2020-11-05 21:51:12 UTC (rev 743550)
@@ -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

Deleted: 0002-kernel-5.7.patch
===
--- 0002-kernel-5.7.patch   2020-11-05 21:51:09 UTC (rev 743549)
+++ 0002-kernel-5.7.patch   2020-11-05 21:51:12 UTC (rev 743550)
@@ -1,11 +0,0 @@
-diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
 bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
-+++ bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
-@@ -29,6 +29,7 @@
- #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
- 
- #include 
-+#include 
- #include 
- #include 
- #include 

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
743549, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- 0002-kernel-5.7.patch   (rev 0)
+++ 0002-kernel-5.7.patch   2020-11-05 21:51:12 UTC (rev 743550)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:51:09 UTC (rev 743549)
+++ PKGBUILD2020-11-05 

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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:42
  Author: heftig
Revision: 743539

5.0.1-121: linux 5.9.6.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:40 UTC (rev 743538)
+++ PKGBUILD2020-11-05 21:50:42 UTC (rev 743539)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=120
+pkgrel=121
 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 nvidia/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:11
  Author: heftig
Revision: 399560

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |   85 ++---
 1 file changed, 43 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:41 UTC (rev 399559)
+++ PKGBUILD2020-11-05 21:51:11 UTC (rev 399560)
@@ -1,42 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgname=nvidia
-pkgver=455.38
-pkgrel=4
-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=$(
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=455.38
+pkgrel=5
+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 acpi_call/repos/community-testing-x86_64 (PKGBUILD PKGBUILD)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:51:04
  Author: heftig
Revision: 743542

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:55 UTC (rev 743541)
+++ PKGBUILD2020-11-05 21:51:04 UTC (rev 743542)
@@ -1,64 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: mortzu 
-# Contributor: fnord0 
-
-pkgname=acpi_call
-pkgver=1.1.0
-pkgrel=359
-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=$(
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=360
+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 nvidia/trunk (PKGBUILD)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:41
  Author: heftig
Revision: 399559

455.38-5: linux 5.9.6.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:49:56 UTC (rev 399558)
+++ PKGBUILD2020-11-05 21:50:41 UTC (rev 399559)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=455.38
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;
@@ -40,3 +40,4 @@
 
 
 
+


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:39
  Author: heftig
Revision: 743537

20200106-84: linux 5.9.6.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:37 UTC (rev 743536)
+++ PKGBUILD2020-11-05 21:50:39 UTC (rev 743537)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=83
+pkgrel=84
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:36
  Author: heftig
Revision: 743535

0.8-361: linux 5.9.6.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:35 UTC (rev 743534)
+++ PKGBUILD2020-11-05 21:50:36 UTC (rev 743535)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=360
+pkgrel=361
 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 r8168/trunk (PKGBUILD)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:37
  Author: heftig
Revision: 743536

8.048.03-40: linux 5.9.6.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:36 UTC (rev 743535)
+++ PKGBUILD2020-11-05 21:50:37 UTC (rev 743536)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=39
+pkgrel=40
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:33
  Author: heftig
Revision: 743533

0.43-248: linux 5.9.6.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:32 UTC (rev 743532)
+++ PKGBUILD2020-11-05 21:50:33 UTC (rev 743533)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=247
+pkgrel=248
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:30
  Author: heftig
Revision: 743531

r73.0cf3b48-60: linux 5.9.6.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:17 UTC (rev 743530)
+++ PKGBUILD2020-11-05 21:50:30 UTC (rev 743531)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=59
+pkgrel=60
 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 acpi_call/trunk (PKGBUILD)

2020-11-05 Thread Jan Steffens via arch-commits
Date: Thursday, November 5, 2020 @ 21:50:40
  Author: heftig
Revision: 743538

1.1.0-360: linux 5.9.6.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-05 21:50:39 UTC (rev 743537)
+++ PKGBUILD2020-11-05 21:50:40 UTC (rev 743538)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=359
+pkgrel=360
 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')
@@ -62,3 +62,4 @@
 
 
 
+


<    3   4   5   6   7   8   9   10   11   12   >