[arch-commits] Commit in nodejs/repos/community-x86_64 (4 files)

2019-12-19 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 07:24:56
  Author: felixonmars
Revision: 538467

archrelease: copy trunk to community-x86_64

Added:
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 538466, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/rebuild.list
(from rev 538466, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-x86_64/PKGBUILD
  nodejs/repos/community-x86_64/rebuild.list

--+
 PKGBUILD |  144 -
 rebuild.list |4 -
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 07:24:46 UTC (rev 538466)
+++ PKGBUILD2019-12-20 07:24:56 UTC (rev 538467)
@@ -1,72 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=13.4.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('dd8447d90bf3402a0c31c0907191c98ab1defa4d8f991355abcc2bdec1df4da97e375f473885017082c70d5b6b9d9bb94db6e5ac4dd044ad4a804bd1f361e780')
-
-prepare() {
-  cd node-$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---experimental-http-parser \
---shared-cares \
---shared-nghttp2
-# --shared-v8
-# --shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-x86_64/PKGBUILD (from rev 538466, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 07:24:56 UTC (rev 538467)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=13.5.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
+sha512sums=('d2b8ffa7b83ed1266b3d7c95efbe42166e6b26f8153a19c54abf27f4156e42b9ee20117b689c9df53e6a4e583d788702918914063031e05156c767a38e8ec46e')
+
+prepare() {
+  cd node-$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set 

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

2019-12-19 Thread Felix Yan via arch-commits
Date: Friday, December 20, 2019 @ 07:24:46
  Author: felixonmars
Revision: 538466

upgpkg: nodejs 13.5.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 07:09:49 UTC (rev 538465)
+++ PKGBUILD2019-12-20 07:24:46 UTC (rev 538466)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=13.4.0
+pkgver=13.5.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('dd8447d90bf3402a0c31c0907191c98ab1defa4d8f991355abcc2bdec1df4da97e375f473885017082c70d5b6b9d9bb94db6e5ac4dd044ad4a804bd1f361e780')
+sha512sums=('d2b8ffa7b83ed1266b3d7c95efbe42166e6b26f8153a19c54abf27f4156e42b9ee20117b689c9df53e6a4e583d788702918914063031e05156c767a38e8ec46e')
 
 prepare() {
   cd node-$pkgver


[arch-commits] Commit in electron/repos/community-x86_64 (16 files)

2019-12-19 Thread Nicola Squartini via arch-commits
Date: Friday, December 20, 2019 @ 07:09:49
  Author: tensor5
Revision: 538465

archrelease: copy trunk to community-x86_64

Added:
  electron/repos/community-x86_64/PKGBUILD
(from rev 538464, electron/trunk/PKGBUILD)
  electron/repos/community-x86_64/chromium-skia-harmony.patch
(from rev 538464, electron/trunk/chromium-skia-harmony.patch)
  electron/repos/community-x86_64/chromium-system-icu.patch
(from rev 538464, electron/trunk/chromium-system-icu.patch)
  electron/repos/community-x86_64/chromium-system-zlib.patch
(from rev 538464, electron/trunk/chromium-system-zlib.patch)
  electron/repos/community-x86_64/default_app-icon.patch
(from rev 538464, electron/trunk/default_app-icon.patch)
  electron/repos/community-x86_64/electron.desktop
(from rev 538464, electron/trunk/electron.desktop)
  electron/repos/community-x86_64/icu65.patch
(from rev 538464, electron/trunk/icu65.patch)
  electron/repos/community-x86_64/use-system-libraries-in-node.patch
(from rev 538464, electron/trunk/use-system-libraries-in-node.patch)
Deleted:
  electron/repos/community-x86_64/PKGBUILD
  electron/repos/community-x86_64/chromium-skia-harmony.patch
  electron/repos/community-x86_64/chromium-system-icu.patch
  electron/repos/community-x86_64/chromium-system-zlib.patch
  electron/repos/community-x86_64/default_app-icon.patch
  electron/repos/community-x86_64/electron.desktop
  electron/repos/community-x86_64/icu65.patch
  electron/repos/community-x86_64/use-system-libraries-in-node.patch

+
 PKGBUILD   |  404 +--
 chromium-skia-harmony.patch|   28 +-
 chromium-system-icu.patch  |   40 +--
 chromium-system-zlib.patch |   26 +-
 default_app-icon.patch |   42 +--
 electron.desktop   |   14 -
 icu65.patch|  128 +--
 use-system-libraries-in-node.patch |  112 -
 8 files changed, 397 insertions(+), 397 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 07:08:45 UTC (rev 538464)
+++ PKGBUILD2019-12-20 07:09:49 UTC (rev 538465)
@@ -1,202 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=electron
-pkgver=7.1.5
-_commit=1409056baf762d99ff7f70e7461ca7b6d94cba21
-_chromiumver=78.0.3904.130
-pkgrel=1
-pkgdesc='Build cross platform desktop apps with web technologies'
-arch=('x86_64')
-url='https://electronjs.org/'
-license=('MIT' 'custom')
-depends=('c-ares' 'ffmpeg' 'gtk3' 'http-parser' 'libevent' 'libnghttp2'
- 'libxslt' 'libxss' 'minizip' 'nss' 're2' 'snappy')
-makedepends=('clang' 'git' 'gn' 'gperf' 'harfbuzz-icu' 'java-runtime-headless'
- 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja' 'npm' 'pciutils' 'yarn'
- 'python2' 'wget' 'yasm')
-optdepends=('kde-cli-tools: file deletion support (kioclient5)'
-'libappindicator-gtk3: StatusNotifierItem support'
-'trash-cli: file deletion support (trash-put)'
-"xdg-utils: open URLs with desktop's default (xdg-email, 
xdg-open)")
-source=('git+https://github.com/electron/electron.git'
-'git+https://chromium.googlesource.com/chromium/tools/depot_tools.git'
-'electron.desktop'
-'default_app-icon.patch'
-'use-system-libraries-in-node.patch'
-'chromium-skia-harmony.patch'
-'icu65.patch'
-'chromium-system-icu.patch'
-'chromium-system-zlib.patch'
-   )
-sha256sums=('SKIP'
-'SKIP'
-'5270db01f3f8aaa5137dec275a02caa832b7f2e37942e068cba8d28b3a29df39'
-'51d6e4239b51084a1e9df87ed4d94dcaa22f8d4f332e941eb56fe71b834e9a7a'
-'c7eadac877179e586d0cce7f898aa1462b4c207733e68ecc17de9754b691713a'
-'771292942c0901092a402cc60ee883877a99fb804cb54d568c8c6c94565a48e1'
-'1de9bdbfed482295dda45c7d4e323cee55a34e42f66b892da1c1a778682b7a41'
-'e73cc2ee8d3ea35aab18c478d76fdfc68ca4463e1e10306fa1e738c03b3f26b5'
-'eb67eda4945a89c3b90473fa8dc20637511ca4dcb58879a8ed6bf403700ca9c8'
-   )
-
-_system_libs=('ffmpeg'
-  'flac'
-  'fontconfig'
-  'freetype'
-  'harfbuzz-ng'
-  'icu'
-  'libdrm'
-  'libevent'
-  'libjpeg'
-#  'libpng'
-#  'libvpx'
-  'libwebp'
-  'libxml'
-  'libxslt'
-#  'openh264'
-  'opus'
-  're2'
-  'snappy'
-  'yasm'
-  'zlib'
- )
-
-prepare() {
-  mkdir -p "${srcdir}"/python2-path
-  ln -sf /usr/bin/python2 "${srcdir}/python2-path/python"
-  export PATH="${srcdir}/python2-path:${PATH}:${srcdir}/depot_tools"
-
-  echo "Fetching chromium..."
-  git clone --branch=${_chromiumver} --depth=1 \
-  https://chromium.googlesource.com/chromium/src.git
-
-  echo 

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

2019-12-19 Thread Nicola Squartini via arch-commits
Date: Friday, December 20, 2019 @ 07:08:45
  Author: tensor5
Revision: 538464

upgpkg: electron 7.1.7-1

Modified:
  electron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 05:24:07 UTC (rev 538463)
+++ PKGBUILD2019-12-20 07:08:45 UTC (rev 538464)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=electron
-pkgver=7.1.5
-_commit=1409056baf762d99ff7f70e7461ca7b6d94cba21
+pkgver=7.1.7
+_commit=bef0dd868b7d6d32716c319664ed480f2ae17396
 _chromiumver=78.0.3904.130
 pkgrel=1
 pkgdesc='Build cross platform desktop apps with web technologies'


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

2019-12-19 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 05:24:07
  Author: kpcyrd
Revision: 538463

archrelease: copy trunk to community-any

Added:
  python-intervaltree/repos/community-any/
  python-intervaltree/repos/community-any/PKGBUILD
(from rev 538462, python-intervaltree/trunk/PKGBUILD)

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

Copied: python-intervaltree/repos/community-any/PKGBUILD (from rev 538462, 
python-intervaltree/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-12-20 05:24:07 UTC (rev 538463)
@@ -0,0 +1,27 @@
+# Maintainer: kpcyrd 
+# Contributor: Dobroslaw Kijowski [dobo] 
+
+pkgname=python-intervaltree
+_pyname=intervaltree
+pkgver=3.0.2
+pkgrel=2
+pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
+url="https://github.com/chaimleib/intervaltree;
+arch=('any')
+license=('Apache')
+depends=('python-sortedcontainers')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chaimleib/${_pyname}/archive/${pkgver}.tar.gz;)
+sha256sums=('e8ab75b66077f2e5fb85ac56cb6df834689edb048d38601d53d8867cce3b77d1')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-12-19 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 05:23:51
  Author: kpcyrd
Revision: 538462

addpkg: python-intervaltree 3.0.2-2

Added:
  python-intervaltree/
  python-intervaltree/repos/
  python-intervaltree/trunk/
  python-intervaltree/trunk/PKGBUILD

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

Added: python-intervaltree/trunk/PKGBUILD
===
--- python-intervaltree/trunk/PKGBUILD  (rev 0)
+++ python-intervaltree/trunk/PKGBUILD  2019-12-20 05:23:51 UTC (rev 538462)
@@ -0,0 +1,27 @@
+# Maintainer: kpcyrd 
+# Contributor: Dobroslaw Kijowski [dobo] 
+
+pkgname=python-intervaltree
+_pyname=intervaltree
+pkgver=3.0.2
+pkgrel=2
+pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
+url="https://github.com/chaimleib/intervaltree;
+arch=('any')
+license=('Apache')
+depends=('python-sortedcontainers')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chaimleib/${_pyname}/archive/${pkgver}.tar.gz;)
+sha256sums=('e8ab75b66077f2e5fb85ac56cb6df834689edb048d38601d53d8867cce3b77d1')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 02:35:21
  Author: heftig
Revision: 371948

archrelease: copy trunk to extra-x86_64

Added:
  rust/repos/extra-x86_64/PKGBUILD
(from rev 371947, rust/trunk/PKGBUILD)
Deleted:
  rust/repos/extra-x86_64/0001-WIP-minimize-the-rust-std-component.patch
  rust/repos/extra-x86_64/PKGBUILD

+
 0001-WIP-minimize-the-rust-std-component.patch |   62 -
 PKGBUILD   |  274 +++
 2 files changed, 134 insertions(+), 202 deletions(-)

Deleted: 0001-WIP-minimize-the-rust-std-component.patch
===
--- 0001-WIP-minimize-the-rust-std-component.patch  2019-12-20 02:34:51 UTC 
(rev 371947)
+++ 0001-WIP-minimize-the-rust-std-component.patch  2019-12-20 02:35:21 UTC 
(rev 371948)
@@ -1,62 +0,0 @@
-From 14948e9d7bdb5cc7e975c1f3435692eeb748f07b Mon Sep 17 00:00:00 2001
-From: Josh Stone 
-Date: Fri, 27 Sep 2019 12:33:08 -0700
-Subject: [PATCH] [WIP] minimize the rust-std component
-

- src/bootstrap/dist.rs | 33 +
- 1 file changed, 9 insertions(+), 24 deletions(-)
-
-diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
-index d9dff77a30e..bd96a6371fc 100644
 a/src/bootstrap/dist.rs
-+++ b/src/bootstrap/dist.rs
-@@ -675,36 +675,21 @@ impl Step for Std {
- return distdir(builder).join(format!("{}-{}.tar.gz", name, 
target));
- }
- 
--// We want to package up as many target libraries as possible
--// for the `rust-std` package, so if this is a host target we
--// depend on librustc and otherwise we just depend on libtest.
--if builder.hosts.iter().any(|t| t == target) {
--builder.ensure(compile::Rustc { compiler, target });
--} else {
--builder.ensure(compile::Std { compiler, target });
--}
-+builder.ensure(compile::Std { compiler, target });
- 
- let image = tmpdir(builder).join(format!("{}-{}-image", name, 
target));
- let _ = fs::remove_dir_all();
- 
--let dst = image.join("lib/rustlib").join(target);
-+let dst = image.join("lib/rustlib").join(target).join("lib");
- t!(fs::create_dir_all());
--let mut src = builder.sysroot_libdir(compiler, target).to_path_buf();
--src.pop(); // Remove the trailing /lib folder from the sysroot_libdir
--builder.cp_filtered(, , &|path| {
--if let Some(name) = path.file_name().and_then(|s| s.to_str()) {
--if name == builder.config.rust_codegen_backends_dir.as_str() {
--return false
--}
--if name == "bin" {
--return false
--}
--if name.contains("LLVM") {
--return false
--}
-+
-+let compiler_to_use = builder.compiler_for(compiler.stage, 
compiler.host, target);
-+let stamp = dbg!(compile::libstd_stamp(builder, compiler_to_use, 
target));
-+for (path, host) in builder.read_stamp_file() {
-+if !host {
-+builder.copy(, (path.file_name().unwrap()));
- }
--true
--});
-+}
- 
- let mut cmd = rust_installer(builder);
- cmd.arg("generate")
--- 
-2.24.0
-

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 02:34:51 UTC (rev 371947)
+++ PKGBUILD2019-12-20 02:35:21 UTC (rev 371948)
@@ -1,140 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
-epoch=1
-pkgver=1.39.0
-pkgrel=1
-
-_llvm_ver=9.0.0
-
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('rust' "llvm=$_llvm_ver" 'libffi' 'lib32-gcc-libs' 'perl' 
'python' 'curl' 'cmake')
-checkdepends=('procps-ng' 'gdb')
-
-options=('!emptydirs')
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-
"http://releases.llvm.org/$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
-0001-WIP-minimize-the-rust-std-component.patch)
-
-sha256sums=('b4a1f6b6a93931f270691aba4fc85eee032fecda973e6b9c774cd06857609357'
-'SKIP'
-'56e4cd96dd1d8c346b07b4d6b255f976570c6f2389697347a6c3dcb9e820d10e'
-'SKIP'
-'9e64e6abe9b118ee496c317ef37f4b500b54ecd69e9c02cad2a6a0b7235e9afd')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
-  '474E22316ABF4785A88C6E8EA2C794A986419D8A'  # Tom Stellard 

-  'B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  # For 

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

2019-12-19 Thread Jan Steffens via arch-commits
Date: Friday, December 20, 2019 @ 02:34:51
  Author: heftig
Revision: 371947

1.40.0-1

Modified:
  rust/trunk/PKGBUILD
Deleted:
  rust/trunk/0001-WIP-minimize-the-rust-std-component.patch
  rust/trunk/0002-Hopefully-fix-rustdoc-build.patch

+
 0001-WIP-minimize-the-rust-std-component.patch |   62 ---
 0002-Hopefully-fix-rustdoc-build.patch |   38 --
 PKGBUILD   |   20 +--
 3 files changed, 4 insertions(+), 116 deletions(-)

Deleted: 0001-WIP-minimize-the-rust-std-component.patch
===
--- 0001-WIP-minimize-the-rust-std-component.patch  2019-12-19 22:58:51 UTC 
(rev 371946)
+++ 0001-WIP-minimize-the-rust-std-component.patch  2019-12-20 02:34:51 UTC 
(rev 371947)
@@ -1,62 +0,0 @@
-From e36ab8edbda3695abf3bf892c0fcb17a1f306302 Mon Sep 17 00:00:00 2001
-From: Josh Stone 
-Date: Fri, 27 Sep 2019 12:33:08 -0700
-Subject: [PATCH 1/2] [WIP] minimize the rust-std component
-

- src/bootstrap/dist.rs | 33 +
- 1 file changed, 9 insertions(+), 24 deletions(-)
-
-diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
-index d9dff77a30e..bd96a6371fc 100644
 a/src/bootstrap/dist.rs
-+++ b/src/bootstrap/dist.rs
-@@ -675,36 +675,21 @@ impl Step for Std {
- return distdir(builder).join(format!("{}-{}.tar.gz", name, 
target));
- }
- 
--// We want to package up as many target libraries as possible
--// for the `rust-std` package, so if this is a host target we
--// depend on librustc and otherwise we just depend on libtest.
--if builder.hosts.iter().any(|t| t == target) {
--builder.ensure(compile::Rustc { compiler, target });
--} else {
--builder.ensure(compile::Std { compiler, target });
--}
-+builder.ensure(compile::Std { compiler, target });
- 
- let image = tmpdir(builder).join(format!("{}-{}-image", name, 
target));
- let _ = fs::remove_dir_all();
- 
--let dst = image.join("lib/rustlib").join(target);
-+let dst = image.join("lib/rustlib").join(target).join("lib");
- t!(fs::create_dir_all());
--let mut src = builder.sysroot_libdir(compiler, target).to_path_buf();
--src.pop(); // Remove the trailing /lib folder from the sysroot_libdir
--builder.cp_filtered(, , &|path| {
--if let Some(name) = path.file_name().and_then(|s| s.to_str()) {
--if name == builder.config.rust_codegen_backends_dir.as_str() {
--return false
--}
--if name == "bin" {
--return false
--}
--if name.contains("LLVM") {
--return false
--}
-+
-+let compiler_to_use = builder.compiler_for(compiler.stage, 
compiler.host, target);
-+let stamp = dbg!(compile::libstd_stamp(builder, compiler_to_use, 
target));
-+for (path, host) in builder.read_stamp_file() {
-+if !host {
-+builder.copy(, (path.file_name().unwrap()));
- }
--true
--});
-+}
- 
- let mut cmd = rust_installer(builder);
- cmd.arg("generate")
--- 
-2.24.0
-

Deleted: 0002-Hopefully-fix-rustdoc-build.patch
===
--- 0002-Hopefully-fix-rustdoc-build.patch  2019-12-19 22:58:51 UTC (rev 
371946)
+++ 0002-Hopefully-fix-rustdoc-build.patch  2019-12-20 02:34:51 UTC (rev 
371947)
@@ -1,38 +0,0 @@
-From 3e846aeb807bfc41576b4efbee882c4475f0cb75 Mon Sep 17 00:00:00 2001
-From: Mark Rousskov 
-Date: Tue, 5 Nov 2019 11:16:46 -0500
-Subject: [PATCH 2/2] Hopefully fix rustdoc build
-
-It's super unclear why this broke when we switched to beta but not
-previously -- but at least it's hopefully fixed now.

- src/bootstrap/builder.rs | 13 -
- 1 file changed, 12 insertions(+), 1 deletion(-)
-
-diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
-index 5d586f0c461..bad92d77385 100644
 a/src/bootstrap/builder.rs
-+++ b/src/bootstrap/builder.rs
-@@ -875,7 +875,18 @@ impl<'a> Builder<'a> {
- // things still build right, please do!
- match mode {
- Mode::Std => metadata.push_str("std"),
--_ => {},
-+// When we're building rustc tools, they're built with a search 
path
-+// that contains things built during the rustc build. For example,
-+// bitflags is built during the rustc build, and is a dependency 
of
-+// rustdoc as well. We're building rustdoc in a different target
-+// directory, though, which means that Cargo will rebuild the
-+// dependency. When we go on to build rustdoc, we'll look for
-+// bitflags, and find two 

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

2019-12-19 Thread Morten Linderud via arch-commits
Date: Thursday, December 19, 2019 @ 23:22:34
  Author: foxboron
Revision: 538461

archrelease: copy trunk to community-any

Added:
  mypy/repos/community-any/PKGBUILD
(from rev 538460, mypy/trunk/PKGBUILD)
Deleted:
  mypy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 23:22:26 UTC (rev 538460)
+++ PKGBUILD2019-12-19 23:22:34 UTC (rev 538461)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: icasdri 
-# Contributor: hexchain 
-
-pkgname=mypy
-pkgver=0.750
-pkgrel=2
-pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
-url="http://www.mypy-lang.org/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-typed-ast' 
'python-mypy_extensions' 'python-typing_extensions')
-makedepends=('git')
-source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('6ecbd0e8e371333027abca0922b0c2c632a5b4739a0c61ffbd0733391e39144c')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: mypy/repos/community-any/PKGBUILD (from rev 538460, mypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 23:22:34 UTC (rev 538461)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Contributor: icasdri 
+# Contributor: hexchain 
+
+pkgname=mypy
+pkgver=0.761
+pkgrel=1
+pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
+url="http://www.mypy-lang.org/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-typed-ast' 
'python-mypy_extensions' 'python-typing_extensions')
+makedepends=('git')
+source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('85baab8d74ec601e86134afe2bcccd87820f79d2f8d5798c889507d1088287bf')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-12-19 Thread Morten Linderud via arch-commits
Date: Thursday, December 19, 2019 @ 23:22:26
  Author: foxboron
Revision: 538460

upgpkg: mypy 0.761-1

Modified:
  mypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 23:06:57 UTC (rev 538459)
+++ PKGBUILD2019-12-19 23:22:26 UTC (rev 538460)
@@ -3,8 +3,8 @@
 # Contributor: hexchain 
 
 pkgname=mypy
-pkgver=0.750
-pkgrel=2
+pkgver=0.761
+pkgrel=1
 pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
 url="http://www.mypy-lang.org/;
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python-setuptools' 'python-psutil' 'python-typed-ast' 
'python-mypy_extensions' 'python-typing_extensions')
 makedepends=('git')
 
source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('6ecbd0e8e371333027abca0922b0c2c632a5b4739a0c61ffbd0733391e39144c')
+sha256sums=('85baab8d74ec601e86134afe2bcccd87820f79d2f8d5798c889507d1088287bf')
 
 build() {
 cd "$pkgname-$pkgver"


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 23:06:57
  Author: andyrtr
Revision: 538459

makedepend on xorgproto

Modified:
  lib32-libx11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 23:05:50 UTC (rev 538458)
+++ PKGBUILD2019-12-19 23:06:57 UTC (rev 538459)
@@ -8,7 +8,7 @@
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
 depends=('lib32-libxcb' $_pkgbasename)
-makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto' 
'gcc-multilib')
+makedepends=('xorg-util-macros' 'xorgproto' 'xtrans' 'gcc-multilib')
 license=('custom:XFREE86')
 source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('fc18f0dc17ade1fc37402179f52e1f2b9c7b7d3a1a9590fea13046eb0c5193b4796289431cd99388eac01e8e59de77db45d2c9675d4f05ef8cf3ba6382c3dd31'


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 23:05:50
  Author: andyrtr
Revision: 538458

makedepend on xorgproto

Modified:
  lib32-libvdpau/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 23:04:21 UTC (rev 538457)
+++ PKGBUILD2019-12-19 23:05:50 UTC (rev 538458)
@@ -14,7 +14,7 @@
   libvdpau
 )
 makedepends=(
-  dri2proto
+  xorgproto
   git
   meson
 )


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 23:04:21
  Author: andyrtr
Revision: 538457

makedepend on xorgproto

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 23:00:57 UTC (rev 538456)
+++ PKGBUILD2019-12-19 23:04:21 UTC (rev 538457)
@@ -7,7 +7,7 @@
 pkgver=19.3.1
 pkgrel=1
 arch=('x86_64')
-makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'glproto' 'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
+makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'xorgproto' 'lib32-libdrm'
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-libelf' 'lib32-llvm' 'lib32-libvdpau'
  'lib32-libva' 'lib32-wayland' 'wayland-protocols' 
'lib32-libglvnd' 'lib32-lm_sensors' 'lib32-libxrandr' 'meson')
 url="http://mesa3d.sourceforge.net;


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 23:00:57
  Author: andyrtr
Revision: 538456

makedepend on xorgproto

Modified:
  lib32-libglvnd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 22:59:46 UTC (rev 538455)
+++ PKGBUILD2019-12-19 23:00:57 UTC (rev 538456)
@@ -7,7 +7,7 @@
 arch=('x86_64')
 url="https://github.com/NVIDIA/libglvnd;
 license=('custom:BSD-like')
-makedepends=('lib32-libx11' 'lib32-libxext' 'glproto' 'python' 'meson')
+makedepends=('lib32-libx11' 'lib32-libxext' 'xorgproto' 'python' 'meson')
 provides=('lib32-libgl' 'lib32-libegl' 'lib32-libgles')
 
source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${pkgver}/libglvnd-v${pkgver}.tar.gz;)
 
sha512sums=('277d0951596fee654fa90b6c644ccde781d83732bb6caa13ad57103198caa9702732922efd9c84cfbe1689ff40b9d710d9d375f5b4a2f0c86c88c8b3e2b3f732')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 22:59:46
  Author: andyrtr
Revision: 538455

makedepend on xorgproto

Modified:
  intel-gpu-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 22:56:58 UTC (rev 538454)
+++ PKGBUILD2019-12-19 22:59:46 UTC (rev 538455)
@@ -11,7 +11,7 @@
 license=(MIT)
 url='https://gitlab.freedesktop.org/drm/igt-gpu-tools'
 depends=(libdrm libpciaccess cairo python xorg-xrandr procps-ng kmod libxv 
libunwind peg systemd)
-makedepends=(swig gtk-doc xorg-util-macros dri2proto meson)
+makedepends=(swig gtk-doc xorg-util-macros xorgproto meson)
 
source=(https://xorg.freedesktop.org/releases/individual/app/${_pkgname}-$pkgver.tar.xz{,.sig})
 
sha512sums=('22c25e27ead64f561fe8f46b132d6c7562a90d7bff09dc2618a532b16d7b8fdf54ed94d986a45655657b54219d350ce1b1e6c89da2b6073024e9bbe0973fa190'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 22:58:51
  Author: andyrtr
Revision: 371946

makedepend on xorgproto

Modified:
  imake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:40:44 UTC (rev 371945)
+++ PKGBUILD2019-12-19 22:58:51 UTC (rev 371946)
@@ -8,7 +8,7 @@
 url="https://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('pkgconfig' 'xproto' 'perl' 'xorg-util-macros' 'xorg-font-util')
+makedepends=('pkgconfig' 'xorgproto' 'perl' 'xorg-util-macros' 
'xorg-font-util')
 optdepends=('perl: for mkhtmlindex')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

 
source=(https://xorg.freedesktop.org/releases/individual/util/imake-${pkgver}.tar.bz2


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 22:56:58
  Author: andyrtr
Revision: 538454

makedepend on xorgproto

Modified:
  easystroke/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 22:12:19 UTC (rev 538453)
+++ PKGBUILD2019-12-19 22:56:58 UTC (rev 538454)
@@ -9,7 +9,7 @@
 url='http://easystroke.sourceforge.net/'
 license=('custom:ISC')
 depends=('gtkmm3' 'boost-libs' 'libxtst' 'dbus-glib' 'xorg-server')
-makedepends=('boost' 'inputproto' 'intltool' 'gettext' 'xorg-server-devel' 
'help2man')
+makedepends=('boost' 'xorgproto' 'intltool' 'gettext' 'xorg-server-devel' 
'help2man')
 
source=("https://downloads.sourceforge.net/easystroke/${pkgname}-${pkgver}.tar.gz;
 'easystroke-0.6.0-gcc7-build-fix.patch'
 'replace-sigc-group-with-lambda.patch')


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

2019-12-19 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, December 19, 2019 @ 22:12:19
  Author: grazzolini
Revision: 538453

archrelease: copy trunk to community-x86_64

Added:
  xpra/repos/community-x86_64/PKGBUILD
(from rev 538452, xpra/trunk/PKGBUILD)
Deleted:
  xpra/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 22:11:21 UTC (rev 538452)
+++ PKGBUILD2019-12-19 22:12:19 UTC (rev 538453)
@@ -1,63 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Bug 
-
-pkgname=xpra
-pkgver=3.0.3
-pkgrel=2
-pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
-arch=('x86_64')
-url='https://www.xpra.org'
-license=('GPL2')
-depends=('gtk3' 'python' 'libxtst' 'python-pillow' 'python-lz4'
- 'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libxkbfile'
- 'python-netifaces' 'python-rencode' 'python-opengl'
- 'python-lz4')
-optdepends=('x264: Codec' 'python-dbus: dbus features'
-'python-pycups: Printing support'
-'python-cryptography: Cryptography'
-'python-numpy'
-'gst-python: Sound Forwarding'
-'opencv: Webcam Capture')
-makedepends=('pkgconf' 'pygobject-devel' 'python-cairo' 'python-setuptools' 
'cython' 'uglify-js')
-backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
-'etc/xpra/conf.d/05_features.conf'
-'etc/xpra/conf.d/10_network.conf'
-'etc/xpra/conf.d/12_ssl.conf'
-'etc/xpra/conf.d/15_file_transfers.conf'
-'etc/xpra/conf.d/16_printing.conf'
-'etc/xpra/conf.d/20_sound.conf'
-'etc/xpra/conf.d/30_picture.conf'
-'etc/xpra/conf.d/35_webcam.conf'
-'etc/xpra/conf.d/40_client.conf'
-'etc/xpra/conf.d/42_client_keyboard.conf'
-'etc/xpra/conf.d/50_server_network.conf'
-'etc/xpra/conf.d/55_server_x11.conf'
-'etc/xpra/conf.d/60_server.conf'
-'etc/xpra/conf.d/65_proxy.conf'
-'etc/pam.d/xpra')
-source=($pkgname-$pkgver.tar.xz::$url/src/$pkgname-$pkgver.tar.xz
-$pkgname-$pkgver.tar.xz.asc::$url/src/$pkgname-$pkgver.tar.xz.gpg)
-
-md5sums=('dcec7ba17d3608ea41e419cf78b0b0bb'
- 'SKIP')
-sha1sums=('e5ca1a1bf043940ca043a05abccf84eebc91af0a'
-  'SKIP')
-sha256sums=('25f5e8c3d67d22d5603112dca7f5ad1cf8caa0ac6013b34385494a5855677d97'
-'SKIP')
-validpgpkeys=('C11C0A4DF702EDF6C04F458C18ADB31CF18AD6BB') # Antoine Martin 

-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  sed -i 's|/build/xpra/pkg/xpra/etc/xpra/xorg.conf|/etc/xpra/xorg.conf|' 
"${pkgdir}"/etc/xpra/conf.d/55_server_x11.conf
-  mv "${pkgdir}"/lib/* "${pkgdir}"/usr/lib/
-  rmdir "${pkgdir}/lib"
-  mkdir -p "${pkgdir}"/usr/share/dbus-1
-  #Move D-BUS Policy
-  mv "${pkgdir}"/{etc,usr/share}/dbus-1/system.d
-}

Copied: xpra/repos/community-x86_64/PKGBUILD (from rev 538452, 
xpra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 22:12:19 UTC (rev 538453)
@@ -0,0 +1,63 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Bug 
+
+pkgname=xpra
+pkgver=3.0.3
+pkgrel=3
+pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
+arch=('x86_64')
+url='https://www.xpra.org'
+license=('GPL2')
+depends=('gtk3' 'python' 'libxtst' 'python-cairo' 'python-gobject' 
'python-pillow' 'python-lz4'
+ 'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libxkbfile'
+ 'python-netifaces' 'python-rencode' 'python-opengl'
+ 'python-lz4')
+optdepends=('x264: Codec' 'python-dbus: dbus features'
+'python-pycups: Printing support'
+'python-cryptography: Cryptography'
+'python-numpy: GPU accelerated capture and compression for NVIDIA 
cards'
+'gst-python: Sound Forwarding'
+'opencv: Webcam Forwarding')
+makedepends=('pkgconf' 'pygobject-devel' 'python-setuptools' 'cython' 
'uglify-js')
+backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
+'etc/xpra/conf.d/05_features.conf'
+'etc/xpra/conf.d/10_network.conf'
+'etc/xpra/conf.d/12_ssl.conf'
+'etc/xpra/conf.d/15_file_transfers.conf'
+'etc/xpra/conf.d/16_printing.conf'
+'etc/xpra/conf.d/20_sound.conf'
+'etc/xpra/conf.d/30_picture.conf'
+'etc/xpra/conf.d/35_webcam.conf'
+'etc/xpra/conf.d/40_client.conf'
+'etc/xpra/conf.d/42_client_keyboard.conf'
+'etc/xpra/conf.d/50_server_network.conf'
+'etc/xpra/conf.d/55_server_x11.conf'
+'etc/xpra/conf.d/60_server.conf'
+'etc/xpra/conf.d/65_proxy.conf'
+'etc/pam.d/xpra')

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

2019-12-19 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, December 19, 2019 @ 22:11:21
  Author: grazzolini
Revision: 538452

upgpkg: xpra 3.0.3-3

Modified:
  xpra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 22:05:18 UTC (rev 538451)
+++ PKGBUILD2019-12-19 22:11:21 UTC (rev 538452)
@@ -3,12 +3,12 @@
 
 pkgname=xpra
 pkgver=3.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="multi-platform screen and application forwarding system screen for 
X11"
 arch=('x86_64')
 url='https://www.xpra.org'
 license=('GPL2')
-depends=('gtk3' 'python' 'libxtst' 'python-pillow' 'python-lz4'
+depends=('gtk3' 'python' 'libxtst' 'python-cairo' 'python-gobject' 
'python-pillow' 'python-lz4'
  'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libxkbfile'
  'python-netifaces' 'python-rencode' 'python-opengl'
  'python-lz4')
@@ -15,10 +15,10 @@
 optdepends=('x264: Codec' 'python-dbus: dbus features'
 'python-pycups: Printing support'
 'python-cryptography: Cryptography'
-'python-numpy'
+'python-numpy: GPU accelerated capture and compression for NVIDIA 
cards'
 'gst-python: Sound Forwarding'
-'opencv: Webcam Capture')
-makedepends=('pkgconf' 'pygobject-devel' 'python-cairo' 'python-setuptools' 
'cython' 'uglify-js')
+'opencv: Webcam Forwarding')
+makedepends=('pkgconf' 'pygobject-devel' 'python-setuptools' 'cython' 
'uglify-js')
 backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
 'etc/xpra/conf.d/05_features.conf'
 'etc/xpra/conf.d/10_network.conf'


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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 22:05:18
  Author: arojas
Revision: 538451

archrelease: copy trunk to community-testing-x86_64

Added:
  radare2-cutter/repos/community-testing-x86_64/
  radare2-cutter/repos/community-testing-x86_64/PKGBUILD
(from rev 538450, radare2-cutter/trunk/PKGBUILD)

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

Copied: radare2-cutter/repos/community-testing-x86_64/PKGBUILD (from rev 
538450, radare2-cutter/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-19 22:05:18 UTC (rev 538451)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=radare2-cutter
+_gitcommit=b4535227cf1ebfb94da40c950215512acbcbb9bf
+pkgver=1.9.0
+epoch=1
+pkgrel=5
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/cutter'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python' 'jupyter'
+ 'pyside2' 'python-shiboken2')
+makedepends=('git' 'cmake' 'shiboken2')
+source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  sed -e 's|PKGCONFIG += python3|PKGCONFIG += python3-embed|' -i 
$pkgname/src/Cutter.pro # Fix linking to python 3.8
+}
+
+build() {
+  mkdir -p ${pkgname}/build
+  cd ${pkgname}/build
+  qmake ../src/Cutter.pro \
+CUTTER_ENABLE_PYTHON=true \
+CUTTER_ENABLE_PYTHON_BINDINGS=true \
+CUTTER_USE_BUNDLED_RADARE2=false
+  make
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 build/Cutter -t "${pkgdir}/usr/bin"
+  install -Dm 644 src/org.radare.Cutter.desktop -t 
"${pkgdir}/usr/share/applications"
+  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 22:04:49
  Author: arojas
Revision: 538450

shiboken2/pyside2 5.14 rebuild

Modified:
  radare2-cutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:40:07 UTC (rev 538449)
+++ PKGBUILD2019-12-19 22:04:49 UTC (rev 538450)
@@ -6,14 +6,14 @@
 _gitcommit=b4535227cf1ebfb94da40c950215512acbcbb9bf
 pkgver=1.9.0
 epoch=1
-pkgrel=4
+pkgrel=5
 pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
 url='https://github.com/radareorg/cutter'
 arch=('x86_64')
 license=('GPL3')
 depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python' 'jupyter'
- 'pyside2' 'shiboken2' 'python-shiboken2')
-makedepends=('git' 'cmake')
+ 'pyside2' 'python-shiboken2')
+makedepends=('git' 'cmake' 'shiboken2')
 
source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
 sha512sums=('SKIP')
 


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

2019-12-19 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, December 19, 2019 @ 21:40:07
  Author: grazzolini
Revision: 538449

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libxi/repos/multilib-testing-x86_64/
  lib32-libxi/repos/multilib-testing-x86_64/PKGBUILD
(from rev 538448, lib32-libxi/trunk/PKGBUILD)

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

Copied: lib32-libxi/repos/multilib-testing-x86_64/PKGBUILD (from rev 538448, 
lib32-libxi/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-12-19 21:40:07 UTC (rev 538449)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Jan de Groot 
+
+_pkgbasename=libxi
+pkgname=lib32-$_pkgbasename
+pkgver=1.7.10
+pkgrel=2
+pkgdesc="X11 Input extension library (32-bit)"
+arch=('x86_64')
+url="https://xorg.freedesktop.org;
+depends=('lib32-libxext' 'lib32-libxfixes' $_pkgbasename)
+makedepends=('pkgconfig' 'xorgproto' 'xorg-util-macros' gcc-multilib automake)
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
+sha256sums=('36a30d8f6383a72e7ce060298b4b181fd298bc3a135c8e201b7ca847f5f81061'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'  # Peter Hutterer
+  'C41C985FDCF1E5364576638B687393EE37D128F8'  # Matthieu Herrb 

+  '3BB639E56F861FA2E86505690FDD682D974CA72A') # Matt Turner 

+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/libXi-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+--libdir=/usr/lib32
+
+  make
+}
+
+package() {
+  cd "${srcdir}/libXi-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 21:40:27
  Author: arojas
Revision: 371944

Reenable python plugins, fix build with Qt 5.14

Modified:
  falkon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:39:45 UTC (rev 371943)
+++ PKGBUILD2019-12-19 21:40:27 UTC (rev 371944)
@@ -2,21 +2,23 @@
 
 pkgname=falkon
 pkgver=3.1.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Cross-platform QtWebEngine browser"
 arch=(x86_64)
 url="https://www.falkon.org/;
 license=(GPL3)
 depends=(qt5-webengine qt5-x11extras qt5-svg)
-makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring) # 
pyside2 shiboken2
-optdepends=('kio: KDE integration' 'purpose: KDE integration' 
'libgnome-keyring: gnome keyring integration')
-#'pyside2: Python plugins')
+makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring 
pyside2 shiboken2 xorgproto)
+optdepends=('kio: KDE integration' 'purpose: KDE integration' 
'libgnome-keyring: gnome keyring integration'
+'pyside2: Python plugins')
 replaces=(qupzilla)
 
source=(https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
-
falkon-pyside-5.12.2.patch::"https://cgit.kde.org/falkon.git/patch/?id=479933e0;)
+
falkon-pyside-5.12.2.patch::"https://cgit.kde.org/falkon.git/patch/?id=479933e0;
+
falkon-qt-5.14.patch::"https://cgit.kde.org/falkon.git/patch/?id=bbde5c69;)
 sha256sums=('ce743cd80c0e2d525a784e29c9b487f73480119b0567f9ce8ef1f44cca527587'
 'SKIP'
-'ab7b8c1a8e0e53cb3db2722498f55cb39103d2138f4cf71859384549544074d6')
+'ab7b8c1a8e0e53cb3db2722498f55cb39103d2138f4cf71859384549544074d6'
+'d5a8bb8b77087ffd7ca73c004afe396333966145744d021395b196e020b1f0ae')
 validpgpkeys=(3CB7B8416EF6778B409FDC43EBC3FC294452C6D8) # David Rosca 

 
 prepare() {
@@ -24,6 +26,7 @@
 
   cd $pkgname-$pkgver
   patch -p1 -i ../falkon-pyside-5.12.2.patch # Fix build with PySide 5.12.2
+  patch -p1 -i ../falkon-qt-5.14.patch # Fix build with Qt 5.14
 }
 
 build() {


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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 21:40:44
  Author: arojas
Revision: 371945

archrelease: copy trunk to testing-x86_64

Added:
  falkon/repos/testing-x86_64/
  falkon/repos/testing-x86_64/PKGBUILD
(from rev 371944, falkon/trunk/PKGBUILD)

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

Copied: falkon/repos/testing-x86_64/PKGBUILD (from rev 371944, 
falkon/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-19 21:40:44 UTC (rev 371945)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=falkon
+pkgver=3.1.0
+pkgrel=9
+pkgdesc="Cross-platform QtWebEngine browser"
+arch=(x86_64)
+url="https://www.falkon.org/;
+license=(GPL3)
+depends=(qt5-webengine qt5-x11extras qt5-svg)
+makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring 
pyside2 shiboken2 xorgproto)
+optdepends=('kio: KDE integration' 'purpose: KDE integration' 
'libgnome-keyring: gnome keyring integration'
+'pyside2: Python plugins')
+replaces=(qupzilla)
+source=(https://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+
falkon-pyside-5.12.2.patch::"https://cgit.kde.org/falkon.git/patch/?id=479933e0;
+
falkon-qt-5.14.patch::"https://cgit.kde.org/falkon.git/patch/?id=bbde5c69;)
+sha256sums=('ce743cd80c0e2d525a784e29c9b487f73480119b0567f9ce8ef1f44cca527587'
+'SKIP'
+'ab7b8c1a8e0e53cb3db2722498f55cb39103d2138f4cf71859384549544074d6'
+'d5a8bb8b77087ffd7ca73c004afe396333966145744d021395b196e020b1f0ae')
+validpgpkeys=(3CB7B8416EF6778B409FDC43EBC3FC294452C6D8) # David Rosca 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../falkon-pyside-5.12.2.patch # Fix build with PySide 5.12.2
+  patch -p1 -i ../falkon-qt-5.14.patch # Fix build with Qt 5.14
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in shiboken2/trunk (PKGBUILD shiboken-fix-falkon.patch)

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 21:39:22
  Author: arojas
Revision: 371942

Fix plugin loading in Falkon

Added:
  shiboken2/trunk/shiboken-fix-falkon.patch
Modified:
  shiboken2/trunk/PKGBUILD

---+
 PKGBUILD  |   11 +++---
 shiboken-fix-falkon.patch |   46 
 2 files changed, 54 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 20:51:54 UTC (rev 371941)
+++ PKGBUILD2019-12-19 21:39:22 UTC (rev 371942)
@@ -6,7 +6,7 @@
 _qtver=5.14.0
 _clangver=9.0.0
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL2 LGPL)
@@ -13,11 +13,16 @@
 pkgdesc='Generates bindings for C++ libraries using CPython source code'
 makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
 _pkgfqn=pyside-setup-opensource-src-${_qtver}
-source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
-sha256sums=('8c2ad1901a99165ed7bac8f522ee351ae3ebadd580024248f5a1db52e4a94b30')
+source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
+ shiboken-fix-falkon.patch)
+sha256sums=('8c2ad1901a99165ed7bac8f522ee351ae3ebadd580024248f5a1db52e4a94b30'
+'3093d8d9e76bffce4e9fc16a620f9401749efff8b4d7e26c57d09f5342040627')
 
 prepare() {
   mkdir -p build
+
+  cd $_pkgfqn
+  patch -p1 -i ../shiboken-fix-falkon.patch # Fix loading Falkon plugins
 }
 
 build() {

Added: shiboken-fix-falkon.patch
===
--- shiboken-fix-falkon.patch   (rev 0)
+++ shiboken-fix-falkon.patch   2019-12-19 21:39:22 UTC (rev 371942)
@@ -0,0 +1,46 @@
+From 92944434452d185ef0b023abd5eec224aea7eeb2 Mon Sep 17 00:00:00 2001
+From: Christian Tismer 
+Date: Wed, 13 Nov 2019 19:12:16 +0100
+Subject: [PATCH] WIP: qApp: Ensure QtCore import when embedded QApplication 
subclass is used
+
+The qApp machinery works great with Python.
+When using embedding, things are different because there
+is no longer a wrapper layer.
+
+Unfortunately, many extension modules use C++ to derive a
+QApplication class.
+
+This has the side effect that when a foreign C++ module gets
+imported, the qApp machinery does not see it as it would
+in Python.
+
+Instead of a complex analysis, we always make sure that QtCore
+is imported. It will report the right instance, anyway.
+
+XXX make sure that this assumption is really true...
+
+Change-Id: Ie9c56ac75e6c0ae3ace615dfc26c6d218ff4efea
+Fixes: PYSIDE-1135
+---
+
+diff --git a/sources/shiboken2/libshiboken/qapp_macro.cpp 
b/sources/shiboken2/libshiboken/qapp_macro.cpp
+index 306f53b..c2018bd 100644
+--- a/sources/shiboken2/libshiboken/qapp_macro.cpp
 b/sources/shiboken2/libshiboken/qapp_macro.cpp
+@@ -246,7 +246,14 @@
+  * qApp_contents variable and assigns the instance, instead of vice-versa.
+  */
+ PyObject *coreDict = qApp_moduledicts[1];
+-if (qApp != nullptr && coreDict != nullptr) {
++if (coreDict == nullptr) {
++// PYSIDE-1135: Make sure that at least QtCore gets imported.
++// That problem exists when a derived instance is created in C++.
++qApp_moduledicts[1] = Py_None; // anything != nullptr during import
++coreDict = PyImport_ImportModule("PySide2.QtCore");
++qApp_moduledicts[1] = coreDict;
++}
++if (qApp != nullptr && coreDict != nullptr && coreDict != Py_None) {
+ PyObject *coreApp = PyDict_GetItemString(coreDict, 
"QCoreApplication");
+ if (coreApp != nullptr) {
+ qApp_content = PyObject_CallMethod(coreApp, "instance", "");
+


[arch-commits] Commit in shiboken2/repos/testing-x86_64 (3 files)

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 21:39:45
  Author: arojas
Revision: 371943

archrelease: copy trunk to testing-x86_64

Added:
  shiboken2/repos/testing-x86_64/PKGBUILD
(from rev 371942, shiboken2/trunk/PKGBUILD)
  shiboken2/repos/testing-x86_64/shiboken-fix-falkon.patch
(from rev 371942, shiboken2/trunk/shiboken-fix-falkon.patch)
Deleted:
  shiboken2/repos/testing-x86_64/PKGBUILD

---+
 PKGBUILD  |  101 +++-
 shiboken-fix-falkon.patch |   46 
 2 files changed, 99 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:39:22 UTC (rev 371942)
+++ PKGBUILD2019-12-19 21:39:45 UTC (rev 371943)
@@ -1,48 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgbase=shiboken2
-pkgname=(shiboken2 python-shiboken2)
-_qtver=5.14.0
-_clangver=9.0.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL2 LGPL)
-pkgdesc='Generates bindings for C++ libraries using CPython source code'
-makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
-_pkgfqn=pyside-setup-opensource-src-${_qtver}
-source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;)
-sha256sums=('8c2ad1901a99165ed7bac8f522ee351ae3ebadd580024248f5a1db52e4a94b30')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${_pkgfqn}/sources/shiboken2 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF \
--DUSE_PYTHON_VERSION=3
-  make
-}
-
-package_shiboken2() {
-  depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-# Provided in python-shiboken2
-  rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
-}
-
-package_python-shiboken2() {
-  depends=(python)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-# Provided in shiboken2
-  rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share}
-}

Copied: shiboken2/repos/testing-x86_64/PKGBUILD (from rev 371942, 
shiboken2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 21:39:45 UTC (rev 371943)
@@ -0,0 +1,53 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=shiboken2
+pkgname=(shiboken2 python-shiboken2)
+_qtver=5.14.0
+_clangver=9.0.0
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL2 LGPL)
+pkgdesc='Generates bindings for C++ libraries using CPython source code'
+makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
+_pkgfqn=pyside-setup-opensource-src-${_qtver}
+source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz;
+ shiboken-fix-falkon.patch)
+sha256sums=('8c2ad1901a99165ed7bac8f522ee351ae3ebadd580024248f5a1db52e4a94b30'
+'3093d8d9e76bffce4e9fc16a620f9401749efff8b4d7e26c57d09f5342040627')
+
+prepare() {
+  mkdir -p build
+
+  cd $_pkgfqn
+  patch -p1 -i ../shiboken-fix-falkon.patch # Fix loading Falkon plugins
+}
+
+build() {
+  cd build
+  cmake ../${_pkgfqn}/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  make
+}
+
+package_shiboken2() {
+  depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in python-shiboken2
+  rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
+}
+
+package_python-shiboken2() {
+  depends=(python)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+# Provided in shiboken2
+  rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig},share}
+}

Copied: shiboken2/repos/testing-x86_64/shiboken-fix-falkon.patch (from rev 
371942, shiboken2/trunk/shiboken-fix-falkon.patch)
===
--- shiboken-fix-falkon.patch   (rev 0)
+++ shiboken-fix-falkon.patch   2019-12-19 21:39:45 UTC (rev 371943)
@@ -0,0 +1,46 @@
+From 92944434452d185ef0b023abd5eec224aea7eeb2 Mon Sep 17 00:00:00 2001
+From: Christian Tismer 
+Date: Wed, 13 Nov 2019 19:12:16 +0100
+Subject: [PATCH] WIP: qApp: Ensure QtCore import when embedded QApplication 
subclass is used
+
+The qApp machinery works great with Python.
+When using embedding, things are different because there
+is no longer a wrapper layer.
+
+Unfortunately, many extension modules use C++ to derive a
+QApplication class.
+
+This has the side effect that when a foreign C++ module gets
+imported, the qApp machinery does not see it as it would
+in Python.
+
+Instead of a complex analysis, we always make sure that QtCore
+is imported. It will report the right instance, anyway.
+
+XXX make sure that this assumption is really true...
+
+Change-Id: Ie9c56ac75e6c0ae3ace615dfc26c6d218ff4efea
+Fixes: PYSIDE-1135
+---
+
+diff --git 

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

2019-12-19 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, December 19, 2019 @ 21:39:35
  Author: grazzolini
Revision: 538448

upgpkg: lib32-libxi 1.7.10-2

Rebuild for new xorgproto

Modified:
  lib32-libxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:37:10 UTC (rev 538447)
+++ PKGBUILD2019-12-19 21:39:35 UTC (rev 538448)
@@ -4,12 +4,12 @@
 _pkgbasename=libxi
 pkgname=lib32-$_pkgbasename
 pkgver=1.7.10
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Input extension library (32-bit)"
 arch=('x86_64')
 url="https://xorg.freedesktop.org;
-depends=('lib32-libxext' 'lib32-libxfixes' 'inputproto' $_pkgbasename)
-makedepends=('pkgconfig' 'xorg-util-macros' gcc-multilib automake)
+depends=('lib32-libxext' 'lib32-libxfixes' $_pkgbasename)
+makedepends=('pkgconfig' 'xorgproto' 'xorg-util-macros' gcc-multilib automake)
 license=('custom')
 source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
 sha256sums=('36a30d8f6383a72e7ce060298b4b181fd298bc3a135c8e201b7ca847f5f81061'


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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:36:58
  Author: felixonmars
Revision: 538446

upgpkg: git-annex 7.20191218-1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:33:55 UTC (rev 538445)
+++ PKGBUILD2019-12-19 21:36:58 UTC (rev 538446)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=git-annex
-pkgver=7.20191114
-pkgrel=26
+pkgver=7.20191218
+pkgrel=1
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:37:10
  Author: felixonmars
Revision: 538447

archrelease: copy trunk to community-x86_64

Added:
  git-annex/repos/community-x86_64/PKGBUILD
(from rev 538446, git-annex/trunk/PKGBUILD)
Deleted:
  git-annex/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:36:58 UTC (rev 538446)
+++ PKGBUILD2019-12-19 21:37:10 UTC (rev 538447)
@@ -1,48 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=git-annex
-pkgver=7.20191114
-pkgrel=26
-pkgdesc="Manage files with git, without checking their contents into git"
-url="https://git-annex.branchable.com/;
-license=("AGPL3")
-arch=('x86_64')
-depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
- 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
- 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
- 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
- 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
- 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
- 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
- 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
- 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
- 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
- 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
- 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
- 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
- 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
- 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
- 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
- 'haskell-unix-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
- 'haskell-utf8-string' 'haskell-uuid' 'haskell-vector' 'haskell-wai' 
'haskell-wai-extra'
- 'haskell-warp' 'haskell-warp-tls' 'haskell-yesod' 'haskell-yesod-core'
- 'haskell-yesod-form' 'haskell-yesod-static')
-makedepends=('chrpath' 'ghc')
-source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd git-annex
-
-  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
-  -i Makefile
-  make GHC="ghc -dynamic" BUILDER=./Setup -j1
-}
-
-package() {
-  cd git-annex
-  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
-
-  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
-}

Copied: git-annex/repos/community-x86_64/PKGBUILD (from rev 538446, 
git-annex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 21:37:10 UTC (rev 538447)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20191218
+pkgrel=1
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 

[arch-commits] Commit in kcptun/repos/community-x86_64 (6 files)

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:33:55
  Author: felixonmars
Revision: 538445

archrelease: copy trunk to community-x86_64

Added:
  kcptun/repos/community-x86_64/PKGBUILD
(from rev 538444, kcptun/trunk/PKGBUILD)
  kcptun/repos/community-x86_64/kcptun-server@.service
(from rev 538444, kcptun/trunk/kcptun-server@.service)
  kcptun/repos/community-x86_64/kcptun@.service
(from rev 538444, kcptun/trunk/kcptun@.service)
Deleted:
  kcptun/repos/community-x86_64/PKGBUILD
  kcptun/repos/community-x86_64/kcptun-server@.service
  kcptun/repos/community-x86_64/kcptun@.service

+
 PKGBUILD   |   92 +++
 kcptun-server@.service |   22 +--
 kcptun@.service|   26 ++---
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:33:41 UTC (rev 538444)
+++ PKGBUILD2019-12-19 21:33:55 UTC (rev 538445)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Kasei Wang 
-
-pkgname=kcptun
-pkgver=20191218
-pkgrel=1
-pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
-arch=('x86_64')
-url="https://github.com/xtaci/kcptun;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xtaci/kcptun/archive/v$pkgver.tar.gz;
-'kcptun@.service' 'kcptun-server@.service')
-sha512sums=('b94683e552c143e94da45dc9eb99607547436ad62097577f918cb6de82b5a1e3a57e13be9c64e4fcef63b25ffbd7cf1379f1c6efd171a4f41627e4f23202ffa2'
-
'6fbe0bd687ec9927fe46484f97a0e1a7605c74af673d2a2257a41819bcbf8b704c1ab8b063993251fc3803fa3caf38b7bfc3cededbd7fe1b57c5e2d234c2e6f6'
-
'5526608f2f5056462813812436605d537a5da950d7d2b5b93dab1da443b25ebf15f69609d18ba1c318b0cc75fcc2a8e14f0d33ff7765035063dd89c041b1bd11')
-
-prepare() {
-  cd kcptun-$pkgver
-
-  mkdir -p .gopath/src/github.com/xtaci
-  ln -sf "$PWD" .gopath/src/github.com/xtaci/kcptun
-  export GOPATH="$PWD/.gopath:/usr/share/gocode"
-}
-
-build() {
-  cd "$srcdir"/kcptun-$pkgver/client
-  go build -o build/kcptun-client -ldflags "-X main.VERSION=$pkgver 
-extldflags=${LDFLAGS}" # -gccgoflags "$CFLAGS $LDFLAGS"
-
-  cd "$srcdir"/kcptun-$pkgver/server
-  go build -o build/kcptun-server -ldflags "-X main.VERSION=$pkgver 
-extldflags=${LDFLAGS}" # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd kcptun-$pkgver
-
-  install -Dm755 client/build/kcptun-client "$pkgdir"/usr/bin/kcptun-client
-  install -Dm755 server/build/kcptun-server "$pkgdir"/usr/bin/kcptun-server
-
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
-
-  install -dm755 "$pkgdir"/etc/kcptun
-  install -Dm644 "$srcdir/kcptun@.service" 
"$pkgdir"/usr/lib/systemd/system/kcptun@.service
-  install -Dm644 "$srcdir/kcptun-server@.service" 
"$pkgdir"/usr/lib/systemd/system/kcptun-server@.service
-}

Copied: kcptun/repos/community-x86_64/PKGBUILD (from rev 538444, 
kcptun/trunk/PKGBUILD)
===
--- PKGBUILD    (rev 0)
+++ PKGBUILD2019-12-19 21:33:55 UTC (rev 538445)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Kasei Wang 
+
+pkgname=kcptun
+pkgver=20191219
+pkgrel=1
+pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
+arch=('x86_64')
+url="https://github.com/xtaci/kcptun;
+license=('MIT')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xtaci/kcptun/archive/v$pkgver.tar.gz;
+'kcptun@.service' 'kcptun-server@.service')
+sha512sums=('25b998f32110ab6eebcbf1844429750ae139bbdbca40f3adc4f3b8a51877c70faad2373ef0b76467cd1bfe2966f88f1be65e26067d71200e711fbf4975fe5e85'
+
'6fbe0bd687ec9927fe46484f97a0e1a7605c74af673d2a2257a41819bcbf8b704c1ab8b063993251fc3803fa3caf38b7bfc3cededbd7fe1b57c5e2d234c2e6f6'
+
'5526608f2f5056462813812436605d537a5da950d7d2b5b93dab1da443b25ebf15f69609d18ba1c318b0cc75fcc2a8e14f0d33ff7765035063dd89c041b1bd11')
+
+prepare() {
+  cd kcptun-$pkgver
+
+  mkdir -p .gopath/src/github.com/xtaci
+  ln -sf "$PWD" .gopath/src/github.com/xtaci/kcptun
+  export GOPATH="$PWD/.gopath:/usr/share/gocode"
+}
+
+build() {
+  cd "$srcdir"/kcptun-$pkgver/client
+  go build -o build/kcptun-client -ldflags "-X main.VERSION=$pkgver 
-extldflags=${LDFLAGS}" # -gccgoflags "$CFLAGS $LDFLAGS"
+
+  cd "$srcdir"/kcptun-$pkgver/server
+  go build -o build/kcptun-server -ldflags "-X main.VERSION=$pkgver 
-extldflags=${LDFLAGS}" # -gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd kcptun-$pkgver
+
+  install -Dm755 client/build/kcptun

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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:33:41
  Author: felixonmars
Revision: 538444

upgpkg: kcptun 20191219-1

Modified:
  kcptun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:31:50 UTC (rev 538443)
+++ PKGBUILD2019-12-19 21:33:41 UTC (rev 538444)
@@ -2,7 +2,7 @@
 # Contributor: Kasei Wang 
 
 pkgname=kcptun
-pkgver=20191218
+pkgver=20191219
 pkgrel=1
 pkgdesc="A Secure Tunnel Based On KCP with N:M Multiplexing"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/xtaci/kcptun/archive/v$pkgver.tar.gz;
 'kcptun@.service' 'kcptun-server@.service')
-sha512sums=('b94683e552c143e94da45dc9eb99607547436ad62097577f918cb6de82b5a1e3a57e13be9c64e4fcef63b25ffbd7cf1379f1c6efd171a4f41627e4f23202ffa2'
+sha512sums=('25b998f32110ab6eebcbf1844429750ae139bbdbca40f3adc4f3b8a51877c70faad2373ef0b76467cd1bfe2966f88f1be65e26067d71200e711fbf4975fe5e85'
 
'6fbe0bd687ec9927fe46484f97a0e1a7605c74af673d2a2257a41819bcbf8b704c1ab8b063993251fc3803fa3caf38b7bfc3cededbd7fe1b57c5e2d234c2e6f6'
 
'5526608f2f5056462813812436605d537a5da950d7d2b5b93dab1da443b25ebf15f69609d18ba1c318b0cc75fcc2a8e14f0d33ff7765035063dd89c041b1bd11')
 


[arch-commits] Commit in gost/repos/community-x86_64 (4 files)

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:31:50
  Author: felixonmars
Revision: 538443

archrelease: copy trunk to community-x86_64

Added:
  gost/repos/community-x86_64/LICENSE
(from rev 538442, gost/trunk/LICENSE)
  gost/repos/community-x86_64/PKGBUILD
(from rev 538442, gost/trunk/PKGBUILD)
Deleted:
  gost/repos/community-x86_64/LICENSE
  gost/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   44 
 PKGBUILD |   66 ++---
 2 files changed, 55 insertions(+), 55 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-12-19 21:31:40 UTC (rev 538442)
+++ LICENSE 2019-12-19 21:31:50 UTC (rev 538443)
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 郑锐
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-

Copied: gost/repos/community-x86_64/LICENSE (from rev 538442, 
gost/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-12-19 21:31:50 UTC (rev 538443)
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 郑锐
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:31:40 UTC (rev 538442)
+++ PKGBUILD2019-12-19 21:31:50 UTC (rev 538443)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=gost
-pkgver=2.8.1
-pkgrel=3
-pkgdesc="GO Simple Tunnel"
-arch=('x86_64')
-url="https://github.com/ginuerzh/gost;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ginuerzh/gost/archive/v$pkgver.tar.gz;
-LICENSE)
-sha512sums=('13f5bf502c5cdf94678fa9e7b4ecf8026370644fe500d8e117b4d56416a57f7eab48369c210762ac9a48ed229d52ec26e954241d526cc1e653e496bd8aa09fff'
-
'8815c27a49d747e90fbcbf03c6011a76b95bc72a6c963ee8df9490e6aba9a3f4f9895e6a7759988aef123160ef8a6d2de85e8fce01c5980f8744e212792ad07c')
-
-prepare() {
-  mkdir .gopath
-  ln -sf "$PWD/gost-$pkgver/vendor" .gopath/src
-  ln -s "$PWD/gost-$pkgver" .gopath/src/github.com/ginuerzh/gost
-}
-
-build() {
-  export GOPATH="$srcdir/.gopath"
-  cd gost-$pkgver/cmd/gost
-  go build -ldflags "-extldflags ${LDFLAGS}" # -gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd gost-$pkgver
-  install -Dm755 cmd/gost/gost "$pkgdir/usr/bin/gost"
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: gost/repos/community-x86_64/PKGBUILD (from rev 538442, 
gost/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 21:31:50 UTC (rev 538443)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=gost
+pkgver=2.8.2
+pkgrel=1
+pkgdesc="GO Simple Tunnel"
+arch=('x86_64')
+url="https://github.com/ginuerzh/gost;
+license=('MIT')

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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:31:40
  Author: felixonmars
Revision: 538442

upgpkg: gost 2.8.2-1

Modified:
  gost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:31:30 UTC (rev 538441)
+++ PKGBUILD2019-12-19 21:31:40 UTC (rev 538442)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=gost
-pkgver=2.8.1
-pkgrel=3
+pkgver=2.8.2
+pkgrel=1
 pkgdesc="GO Simple Tunnel"
 arch=('x86_64')
 url="https://github.com/ginuerzh/gost;
@@ -11,7 +11,7 @@
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ginuerzh/gost/archive/v$pkgver.tar.gz;
 LICENSE)
-sha512sums=('13f5bf502c5cdf94678fa9e7b4ecf8026370644fe500d8e117b4d56416a57f7eab48369c210762ac9a48ed229d52ec26e954241d526cc1e653e496bd8aa09fff'
+sha512sums=('84c7d5c059a450dde70e7bb2c6a9075bebac06b4e02a53dd03959d902f44483884e3111e2aa48bcef1fd747edc279f4a2fde8af25aa6dd859e32ebdb215ba12a'
 
'8815c27a49d747e90fbcbf03c6011a76b95bc72a6c963ee8df9490e6aba9a3f4f9895e6a7759988aef123160ef8a6d2de85e8fce01c5980f8744e212792ad07c')
 
 prepare() {


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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:31:21
  Author: felixonmars
Revision: 538440

upgpkg: jake 10.4.3-1

Modified:
  jake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 21:05:08 UTC (rev 538439)
+++ PKGBUILD2019-12-19 21:31:21 UTC (rev 538440)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=jake
-pkgver=10.4.2
+pkgver=10.4.3
 pkgrel=1
 pkgdesc="JavaScript build tool, similar to Make or Rake"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('b083ea980a873451ffae5b645c11666c615a4993bc4ed79d6b9be2a0681fdfc42bb144fd45505a150e757427c85f625f291c9ed2a778d8bd8498ee02783b')
+sha512sums=('aeb68845fd2e456414134aed8df4d06860353b0d65f4eff66f670d95e4ea4158a1c8cff75b6f95e52e596d7508907a6206765a78db6c09992adb4ef405d96b3d')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-12-19 Thread Felix Yan via arch-commits
Date: Thursday, December 19, 2019 @ 21:31:30
  Author: felixonmars
Revision: 538441

archrelease: copy trunk to community-any

Added:
  jake/repos/community-any/PKGBUILD
(from rev 538440, jake/trunk/PKGBUILD)
Deleted:
  jake/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:31:21 UTC (rev 538440)
+++ PKGBUILD2019-12-19 21:31:30 UTC (rev 538441)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=jake
-pkgver=10.4.2
-pkgrel=1
-pkgdesc="JavaScript build tool, similar to Make or Rake"
-arch=('any')
-url="https://jakejs.com;
-license=('Apache')
-depends=('nodejs')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('b083ea980a873451ffae5b645c11666c615a4993bc4ed79d6b9be2a0681fdfc42bb144fd45505a150e757427c85f625f291c9ed2a778d8bd8498ee02783b')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-}

Copied: jake/repos/community-any/PKGBUILD (from rev 538440, jake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 21:31:30 UTC (rev 538441)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=jake
+pkgver=10.4.3
+pkgrel=1
+pkgdesc="JavaScript build tool, similar to Make or Rake"
+arch=('any')
+url="https://jakejs.com;
+license=('Apache')
+depends=('nodejs')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('aeb68845fd2e456414134aed8df4d06860353b0d65f4eff66f670d95e4ea4158a1c8cff75b6f95e52e596d7508907a6206765a78db6c09992adb4ef405d96b3d')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+}


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

2019-12-19 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 19, 2019 @ 21:05:08
  Author: alucryd
Revision: 538439

archrelease: copy trunk to community-x86_64

Added:
  geary/repos/community-x86_64/PKGBUILD
(from rev 538438, geary/trunk/PKGBUILD)
Deleted:
  geary/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 21:05:00 UTC (rev 538438)
+++ PKGBUILD2019-12-19 21:05:08 UTC (rev 538439)
@@ -1,64 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: sebikul 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=geary
-pkgver=3.34.2
-pkgrel=1
-epoch=1
-pkgdesc='A lightweight email client for the GNOME desktop'
-arch=(x86_64)
-url=https://wiki.gnome.org/Apps/Geary
-license=(GPL3)
-depends=(
-  cairo
-  enchant
-  folks
-  gcr
-  gdk-pixbuf2
-  glib2
-  gmime
-  gnome-keyring
-  gnome-online-accounts
-  gspell
-  gtk3
-  iso-codes
-  libcanberra
-  libgee
-  libhandy
-  libnotify
-  libsecret
-  libsoup
-  libxml2
-  libytnef
-  pango
-  sqlite
-  webkit2gtk
-)
-makedepends=(
-  appstream-glib
-  git
-  gobject-introspection
-  meson
-  vala
-  yelp-tools
-)
-_commit=5b5d6d9440d845e22870f253a16a9e4a797cd5ea  # tags/3.34.2^0
-source=(git+https://gitlab.gnome.org/GNOME/geary.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd geary
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson geary build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-x86_64/PKGBUILD (from rev 538438, 
geary/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 21:05:08 UTC (rev 538439)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: sebikul 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=geary
+pkgver=3.34.2
+pkgrel=2
+epoch=1
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=(x86_64)
+url=https://wiki.gnome.org/Apps/Geary
+license=(GPL3)
+depends=(
+  cairo
+  enchant
+  folks
+  gcr
+  gdk-pixbuf2
+  glib2
+  gmime
+  org.freedesktop.secrets
+  gnome-online-accounts
+  gspell
+  gtk3
+  iso-codes
+  libcanberra
+  libgee
+  libhandy
+  libnotify
+  libsecret
+  libsoup
+  libxml2
+  libytnef
+  pango
+  sqlite
+  webkit2gtk
+)
+makedepends=(
+  appstream-glib
+  git
+  gobject-introspection
+  meson
+  vala
+  yelp-tools
+)
+source=(git+https://gitlab.gnome.org/GNOME/geary.git#tag=5b5d6d9440d845e22870f253a16a9e4a797cd5ea)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd geary
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson geary build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 19, 2019 @ 21:05:00
  Author: alucryd
Revision: 538438

upgpkg: geary 1:3.34.2-2

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 20:55:49 UTC (rev 538437)
+++ PKGBUILD2019-12-19 21:05:00 UTC (rev 538438)
@@ -4,7 +4,7 @@
 
 pkgname=geary
 pkgver=3.34.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='A lightweight email client for the GNOME desktop'
 arch=(x86_64)
@@ -18,7 +18,7 @@
   gdk-pixbuf2
   glib2
   gmime
-  gnome-keyring
+  org.freedesktop.secrets
   gnome-online-accounts
   gspell
   gtk3
@@ -43,9 +43,8 @@
   vala
   yelp-tools
 )
-_commit=5b5d6d9440d845e22870f253a16a9e4a797cd5ea  # tags/3.34.2^0
-source=(git+https://gitlab.gnome.org/GNOME/geary.git#commit=$_commit)
-sha256sums=('SKIP')
+source=(git+https://gitlab.gnome.org/GNOME/geary.git#tag=5b5d6d9440d845e22870f253a16a9e4a797cd5ea)
+sha256sums=(SKIP)
 
 pkgver() {
   cd geary
@@ -58,7 +57,7 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  DESTDIR="${pkgdir}" meson install -C build
 }
 
 # vim: ts=2 sw=2 et:


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:55:49
  Author: andyrtr
Revision: 538437

archrelease: copy trunk to community-testing-x86_64

Added:
  xonotic/repos/community-testing-x86_64/
  xonotic/repos/community-testing-x86_64/PKGBUILD
(from rev 538436, xonotic/trunk/PKGBUILD)
  xonotic/repos/community-testing-x86_64/xonotic-glx.desktop
(from rev 538436, xonotic/trunk/xonotic-glx.desktop)
  xonotic/repos/community-testing-x86_64/xonotic-sdl.desktop
(from rev 538436, xonotic/trunk/xonotic-sdl.desktop)

-+
 PKGBUILD|   64 ++
 xonotic-glx.desktop |   11 
 xonotic-sdl.desktop |   11 
 3 files changed, 86 insertions(+)

Copied: xonotic/repos/community-testing-x86_64/PKGBUILD (from rev 538436, 
xonotic/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-19 20:55:49 UTC (rev 538437)
@@ -0,0 +1,64 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Suhoverhov 
+# Contributor: Jookia <166...@gmail.com>
+pkgname=xonotic
+pkgver=0.8.2
+pkgrel=3
+pkgdesc="A free, fast-paced crossplatform first-person shooter"
+arch=('x86_64')
+url="http://xonotic.org;
+license=('GPL')
+depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm'
+ 'libxxf86vm' 'sdl2' 'libpng>=1.4.0' 'xonotic-data' 
'hicolor-icon-theme'
+ 'gtk-update-icon-cache' 'desktop-file-utils')
+makedepends=('unzip' 'mesa' 'xorgproto')
+source=("http://dl.xonotic.org/xonotic-${pkgver}-source.zip;
+"xonotic-glx.desktop"
+"xonotic-sdl.desktop")
+sha512sums=('1a803f3ebd2e1c3a2000e6b7a6ec0ab3a64c92a9c7b41c329a5054a51bb624a790a84bd6b3a344a59f3bd7bf18feecec0b39e2ddfc116c52ad85d22731a0fba0'
+
'2e06d588d68d629a9690b4dd3372c7ad77b240afcd86cf0cdf2de15548d3feaa0e446df1a29339be4593d23bfcf389930bdd1d7021f1e2558d70bb15e28646bd'
+
'963273811453f713ab70f5d12b918c1513a9a7995cd1d2572f0b9060d945391bf7db4ae04ae586531ecf3a088f837803a66ac267d9285928d8b2e82c98b7158b')
+
+build() {
+  # compile Xonotic-flavored fteqcc
+  #make -C Xonotic/source/fteqcc
+
+  # compile QuakeC game code
+  #( cd Xonotic/source/qcsrc/server && ../../fteqcc/fteqcc.bin -O3 -Ono-c 
-Ono-cs )
+  #( cd Xonotic/source/qcsrc/client && ../../fteqcc/fteqcc.bin -O3 -Ono-c 
-Ono-cs )
+  #( cd Xonotic/source/qcsrc/menu && ../../fteqcc/fteqcc.bin -O3 -Ono-c 
-Ono-cs )
+
+  # compile engine
+   make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" 
DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 cl-release
+   make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" 
DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 sdl-release
+   make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" 
DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 sv-release
+
+  cd $srcdir/Xonotic/source/d0_blind_id
+  sh autogen.sh
+  ./configure --prefix=/usr --disable-rijndael
+  make
+}
+
+package() {
+   cd $srcdir/Xonotic
+
+   # binaries
+   install -Dm755 source/darkplaces/darkplaces-dedicated 
$pkgdir/usr/bin/xonotic-dedicated
+   install -Dm755 source/darkplaces/darkplaces-glx 
$pkgdir/usr/bin/xonotic-glx
+   install -Dm755 source/darkplaces/darkplaces-sdl 
$pkgdir/usr/bin/xonotic-sdl
+
+   # convenience files
+   mkdir -p $pkgdir/usr/share/applications
+   install -Dm644 $srcdir/*.desktop -t $pkgdir/usr/share/applications
+
+  for size in 16 22 24 32 48 64 128 256 512; do
+install -Dm644 $srcdir/Xonotic/misc/logos/icons_png/xonotic_${size}.png \
+  "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/xonotic.png"
+  done
+
+  # crypto stuff
+  cd $srcdir/Xonotic/source/d0_blind_id
+  make DESTDIR=$pkgdir install
+}
+
+# vim: ts=2:sw=2 et:

Copied: xonotic/repos/community-testing-x86_64/xonotic-glx.desktop (from rev 
538436, xonotic/trunk/xonotic-glx.desktop)
===
--- community-testing-x86_64/xonotic-glx.desktop
(rev 0)
+++ community-testing-x86_64/xonotic-glx.desktop2019-12-19 20:55:49 UTC 
(rev 538437)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+Version=2.5
+Encoding=UTF-8
+Name=Xonotic (GLX)
+Comment=a free open-source first person shooter
+Icon=xonotic
+Exec=/usr/bin/xonotic-glx
+Terminal=false
+StartupNotify=false
+Categories=Game;

Copied: xonotic/repos/community-testing-x86_64/xonotic-sdl.desktop (from rev 
538436, xonotic/trunk/xonotic-sdl.desktop)
===
--- community-testing-x86_64/xonotic-sdl.desktop
(rev 0)
+++ community-testing-x86_64/xonotic-sdl.desktop2019-12-19 20:55:49 UTC 
(rev 538437)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+Version=2.5
+Encoding=UTF-8
+Name=Xonotic (SDL)

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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:55:40
  Author: andyrtr
Revision: 538436

upgpkg: xonotic 0.8.2-3: don't depend on libxxf86dga; makedepend on xorgproto

Modified:
  xonotic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 20:25:54 UTC (rev 538435)
+++ PKGBUILD2019-12-19 20:55:40 UTC (rev 538436)
@@ -3,15 +3,15 @@
 # Contributor: Jookia <166...@gmail.com>
 pkgname=xonotic
 pkgver=0.8.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A free, fast-paced crossplatform first-person shooter"
 arch=('x86_64')
 url="http://xonotic.org;
 license=('GPL')
-depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm' 
'libxxf86dga'
+depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm'
  'libxxf86vm' 'sdl2' 'libpng>=1.4.0' 'xonotic-data' 
'hicolor-icon-theme'
  'gtk-update-icon-cache' 'desktop-file-utils')
-makedepends=('unzip' 'mesa')
+makedepends=('unzip' 'mesa' 'xorgproto')
 source=("http://dl.xonotic.org/xonotic-${pkgver}-source.zip;
 "xonotic-glx.desktop"
 "xonotic-sdl.desktop")


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

2019-12-19 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 19, 2019 @ 20:51:54
  Author: alucryd
Revision: 371941

archrelease: copy trunk to staging-x86_64

Added:
  x264/repos/staging-x86_64/
  x264/repos/staging-x86_64/PKGBUILD
(from rev 371940, x264/trunk/PKGBUILD)

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

Copied: x264/repos/staging-x86_64/PKGBUILD (from rev 371940, 
x264/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 20:51:54 UTC (rev 371941)
@@ -0,0 +1,62 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: damir 
+# Contributor: Paul Mattal 
+
+pkgname=x264
+pkgver=0.159.r2991.1771b55
+pkgrel=1
+epoch=3
+pkgdesc='Open Source H264/AVC video encoder'
+arch=(x86_64)
+url=https://www.videolan.org/developers/x264.html
+license=(GPL)
+depends=(
+  liblsmash.so
+)
+makedepends=(
+  git
+  l-smash
+  nasm
+)
+provides=(
+  libx264
+  libx264.so
+)
+conflicts=(
+  libx264
+  libx264-10bit
+  libx264-all
+)
+replaces=(
+  libx264
+  libx264-10bit
+  libx264-all
+)
+source=(git+https://code.videolan.org/videolan/x264.git#commit=1771b556ee45207f8711744ccbd5d42a3949b14c)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd x264
+
+  ./version.sh | grep X264_POINTVER | sed -r 's/^#define X264_POINTVER 
"([0-9]+\.[0-9]+)\.([0-9]+) (.*)"$/\1.r\2.\3/'
+}
+
+build() {
+  cd x264
+
+  ./configure \
+--prefix=/usr \
+--enable-shared \
+--enable-pic \
+--enable-lto \
+--disable-avs
+  make
+}
+
+package() {
+  make -C x264 DESTDIR="${pkgdir}" install-cli install-lib-shared
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Maxime Gauduin via arch-commits
Date: Thursday, December 19, 2019 @ 20:51:47
  Author: alucryd
Revision: 371940

upgpkg: x264 3:0.159.r2991.1771b55-1

Modified:
  x264/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 20:09:16 UTC (rev 371939)
+++ PKGBUILD2019-12-19 20:51:47 UTC (rev 371940)
@@ -5,8 +5,8 @@
 # Contributor: Paul Mattal 
 
 pkgname=x264
-pkgver=0.157.r2980.34c06d1
-pkgrel=2
+pkgver=0.159.r2991.1771b55
+pkgrel=1
 epoch=3
 pkgdesc='Open Source H264/AVC video encoder'
 arch=(x86_64)
@@ -34,7 +34,7 @@
   libx264-10bit
   libx264-all
 )
-source=(git+https://code.videolan.org/videolan/x264.git#commit=34c06d1c17ad968fbdda153cb772f77ee31b3095)
+source=(git+https://code.videolan.org/videolan/x264.git#commit=1771b556ee45207f8711744ccbd5d42a3949b14c)
 sha256sums=(SKIP)
 
 pkgver() {


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:25:54
  Author: andyrtr
Revision: 538435

archrelease: copy trunk to community-testing-x86_64

Added:
  allegro4/repos/community-testing-x86_64/
  allegro4/repos/community-testing-x86_64/LICENSE
(from rev 538434, allegro4/trunk/LICENSE)
  allegro4/repos/community-testing-x86_64/PKGBUILD
(from rev 538434, allegro4/trunk/PKGBUILD)

--+
 LICENSE  |   26 ++
 PKGBUILD |   39 +++
 2 files changed, 65 insertions(+)

Copied: allegro4/repos/community-testing-x86_64/LICENSE (from rev 538434, 
allegro4/trunk/LICENSE)
===
--- community-testing-x86_64/LICENSE(rev 0)
+++ community-testing-x86_64/LICENSE2019-12-19 20:25:54 UTC (rev 538435)
@@ -0,0 +1,26 @@
+===
+ Copyright 
+===
+
+   Allegro is gift-ware. It was created by a number of people working in 
+   cooperation, and is given to you freely as a gift. You may use, modify, 
+   redistribute, and generally hack it about in any way you like, and you do 
+   not have to give us anything in return. However, if you like this product 
+   you are encouraged to thank us by making a return gift to the Allegro 
+   community. This could be by writing an add-on package, providing a useful 
+   bug report, making an improvement to the library, or perhaps just 
+   releasing the sources of your program so that other people can learn from 
+   them. If you redistribute parts of this code or make a game using it, it 
+   would be nice if you mentioned Allegro somewhere in the credits, but you 
+   are not required to do this. We trust you not to abuse our generosity.
+
+   Disclaimer:
+
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+   SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+   FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+

Copied: allegro4/repos/community-testing-x86_64/PKGBUILD (from rev 538434, 
allegro4/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-19 20:25:54 UTC (rev 538435)
@@ -0,0 +1,39 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: arjan 
+
+pkgname=allegro4
+pkgver=4.4.3.1
+pkgrel=2
+pkgdesc='Portable library aimed at video game and multimedia programming 
(legacy version)'
+arch=(x86_64)
+url='https://liballeg.org/'
+license=(custom)
+depends=(jack libxcursor libxpm libxxf86vm)
+makedepends=(cmake glu libpng mesa ninja)
+options=(staticlibs)
+source=("https://github.com/liballeg/allegro5/releases/download/$pkgver/allegro-$pkgver.tar.gz;
+LICENSE)
+sha256sums=('ec19dbc9a021244582b4819b3583ee594b50141f9fcf6944a4ed8069cbf8d4d4'
+'76b9cd52eab572495e8b3b64313d8e40c0359135491e981321d15c3e707ba41a')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "$srcdir/allegro-$pkgver" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWANT_DOCS=OFF \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 "allegro-$pkgver/misc/allegro.m4" \
+"$pkgdir/usr/share/aclocal/allegro.m4"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:25:46
  Author: andyrtr
Revision: 538434

upgpkg: allegro4 4.4.3.1-2: don't depend on libxxf86dga

Modified:
  allegro4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 20:23:56 UTC (rev 538433)
+++ PKGBUILD2019-12-19 20:25:46 UTC (rev 538434)
@@ -5,12 +5,12 @@
 
 pkgname=allegro4
 pkgver=4.4.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Portable library aimed at video game and multimedia programming 
(legacy version)'
 arch=(x86_64)
 url='https://liballeg.org/'
 license=(custom)
-depends=(jack libxcursor libxpm libxxf86dga libxxf86vm)
+depends=(jack libxcursor libxpm libxxf86vm)
 makedepends=(cmake glu libpng mesa ninja)
 options=(staticlibs)
 
source=("https://github.com/liballeg/allegro5/releases/download/$pkgver/allegro-$pkgver.tar.gz;


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:23:56
  Author: andyrtr
Revision: 538433

archrelease: copy trunk to community-testing-x86_64

Added:
  allegro/repos/community-testing-x86_64/
  allegro/repos/community-testing-x86_64/PKGBUILD
(from rev 538432, allegro/trunk/PKGBUILD)

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

Copied: allegro/repos/community-testing-x86_64/PKGBUILD (from rev 538432, 
allegro/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-19 20:23:56 UTC (rev 538433)
@@ -0,0 +1,39 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: arjan 
+
+pkgname=allegro
+pkgver=5.2.5
+pkgrel=2
+pkgdesc='Portable library mainly aimed at video game and multimedia 
programming'
+arch=(x86_64)
+url='https://liballeg.org/'
+license=(custom)
+makedepends=(cmake git glu libtheora mesa-libgl ninja opusfile pandoc 
xorgproto)
+depends=(dumb gtk2 jack libgl libpulse libtheora libwebp libxpm opusfile 
physfs)
+source=("git+https://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver.0;)
+md5sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "../${pkgname}${pkgver%%.*}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWANT_DOCS_HTML=OFF \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 "${pkgname}${pkgver%%.*}/LICENSE.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Fix man path
+  mv -v -f "$pkgdir/usr/man" "$pkgdir/usr/share/man"
+}
+
+# getver: liballeg.org/a5docs/trunk
+# vim: ts=2 sw=2 et:


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:23:46
  Author: andyrtr
Revision: 538432

upgpkg: allegro 5.2.5-2: don't depend on libxxf86dga; makedepend on xorgproto

Modified:
  allegro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 19:25:14 UTC (rev 538431)
+++ PKGBUILD2019-12-19 20:23:46 UTC (rev 538432)
@@ -5,13 +5,13 @@
 
 pkgname=allegro
 pkgver=5.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Portable library mainly aimed at video game and multimedia 
programming'
 arch=(x86_64)
 url='https://liballeg.org/'
 license=(custom)
-makedepends=(cmake git glu libtheora mesa-libgl ninja opusfile pandoc)
-depends=(dumb gtk2 jack libgl libpulse libtheora libwebp libxpm libxxf86dga 
opusfile physfs)
+makedepends=(cmake git glu libtheora mesa-libgl ninja opusfile pandoc 
xorgproto)
+depends=(dumb gtk2 jack libgl libpulse libtheora libwebp libxpm opusfile 
physfs)
 
source=("git+https://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver.0;)
 md5sums=('SKIP')
 


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:08:53
  Author: andyrtr
Revision: 371938

upgpkg: xorg-xdpyinfo 1.3.2-3: don't depend on libxxf86dga and libdmx; 
makedepend on xorgproto

Modified:
  xorg-xdpyinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 19:44:01 UTC (rev 371937)
+++ PKGBUILD2019-12-19 20:08:53 UTC (rev 371938)
@@ -3,13 +3,13 @@
 
 pkgname=xorg-xdpyinfo
 pkgver=1.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Display information utility for X"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libx11' 'libxext' 'libxtst' 'libxxf86vm' 'libxxf86dga' 'libxrender' 
'libxcomposite' 'libxinerama' 'libdmx')
-makedepends=('xorg-util-macros')
+depends=('libx11' 'libxext' 'libxtst' 'libxxf86vm' 'libxrender' 
'libxcomposite' 'libxinerama')
+makedepends=('xorg-util-macros' 'xorgproto')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xdpyinfo-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('2c9097c13778c7a7fe5a9b3ee04b28512ff6028231eca91ecdf6104c742be470678920d37a4f540fece7e39dccbea34802271f359ab80618027b2856c8912e7d'


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 20:09:16
  Author: andyrtr
Revision: 371939

archrelease: copy trunk to testing-x86_64

Added:
  xorg-xdpyinfo/repos/testing-x86_64/
  xorg-xdpyinfo/repos/testing-x86_64/PKGBUILD
(from rev 371938, xorg-xdpyinfo/trunk/PKGBUILD)

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

Copied: xorg-xdpyinfo/repos/testing-x86_64/PKGBUILD (from rev 371938, 
xorg-xdpyinfo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-19 20:09:16 UTC (rev 371939)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xdpyinfo
+pkgver=1.3.2
+pkgrel=3
+pkgdesc="Display information utility for X"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxext' 'libxtst' 'libxxf86vm' 'libxrender' 
'libxcomposite' 'libxinerama')
+makedepends=('xorg-util-macros' 'xorgproto')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xdpyinfo-${pkgver}.tar.bz2{,.sig})
+sha512sums=('2c9097c13778c7a7fe5a9b3ee04b28512ff6028231eca91ecdf6104c742be470678920d37a4f540fece7e39dccbea34802271f359ab80618027b2856c8912e7d'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xdpyinfo-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xdpyinfo-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:43:55
  Author: andyrtr
Revision: 371936

upgpkg: xawtv 3.106-2: don't depend on libxxf86dga; makedepend on xorgproto

Modified:
  xawtv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 19:41:07 UTC (rev 371935)
+++ PKGBUILD2019-12-19 19:43:55 UTC (rev 371936)
@@ -4,13 +4,13 @@
 
 pkgname=xawtv
 pkgver=3.106
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple Xaw-based TV program which uses the bttv driver or 
video4linux"
 arch=('x86_64')
 url="https://git.linuxtv.org/xawtv3.git;
 license=('GPL')
-depends=('aalib' 'v4l-utils' 'libxv' 'libxxf86dga' 'libxrandr' 'libgl' 'libdv' 
'zvbi' 'libxinerama' 'lirc' 'libxft' 'libxaw' 'xorg-fonts-misc' 'libxxf86vm')
-makedepends=('mesa' git)
+depends=('aalib' 'v4l-utils' 'libxv' 'libxrandr' 'libgl' 'libdv' 'zvbi' 
'libxinerama' 'lirc' 'libxft' 'libxaw' 'xorg-fonts-misc' 'libxxf86vm')
+makedepends=('mesa' 'git' 'xorgproto')
 _commit=ba4af2bde7af8de383070598be28b5500694d14c  # tags/xawtv-3.106^0
 source=("git+https://git.linuxtv.org/cgit.cgi/xawtv3.git#commit=$_commit;)
 md5sums=('SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:44:01
  Author: andyrtr
Revision: 371937

archrelease: copy trunk to testing-x86_64

Added:
  xawtv/repos/testing-x86_64/
  xawtv/repos/testing-x86_64/PKGBUILD
(from rev 371936, xawtv/trunk/PKGBUILD)

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

Copied: xawtv/repos/testing-x86_64/PKGBUILD (from rev 371936, 
xawtv/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-19 19:44:01 UTC (rev 371937)
@@ -0,0 +1,37 @@
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+# Contributor: Jason Chu 
+
+pkgname=xawtv
+pkgver=3.106
+pkgrel=2
+pkgdesc="A simple Xaw-based TV program which uses the bttv driver or 
video4linux"
+arch=('x86_64')
+url="https://git.linuxtv.org/xawtv3.git;
+license=('GPL')
+depends=('aalib' 'v4l-utils' 'libxv' 'libxrandr' 'libgl' 'libdv' 'zvbi' 
'libxinerama' 'lirc' 'libxft' 'libxaw' 'xorg-fonts-misc' 'libxxf86vm')
+makedepends=('mesa' 'git' 'xorgproto')
+_commit=ba4af2bde7af8de383070598be28b5500694d14c  # tags/xawtv-3.106^0
+source=("git+https://git.linuxtv.org/cgit.cgi/xawtv3.git#commit=$_commit;)
+md5sums=('SKIP')
+
+pkgver() {
+  cd xawtv3
+  git describe --tags | sed 's/^xawtv-//;s/-/+/g'
+}
+
+prepare() {
+  cd xawtv3
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}/xawtv3"
+  ./configure --prefix=/usr --disable-motif --disable-quicktime
+  make
+}
+
+package() {
+  cd "${srcdir}/xawtv3"
+  make DESTDIR="${pkgdir}" install
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:41:07
  Author: andyrtr
Revision: 371935

archrelease: copy trunk to testing-x86_64

Added:
  mplayer/repos/testing-x86_64/
  mplayer/repos/testing-x86_64/PKGBUILD
(from rev 371934, mplayer/trunk/PKGBUILD)
  mplayer/repos/testing-x86_64/include-samba-4.0.patch
(from rev 371934, mplayer/trunk/include-samba-4.0.patch)
  mplayer/repos/testing-x86_64/mplayer.desktop
(from rev 371934, mplayer/trunk/mplayer.desktop)
  mplayer/repos/testing-x86_64/revert-icl-fixes.patch
(from rev 371934, mplayer/trunk/revert-icl-fixes.patch)

-+
 PKGBUILD|  114 ++
 include-samba-4.0.patch |   12 
 mplayer.desktop |   22 
 revert-icl-fixes.patch  |   66 ++
 4 files changed, 214 insertions(+)

Copied: mplayer/repos/testing-x86_64/PKGBUILD (from rev 371934, 
mplayer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-19 19:41:07 UTC (rev 371935)
@@ -0,0 +1,114 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Hugo Doria 
+
+pkgbase=mplayer
+pkgname=('mplayer' 'mencoder')
+pkgver=38139
+pkgrel=3
+pkgdesc='Media player for Linux'
+url='http://www.mplayerhq.hu/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('xorgproto' 'libxxf86vm' 'libmad' 'libxinerama' 'libmng' 'libxss'
+ 'smbclient' 'aalib' 'jack' 'libcaca' 'faac' 'faad2' 'lirc' 'libxv'
+ 'libxvmc' 'enca' 'libdca' 'a52dec' 'libvpx' 'unzip' 'mesa'
+ 'live-media' 'yasm' 'git' 'mpg123' 'ladspa' 'libcdio' 'zlib'
+ 'libcdio-paranoia' 'subversion' 'x264' 'libx264.so' 'rtmpdump'
+ 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg' 'giflib' 'libgif.so'
+ 'libbs2b' 'fribidi' 'opus' 'libvorbis' 'libvorbis.so' 'gsm'
+ 'libpulse' 'alsa-lib' 'glibc' 'libass' 'libass.so' 'libjpeg'
+ 'libpng' 'libogg' 'libtheora' 'libbluray' 'libbluray.so'
+ 'xvidcore' 'libxvidcore.so' 'ncurses' 'libncursesw.so'
+ 'fontconfig' 'freetype2' 'libx11' 'libxext' 'libvdpau' 'libgl'
+ 'lame' 'desktop-file-utils' 'ttf-font' 'openal' 'speex'
+ 'libmpeg2')
+options=('!emptydirs')
+source=(${pkgbase}-${pkgver}::"svn://svn.mplayerhq.hu/mplayer/trunk#revision=${pkgver}"
+mplayer.desktop
+include-samba-4.0.patch
+revert-icl-fixes.patch)
+sha512sums=('SKIP'
+
'd3c5cbf0035279c6f307e4e225473d7b77f9b56566537a26aa694e68446b9e3240333296da627ad5af83b04cc8f476d1a3f8c05e4cf81cd6e77153feb4ed74bc'
+
'9debb8c58b996f6c716c22c86c720bf9dc49b4ee9b76c57519f791667ae1de2cc6f5add878fbf4ac02c6b6fd1865e1bcfa6105e75de4bf7ec596c338ed0cae99'
+
'0cae0b26d3d97fd4c962962c43a481de20335369cbca406cadfc9bda1a0608b32f5374e76c477cb9a85bda83a568a1ed17126df224ae61579d0a402c1824aea8')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 < "../include-samba-4.0.patch"
+  patch -p0 < "../revert-icl-fixes.patch"
+  # https://bugs.archlinux.org/task/62050
+  sed -E "s|(#include )|#include \n\1|g" -i 
stream/stream_smb.c
+  ./version.sh
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  export CFLAGS="${CFLAGS/-march=x86-64/}"
+  export CFLAGS="${CFLAGS/-mtune=generic/}"
+  export LDFLAGS="${LDFLAGS/,O1/}"
+  export LDFLAGS="${LDFLAGS/,--sort-common/}"
+  ./configure --prefix=/usr \
+--enable-runtime-cpudetection \
+--disable-gui \
+--disable-arts \
+--disable-liblzo \
+--disable-libdv \
+--disable-musepack \
+--disable-esd \
+--disable-mga \
+--disable-ass-internal \
+--disable-cdparanoia \
+--disable-ffmpeg_a \
+--enable-xvmc \
+--enable-radio \
+--enable-radio-capture \
+--enable-smb \
+--language=all \
+--confdir=/etc/mplayer \
+--extra-cflags="${CFLAGS} ${CPPFLAGS}" \
+--extra-ldflags="${LDFLAGS}"
+  [[ "${CARCH}" = "i686" ]] && sed 's|-march=i486|-march=i686|g' -i config.mak
+  make
+}
+
+package_mplayer() {
+  pkgdesc='Media player for Linux'
+  backup=('etc/mplayer/codecs.conf'
+  'etc/mplayer/input.conf')
+  depends=('desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
+   'lirc' 'x264' 'libmng' 'libdca' 'aalib' 'libxinerama' 'smbclient'
+   'jack' 'libmad' 'libcaca' 'libxxf86vm' 'faac' 'faad2'
+   'libxv' 'libxvmc' 'mpg123' 'libx11' 'libcdio' 'libcdio-paranoia'
+   'rtmpdump' 'libdvdread' 'libdvdnav' 'ffmpeg' 'libbs2b' 'alsa-lib'
+   'giflib' 'libgif.so' 'glibc' 'libass' 'libass.so' 'zlib' 'libjpeg'
+   'libpng' 'libpulse' 'libogg' 'fribidi' 'libtheora' 'libvorbis'
+   'libvorbis.so' 'libbluray' 'libbluray.so' 'xvidcore'
+   'libxvidcore.so' 'ncurses' 'libncursesw.so' 'fontconfig' 'freetype2'
+   'libxext' 

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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:40:55
  Author: andyrtr
Revision: 371934

upgpkg: mplayer 38139-3: don't depend on libxxf86dga; makedepend on xorgproto

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 19:10:04 UTC (rev 371933)
+++ PKGBUILD2019-12-19 19:40:55 UTC (rev 371934)
@@ -6,12 +6,12 @@
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
 pkgver=38139
-pkgrel=2
+pkgrel=3
 pkgdesc='Media player for Linux'
 url='http://www.mplayerhq.hu/'
 arch=('x86_64')
 license=('GPL')
-makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'libmng' 
'libxss'
+makedepends=('xorgproto' 'libxxf86vm' 'libmad' 'libxinerama' 'libmng' 'libxss'
  'smbclient' 'aalib' 'jack' 'libcaca' 'faac' 'faad2' 'lirc' 'libxv'
  'libxvmc' 'enca' 'libdca' 'a52dec' 'libvpx' 'unzip' 'mesa'
  'live-media' 'yasm' 'git' 'mpg123' 'ladspa' 'libcdio' 'zlib'
@@ -79,7 +79,7 @@
   'etc/mplayer/input.conf')
   depends=('desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
'lirc' 'x264' 'libmng' 'libdca' 'aalib' 'libxinerama' 'smbclient'
-   'jack' 'libmad' 'libcaca' 'libxxf86dga' 'libxxf86vm' 'faac' 'faad2'
+   'jack' 'libmad' 'libcaca' 'libxxf86vm' 'faac' 'faad2'
'libxv' 'libxvmc' 'mpg123' 'libx11' 'libcdio' 'libcdio-paranoia'
'rtmpdump' 'libdvdread' 'libdvdnav' 'ffmpeg' 'libbs2b' 'alsa-lib'
'giflib' 'libgif.so' 'glibc' 'libass' 'libass.so' 'zlib' 'libjpeg'


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:25:14
  Author: andyrtr
Revision: 538431

archrelease: copy trunk to community-testing-x86_64

Added:
  light-locker/repos/community-testing-x86_64/
  light-locker/repos/community-testing-x86_64/PKGBUILD
(from rev 538430, light-locker/trunk/PKGBUILD)
  
light-locker/repos/community-testing-x86_64/light-locker-libsystemd-login.patch
(from rev 538430, light-locker/trunk/light-locker-libsystemd-login.patch)

-+
 PKGBUILD|   48 ++
 light-locker-libsystemd-login.patch |   47 +
 2 files changed, 95 insertions(+)

Copied: light-locker/repos/community-testing-x86_64/PKGBUILD (from rev 538430, 
light-locker/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-19 19:25:14 UTC (rev 538431)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=light-locker
+pkgver=1.8.0
+pkgrel=3
+pkgdesc='A simple session locker for LightDM'
+arch=('x86_64')
+url='https://github.com/the-cavalry/light-locker'
+license=('GPL2')
+depends=('dbus-glib' 'gtk3' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool' 'xorgproto')
+source=("https://github.com/the-cavalry/light-locker/releases/download/v${pkgver}/light-locker-${pkgver}.tar.bz2;
+'light-locker-libsystemd-login.patch')
+sha256sums=('3c76106f40a8efe67b462061e4c798e3e501b54356c8cdc1b67a3022d9d7dba1'
+'d5a4e9a97b491c17aa059863020ed5cbfaaf0c79e05130d36a58959438c85cf3')
+
+prepare() {
+  cd light-locker-${pkgver}
+
+#  patch -Np1 -i ../light-locker-libsystemd-login.patch
+}
+
+build () {
+  cd light-locker-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--with-x \
+--with-dpms-ext \
+--with-mit-ext \
+--with-xf86gamma-ext \
+--with-systemd \
+--without-console-kit \
+--without-upower \
+--disable-schemas-compile \
+--disable-static
+  make
+}
+
+package() {
+  cd light-locker-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
light-locker/repos/community-testing-x86_64/light-locker-libsystemd-login.patch 
(from rev 538430, light-locker/trunk/light-locker-libsystemd-login.patch)
===
--- community-testing-x86_64/light-locker-libsystemd-login.patch
(rev 0)
+++ community-testing-x86_64/light-locker-libsystemd-login.patch
2019-12-19 19:25:14 UTC (rev 538431)
@@ -0,0 +1,47 @@
+diff -rupN light-locker-1.6.0.orig/configure light-locker-1.6.0/configure
+--- light-locker-1.6.0.orig/configure  2016-04-29 20:03:27.914972019 +0200
 light-locker-1.6.0/configure   2016-04-29 20:04:32.217760286 +0200
+@@ -17558,12 +17558,12 @@ if test -n "$SYSTEMD_CFLAGS"; then
+ pkg_cv_SYSTEMD_CFLAGS="$SYSTEMD_CFLAGS"
+  elif test -n "$PKG_CONFIG"; then
+ if test -n "$PKG_CONFIG" && \
+-{ { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libsystemd-login\""; } >&5
+-  ($PKG_CONFIG --exists --print-errors "libsystemd-login") 2>&5
++{ { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libsystemd\""; } >&5
++  ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5
+   ac_status=$?
+   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+   test $ac_status = 0; }; then
+-  pkg_cv_SYSTEMD_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-login" 2>/dev/null`
++  pkg_cv_SYSTEMD_CFLAGS=`$PKG_CONFIG --cflags "libsystemd" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes
+ else
+   pkg_failed=yes
+@@ -17575,12 +17575,12 @@ if test -n "$SYSTEMD_LIBS"; then
+ pkg_cv_SYSTEMD_LIBS="$SYSTEMD_LIBS"
+  elif test -n "$PKG_CONFIG"; then
+ if test -n "$PKG_CONFIG" && \
+-{ { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libsystemd-login\""; } >&5
+-  ($PKG_CONFIG --exists --print-errors "libsystemd-login") 2>&5
++{ { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"libsystemd\""; } >&5
++  ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5
+   ac_status=$?
+   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+   test $ac_status = 0; }; then
+-  pkg_cv_SYSTEMD_LIBS=`$PKG_CONFIG --libs "libsystemd-login" 2>/dev/null`
++  pkg_cv_SYSTEMD_LIBS=`$PKG_CONFIG --libs "libsystemd" 2>/dev/null`
+ test "x$?" != "x0" && pkg_failed=yes
+ else
+   pkg_failed=yes
+@@ -17601,9 +17601,9 @@ else
+ _pkg_short_errors_supported=no
+ fi
+ if test $_pkg_short_errors_supported = yes; then
+-  SYSTEMD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors 
--cflags --libs "libsystemd-login" 2>&1`
++  

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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:25:03
  Author: andyrtr
Revision: 538430

upgpkg: light-locker 1.8.0-3: don't depend on libxxf86misc; makedepend on 
xorgproto

Modified:
  light-locker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 19:04:43 UTC (rev 538429)
+++ PKGBUILD2019-12-19 19:25:03 UTC (rev 538430)
@@ -2,13 +2,13 @@
 
 pkgname=light-locker
 pkgver=1.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A simple session locker for LightDM'
 arch=('x86_64')
 url='https://github.com/the-cavalry/light-locker'
 license=('GPL2')
-depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss')
-makedepends=('gnome-common' 'intltool')
+depends=('dbus-glib' 'gtk3' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool' 'xorgproto')
 
source=("https://github.com/the-cavalry/light-locker/releases/download/v${pkgver}/light-locker-${pkgver}.tar.bz2;
 'light-locker-libsystemd-login.patch')
 sha256sums=('3c76106f40a8efe67b462061e4c798e3e501b54356c8cdc1b67a3022d9d7dba1'


[arch-commits] Commit in (libdmx libxkbui xf86-input-mouse)

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 19:10:04
  Author: andyrtr
Revision: 371933

remove dead packages

Deleted:
  libdmx/
  libxkbui/
  xf86-input-mouse/


[arch-commits] Commit in xorg-server/repos (8 files)

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:58:40
  Author: andyrtr
Revision: 371909

archrelease: copy trunk to staging-x86_64

Added:
  xorg-server/repos/staging-x86_64/
  xorg-server/repos/staging-x86_64/0001-v2-FS-58644.patch
(from rev 371908, xorg-server/trunk/0001-v2-FS-58644.patch)
  xorg-server/repos/staging-x86_64/0002-fix-libshadow-2.patch
(from rev 371908, xorg-server/trunk/0002-fix-libshadow-2.patch)
  xorg-server/repos/staging-x86_64/PKGBUILD
(from rev 371908, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/staging-x86_64/xorg-server.install
(from rev 371908, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/staging-x86_64/xserver-autobind-hotplug.patch
(from rev 371908, xorg-server/trunk/xserver-autobind-hotplug.patch)
  xorg-server/repos/staging-x86_64/xvfb-run
(from rev 371908, xorg-server/trunk/xvfb-run)
  xorg-server/repos/staging-x86_64/xvfb-run.1
(from rev 371908, xorg-server/trunk/xvfb-run.1)

+
 0001-v2-FS-58644.patch |   57 +++
 0002-fix-libshadow-2.patch |   30 +++
 PKGBUILD   |  201 ++
 xorg-server.install|   18 ++
 xserver-autobind-hotplug.patch |  293 +++
 xvfb-run   |  200 ++
 xvfb-run.1 |  282 +
 7 files changed, 1081 insertions(+)

Copied: xorg-server/repos/staging-x86_64/0001-v2-FS-58644.patch (from rev 
371908, xorg-server/trunk/0001-v2-FS-58644.patch)
===
--- staging-x86_64/0001-v2-FS-58644.patch   (rev 0)
+++ staging-x86_64/0001-v2-FS-58644.patch   2019-12-19 18:58:40 UTC (rev 
371909)
@@ -0,0 +1,57 @@
+From 17584285d296acaa80f131ca0e8b75eff675962b Mon Sep 17 00:00:00 2001
+From: fafryd 
+Date: Sun, 20 May 2018 14:30:43 +0200
+Subject: [PATCH] v2 FS#58644
+
+---
+ hw/xfree86/common/meson.build | 13 +
+ hw/xfree86/meson.build| 12 +++-
+ 2 files changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/hw/xfree86/common/meson.build b/hw/xfree86/common/meson.build
+index 514999ff6..0eff6e488 100644
+--- a/hw/xfree86/common/meson.build
 b/hw/xfree86/common/meson.build
+@@ -1,3 +1,16 @@
++if get_option('suid_wrapper')
++x_sh = configure_file(
++input: '../Xorg.sh.in',
++output: 'Xorg',
++configuration: conf_data,
++)
++install_data(
++   x_sh,
++   install_mode: 'rwxr-xr-x',
++   install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++)
++endif
++
+ srcs_xorg_common = [
+ 'xf86fbBus.c',
+ 'xf86noBus.c',
+diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build
+index cacf56d4c..d1295d404 100644
+--- a/hw/xfree86/meson.build
 b/hw/xfree86/meson.build
+@@ -145,11 +145,13 @@ if get_option('suid_wrapper')
+ install_dir: get_option('libexecdir'),
+ # install_mode: ['r-sr-xr-x', 0, 0],
+ )
+-configure_file(
+-input: 'Xorg.sh.in',
+-output: 'Xorg',
+-configuration: conf_data,
+-install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++ meson.add_install_script(
++'sh', '-c',
++'chmod u+s @0@@1@/@2@'.format(
++'${DESTDIR}',
++join_paths(get_option('prefix'), get_option('libexecdir')),
++'Xorg.wrap'
++)
+ )
+ endif
+ 
+-- 
+2.17.0
+

Copied: xorg-server/repos/staging-x86_64/0002-fix-libshadow-2.patch (from rev 
371908, xorg-server/trunk/0002-fix-libshadow-2.patch)
===
--- staging-x86_64/0002-fix-libshadow-2.patch   (rev 0)
+++ staging-x86_64/0002-fix-libshadow-2.patch   2019-12-19 18:58:40 UTC (rev 
371909)
@@ -0,0 +1,30 @@
+From a530b6e8923f2b9153a773c8618a1e2f41619288 Mon Sep 17 00:00:00 2001
+From: Adam Jackson 
+Date: Tue, 30 Apr 2019 18:01:27 -0400
+Subject: [PATCH] meson: Fix libshadow.so linkage
+
+Don't link against fb, it's the driver's responsibility to load that
+first. Underlinking like this is unpleasant but this matches what
+autotools does.
+
+Fixes: xorg/xserver#540
+---
+ hw/xfree86/dixmods/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build
+index 835d23215..0562b630f 100644
+--- a/hw/xfree86/dixmods/meson.build
 b/hw/xfree86/dixmods/meson.build
+@@ -34,7 +34,7 @@ shared_module(
+ c_args: xorg_c_args,
+ dependencies: common_dep,
+ link_whole: libxserver_miext_shadow,
+-link_with: [fb, e],
++link_with: e,
+ 
+ install: true,
+ install_dir: module_dir,
+-- 
+2.22.0
+

Copied: xorg-server/repos/staging-x86_64/PKGBUILD (from rev 371908, 
xorg-server/trunk/PKGBUILD)
===
--- 

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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:58:21
  Author: andyrtr
Revision: 371908

upgpkg: xorg-server 1.20.6-2: remove old Xdmx part

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:53:54 UTC (rev 371907)
+++ PKGBUILD2019-12-19 18:58:21 UTC (rev 371908)
@@ -2,10 +2,10 @@
 # Maintainer: Jan de Groot 
 
 pkgbase=xorg-server
-pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest'
+pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xvfb' 
'xorg-server-xnest'
  'xorg-server-xwayland' 'xorg-server-common' 'xorg-server-devel')
 pkgver=1.20.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('custom')
 groups=('xorg')
@@ -12,7 +12,7 @@
 url="https://xorg.freedesktop.org;
 makedepends=('xorgproto' 'pixman' 'libx11' 'mesa' 'mesa-libgl' 'xtrans'
  'libxkbfile' 'libxfont2' 'libpciaccess' 'libxv'
- 'libxmu' 'libxrender' 'libxi' 'libxaw' 'libdmx' 'libxtst' 
'libxres'
+ 'libxmu' 'libxrender' 'libxi' 'libxaw' 'libxtst' 'libxres'
  'xorg-xkbcomp' 'xorg-util-macros' 'xorg-font-util' 'libepoxy'
  'xcb-util' 'xcb-util-image' 'xcb-util-renderutil' 'xcb-util-wm' 
'xcb-util-keysyms'
  'libxshmfence' 'libunwind' 'systemd' 'wayland-protocols' 
'egl-wayland' 'meson') # 'git')
@@ -60,7 +60,6 @@
   arch-meson ${pkgbase}-$pkgver build \
 -D os_vendor="Arch Linux" \
 -D ipv6=true \
--D dmx=true \
 -D xvfb=true \
 -D xnest=true \
 -D xcsecurity=true \
@@ -149,7 +148,8 @@
 
 package_xorg-server-xvfb() {
   pkgdesc="Virtual framebuffer X server"
-  depends=(libxfont2 libunwind pixman xorg-server-common xorg-xauth libgl 
nettle)
+  depends=(libxfont2 libunwind pixman xorg-server-common xorg-xauth 
+   libgl nettle libtirpc)
 
   _install fakeinstall/usr/bin/Xvfb
   _install fakeinstall/usr/share/man/man1/Xvfb.1
@@ -172,18 +172,6 @@
   install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" 
"${pkgbase}-${pkgver}"/COPYING
 }
 
-package_xorg-server-xdmx() {
-  pkgdesc="Distributed Multihead X Server and utilities"
-  depends=(libxfont2 libxi libxaw libxrender libdmx libxfixes
-   pixman xorg-server-common nettle)
-
-  _install fakeinstall/usr/bin/{Xdmx,dmx*,vdltodmx,xdmxconfig}
-  _install fakeinstall/usr/share/man/man1/{Xdmx,dmxtodmx,vdltodmx,xdmxconfig}.1
-
-  # license
-  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" 
"${pkgbase}-${pkgver}"/COPYING
-}
-
 package_xorg-server-xwayland() {
   pkgdesc="run X clients under wayland"
   depends=(libxfont2 libepoxy libunwind systemd-libs libgl pixman 
xorg-server-common


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

2019-12-19 Thread Gaëtan Bisson via arch-commits
Date: Thursday, December 19, 2019 @ 18:53:54
  Author: bisson
Revision: 371907

archrelease: copy trunk to extra-x86_64

Added:
  mutt/repos/extra-x86_64/PKGBUILD
(from rev 371906, mutt/trunk/PKGBUILD)
Deleted:
  mutt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 18:52:53 UTC (rev 371906)
+++ PKGBUILD2019-12-19 18:53:54 UTC (rev 371907)
@@ -1,47 +0,0 @@
-# Contributor: tobias [tobias [at] archlinux.org]
-# Maintainer: Gaetan Bisson 
-
-pkgname=mutt
-pkgver=1.13.1
-pkgrel=1
-pkgdesc='Small but very powerful text-based mail client'
-url='http://www.mutt.org/'
-license=('GPL')
-backup=('etc/Muttrc')
-arch=('x86_64')
-optdepends=('smtp-forwarder: to send mail')
-depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
-validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
-source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('1fb5951292e57428974d1fd8e60ae83292743f74e440efea3659ae83593e875d'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-gpgme \
-   --enable-pop \
-   --enable-imap \
-   --enable-smtp \
-   --enable-hcache \
-   --enable-sidebar \
-   --enable-autocrypt \
-   --with-curses=/usr \
-   --with-gss=/usr \
-   --with-ssl=/usr \
-   --with-sqlite3 \
-   --with-sasl \
-   --with-idn2 \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   rm "${pkgdir}"/etc/mime.types{,.dist}
-   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
-}

Copied: mutt/repos/extra-x86_64/PKGBUILD (from rev 371906, mutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 18:53:54 UTC (rev 371907)
@@ -0,0 +1,47 @@
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('2f73931bff408ef64b829f595b0daf83ac818d154458952040b70482e6769e74'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --enable-autocrypt \
+   --with-curses=/usr \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sqlite3 \
+   --with-sasl \
+   --with-idn2 \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}


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

2019-12-19 Thread Gaëtan Bisson via arch-commits
Date: Thursday, December 19, 2019 @ 18:52:53
  Author: bisson
Revision: 371906

upstream update

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:46:21 UTC (rev 371905)
+++ PKGBUILD2019-12-19 18:52:53 UTC (rev 371906)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=mutt
-pkgver=1.13.1
+pkgver=1.13.2
 pkgrel=1
 pkgdesc='Small but very powerful text-based mail client'
 url='http://www.mutt.org/'
@@ -13,7 +13,7 @@
 depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
 validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
 source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('1fb5951292e57428974d1fd8e60ae83292743f74e440efea3659ae83593e875d'
+sha256sums=('2f73931bff408ef64b829f595b0daf83ac818d154458952040b70482e6769e74'
 'SKIP')
 
 build() {


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:48:11
  Author: andyrtr
Revision: 538427

upgpkg: libxpresent 1.0.0-2: makedepend on xorgproto

Modified:
  libxpresent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:15:14 UTC (rev 538426)
+++ PKGBUILD2019-12-19 18:48:11 UTC (rev 538427)
@@ -3,13 +3,13 @@
 
 pkgname=libxpresent
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="X Present Extension library"
 arch=('x86_64')
 url="https://gitlab.freedesktop.org/xorg/lib/libxpresent;
 license=('custom')
-depends=('xorgproto' 'libxfixes' 'libxrandr')
-makedepends=('xorg-util-macros')
+depends=('libxfixes' 'libxrandr')
+makedepends=('xorg-util-macros' 'xorgproto')
 
source=("https://gitlab.freedesktop.org/xorg/lib/${pkgname}/-/archive/libXpresent-${pkgver}/${pkgname}-libXpresent-${pkgver}.tar.gz;)
 sha256sums=('86e280867498906ae617faaeefbef10e1ef7d367102950b497503a348bd5daab')
 


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:48:17
  Author: andyrtr
Revision: 538428

archrelease: copy trunk to community-staging-x86_64

Added:
  libxpresent/repos/community-staging-x86_64/
  libxpresent/repos/community-staging-x86_64/PKGBUILD
(from rev 538427, libxpresent/trunk/PKGBUILD)

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

Copied: libxpresent/repos/community-staging-x86_64/PKGBUILD (from rev 538427, 
libxpresent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-19 18:48:17 UTC (rev 538428)
@@ -0,0 +1,32 @@
+# Maintainer: Brad Fanella 
+# Contributor: Andrey Vihrov 
+
+pkgname=libxpresent
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="X Present Extension library"
+arch=('x86_64')
+url="https://gitlab.freedesktop.org/xorg/lib/libxpresent;
+license=('custom')
+depends=('libxfixes' 'libxrandr')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=("https://gitlab.freedesktop.org/xorg/lib/${pkgname}/-/archive/libXpresent-${pkgver}/${pkgname}-libXpresent-${pkgver}.tar.gz;)
+sha256sums=('86e280867498906ae617faaeefbef10e1ef7d367102950b497503a348bd5daab')
+
+build() {
+   cd "${pkgname}-libXpresent-${pkgver}"
+
+   ./autogen.sh --prefix=/usr --disable-dependency-tracking
+   
+   # -Wl,--as-needed should come before all libraries
+   sed -i -e '/\$CC/s/-shared/\0 -Wl,--as-needed/' libtool
+
+   make
+}
+
+package() {
+   cd "${pkgname}-libXpresent-${pkgver}"
+   
+   make DESTDIR="${pkgdir}" install
+   install -D -m 0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:46:21
  Author: andyrtr
Revision: 371905

archrelease: copy trunk to staging-x86_64

Added:
  libxp/repos/staging-x86_64/
  libxp/repos/staging-x86_64/PKGBUILD
(from rev 371904, libxp/trunk/PKGBUILD)
  libxp/repos/staging-x86_64/add-proto-files.patch
(from rev 371904, libxp/trunk/add-proto-files.patch)

---+
 PKGBUILD  |   38 +
 add-proto-files.patch | 1408 
 2 files changed, 1446 insertions(+)

Copied: libxp/repos/staging-x86_64/PKGBUILD (from rev 371904, 
libxp/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 18:46:21 UTC (rev 371905)
@@ -0,0 +1,38 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxp
+pkgver=1.0.3
+pkgrel=3
+pkgdesc="X11 X Print Library"
+arch=('x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXp-${pkgver}.tar.bz2{,.sig}
+add-proto-files.patch)
+license=('custom')
+sha512sums=('502a2500ec0f519dae69ac035bf93c65c47e3bc301604aacb350e90043455f3485626194db45208e5521300b282843825e08b7f7c412a7497ffa02f5f1560c8d'
+'SKIP'
+
'e2b1bf1d132f2a219901feb8bf4eaf08cd795521bb6175627a82d745d422ad189c6d24ad221d5804b5e32f5798ad75bc733bb94b3505453fa57c5b7951bdece8')
+validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') #  "Matt Turner 
"
+
+prepare() {
+  cd libXp-${pkgver}
+  patch -Np1 -i ../add-proto-files.patch
+  autoreconf -vfi
+}
+
+build() {
+  cd libXp-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libXp-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: libxp/repos/staging-x86_64/add-proto-files.patch (from rev 371904, 
libxp/trunk/add-proto-files.patch)
===
--- staging-x86_64/add-proto-files.patch(rev 0)
+++ staging-x86_64/add-proto-files.patch2019-12-19 18:46:21 UTC (rev 
371905)
@@ -0,0 +1,1408 @@
+diff -up libXp-1.0.3/configure.ac.jx libXp-1.0.3/configure.ac
+--- libXp-1.0.3/configure.ac.jx2015-02-21 17:04:36.0 -0500
 libXp-1.0.3/configure.ac   2018-07-05 12:11:30.955684590 -0400
+@@ -42,11 +42,12 @@ XORG_DEFAULT_OPTIONS
+ AC_PROG_LIBTOOL
+ 
+ # Check for X and print proto
+-PKG_CHECK_MODULES(XPRINT, [x11 >= 1.6] xext xextproto xau printproto)
++PKG_CHECK_MODULES(XPRINT, [x11 >= 1.6] xext xextproto xau)
+ 
+ AC_CONFIG_FILES([Makefile
+src/Makefile
+man/Makefile
++ printproto.pc
+xp.pc])
+ AC_OUTPUT
+ 
+diff -up libXp-1.0.3/include/X11/extensions/Print.h.jx 
libXp-1.0.3/include/X11/extensions/Print.h
+--- libXp-1.0.3/include/X11/extensions/Print.h.jx  2018-07-05 
12:11:12.281385412 -0400
 libXp-1.0.3/include/X11/extensions/Print.h 2018-07-05 12:11:12.281385412 
-0400
+@@ -0,0 +1,552 @@
++/* $Xorg: Print.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */
++/**
++ 
**
++ **
++ ** File: Print.h
++ **
++ ** Description:  Definitions needed by the server, library, and
++ **   clients.  Subportion restricted to library and
++ **   clients.
++ **
++ **   Server, Library, Client portion has:
++ **  o All sz_* defines
++ **  o Revision and Name defines
++ **  o Common defines and constants (e.g. Keywords, Masks)
++ **  o Extension version structure
++ **
++ **   Library and client subportion has:
++ **  o Convience Marcos
++ **  o Client side data structures
++ **  o Client side event structures (non wire)
++ **  o Library function prototypes
++ **  o some private stuff denoted with _whatever
++ **
++ **   Printstr.h for server and library, but NOT clients.
++ **
++ 
**
++ **
++ ** (c) Copyright 1996 Hewlett-Packard Company
++ ** (c) Copyright 1996 International Business Machines Corp.
++ ** (c) Copyright 1996 Sun Microsystems, Inc.
++ ** (c) Copyright 1996 Novell, Inc.
++ ** (c) Copyright 1996 Digital Equipment Corp.
++ ** (c) Copyright 1996 Fujitsu Limited
++ ** (c) Copyright 1996 Hitachi, Ltd.
++ **
++ ** Permission is hereby granted, free of charge, to any person obtaining a 
copy
++ ** of this software and associated documentation files (the "Software"), to 
deal
++ ** in the 

[arch-commits] Commit in libxp/trunk (PKGBUILD add-proto-files.patch)

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:46:13
  Author: andyrtr
Revision: 371904

upgpkg: libxp 1.0.3-3: makedepend on xorgproto

Added:
  libxp/trunk/add-proto-files.patch
Modified:
  libxp/trunk/PKGBUILD

---+
 PKGBUILD  |   22 
 add-proto-files.patch | 1408 
 2 files changed, 1423 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:06:08 UTC (rev 371903)
+++ PKGBUILD2019-12-19 18:46:13 UTC (rev 371904)
@@ -3,27 +3,35 @@
 
 pkgname=libxp
 pkgver=1.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="X11 X Print Library"
 arch=('x86_64')
 license=('custom')
 url="https://xorg.freedesktop.org/;
-depends=('libxext' 'printproto')
-makedepends=('xorg-util-macros')
-source=(${url}/releases/individual/lib/libXp-${pkgver}.tar.bz2{,.sig})
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXp-${pkgver}.tar.bz2{,.sig}
+add-proto-files.patch)
 license=('custom')
 
sha512sums=('502a2500ec0f519dae69ac035bf93c65c47e3bc301604aacb350e90043455f3485626194db45208e5521300b282843825e08b7f7c412a7497ffa02f5f1560c8d'
-'SKIP')
+'SKIP'
+
'e2b1bf1d132f2a219901feb8bf4eaf08cd795521bb6175627a82d745d422ad189c6d24ad221d5804b5e32f5798ad75bc733bb94b3505453fa57c5b7951bdece8')
 validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') #  "Matt Turner 
"
 
+prepare() {
+  cd libXp-${pkgver}
+  patch -Np1 -i ../add-proto-files.patch
+  autoreconf -vfi
+}
+
 build() {
-  cd "${srcdir}/libXp-${pkgver}"
+  cd libXp-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/libXp-${pkgver}"
+  cd libXp-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"

Added: add-proto-files.patch
===
--- add-proto-files.patch   (rev 0)
+++ add-proto-files.patch   2019-12-19 18:46:13 UTC (rev 371904)
@@ -0,0 +1,1408 @@
+diff -up libXp-1.0.3/configure.ac.jx libXp-1.0.3/configure.ac
+--- libXp-1.0.3/configure.ac.jx2015-02-21 17:04:36.0 -0500
 libXp-1.0.3/configure.ac   2018-07-05 12:11:30.955684590 -0400
+@@ -42,11 +42,12 @@ XORG_DEFAULT_OPTIONS
+ AC_PROG_LIBTOOL
+ 
+ # Check for X and print proto
+-PKG_CHECK_MODULES(XPRINT, [x11 >= 1.6] xext xextproto xau printproto)
++PKG_CHECK_MODULES(XPRINT, [x11 >= 1.6] xext xextproto xau)
+ 
+ AC_CONFIG_FILES([Makefile
+src/Makefile
+man/Makefile
++ printproto.pc
+xp.pc])
+ AC_OUTPUT
+ 
+diff -up libXp-1.0.3/include/X11/extensions/Print.h.jx 
libXp-1.0.3/include/X11/extensions/Print.h
+--- libXp-1.0.3/include/X11/extensions/Print.h.jx  2018-07-05 
12:11:12.281385412 -0400
 libXp-1.0.3/include/X11/extensions/Print.h 2018-07-05 12:11:12.281385412 
-0400
+@@ -0,0 +1,552 @@
++/* $Xorg: Print.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */
++/**
++ 
**
++ **
++ ** File: Print.h
++ **
++ ** Description:  Definitions needed by the server, library, and
++ **   clients.  Subportion restricted to library and
++ **   clients.
++ **
++ **   Server, Library, Client portion has:
++ **  o All sz_* defines
++ **  o Revision and Name defines
++ **  o Common defines and constants (e.g. Keywords, Masks)
++ **  o Extension version structure
++ **
++ **   Library and client subportion has:
++ **  o Convience Marcos
++ **  o Client side data structures
++ **  o Client side event structures (non wire)
++ **  o Library function prototypes
++ **  o some private stuff denoted with _whatever
++ **
++ **   Printstr.h for server and library, but NOT clients.
++ **
++ 
**
++ **
++ ** (c) Copyright 1996 Hewlett-Packard Company
++ ** (c) Copyright 1996 International Business Machines Corp.
++ ** (c) Copyright 1996 Sun Microsystems, Inc.
++ ** (c) Copyright 1996 Novell, Inc.
++ ** (c) Copyright 1996 Digital Equipment Corp.
++ ** (c) Copyright 1996 Fujitsu Limited
++ ** (c) Copyright 1996 Hitachi, Ltd.
++ **
++ ** Permission is hereby granted, free of charge, to any person obtaining a 
copy
++ ** of this software and associated documentation files (the "Software"), to 
deal
++ ** in the Software without restriction, including without limitation the 
rights
++ ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
++ ** 

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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:06:03
  Author: andyrtr
Revision: 371902

upgpkg: libxxf86vm 1.1.4-3: makedepend on xorgproto

Modified:
  libxxf86vm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:04:23 UTC (rev 371901)
+++ PKGBUILD2019-12-19 18:06:03 UTC (rev 371902)
@@ -3,13 +3,13 @@
 
 pkgname=libxxf86vm
 pkgver=1.1.4
-pkgrel=2
+pkgrel=3
 pkgdesc="X11 XFree86 video mode extension library"
 arch=('x86_64')
 license=('custom')
 url="https://xorg.freedesktop.org/;
-depends=('libxext' 'xf86vidmodeproto')
-makedepends=('xorg-util-macros')
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXxf86vm-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('c5f92d86e143db02ebb36bcd25618acaa2cb2831f5a23800a06dd431cd73b6702d95de8fe7407ce626336bf614c288d5256f4d87ea7781fad2ab6c517cbf09e0'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:06:08
  Author: andyrtr
Revision: 371903

archrelease: copy trunk to staging-x86_64

Added:
  libxxf86vm/repos/staging-x86_64/
  libxxf86vm/repos/staging-x86_64/PKGBUILD
(from rev 371902, libxxf86vm/trunk/PKGBUILD)

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

Copied: libxxf86vm/repos/staging-x86_64/PKGBUILD (from rev 371902, 
libxxf86vm/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 18:06:08 UTC (rev 371903)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxxf86vm
+pkgver=1.1.4
+pkgrel=3
+pkgdesc="X11 XFree86 video mode extension library"
+arch=('x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXxf86vm-${pkgver}.tar.bz2{,.sig})
+sha512sums=('c5f92d86e143db02ebb36bcd25618acaa2cb2831f5a23800a06dd431cd73b6702d95de8fe7407ce626336bf614c288d5256f4d87ea7781fad2ab6c517cbf09e0'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd libXxf86vm-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package()
+{
+  cd libXxf86vm-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:04:23
  Author: andyrtr
Revision: 371901

archrelease: copy trunk to staging-x86_64

Added:
  libxv/repos/staging-x86_64/
  libxv/repos/staging-x86_64/PKGBUILD
(from rev 371900, libxv/trunk/PKGBUILD)

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

Copied: libxv/repos/staging-x86_64/PKGBUILD (from rev 371900, 
libxv/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 18:04:23 UTC (rev 371901)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxv
+pkgver=1.0.11
+pkgrel=3
+pkgdesc="X11 Video extension library"
+arch=('x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libxext')
+makedepends=('xorgproto')
+source=(${url}/releases/individual/lib/libXv-${pkgver}.tar.bz2{,.sig})
+sha256sums=('d26c13eac99ac4504c532e8e76a1c8e4bd526471eb8a0a4ff2a88db60cb0b088'
+'SKIP')
+validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd "${srcdir}/libXv-${pkgver}"
+  ./configure --prefix=/usr --disable-static 
+  make
+}
+
+package() {
+  cd "${srcdir}/libXv-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:04:19
  Author: andyrtr
Revision: 371900

upgpkg: libxv 1.0.11-3: makedepend on xorgproto

Modified:
  libxv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:02:58 UTC (rev 371899)
+++ PKGBUILD2019-12-19 18:04:19 UTC (rev 371900)
@@ -3,13 +3,13 @@
 
 pkgname=libxv
 pkgver=1.0.11
-pkgrel=2
+pkgrel=3
 pkgdesc="X11 Video extension library"
 arch=('x86_64')
 license=('custom')
 url="https://xorg.freedesktop.org/;
-depends=('libxext' 'videoproto')
-makedepends=('pkgconfig')
+depends=('libxext')
+makedepends=('xorgproto')
 source=(${url}/releases/individual/lib/libXv-${pkgver}.tar.bz2{,.sig})
 sha256sums=('d26c13eac99ac4504c532e8e76a1c8e4bd526471eb8a0a4ff2a88db60cb0b088'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:02:54
  Author: andyrtr
Revision: 371898

upgpkg: libxtst 1.2.3-3: makedepend on xorgproto

Modified:
  libxtst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 18:00:18 UTC (rev 371897)
+++ PKGBUILD2019-12-19 18:02:54 UTC (rev 371898)
@@ -3,13 +3,13 @@
 
 pkgname=libxtst
 pkgver=1.2.3
-pkgrel=2
+pkgrel=3
 pkgdesc="X11 Testing -- Resource extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libxext' 'libxi' 'recordproto' 'inputproto' 'libxfixes')
-makedepends=('xorg-util-macros')
+depends=('libxext' 'libxi' 'libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2{,.sig})
 sha256sums=('4655498a1b8e844e3d6f21f3b2c4e2b571effb5fd83199d428a6ba7ea4bf5204'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:02:58
  Author: andyrtr
Revision: 371899

archrelease: copy trunk to staging-x86_64

Added:
  libxtst/repos/staging-x86_64/
  libxtst/repos/staging-x86_64/PKGBUILD
(from rev 371898, libxtst/trunk/PKGBUILD)

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

Copied: libxtst/repos/staging-x86_64/PKGBUILD (from rev 371898, 
libxtst/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 18:02:58 UTC (rev 371899)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxtst
+pkgver=1.2.3
+pkgrel=3
+pkgdesc="X11 Testing -- Resource extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxext' 'libxi' 'libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2{,.sig})
+sha256sums=('4655498a1b8e844e3d6f21f3b2c4e2b571effb5fd83199d428a6ba7ea4bf5204'
+'SKIP')
+validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd "${srcdir}/libXtst-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXtst-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:00:18
  Author: andyrtr
Revision: 371897

archrelease: copy trunk to staging-x86_64

Added:
  libxss/repos/staging-x86_64/
  libxss/repos/staging-x86_64/PKGBUILD
(from rev 371896, libxss/trunk/PKGBUILD)

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

Copied: libxss/repos/staging-x86_64/PKGBUILD (from rev 371896, 
libxss/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 18:00:18 UTC (rev 371897)
@@ -0,0 +1,31 @@
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libxss
+pkgver=1.2.3
+pkgrel=2
+pkgdesc="X11 Screen Saver extension library"
+arch=('x86_64')
+license=('custom')
+url="https://gitlab.freedesktop.org/xorg/lib/libxscrnsaver;
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=("https://xorg.freedesktop.org/releases/individual/lib/libXScrnSaver-${pkgver}.tar.bz2;
+   # 
"${url}/-/archive/libXScrnSaver-${pkgver}/libxscrnsaver-libXScrnSaver-${pkgver}.tar.bz2"
+)
+#https://gitlab.freedesktop.org/xorg/lib/libxscrnsaver/-/archive/libXScrnSaver-1.2.3/libxscrnsaver-libXScrnSaver-1.2.3.tar.bz2
+sha512sums=('7ea628324a11b25ee82c7b11c6bf98f37de219354de51c1e29467b5de422669ba1ab121f3b9dc674093c8f3960e93c5d5428122f5539092f79bc8451c768354a')
+
+build() {
+  cd libXScrnSaver-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libXScrnSaver-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 18:00:14
  Author: andyrtr
Revision: 371896

upgpkg: libxss 1.2.3-2: makedepend on xorgproto

Modified:
  libxss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:57:47 UTC (rev 371895)
+++ PKGBUILD2019-12-19 18:00:14 UTC (rev 371896)
@@ -3,13 +3,13 @@
 
 pkgname=libxss
 pkgver=1.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Screen Saver extension library"
 arch=('x86_64')
 license=('custom')
 url="https://gitlab.freedesktop.org/xorg/lib/libxscrnsaver;
-depends=('libxext' 'scrnsaverproto')
-makedepends=('xorg-util-macros')
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
 
source=("https://xorg.freedesktop.org/releases/individual/lib/libXScrnSaver-${pkgver}.tar.bz2;
# 
"${url}/-/archive/libXScrnSaver-${pkgver}/libxscrnsaver-libXScrnSaver-${pkgver}.tar.bz2"
 )


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:57:43
  Author: andyrtr
Revision: 371894

upgpkg: libxrender 0.9.10-3: makedepend on xorgproto

Modified:
  libxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:55:18 UTC (rev 371893)
+++ PKGBUILD2019-12-19 17:57:43 UTC (rev 371894)
@@ -2,13 +2,13 @@
 
 pkgname=libxrender
 pkgver=0.9.10
-pkgrel=2
+pkgrel=3
 pkgdesc="X Rendering Extension client library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libx11>=1.3.4' 'renderproto')
-makedepends=('pkgconfig')
+depends=('libx11')
+makedepends=('xorgproto')
 source=(${url}/releases/individual/lib/libXrender-${pkgver}.tar.bz2{,.sig})
 sha256sums=('c06d5979f86e64cabbde57c223938db0b939dff49fdb5a793a1d3d0396650949'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:57:47
  Author: andyrtr
Revision: 371895

archrelease: copy trunk to staging-x86_64

Added:
  libxrender/repos/staging-x86_64/
  libxrender/repos/staging-x86_64/PKGBUILD
(from rev 371894, libxrender/trunk/PKGBUILD)

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

Copied: libxrender/repos/staging-x86_64/PKGBUILD (from rev 371894, 
libxrender/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:57:47 UTC (rev 371895)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libxrender
+pkgver=0.9.10
+pkgrel=3
+pkgdesc="X Rendering Extension client library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorgproto')
+source=(${url}/releases/individual/lib/libXrender-${pkgver}.tar.bz2{,.sig})
+sha256sums=('c06d5979f86e64cabbde57c223938db0b939dff49fdb5a793a1d3d0396650949'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd libXrender-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd libXrender-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:55:14
  Author: andyrtr
Revision: 371892

upgpkg: libxrandr 1.5.2-2: makedepend on xorgproto

Modified:
  libxrandr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:47:30 UTC (rev 371891)
+++ PKGBUILD2019-12-19 17:55:14 UTC (rev 371892)
@@ -4,13 +4,13 @@
 
 pkgname=libxrandr
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 RandR extension library"
 arch=('x86_64')
 license=('custom')
 url="https://xorg.freedesktop.org/;
-depends=('libxext' 'libxrender' 'randrproto')
-makedepends=('xorg-util-macros')
+depends=('libxext' 'libxrender')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXrandr-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('fcd005f9839e7ef980607128a5d76d7b671cc2f5755949e03c569c500d7e987cb3f6932750ab8bf6e2c1086ec69dde09d5831f0c2098b9f9ad46be4f56db0d87'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:55:18
  Author: andyrtr
Revision: 371893

archrelease: copy trunk to staging-x86_64

Added:
  libxrandr/repos/staging-x86_64/
  libxrandr/repos/staging-x86_64/PKGBUILD
(from rev 371892, libxrandr/trunk/PKGBUILD)

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

Copied: libxrandr/repos/staging-x86_64/PKGBUILD (from rev 371892, 
libxrandr/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:55:18 UTC (rev 371893)
@@ -0,0 +1,33 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+# Contributor: Alexander Baldeck 
+
+pkgname=libxrandr
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="X11 RandR extension library"
+arch=('x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libxext' 'libxrender')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXrandr-${pkgver}.tar.bz2{,.sig})
+sha512sums=('fcd005f9839e7ef980607128a5d76d7b671cc2f5755949e03c569c500d7e987cb3f6932750ab8bf6e2c1086ec69dde09d5831f0c2098b9f9ad46be4f56db0d87'
+'SKIP')
+validpgpkeys=('10A6D91DA1B05BD29F6DEBAC0C74F35979C486BE') # Dave Airlie 
 
+validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+validpgpkeys+=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd libXrandr-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libXrandr-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:47:30
  Author: andyrtr
Revision: 371891

archrelease: copy trunk to staging-x86_64

Added:
  libxinerama/repos/staging-x86_64/
  libxinerama/repos/staging-x86_64/PKGBUILD
(from rev 371890, libxinerama/trunk/PKGBUILD)

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

Copied: libxinerama/repos/staging-x86_64/PKGBUILD (from rev 371890, 
libxinerama/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:47:30 UTC (rev 371891)
@@ -0,0 +1,28 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libxinerama
+pkgver=1.1.4
+pkgrel=2
+pkgdesc="X11 Xinerama extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=("${url}/releases/individual/lib/libXinerama-${pkgver}.tar.bz2")
+sha512sums=('cff777ad942614fbf6bc6d8529f399e62debf3ecbf6cc0694a94e38c022bf929ffd5636fb59f55533c394d89b23af3ea51fa5128927f12a85787e16239330f14')
+
+build() {
+  cd libXinerama-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libXinerama-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:47:25
  Author: andyrtr
Revision: 371890

upgpkg: libxinerama 1.1.4-2: makedepend on xorgproto

Modified:
  libxinerama/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:44:02 UTC (rev 371889)
+++ PKGBUILD2019-12-19 17:47:25 UTC (rev 371890)
@@ -4,13 +4,13 @@
 
 pkgname=libxinerama
 pkgver=1.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Xinerama extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libxext' 'xineramaproto')
-makedepends=('xorg-util-macros')
+depends=('libxext')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=("${url}/releases/individual/lib/libXinerama-${pkgver}.tar.bz2")
 
sha512sums=('cff777ad942614fbf6bc6d8529f399e62debf3ecbf6cc0694a94e38c022bf929ffd5636fb59f55533c394d89b23af3ea51fa5128927f12a85787e16239330f14')
 


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:43:57
  Author: andyrtr
Revision: 371888

upgpkg: libxi 1.7.10-2: makedepend on xorgproto

Modified:
  libxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:42:55 UTC (rev 371887)
+++ PKGBUILD2019-12-19 17:43:57 UTC (rev 371888)
@@ -3,12 +3,12 @@
 
 pkgname=libxi
 pkgver=1.7.10
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Input extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org;
-depends=('libxext' 'inputproto')
-makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake')
+depends=('libxext')
+makedepends=('xorg-util-macros' 'libxfixes' 'xorgproto')
 license=('custom')
 source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('591f0860bf5904897587c4990d6c852f3729a212d1ef390362d41242440e078221877c31db2232d5cc81727fe97f4e194b077f7de917e251e60641bbd06ee218'


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:44:02
  Author: andyrtr
Revision: 371889

archrelease: copy trunk to staging-x86_64

Added:
  libxi/repos/staging-x86_64/
  libxi/repos/staging-x86_64/PKGBUILD
(from rev 371888, libxi/trunk/PKGBUILD)

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

Copied: libxi/repos/staging-x86_64/PKGBUILD (from rev 371888, 
libxi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:44:02 UTC (rev 371889)
@@ -0,0 +1,32 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=libxi
+pkgver=1.7.10
+pkgrel=2
+pkgdesc="X11 Input extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org;
+depends=('libxext')
+makedepends=('xorg-util-macros' 'libxfixes' 'xorgproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig})
+sha512sums=('591f0860bf5904897587c4990d6c852f3729a212d1ef390362d41242440e078221877c31db2232d5cc81727fe97f4e194b077f7de917e251e60641bbd06ee218'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer
+validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+validpgpkeys+=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner 
"
+
+build() {
+  cd libXi-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXi-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:42:04
  Author: andyrtr
Revision: 371885

archrelease: copy trunk to staging-x86_64

Added:
  libxfont2/repos/staging-x86_64/
  libxfont2/repos/staging-x86_64/PKGBUILD
(from rev 371884, libxfont2/trunk/PKGBUILD)

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

Copied: libxfont2/repos/staging-x86_64/PKGBUILD (from rev 371884, 
libxfont2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:42:04 UTC (rev 371885)
@@ -0,0 +1,31 @@
+# Maintainer: Laurent Carlier 
+
+pkgname=libxfont2
+pkgver=2.0.4
+pkgrel=2
+pkgdesc="X11 font rasterisation library"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('freetype2' 'libfontenc')
+makedepends=('xorg-util-macros' 'xtrans' 'xorgproto')
+source=(${url}/archive/individual/lib/libXfont2-${pkgver}.tar.bz2{,.sig})
+sha512sums=('7cf6c58e520e48e24fc4f05fec760fcbeaaac0cedeed57dded262c855e1515cc34cd033222945a0b016f6857b83009fc2a6946c7d632c2f7bb0060f8e8a8a106'
+'SKIP')
+validpgpkeys=('C383B778255613DFDB409D91DB221A690011') # Keith Packard 

+validpgpkeys+=('995ED5C8A6138EB0961F18474C09DD83CAAA50B2') # "Adam Jackson 
"
+validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # "Matthieu Herrb 
"
+validpgpkeys+=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #  "Alan 
Coopersmith "
+
+build() {
+  cd "${srcdir}/libXfont2-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXfont2-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 17:42:55
  Author: arojas
Revision: 371887

archrelease: copy trunk to extra-x86_64

Added:
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 371886, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 371886, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/rebuild.list

--+
 PKGBUILD |  104 -
 rebuild.list |4 +-
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-19 17:42:34 UTC (rev 371886)
+++ PKGBUILD2019-12-19 17:42:55 UTC (rev 371887)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.16.1
-pkgrel=1
-pkgdesc='A cross-platform open-source make system'
-arch=('x86_64')
-url="https://www.cmake.org/;
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('62a8c651b1c73648420611bed3e6911da10cc5ac9131f72ef76047cb5f6e78279dc2848044279f537d9c28bb1cfa36c53bb31d00b43fa80c83f6272a1a93f4a0')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.elc \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-x86_64/PKGBUILD (from rev 371886, 
cmake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-19 17:42:55 UTC (rev 371887)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.16.2
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="https://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b5e68083713462400b38424bf1dbfe73d37a5fbe211fadac30c576246024a1d40f95fab7044804b7201a1bc2e7fd5b7093257e9534cd35538c8b274dc00f4b76')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.elc \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: rebuild.list
===
--- rebuild.list2019-12-19 17:42:34 UTC (rev 371886)
+++ rebuild.list2019-12-19 17:42:55 UTC (rev 371887)
@@ -1,2 +0,0 @@
-cmake-fedora
-uranium

Copied: cmake/repos/extra-x86_64/rebuild.list (from rev 371886, 
cmake/trunk/rebuild.list)
===
--- rebuild.list  

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

2019-12-19 Thread Antonio Rojas via arch-commits
Date: Thursday, December 19, 2019 @ 17:42:34
  Author: arojas
Revision: 371886

Update to 3.16.2

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:42:04 UTC (rev 371885)
+++ PKGBUILD2019-12-19 17:42:34 UTC (rev 371886)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.16.1
+pkgver=3.16.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt5-base' 'python-sphinx' 'emacs')
 optdepends=('qt5-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('62a8c651b1c73648420611bed3e6911da10cc5ac9131f72ef76047cb5f6e78279dc2848044279f537d9c28bb1cfa36c53bb31d00b43fa80c83f6272a1a93f4a0')
+sha512sums=('b5e68083713462400b38424bf1dbfe73d37a5fbe211fadac30c576246024a1d40f95fab7044804b7201a1bc2e7fd5b7093257e9534cd35538c8b274dc00f4b76')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:42:00
  Author: andyrtr
Revision: 371884

upgpkg: libxfont2 2.0.4-2: makedepend on xorgproto

Modified:
  libxfont2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:40:00 UTC (rev 371883)
+++ PKGBUILD2019-12-19 17:42:00 UTC (rev 371884)
@@ -2,13 +2,13 @@
 
 pkgname=libxfont2
 pkgver=2.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 font rasterisation library"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto')
-makedepends=('xorg-util-macros' 'xtrans')
+depends=('freetype2' 'libfontenc')
+makedepends=('xorg-util-macros' 'xtrans' 'xorgproto')
 source=(${url}/archive/individual/lib/libXfont2-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('7cf6c58e520e48e24fc4f05fec760fcbeaaac0cedeed57dded262c855e1515cc34cd033222945a0b016f6857b83009fc2a6946c7d632c2f7bb0060f8e8a8a106'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:40:00
  Author: andyrtr
Revision: 371883

archrelease: copy trunk to staging-x86_64

Added:
  libxfixes/repos/staging-x86_64/
  libxfixes/repos/staging-x86_64/PKGBUILD
(from rev 371882, libxfixes/trunk/PKGBUILD)

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

Copied: libxfixes/repos/staging-x86_64/PKGBUILD (from rev 371882, 
libxfixes/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:40:00 UTC (rev 371883)
@@ -0,0 +1,31 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxfixes
+pkgver=5.0.3
+pkgrel=3
+pkgdesc="X11 miscellaneous 'fixes' extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig})
+sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6'
+'SKIP')
+
+validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+
+build() {
+  cd "${srcdir}/libXfixes-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libXfixes-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:39:55
  Author: andyrtr
Revision: 371882

upgpkg: libxfixes 5.0.3-3: makedepend on xorgproto

Modified:
  libxfixes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:38:45 UTC (rev 371881)
+++ PKGBUILD2019-12-19 17:39:55 UTC (rev 371882)
@@ -3,13 +3,13 @@
 
 pkgname=libxfixes
 pkgver=5.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="X11 miscellaneous 'fixes' extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libx11' 'fixesproto')
-makedepends=('xorg-util-macros')
+depends=('libx11')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig})
 sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:38:45
  Author: andyrtr
Revision: 371881

archrelease: copy trunk to staging-x86_64

Added:
  libxext/repos/staging-x86_64/
  libxext/repos/staging-x86_64/PKGBUILD
(from rev 371880, libxext/trunk/PKGBUILD)

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

Copied: libxext/repos/staging-x86_64/PKGBUILD (from rev 371880, 
libxext/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:38:45 UTC (rev 371881)
@@ -0,0 +1,31 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxext
+pkgver=1.3.4
+pkgrel=2
+pkgdesc="X11 miscellaneous extensions library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig})
+sha512sums=('09146397d95f80c04701be1cc0a9c580ab5a085842ac31d17dfb6d4c2e42b4253b89cba695e5e520be359883a76ffd02f42484c9e2ba2c33a5a40c29df4a'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer 
(Who-T) "
+validpgpkeys+=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd libXext-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXext-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:38:40
  Author: andyrtr
Revision: 371880

upgpkg: libxext 1.3.4-2: makedepend on xorgproto

Modified:
  libxext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:36:32 UTC (rev 371879)
+++ PKGBUILD2019-12-19 17:38:40 UTC (rev 371880)
@@ -3,13 +3,13 @@
 
 pkgname=libxext
 pkgver=1.3.4
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 miscellaneous extensions library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libx11' 'xextproto')
-makedepends=('xorg-util-macros')
+depends=('libx11')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('09146397d95f80c04701be1cc0a9c580ab5a085842ac31d17dfb6d4c2e42b4253b89cba695e5e520be359883a76ffd02f42484c9e2ba2c33a5a40c29df4a'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:36:28
  Author: andyrtr
Revision: 371878

upgpkg: libxdmcp 1.1.3-2: makedepend on xorgproto

Modified:
  libxdmcp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:34:58 UTC (rev 371877)
+++ PKGBUILD2019-12-19 17:36:28 UTC (rev 371878)
@@ -3,13 +3,13 @@
 
 pkgname=libxdmcp
 pkgver=1.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Display Manager Control Protocol library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('xproto' 'glibc')
-makedepends=('xorg-util-macros')
+depends=('glibc')
+makedepends=('xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('cb1d4650f97d66e73acd2465ec7d757b9b797cce2f85e301860a44997a461837eea845ec9bd5b639ec5ca34c804f8bdd870697a5ce3f4e270b687c9ef74f25ec'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:36:32
  Author: andyrtr
Revision: 371879

archrelease: copy trunk to staging-x86_64

Added:
  libxdmcp/repos/staging-x86_64/
  libxdmcp/repos/staging-x86_64/PKGBUILD
(from rev 371878, libxdmcp/trunk/PKGBUILD)

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

Copied: libxdmcp/repos/staging-x86_64/PKGBUILD (from rev 371878, 
libxdmcp/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:36:32 UTC (rev 371879)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libxdmcp
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="X11 Display Manager Control Protocol library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig})
+sha512sums=('cb1d4650f97d66e73acd2465ec7d757b9b797cce2f85e301860a44997a461837eea845ec9bd5b639ec5ca34c804f8bdd870697a5ce3f4e270b687c9ef74f25ec'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd libXdmcp-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXdmcp-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:34:54
  Author: andyrtr
Revision: 371876

upgpkg: libxdamage 1.1.5-2: makedepend on xorgproto

Modified:
  libxdamage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:31:40 UTC (rev 371875)
+++ PKGBUILD2019-12-19 17:34:54 UTC (rev 371876)
@@ -2,13 +2,13 @@
 
 pkgname=libxdamage
 pkgver=1.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 damaged region extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libxfixes>=4.0.4' 'damageproto')
-makedepends=('pkg-config')
+depends=('libxfixes')
+makedepends=('xorgproto')
 source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('a3ca6cc33b1727f717a3e2aa5593f660508a81a47918a0aa949e9e8fba105e303fe5071983b48caac92feea0fe6e8e01620805e4d19b41f21f20d837b191c124'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:34:58
  Author: andyrtr
Revision: 371877

archrelease: copy trunk to staging-x86_64

Added:
  libxdamage/repos/staging-x86_64/
  libxdamage/repos/staging-x86_64/PKGBUILD
(from rev 371876, libxdamage/trunk/PKGBUILD)

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

Copied: libxdamage/repos/staging-x86_64/PKGBUILD (from rev 371876, 
libxdamage/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:34:58 UTC (rev 371877)
@@ -0,0 +1,27 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libxdamage
+pkgver=1.1.5
+pkgrel=2
+pkgdesc="X11 damaged region extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxfixes')
+makedepends=('xorgproto')
+source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2{,.sig})
+sha512sums=('a3ca6cc33b1727f717a3e2aa5593f660508a81a47918a0aa949e9e8fba105e303fe5071983b48caac92feea0fe6e8e01620805e4d19b41f21f20d837b191c124'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libXdamage-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXdamage-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:31:40
  Author: andyrtr
Revision: 371875

archrelease: copy trunk to staging-x86_64

Added:
  libxcomposite/repos/staging-x86_64/
  libxcomposite/repos/staging-x86_64/PKGBUILD
(from rev 371874, libxcomposite/trunk/PKGBUILD)

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

Copied: libxcomposite/repos/staging-x86_64/PKGBUILD (from rev 371874, 
libxcomposite/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:31:40 UTC (rev 371875)
@@ -0,0 +1,29 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libxcomposite
+pkgver=0.4.5
+pkgrel=2
+pkgdesc="X11 Composite extension library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
+source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('502fd51fd9097bb3ca72174ac5b25b9d3b1ff240d32c4765199df03d89337d94b4ddea49e90b177b370862430089d966ce9c38988337156352cfeae911c2d3d5'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libXcomposite-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd libXcomposite-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:31:36
  Author: andyrtr
Revision: 371874

upgpkg: libxcomposite 0.4.5-2: makedepend on xorgproto

Modified:
  libxcomposite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:29:59 UTC (rev 371873)
+++ PKGBUILD2019-12-19 17:31:36 UTC (rev 371874)
@@ -2,13 +2,13 @@
 
 pkgname=libxcomposite
 pkgver=0.4.5
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Composite extension library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
 license=('custom')
-depends=('libxfixes' 'compositeproto')
-makedepends=('xorg-util-macros')
+depends=('libxfixes')
+makedepends=('xorg-util-macros' 'xorgproto')
 
source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2"{,.sig})
 
sha512sums=('502fd51fd9097bb3ca72174ac5b25b9d3b1ff240d32c4765199df03d89337d94b4ddea49e90b177b370862430089d966ce9c38988337156352cfeae911c2d3d5'
 'SKIP')


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:29:59
  Author: andyrtr
Revision: 371873

archrelease: copy trunk to staging-x86_64

Added:
  libxau/repos/staging-x86_64/
  libxau/repos/staging-x86_64/PKGBUILD
(from rev 371872, libxau/trunk/PKGBUILD)

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

Copied: libxau/repos/staging-x86_64/PKGBUILD (from rev 371872, 
libxau/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:29:59 UTC (rev 371873)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libxau
+pkgver=1.0.9
+pkgrel=2
+pkgdesc="X11 authorisation library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorgproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2{,.sig})
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+sha512sums=('3ca454ba466a807ea28b0f715066d73dc76ad312697b121d43e4d5766215052e9b7ffb8fe3ed3e496fa3f2a13f164ac692ff85cc428e26731b679f0f06a1d562'
+'SKIP')
+
+build() {
+  cd libXau-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libXau-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:29:55
  Author: andyrtr
Revision: 371872

upgpkg: libxau 1.0.9-2: makedepend on xorgproto

Modified:
  libxau/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:27:34 UTC (rev 371871)
+++ PKGBUILD2019-12-19 17:29:55 UTC (rev 371872)
@@ -4,12 +4,12 @@
 
 pkgname=libxau
 pkgver=1.0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 authorisation library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
-depends=('glibc' 'xproto')
-makedepends=('pkgconfig')
+depends=('glibc')
+makedepends=('xorgproto')
 license=('custom')
 source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2{,.sig})
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:27:34
  Author: andyrtr
Revision: 371871

archrelease: copy trunk to staging-x86_64

Added:
  libx11/repos/staging-x86_64/
  libx11/repos/staging-x86_64/PKGBUILD
(from rev 371870, libx11/trunk/PKGBUILD)

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

Copied: libx11/repos/staging-x86_64/PKGBUILD (from rev 371870, 
libx11/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:27:34 UTC (rev 371871)
@@ -0,0 +1,38 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libx11
+pkgver=1.6.9
+pkgrel=4
+pkgdesc="X11 client-side library"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+depends=('libxcb')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'xorgproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha512sums=('fc18f0dc17ade1fc37402179f52e1f2b9c7b7d3a1a9590fea13046eb0c5193b4796289431cd99388eac01e8e59de77db45d2c9675d4f05ef8cf3ba6382c3dd31'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb 

+validpgpkeys+=('3BB639E56F861FA2E86505690FDD682D974CA72A') # Matt Turner 

+validpgpkeys+=('995ED5C8A6138EB0961F18474C09DD83CAAA50B2') # Adam Jackson 

+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:27:29
  Author: andyrtr
Revision: 371870

upgpkg: libx11 1.6.9-4: makedepend on xorgproto

Modified:
  libx11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:24:29 UTC (rev 371869)
+++ PKGBUILD2019-12-19 17:27:29 UTC (rev 371870)
@@ -3,12 +3,12 @@
 
 pkgname=libx11
 pkgver=1.6.9
-pkgrel=3
+pkgrel=4
 pkgdesc="X11 client-side library"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
-depends=('libxcb' 'xproto' 'kbproto')
-makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+depends=('libxcb')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'xorgproto')
 license=('custom')
 source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
 
sha512sums=('fc18f0dc17ade1fc37402179f52e1f2b9c7b7d3a1a9590fea13046eb0c5193b4796289431cd99388eac01e8e59de77db45d2c9675d4f05ef8cf3ba6382c3dd31'


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:24:29
  Author: andyrtr
Revision: 371869

archrelease: copy trunk to staging-x86_64

Added:
  libice/repos/staging-x86_64/
  libice/repos/staging-x86_64/PKGBUILD
(from rev 371868, libice/trunk/PKGBUILD)

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

Copied: libice/repos/staging-x86_64/PKGBUILD (from rev 371868, 
libice/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-12-19 17:24:29 UTC (rev 371869)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libice
+pkgver=1.0.10
+pkgrel=2
+pkgdesc="X11 Inter-Client Exchange library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xtrans>=1.2.5' 'xorg-util-macros' 'xorgproto')
+source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
+license=('custom')
+sha512sums=('2f1ef2c32c833c71894a08fa7e7ed53f301f6c7bd22485d71c12884d8e8b36b99f362ec886349dcc84d08edc81c8b2cea035320831d64974edeba021b433c468'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libICE-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libICE-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-12-19 Thread Andreas Radke via arch-commits
Date: Thursday, December 19, 2019 @ 17:24:21
  Author: andyrtr
Revision: 371868

upgpkg: libice 1.0.10-2: makedepend on xorgproto

Modified:
  libice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-19 17:18:53 UTC (rev 371867)
+++ PKGBUILD2019-12-19 17:24:21 UTC (rev 371868)
@@ -4,12 +4,12 @@
 
 pkgname=libice
 pkgver=1.0.10
-pkgrel=1
+pkgrel=2
 pkgdesc="X11 Inter-Client Exchange library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
-depends=('glibc' 'xproto')
-makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
+depends=('glibc')
+makedepends=('xtrans>=1.2.5' 'xorg-util-macros' 'xorgproto')
 source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
 license=('custom')
 
sha512sums=('2f1ef2c32c833c71894a08fa7e7ed53f301f6c7bd22485d71c12884d8e8b36b99f362ec886349dcc84d08edc81c8b2cea035320831d64974edeba021b433c468'


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

2019-12-19 Thread Jan Steffens via arch-commits
Date: Thursday, December 19, 2019 @ 17:15:14
  Author: heftig
Revision: 538426

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 538425, lib32-glib2/trunk/PKGBUILD)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook
(from rev 538425, lib32-glib2/trunk/gio-querymodules-32.hook)
  lib32-glib2/repos/multilib-testing-x86_64/multilib.diff
(from rev 538425, lib32-glib2/trunk/multilib.diff)

--+
 PKGBUILD |   60 +
 gio-querymodules-32.hook |   11 
 multilib.diff|   12 +
 3 files changed, 83 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 538425, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-12-19 17:15:14 UTC (rev 538426)
@@ -0,0 +1,60 @@
+# Contributor: Ionut Biru 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-glib2
+pkgver=2.62.4
+pkgrel=1
+pkgdesc="Low level core library (32-bit)"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(lib32-pcre lib32-libffi lib32-util-linux lib32-zlib glib2)
+makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux meson lib32-dbus)
+checkdepends=(desktop-file-utils lib32-glib2)
+options=(!emptydirs)
+_commit=dac69d7128b3b66ed7007ab944eb629d30f4de4b  # tags/2.62.4^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+multilib.diff
+gio-querymodules-32.hook)
+sha256sums=('SKIP'
+'2611ec4c97346c3c4eea61786ee20c801207135a9d52a771f5f340b41bf69fbc'
+'73b6791b58180e2a02fe908938e6c547ee1b263f8c387262f9a8c4105ffa999a')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+  patch -Np1 -i ../multilib.diff
+}
+
+build() {
+  export CC="gcc -m32 -mstackrealign -mfpmath=sse"
+  export CXX="g++ -m32 -mstackrealign -mfpmath=sse"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+--libdir=/usr/lib32
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  rm -r "$pkgdir"/usr/{share,include}
+  find "$pkgdir/usr/bin" -type f -not -name gio-querymodules -printf 'Removing 
%P\n' -delete
+  mv "$pkgdir"/usr/bin/gio-querymodules{,-32}
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set sw=2 et:

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook 
(from rev 538425, lib32-glib2/trunk/gio-querymodules-32.hook)
===
--- multilib-testing-x86_64/gio-querymodules-32.hook
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.hook2019-12-19 17:15:14 UTC 
(rev 538426)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gio/modules/*.so
+
+[Action]
+Description = Updating 32-bit GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules-32 /usr/lib32/gio/modules

Copied: lib32-glib2/repos/multilib-testing-x86_64/multilib.diff (from rev 
538425, lib32-glib2/trunk/multilib.diff)
===
--- multilib-testing-x86_64/multilib.diff   (rev 0)
+++ multilib-testing-x86_64/multilib.diff   2019-12-19 17:15:14 UTC (rev 
538426)
@@ -0,0 +1,12 @@
+diff --git i/gio/tests/meson.build w/gio/tests/meson.build
+index 65f43e267..3bd66bf60 100644
+--- i/gio/tests/meson.build
 w/gio/tests/meson.build
+@@ -598,6 +598,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
+  '-r',
+  '-b','binary',
+  '@INPUT@',
++ '--oformat', 'elf32-i386',
+  '-o','@OUTPUT@'])
+ 
+ # Rename symbol to match the one in the C file


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

2019-12-19 Thread Jan Steffens via arch-commits
Date: Thursday, December 19, 2019 @ 17:15:16
  Author: heftig
Revision: 371866

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 371865, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 371865, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 371865, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 371865, glib2/trunk/noisy-glib-compile-schemas.diff)

-+
 PKGBUILD|   75 ++
 gio-querymodules.hook   |   11 +
 glib-compile-schemas.hook   |   12 ++
 noisy-glib-compile-schemas.diff |   24 
 4 files changed, 122 insertions(+)

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 371865, 
glib2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-19 17:15:16 UTC (rev 371866)
@@ -0,0 +1,75 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.62.4
+pkgrel=1
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(pcre libffi libutil-linux zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux 
meson dbus)
+checkdepends=(desktop-file-utils)
+optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+'libelf: gresource inspection tool')
+options=(!emptydirs)
+_commit=dac69d7128b3b66ed7007ab944eb629d30f4de4b  # tags/2.62.4^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.hook)
+sha256sums=('SKIP'
+'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
+'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+'5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  patch -Np1 -i ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+-D man=true \
+-D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --print-errorlogs
+}
+
+package_glib2() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  python -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+
+  # Split docs
+  mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for GLib"
+  depends=()
+  optdepends=()
+  license+=(custom)
+
+  mkdir -p "$pkgdir/usr/share"
+  mv gtk-doc "$pkgdir/usr/share"
+
+  install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 
glib/docs/reference/COPYING
+}
+
+# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 371865, 
glib2/trunk/gio-querymodules.hook)
===
--- testing-x86_64/gio-querymodules.hook(rev 0)
+++ testing-x86_64/gio-querymodules.hook2019-12-19 17:15:16 UTC (rev 
371866)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-x86_64/glib-compile-schemas.hook (from rev 371865, 
glib2/trunk/glib-compile-schemas.hook)
===
--- testing-x86_64/glib-compile-schemas.hook(rev 0)
+++ testing-x86_64/glib-compile-schemas.hook2019-12-19 17:15:16 UTC (rev 
371866)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff (from rev 
371865, glib2/trunk/noisy-glib-compile-schemas.diff)
===
--- testing-x86_64/noisy-glib-compile-schemas.diff   

  1   2   >