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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:26:30
  Author: heftig
Revision: 363882

archrelease: copy trunk to staging-x86_64

Added:
  rust/repos/staging-x86_64/
  rust/repos/staging-x86_64/0001-WIP-minimize-the-rust-std-component.patch
(from rev 363881, rust/trunk/0001-WIP-minimize-the-rust-std-component.patch)
  rust/repos/staging-x86_64/PKGBUILD
(from rev 363881, rust/trunk/PKGBUILD)
  rust/repos/staging-x86_64/bootstrap-1.38.patch
(from rev 363881, rust/trunk/bootstrap-1.38.patch)

+
 0001-WIP-minimize-the-rust-std-component.patch |   74 
 PKGBUILD   |  140 +++
 bootstrap-1.38.patch   |   13 ++
 3 files changed, 227 insertions(+)

Copied: 
rust/repos/staging-x86_64/0001-WIP-minimize-the-rust-std-component.patch (from 
rev 363881, rust/trunk/0001-WIP-minimize-the-rust-std-component.patch)
===
--- staging-x86_64/0001-WIP-minimize-the-rust-std-component.patch   
(rev 0)
+++ staging-x86_64/0001-WIP-minimize-the-rust-std-component.patch   
2019-10-06 01:26:30 UTC (rev 363882)
@@ -0,0 +1,74 @@
+From 2bf05f208272cd58c57f4d7d8d0e10fdb22e8719 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 | 45 +++
+ 1 file changed, 16 insertions(+), 29 deletions(-)
+
+diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
+index 552965863d10..76fbd07f9fb5 100644
+--- a/src/bootstrap/dist.rs
 b/src/bootstrap/dist.rs
+@@ -667,41 +667,28 @@ 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 {
+-if builder.no_std(target) == Some(true) {
+-// the `test` doesn't compile for no-std targets
+-builder.ensure(compile::Std { compiler, target });
+-} else {
+-builder.ensure(compile::Test { compiler, target });
+-}
+-}
++builder.ensure(compile::Std { compiler, target });
++builder.ensure(compile::Test { 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 stamp = dbg!(compile::libtest_stamp(builder, compiler_to_use, 
target));
++for (path, host) in builder.read_stamp_file() {
++if !host {
++builder.copy(, (path.file_name().unwrap()));
++}
++}
+ 
+ let mut cmd = rust_installer(builder);
+ cmd.arg("generate")
+-- 
+2.21.0
+

Copied: rust/repos/staging-x86_64/PKGBUILD (from rev 363881, 
rust/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-06 01:26:30 UTC (rev 363882)
@@ -0,0 +1,140 @@
+# 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.38.0
+pkgrel=2
+
+_llvm_ver=9.0.0
+
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='https://www.rust-lang.org/'
+arch=('x86_64')

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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:26:27
  Author: heftig
Revision: 363881

archrelease: copy trunk to staging-x86_64

Added:
  gnome-builder/repos/staging-x86_64/
  gnome-builder/repos/staging-x86_64/PKGBUILD
(from rev 363880, gnome-builder/trunk/PKGBUILD)

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

Copied: gnome-builder/repos/staging-x86_64/PKGBUILD (from rev 363880, 
gnome-builder/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-06 01:26:27 UTC (rev 363881)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.34.1
+pkgrel=2
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils ctags
+ libpeas vte3 vala python-jedi autoconf-archive sysprof 
flatpak-builder gspell libdazzle
+ template-glib jsonrpc-glib python-sphinx webkit2gtk glade python-lxml 
meson)
+makedepends=(llvm gobject-introspection gtk-doc yelp-tools appstream-glib git 
mm-common
+ python-sphinx_rtd_theme)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-code-assistance: Legacy assistance services')
+groups=(gnome-extra)
+_commit=f28549a6e8dc326b7f29eaa5b0fc29e4050f4b75  # tags/3.34.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D docs=true \
+-D help=true
+  ninja -C build
+}
+
+check() {
+  xvfb-run meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:26:09
  Author: heftig
Revision: 363880

3.34.1-2

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-06 01:22:32 UTC (rev 363879)
+++ PKGBUILD2019-10-06 01:26:09 UTC (rev 363880)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-builder
 pkgver=3.34.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder;
 arch=(x86_64)


[arch-commits] Commit in rust/trunk (PKGBUILD bootstrap-1.38.patch config.toml)

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:22:32
  Author: heftig
Revision: 363879

1.38.0-2

Added:
  rust/trunk/bootstrap-1.38.patch
Modified:
  rust/trunk/PKGBUILD
Deleted:
  rust/trunk/config.toml

--+
 PKGBUILD |   64 -
 bootstrap-1.38.patch |   13 +
 config.toml  |   31 ---
 3 files changed, 61 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-06 01:20:58 UTC (rev 363878)
+++ PKGBUILD2019-10-06 01:22:32 UTC (rev 363879)
@@ -6,9 +6,9 @@
 pkgname=('rust' 'lib32-rust-libs' 'rust-docs')
 epoch=1
 pkgver=1.38.0
-pkgrel=1
+pkgrel=2
 
-_llvm_ver=8.0.1
+_llvm_ver=9.0.0
 
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
 url='https://www.rust-lang.org/'
@@ -22,37 +22,66 @@
 
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
-0001-WIP-minimize-the-rust-std-component.patch
-config.toml)
+bootstrap-1.38.patch
+0001-WIP-minimize-the-rust-std-component.patch)
 
 sha256sums=('644263ca7c7106f8ee8fcde6bb16910d246b30668a74be20b8c7e0e9f4a52d80'
 'SKIP'
-'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'56e4cd96dd1d8c346b07b4d6b255f976570c6f2389697347a6c3dcb9e820d10e'
 'SKIP'
-'1d6b69444ef6ff033fe1612e56ecdaad5c52aa44395e704f78b1a047c65b9321'
-'b1bd845081ece690685b5bf2a7e9e931a44a603ab836dd5a9b3c2b062fc5559b')
+'71935e8994d1045680cde22f72a12c4959e1877e5a42fc21fd034d677100dab3'
+'1d6b69444ef6ff033fe1612e56ecdaad5c52aa44395e704f78b1a047c65b9321')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
-  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+  '474E22316ABF4785A88C6E8EA2C794A986419D8A'  # Tom Stellard 

+  'B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

 
 prepare() {
   cd "rustc-$pkgver-src"
 
+  # Fix bootstrap to compile with 1.38
+  patch -Np1 -i ../bootstrap-1.38.patch
+
   # For https://bugzilla.redhat.com/show_bug.cgi?id=1756487
   # From https://src.fedoraproject.org/rpms/rust/tree/master
   patch -Np1 -i ../0001-WIP-minimize-the-rust-std-component.patch
 
-  cp "$srcdir"/config.toml config.toml
-}
+  cat >config.toml 

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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:20:58
  Author: heftig
Revision: 363878

archrelease: copy trunk to testing-x86_64

Added:
  sysprof/repos/testing-x86_64/
  sysprof/repos/testing-x86_64/PKGBUILD
(from rev 363877, sysprof/trunk/PKGBUILD)

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

Copied: sysprof/repos/testing-x86_64/PKGBUILD (from rev 363877, 
sysprof/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-06 01:20:58 UTC (rev 363878)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Geoffroy Carrier 
+# Contributor: Eric Belanger 
+# Contributor: aeolist 
+# Contributor: Gabriel Rauter 
+
+pkgname=sysprof
+pkgver=3.34.0
+pkgrel=3
+pkgdesc="Kernel based performance profiler"
+url="https://wiki.gnome.org/Apps/Sysprof;
+license=(GPL)
+arch=(x86_64)
+depends=(gtk3 polkit libdazzle)
+makedepends=(yelp-tools git meson)
+groups=(gnome-extra)
+_commit=ee32407b28c163ba10778b279c6c13f0cd47214a  # tags/sysprof-3.34.0^0
+source=("git+https://gitlab.gnome.org/GNOME/sysprof.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^sysprof-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  # Ensure static library is non-LTO compatible
+  CFLAGS+=" -ffat-lto-objects"
+
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  # Test needs sysprofd at system dbus
+  meson test -C build --print-errorlogs || :
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:18:54
  Author: heftig
Revision: 363877

3.34.0-3: gcc rebuild

Modified:
  sysprof/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-06 01:01:32 UTC (rev 363876)
+++ PKGBUILD2019-10-06 01:18:54 UTC (rev 363877)
@@ -7,7 +7,7 @@
 
 pkgname=sysprof
 pkgver=3.34.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Kernel based performance profiler"
 url="https://wiki.gnome.org/Apps/Sysprof;
 license=(GPL)


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

2019-10-05 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 6, 2019 @ 01:10:47
  Author: foutrelis
Revision: 513019

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-06 01:10:43 UTC (rev 513018)
+++ PKGBUILD2019-10-06 01:10:47 UTC (rev 513019)
@@ -1,66 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: David Runge 
-# Contributor: Peter Baldwin 
-
-_name=Jinja2
-pkgbase=python-jinja
-pkgname=('python-jinja' 'python2-jinja')
-pkgver=2.10.1
-pkgrel=2
-pkgdesc="A simple pythonic template language written in Python"
-arch=('any')
-url="http://jinja.pocoo.org/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe'
- 'python2-markupsafe')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha256sums=('065c4f02ebe7f7cf559e49ee5a95fb800a9e4528727aec6f24402a5374c65013')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgbase}-${pkgver}"
-  cd "${pkgbase}-${pkgver}"
-}
-
-build() {
-  cd "${pkgbase}-${pkgver}"
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "${pkgbase}-${pkgver}"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  py.test
-  py.test2
-}
-
-package_python-jinja() {
-  depends=('python-setuptools' 'python-markupsafe')
-  optdepends=('python-babel: for i18n support')
-  cd "${pkgbase}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}/"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -vDm 644 ext/Vim/jinja.vim \
--t "${pkgdir}/usr/share/vim/vimfiles/syntax"
-  install -vDm 644 ext/jinja.el -t "${pkgdir}/usr/share/emacs/site-lisp"
-  install -vDm 644 AUTHORS {CHANGES,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-package_python2-jinja() {
-  depends=('python2-setuptools' 'python2-markupsafe')
-  optdepends=('python2-babel: for i18n support')
-  cd "${pkgbase}-${pkgver}"
-  python2 setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}/"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -vDm 644 AUTHORS {CHANGES,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-# vim:set ts=2 sw=2 et:

Copied: python-jinja/repos/community-any/PKGBUILD (from rev 513018, 
python-jinja/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-06 01:10:47 UTC (rev 513019)
@@ -0,0 +1,51 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: David Runge 
+# Contributor: Peter Baldwin 
+
+pkgname=('python-jinja' 'python2-jinja')
+pkgver=2.10.3
+pkgrel=1
+pkgdesc="A simple pythonic template language written in Python"
+arch=('any')
+url="https://palletsprojects.com/p/jinja/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe'
+ 'python2-markupsafe')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
+sha256sums=('9fe95f19286cfefaa917656583d020be14e7859c6b0252588391e47db34527de')
+
+build() {
+  cd Jinja2-$pkgver
+  python3 setup.py build
+}
+
+check() {
+  cd Jinja2-$pkgver
+  export PYTHONPATH=build:$PYTHONPATH
+  py.test
+  py.test2
+}
+
+package_python-jinja() {
+  depends=('python-setuptools' 'python-markupsafe')
+  optdepends=('python-babel: for i18n support')
+
+  cd Jinja2-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
+
+  install -Dm644 ext/Vim/jinja.vim -t "$pkgdir/usr/share/vim/vimfiles/syntax"
+  install -Dm644 ext/jinja.el -t "$pkgdir/usr/share/emacs/site-lisp"
+}
+
+package_python2-jinja() {
+  depends=('python2-setuptools' 'python2-markupsafe')
+  optdepends=('python2-babel: for i18n support')
+
+  cd Jinja2-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-05 Thread Evangelos Foutras via arch-commits
Date: Sunday, October 6, 2019 @ 01:10:43
  Author: foutrelis
Revision: 513018

upgpkg: python-jinja 2.10.3-1

- New upstream release.
- PKGBUILD style changes.

Modified:
  python-jinja/trunk/PKGBUILD

--+
 PKGBUILD |   57 +
 1 file changed, 21 insertions(+), 36 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:48:10 UTC (rev 513017)
+++ PKGBUILD2019-10-06 01:10:43 UTC (rev 513018)
@@ -2,35 +2,27 @@
 # Contributor: David Runge 
 # Contributor: Peter Baldwin 
 
-_name=Jinja2
-pkgbase=python-jinja
 pkgname=('python-jinja' 'python2-jinja')
-pkgver=2.10.1
-pkgrel=2
+pkgver=2.10.3
+pkgrel=1
 pkgdesc="A simple pythonic template language written in Python"
 arch=('any')
-url="http://jinja.pocoo.org/;
+url="https://palletsprojects.com/p/jinja/;
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe'
  'python2-markupsafe')
 checkdepends=('python-pytest' 'python2-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha256sums=('065c4f02ebe7f7cf559e49ee5a95fb800a9e4528727aec6f24402a5374c65013')
+source=(https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
+sha256sums=('9fe95f19286cfefaa917656583d020be14e7859c6b0252588391e47db34527de')
 
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgbase}-${pkgver}"
-  cd "${pkgbase}-${pkgver}"
-}
-
 build() {
-  cd "${pkgbase}-${pkgver}"
-  python setup.py build
-  python2 setup.py build
+  cd Jinja2-$pkgver
+  python3 setup.py build
 }
 
 check() {
-  cd "${pkgbase}-${pkgver}"
-  export PYTHONPATH="build:${PYTHONPATH}"
+  cd Jinja2-$pkgver
+  export PYTHONPATH=build:$PYTHONPATH
   py.test
   py.test2
 }
@@ -38,29 +30,22 @@
 package_python-jinja() {
   depends=('python-setuptools' 'python-markupsafe')
   optdepends=('python-babel: for i18n support')
-  cd "${pkgbase}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}/"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -vDm 644 ext/Vim/jinja.vim \
--t "${pkgdir}/usr/share/vim/vimfiles/syntax"
-  install -vDm 644 ext/jinja.el -t "${pkgdir}/usr/share/emacs/site-lisp"
-  install -vDm 644 AUTHORS {CHANGES,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  cd Jinja2-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
+
+  install -Dm644 ext/Vim/jinja.vim -t "$pkgdir/usr/share/vim/vimfiles/syntax"
+  install -Dm644 ext/jinja.el -t "$pkgdir/usr/share/emacs/site-lisp"
 }
 
 package_python2-jinja() {
   depends=('python2-setuptools' 'python2-markupsafe')
   optdepends=('python2-babel: for i18n support')
-  cd "${pkgbase}-${pkgver}"
-  python2 setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}/"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -vDm 644 AUTHORS {CHANGES,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  cd Jinja2-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
 }
+
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-anytree/repos/extra-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:01:32
  Author: heftig
Revision: 363876

archrelease: copy trunk to extra-any

Added:
  python-anytree/repos/extra-any/PKGBUILD
(from rev 363874, python-anytree/trunk/PKGBUILD)
Deleted:
  python-anytree/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-06 01:01:30 UTC (rev 363875)
+++ PKGBUILD2019-10-06 01:01:32 UTC (rev 363876)
@@ -1,29 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=python-anytree
-pkgver=2.6.0
-pkgrel=2
-pkgdesc="Powerful and Lightweight Python Tree Data Structure"
-url="https://anytree.readthedocs.io/;
-arch=(any)
-license=(Apache)
-depends=(python-six)
-makedepends=(python-setuptools git)
-_commit=775477e206a75e697983e70dae6372b5a7e42dcf  # tags/2.6.0
-source=("$pkgname::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  python setup.py build
-}
-
-package() {
-  cd $pkgname
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-anytree/repos/extra-any/PKGBUILD (from rev 363874, 
python-anytree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-06 01:01:32 UTC (rev 363876)
@@ -0,0 +1,29 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=python-anytree
+pkgver=2.7.1
+pkgrel=1
+pkgdesc="Powerful and Lightweight Python Tree Data Structure"
+url="https://anytree.readthedocs.io/;
+arch=(any)
+license=(Apache)
+depends=(python-six)
+makedepends=(python-setuptools git)
+_commit=d8a45625398847267e02775ce0323099fd7d3ec2  # tags/2.7.1
+source=("$pkgname::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  python setup.py build
+}
+
+package() {
+  cd $pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:01:30
  Author: heftig
Revision: 363875

archrelease: copy trunk to extra-x86_64

Added:
  appstream-glib/repos/extra-x86_64/PKGBUILD
(from rev 363874, appstream-glib/trunk/PKGBUILD)
Deleted:
  appstream-glib/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-06 01:00:08 UTC (rev 363874)
+++ PKGBUILD2019-10-06 01:01:30 UTC (rev 363875)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=appstream-glib
-pkgver=0.7.15
-pkgrel=1
-pkgdesc="Objects and methods for reading and writing AppStream metadata"
-url="https://people.freedesktop.org/~hughsient/appstream-glib/;
-arch=(x86_64)
-license=(LGPL)
-depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
-makedepends=(gobject-introspection gtk-doc autoconf-archive git gperf meson)
-provides=(appdata-tools)
-conflicts=(appdata-tools)
-replaces=(appdata-tools)
-_commit=0ab28ff96b74eb72ffe3c3a53026aee82cf31782  # 
tags/appstream_glib_0_7_15^0
-source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^appstream_glib_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D alpm=true \
--D gtk-doc=true \
--D rpm=false
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: appstream-glib/repos/extra-x86_64/PKGBUILD (from rev 363874, 
appstream-glib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-06 01:01:30 UTC (rev 363875)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+
+pkgname=appstream-glib
+pkgver=0.7.16
+pkgrel=1
+pkgdesc="Objects and methods for reading and writing AppStream metadata"
+url="https://people.freedesktop.org/~hughsient/appstream-glib/;
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
+makedepends=(gobject-introspection gtk-doc git gperf meson)
+provides=(appdata-tools)
+conflicts=(appdata-tools)
+replaces=(appdata-tools)
+_commit=230e2da082d9754858330c3e262a9d44f816def1  # 
tags/appstream_glib_0_7_16^0
+source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^appstream_glib_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D alpm=true \
+-D gtk-doc=true \
+-D rpm=false
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 01:00:08
  Author: heftig
Revision: 363874

0.7.16-1

Modified:
  appstream-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-06 00:59:11 UTC (rev 363873)
+++ PKGBUILD2019-10-06 01:00:08 UTC (rev 363874)
@@ -1,7 +1,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=appstream-glib
-pkgver=0.7.15
+pkgver=0.7.16
 pkgrel=1
 pkgdesc="Objects and methods for reading and writing AppStream metadata"
 url="https://people.freedesktop.org/~hughsient/appstream-glib/;
@@ -8,11 +8,11 @@
 arch=(x86_64)
 license=(LGPL)
 depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
-makedepends=(gobject-introspection gtk-doc autoconf-archive git gperf meson)
+makedepends=(gobject-introspection gtk-doc git gperf meson)
 provides=(appdata-tools)
 conflicts=(appdata-tools)
 replaces=(appdata-tools)
-_commit=0ab28ff96b74eb72ffe3c3a53026aee82cf31782  # 
tags/appstream_glib_0_7_15^0
+_commit=230e2da082d9754858330c3e262a9d44f816def1  # 
tags/appstream_glib_0_7_16^0
 source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -34,7 +34,7 @@
 }
 
 check() {
-  meson test -C build
+  meson test -C build --print-errorlogs
 }
 
 package() {


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Sunday, October 6, 2019 @ 00:59:11
  Author: heftig
Revision: 363873

2.7.1-1

Modified:
  python-anytree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:38:31 UTC (rev 363872)
+++ PKGBUILD2019-10-06 00:59:11 UTC (rev 363873)
@@ -1,8 +1,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=python-anytree
-pkgver=2.6.0
-pkgrel=2
+pkgver=2.7.1
+pkgrel=1
 pkgdesc="Powerful and Lightweight Python Tree Data Structure"
 url="https://anytree.readthedocs.io/;
 arch=(any)
@@ -9,7 +9,7 @@
 license=(Apache)
 depends=(python-six)
 makedepends=(python-setuptools git)
-_commit=775477e206a75e697983e70dae6372b5a7e42dcf  # tags/2.6.0
+_commit=d8a45625398847267e02775ce0323099fd7d3ec2  # tags/2.7.1
 source=("$pkgname::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in beignet/trunk (PKGBUILD llvm9.patch)

2019-10-05 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 5, 2019 @ 21:48:05
  Author: foutrelis
Revision: 513016

upgpkg: beignet 1.3.2+12+gfc5f430c-3

LLVM 9 rebuild.

Added:
  beignet/trunk/llvm9.patch
Modified:
  beignet/trunk/PKGBUILD

-+
 PKGBUILD|   10 ++-
 llvm9.patch |  182 ++
 2 files changed, 189 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:09:31 UTC (rev 513015)
+++ PKGBUILD2019-10-05 21:48:05 UTC (rev 513016)
@@ -5,7 +5,7 @@
 
 pkgname=beignet
 pkgver=1.3.2+12+gfc5f430c
-pkgrel=2
+pkgrel=3
 pkgdesc="An open source OpenCL implementation for Intel IvyBridge & Haswell 
iGPUs"
 arch=('x86_64')
 url="https://01.org/${pkgname};
@@ -16,9 +16,11 @@
 conflicts=('opencl-intel')
 _commit=fc5f430cb7b7a8f694d86acbb038bd5b38ec389c  # master as of 2018-08-20
 source=("git+https://anongit.freedesktop.org/git/beignet.git#commit=$_commit;
-'llvm8.patch')
+'llvm8.patch'
+'llvm9.patch')
 sha256sums=('SKIP'
-'f16b13a3263b5042081094cd20c9e09c20a3a6d6e1dd796f460e4f447cfbb598')
+'f16b13a3263b5042081094cd20c9e09c20a3a6d6e1dd796f460e4f447cfbb598'
+'2a0229629ad228b54fdb930d18a94c6879024a41b43ed5265c758bf508cd4bc6')
 
 prepare() {
 mkdir -p build
@@ -28,7 +30,9 @@
 # (conflicts with the implemention in Clang 8)
 git revert -n 9b7ca443cf7b 9cb7ff4c285d
 
+# Patches from FreeBSD to build with newer LLVM
 patch -Np0 -i ../llvm8.patch
+patch -Np0 -i ../llvm9.patch
 }
 
 build() {

Added: llvm9.patch
===
--- llvm9.patch (rev 0)
+++ llvm9.patch 2019-10-05 21:48:05 UTC (rev 513016)
@@ -0,0 +1,182 @@
+Regressed by https://github.com/llvm/llvm-project/commit/2e97d2aa1bd3
+
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::MatchFinder::addMatcher(clang::ast_matchers::internal::Matcher
 const&, clang::ast_matchers::MatchFinder::MatchCallback*)
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::MatchFinder::MatchCallback::~MatchCallback()
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::MatchFinder::match(clang::ast_type_traits::DynTypedNode 
const&, clang::ASTContext&)
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::MatchFinder::MatchFinder(clang::ast_matchers::MatchFinder::MatchFinderOptions)
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::MatchFinder::~MatchFinder()
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::cxxMethodDecl
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::cxxRecordDecl
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::unaryOperator
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::cxxConstructExpr
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::cxxConstructorDecl
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::cxxOperatorCallExpr
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::expr
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::allOf
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::anyOf
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::eachOf
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::unless
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::varDecl
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::callExpr
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::castExpr
+ld: error: backend/src/libgbe.so: undefined reference to 
clang::ast_matchers::internal::hasAnyNameFunc(llvm::ArrayRef)
+ld: error: too many errors emitted, stopping now (use -error-limit=0 to see 
all errors)
+c++: error: linker command failed with exit code 1 (use -v to see invocation)
+
+Regressed by https://github.com/llvm/llvm-project/commit/13680223b9d8
+
+backend/src/llvm/llvm_intrinsic_lowering.cpp:80:19: error:
+  no viable conversion from 'llvm::FunctionCallee' to 'llvm::Constant *'
+Constant* FCache = M->getOrInsertFunction(NewFn,
+  ^~
+backend/src/llvm/llvm_sampler_fix.cpp:85:18: error:
+  no viable conversion from 'llvm::FunctionCallee' to 'llvm::Value *'
+  ...Value* samplerCvt = M->getOrInsertFunction("__gen_ocl_sampler_to_int", 
i32Ty, I->getOperand(0)->getType());
+^
~~
+backend/src/llvm/llvm_sampler_fix.cpp:127:18: error:
+  no viable conversion from 

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

2019-10-05 Thread Evangelos Foutras via arch-commits
Date: Saturday, October 5, 2019 @ 21:48:10
  Author: foutrelis
Revision: 513017

archrelease: copy trunk to community-staging-x86_64

Added:
  beignet/repos/community-staging-x86_64/
  beignet/repos/community-staging-x86_64/PKGBUILD
(from rev 513016, beignet/trunk/PKGBUILD)
  beignet/repos/community-staging-x86_64/llvm8.patch
(from rev 513016, beignet/trunk/llvm8.patch)
  beignet/repos/community-staging-x86_64/llvm9.patch
(from rev 513016, beignet/trunk/llvm9.patch)

-+
 PKGBUILD|   53 
 llvm8.patch |   56 +
 llvm9.patch |  182 ++
 3 files changed, 291 insertions(+)

Copied: beignet/repos/community-staging-x86_64/PKGBUILD (from rev 513016, 
beignet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-05 21:48:10 UTC (rev 513017)
@@ -0,0 +1,53 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Antoine Lubineau 
+# Contributor: Leopold Bloom 
+# Contributor: Michal Krenek (a.k.a. Mikos) 
+
+pkgname=beignet
+pkgver=1.3.2+12+gfc5f430c
+pkgrel=3
+pkgdesc="An open source OpenCL implementation for Intel IvyBridge & Haswell 
iGPUs"
+arch=('x86_64')
+url="https://01.org/${pkgname};
+license=('LGPL')
+depends=('glu' 'llvm-libs' 'clang' 'mesa' 'opencl-headers')
+makedepends=('git' 'llvm' 'cmake' 'python' 'ocl-icd')
+provides=('opencl-intel' 'opencl-driver')
+conflicts=('opencl-intel')
+_commit=fc5f430cb7b7a8f694d86acbb038bd5b38ec389c  # master as of 2018-08-20
+source=("git+https://anongit.freedesktop.org/git/beignet.git#commit=$_commit;
+'llvm8.patch'
+'llvm9.patch')
+sha256sums=('SKIP'
+'f16b13a3263b5042081094cd20c9e09c20a3a6d6e1dd796f460e4f447cfbb598'
+'2a0229629ad228b54fdb930d18a94c6879024a41b43ed5265c758bf508cd4bc6')
+
+prepare() {
+mkdir -p build
+cd ${pkgname}
+
+# Remove implementation of cl_intel_device_side_avc_motion_estimation
+# (conflicts with the implemention in Clang 8)
+git revert -n 9b7ca443cf7b 9cb7ff4c285d
+
+# Patches from FreeBSD to build with newer LLVM
+patch -Np0 -i ../llvm8.patch
+patch -Np0 -i ../llvm9.patch
+}
+
+build() {
+cd build
+cmake ../${pkgname} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_BUILD_TYPE=RELEASE
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+# Remove headers already provided by 'opencl-headers'
+cd "${pkgdir}/usr/include/CL"
+rm cl.h cl_egl.h cl_ext.h cl_gl.h cl_gl_ext.h cl_platform.h opencl.h
+}

Copied: beignet/repos/community-staging-x86_64/llvm8.patch (from rev 513016, 
beignet/trunk/llvm8.patch)
===
--- community-staging-x86_64/llvm8.patch(rev 0)
+++ community-staging-x86_64/llvm8.patch2019-10-05 21:48:10 UTC (rev 
513017)
@@ -0,0 +1,56 @@
+From 75c152599a7c1739e6dadcdb9b377acf7e44d9cf Mon Sep 17 00:00:00 2001
+From: Jan Beich 
+Date: Wed, 30 Jan 2019 12:42:34 +
+Subject: [PATCH] lang/beignet: unbreak with llvm80
+
+Regressed by https://github.com/llvm/llvm-project/commit/721d95713a9e
+
+unable to load /usr/local/lib/beignet//libgbeinterp.so which is part of the 
driver, please check!
+ld-elf.so.1: /usr/local/lib/beignet//libgbeinterp.so: Undefined symbol 
"_ZN4llvm24DisableABIBreakingChecksE"
+
+Regressed by https://github.com/llvm/llvm-project/commit/4a2d58e16acc
+
+backend/src/llvm/llvm_gen_backend.cpp:3076:5: error:
+  unknown type name 'TerminatorInst'
+TerminatorInst *term = bb->getTerminator();
+^
+backend/src/llvm/llvm_gen_backend.cpp:3083:5: error:
+  unknown type name 'TerminatorInst'
+TerminatorInst *term = bb->getTerminator();
+^
+
+--- backend/src/CMakeLists.txt.orig2017-09-22 08:05:22 UTC
 backend/src/CMakeLists.txt
+@@ -168,6 +168,7 @@ add_dependencies(gbe beignet_bitcode)
+ endif (NOT (USE_STANDALONE_GBE_COMPILER STREQUAL "true"))
+ 
+ add_library(gbeinterp SHARED gbe_bin_interpreter.cpp)
++target_link_libraries(gbeinterp ${LLVM_MODULE_LIBS})
+ 
+ if (LLVM_VERSION_NODOT VERSION_EQUAL 34)
+   find_library(TERMINFO NAMES tinfo ncurses)
+--- backend/src/llvm/llvm_gen_backend.cpp.orig 2017-10-24 06:04:48 UTC
 backend/src/llvm/llvm_gen_backend.cpp
+@@ -3073,14 +3073,22 @@ namespace gbe
+ 
+ 
+   static unsigned getChildNo(BasicBlock *bb) {
++#if LLVM_VERSION_MAJOR < 8
+ TerminatorInst *term = bb->getTerminator();
++#else
++Instruction *term = bb->getTerminator();
++#endif
+ return term->getNumSuccessors();
+   }
+ 
+   // return NULL if index out-range of children number
+   static BasicBlock *getChildPossible(BasicBlock *bb, unsigned index) {
+ 
++#if LLVM_VERSION_MAJOR < 8
+ TerminatorInst *term = bb->getTerminator();
++#else

[arch-commits] Commit in libreoffice-fresh-i18n/repos (2 files)

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 21:38:31
  Author: andyrtr
Revision: 363872

archrelease: copy trunk to testing-any

Added:
  libreoffice-fresh-i18n/repos/testing-any/
  libreoffice-fresh-i18n/repos/testing-any/PKGBUILD
(from rev 363871, libreoffice-fresh-i18n/trunk/PKGBUILD)

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

Copied: libreoffice-fresh-i18n/repos/testing-any/PKGBUILD (from rev 363871, 
libreoffice-fresh-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-10-05 21:38:31 UTC (rev 363872)
@@ -0,0 +1,541 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=libreoffice-fresh-i18n
+
+pkgver=6.3.2
+pkgrel=1
+_rcver=${pkgver}.2
+#_oodlver=${pkgver}.0.beta1
+_oodlver=${pkgver}
+
+arch=('any')
+url="http://www.documentfoundation.org;
+license=('LGPL')
+
+#https://download.documentfoundation.org/mirrors/all.html
+
+_url="https://download.documentfoundation.org/libreoffice/stable;
+#_url="https://download.documentfoundation.org/libreoffice/testing;
+#_url="https://dev-builds.libreoffice.org/pre-releases;
+
+
+#_url+="/${pkgver}-rc2/rpm/x86_64"
+#_url+="/${pkgver}/rpm/x86_64"
+_url+="/${pkgver}/rpm/x86_64"
+#_url+="/rpm/x86_64"
+
+_languages=(
+  'af"Afrikaans"   0'
+  'am"Amharic" 1'
+  'ar"Arabic"  1'
+  'as"Assamese (India)"0'
+  'ast   "Asturianu"   1'
+  'be"Belarusian"  0'
+  'bg"Bulgarian"   1'
+  'bn"Bengali" 1'
+  'bn-IN "Bengali (India)" 1'
+  'bo"Tibetan" 1'
+  'br"Breton"  0'
+  'brx   "Bodo"0'
+  'bs"Bosnian" 1'
+  'ca"Catalan" 1'
+  'ca-valencia   "Catalan (Valencia)"  1'
+  'cs"Czech"   1'
+  'cy"Welsh"   0'
+  'da"Danish"  1'
+  'de"German"  1'
+  'dgo   "Dogri"   0'
+  'dz"Dzongkha"1'
+  'el"Greek"   1'
+  'en-GB "English (GB)"1'
+  'en-ZA "English (ZA)"1'
+  'eo"Esperanto"   1'
+  'es"Spanish" 1'
+  'et"Estonian"1'
+  'eu"Basque"  1'
+  'fa"Persian" 0'
+  'fi"Finnish" 1'
+  'fr"French"  1'
+  'ga"Irish"   0'
+  'gd"Gaelic (Scottish)"   0'
+  'gl"Galician"1'
+  'gu"Gujarati"1'
+  'he"Hebrew"  1'
+  'hi"Hindi"   1'
+  'hr"Croatian"1'
+  'hu"Hungarian"   1'
+  'id"Indonesian"  1'
+  'is"Icelandic"   1'
+  'it"Italian" 1'
+  'ja"Japanese"1'
+  'ka"Georgian"1'
+  'kk"Kazakh"  0'
+  'km"Khmer (Cambodia)"1'
+  'kmr-Latn  "Kurdish" 0'
+  'kn"Kannada" 0'
+  'ko"Korean"  1'
+  'kok   "Konkani" 0'
+  'ks"Kashmiri"0'
+  'lb"Luxembourgish"   0'
+  'lo"Lao" 1'
+  'lt"Lithuanian"  1'
+  'lv"Latvian" 1'
+  'mai   "Maithili"0'
+  'mk"Macedonian"  1'
+  'ml"Malayalam"   0'
+  'mn"Mongolian"   0'
+  'mni   "Manipuri"0'
+  'mr"Marathi" 0'
+  'my"Burmese" 0'
+  'nb"Norwegian Bokmal"1'
+  'ne"Nepali"  1'
+  'nl"Dutch"   1'
+  'nn"Norwegian Nynorsk"   1'
+  'nr"Ndebele (South)" 0'
+  'nso   "Northern Sotho"  0'
+  'oc"Occitan" 0'
+  'om"Oromo"   1'
+  'or"Oriya"   0'
+  'pa-IN "Punjabi (India)" 0'
+  'pl"Polish"  1'
+  'pt"Portuguese"  1'
+  'pt-BR "Portuguese (Brasil)" 1'
+  'ro"Romanian"1'
+  'ru  

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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 21:37:08
  Author: andyrtr
Revision: 363871

upgpkg: libreoffice-fresh-i18n 6.3.2-1

upstream update 6.3.2

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  348 ++---
 1 file changed, 174 insertions(+), 174 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:25:23 UTC (rev 363870)
+++ PKGBUILD2019-10-05 21:37:08 UTC (rev 363871)
@@ -3,7 +3,7 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=6.3.1
+pkgver=6.3.2
 pkgrel=1
 _rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
@@ -137,351 +137,351 @@
   'zu"Zulu"0'
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # "LibreOffice Build 
Team (CODE SIGNING KEY) "
-sha256sums=('8baae9f8f7dcf3e63c60db35fa5af5f2ef0eb19854f0adfd36f8de129a452c40'
+sha256sums=('b62a2be2e8f1a7b4557cae943bd25cc96cc89faec564d372d2cb99238041'
 'SKIP'
-'e946c5fd7a7beaddd40be1f2e0139973efb2595abb7074198a8a2960672a75ad'
+'96ff87e936290c32e69b9b6ce04988ff75ce35307895b5cc7774a6f72647f8a5'
 'SKIP'
-'7b3955d44f4a9d3375b62a6333dd6c2606b83e5e5d6f71c931cadaadecdfab0b'
+'71e05226fcc3fabdb2a68582feb4233859c4a4a1a6be9f63ceb18c603ecd8bc0'
 'SKIP'
-'8c43514e17310e3dc88bf11f47a6b0cd08e30ef5e02d9fada6de9082a8c7586b'
+'e5eadbb21ec06349582385fa902ab16f6a6a9932592e9b4b432a97fb3a3cc0c0'
 'SKIP'
-'af7641c188287950949c4afea3f3a2263ff1e13a628a2984ee40bb3b57c80023'
+'63d21f09618b97cd1b749a45feecf9096bd9fd19e93d508fd8181599f1e44c56'
 'SKIP'
-'29e973683d789b8b00734869fdd4c12379aa55e0679852272a26cb65e771cac7'
+'82c555851fd2fa07b78ce25f7e372ea79d4607691b98f30c25e9605a264aece2'
 'SKIP'
-'7b38dce0a663d01529faba4e93b3ed3b4d81c9a30d047a21b4ff99e80517c19f'
+'f71b3c68800a3cea04110a49db011765247523afaf89401861e1151f1a06566a'
 'SKIP'
-'3cc78b4285fbb58a6c7b70fa5c9a91655b6f748e8b7ff4198bac34ed9733e565'
+'33b460b3a9bc9620e93eb6230d107397b2f1bd33cbebd32750c312fa6d4b61fb'
 'SKIP'
-'cfe76eef40631f20aa0424af583e648b98f21f1519a5f7f17f3bae6f52143756'
+'60ccef0090ed04831b3bebe770491085554c6f02f2cc5d5a8c42fb75fb1ddd0f'
 'SKIP'
-'3143b3cf41921e3c4b6fa2d1acbe9935b8bb096bc91c3bb19c0195b9d4a72766'
+'6247a106fecd8b54c158377ba1defcb4d861c3184be0a3f36dfd6611eb451f3e'
 'SKIP'
-'06aea347efa32068325b3cd73a964065ea518cb6ae765d29de5dd37ad3aa6ca0'
+'2b75a727454ee44420f3bb1ab691a23e2fa8f8c8d2a26506dd5b76e72bd028e9'
 'SKIP'
-'4b9a3eb6668c9a67c2a40fc993977e17ff241b84f166bb1ffe2e28ac28c1e797'
+'bb8e5c04c89f2a06eaa50cbb60e940809ded408287a1ee81c1c6baa6534a5a4b'
 'SKIP'
-'ec820c86d4c13780848137a894c3b0268d4469b0d6b68743cc2c2d950c76f74b'
+'e711a12b9d849d4f75fe2e42f077a454021f623905975af06fa303c14866f38e'
 'SKIP'
-'c2b237834ac1dc2d8b713c029556b68f2a28d3a64d987c8fc558915f5bba0fae'
+'f926fb2ef040b06c37dd809e24dc91b6ee1db4b570f0886f7e1ba32e0a9bb27f'
 'SKIP'
-'12caf1157ccc457c9622776df1fca4f8b69e544ec926a85aa02af9180d46c27b'
+'f0bfa72a95ccea658871f99ceba88e52441729925117730b666ef7d5ac945794'
 'SKIP'
-'5fd77bcd17feec88de4db34ce5ccb05575ceed4c3277b176850cd1e860ad0ef0'
+'a943695c49c68994d8477163bcb8adf0ab7ba4670f27774210f74e945da3f1e9'
 'SKIP'
-'acc1bad4264ba18c3308717d47c1ea0fe4bf0bab306425097f4ca39cd5d4'
+'2d9d0b5c4d312501ef531ba5d161137e06a1d3e1113f6b233f44255f30ee0581'
 'SKIP'
-'41daf42ddd3b729a0d177c9412a05d9bddf5b30931002d4a67a8327ea24ec211'
+'3f624397b33e5ff754b281f8cd39ad2154d3a7e884b7ecf6980dd56ab0adf28f'
 'SKIP'
-'1d4414e4b55c352d56fbaeea980f134d5246a4cb3b911a93ae52d42da3634ff0'
+'809a219416b1ebe0963bcfbcf77e5ea3a05acb6f577a9823f81ed13f731b83e4'
 'SKIP'
-'4a3fae29b593010eef415177ae377ba2fb2771c49ecb21a557bec93e1d2196ce'
+'e8ca7fb25236a5dcfa7a06d25554f8f532adce92a36fb5d40b2cb84b9af53d6a'
 'SKIP'
-'961c0bd2bbe9de3c8e8dcb8782fd9298cd53654ed24702d1059e2f063685bf7d'
+'00d5b68ad9031979d14eef19bc6f58fb1f10985f2694c8daa13eedba7dac09db'
 'SKIP'
-'67c132f51529b0368eff1319072b52f118775297f22b7d7210e021e9ccf97d50'
+'37017f16db263d47b4bb165a120edc933e845a8cccd92170d192f7d56dc42a73'
 'SKIP'
-'11f16fd2bcb6417f78fcdca5442065edf55e38c5dd1a37f4fc5b6b41a052d234'
+'3ef5aecf7c7a0f1f6e5bbfe919fc66746718c25593becaaf2b2159323f96cbe1'
 'SKIP'
-   

[arch-commits] Commit in libreoffice-fresh/repos/testing-x86_64 (8 files)

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 21:25:23
  Author: andyrtr
Revision: 363870

archrelease: copy trunk to testing-x86_64

Added:
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
(from rev 363869, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
(from rev 363869, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
(from rev 363869, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 363869, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
Deleted:
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff

--+
 PKGBUILD |  664 -
 libreoffice-fresh.csh|   16 
 libreoffice-fresh.sh |   16 
 make-pyuno-work-with-system-wide-module-install.diff |   36 
 4 files changed, 366 insertions(+), 366 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 21:24:59 UTC (rev 363869)
+++ PKGBUILD2019-10-05 21:25:23 UTC (rev 363870)
@@ -1,332 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Bartłomiej Piotrowski 
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_default_client_id=413772536636.apps.googleusercontent.com
-_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
-
-pkgbase=libreoffice-fresh
-pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=6.3.1.2
-pkgver=6.3.1
-pkgrel=2
-arch=('x86_64')
-license=('LGPL3')
-url="https://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
-   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
-   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
-   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
-   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
-   'gperf' 'gtk3' 'qt5-base' 'plasma-framework' 'cppunit' 'beanshell' 
'clucene'
-   'junit' 'libmythes' 'libwpg'  'java-environment=8' 'postgresql-libs' 
'mariadb-libs' 'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
-   'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
-   'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
-   'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
-)
-
-_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
-#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="https://dev-www.libreoffice.org/src;
-_additional_source_url2="https://dev-www.libreoffice.org/extern;
-source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
-   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
-   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
-   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
-   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2019-04-03.tar.bz2
-   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
-   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
-   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   ${_additional_source_url}/pdfium-3794.tar.bz2
-   ${_additional_source_url}/lxml-4.1.1.tgz
-   ${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
-   
${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite
-   
${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
 # for test suite
-   

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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 21:24:59
  Author: andyrtr
Revision: 363869

upgpkg: libreoffice-fresh 6.3.2-1

upstream update 6.3.2

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:21:14 UTC (rev 363868)
+++ PKGBUILD2019-10-05 21:24:59 UTC (rev 363869)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=6.3.1.2
-pkgver=6.3.1
-pkgrel=2
+_LOver=6.3.2.2
+pkgver=6.3.2
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -72,11 +72,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('78c7c9a4d2203daeb1d3a6e7e8a522492b5d89fd374903558876dc3300bcc251'
+sha256sums=('407da27b18f10e8beda6a9c7137273098ddfd59503e502d99e239ff7fb07bd75'
 'SKIP'
-'c61cfe66488e768a40565139ada3cdbd2d91d9b5931fcf09738823ca05ac7980'
+'128653fca87641343011b4f83c6c7367f79b0d3f299b76ca9c00aa670a8ea7aa'
 'SKIP'
-'090ccea6d46695e5a2435196835103173eb75a6a57539b686d5aac092f6c088c'
+'2d77f71de0f46e1698904cb9238b579a1bfce19c0ae0f165fc9fb695b9ec5973'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'


[arch-commits] Commit in python-attrs/repos (testing-any testing-any/PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:21:14
  Author: felixonmars
Revision: 363868

archrelease: copy trunk to testing-any

Added:
  python-attrs/repos/testing-any/
  python-attrs/repos/testing-any/PKGBUILD
(from rev 363867, python-attrs/trunk/PKGBUILD)

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

Copied: python-attrs/repos/testing-any/PKGBUILD (from rev 363867, 
python-attrs/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-10-05 21:21:14 UTC (rev 363868)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-attrs
+pkgname=('python-attrs' 'python2-attrs')
+pkgver=19.2.0
+pkgrel=1
+pkgdesc="Attributes without boilerplate."
+arch=('any')
+license=('MIT')
+url="https://attrs.readthedocs.org/;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
+  'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
+source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz;)
+sha512sums=('c6239f5553d99f324a36193d9f6e684fdce26efcf4da866d1b995cd644909ec4b58ac6ef6c20a0fda4b8a16d00ec0aacfd3970a52b68997fd10804d5286b41c6')
+
+prepare() {
+  cp -a attrs-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py build
+ 
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py pytest
+}
+ 
+package_python-attrs() {
+  depends=('python')
+ 
+  cd attrs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+ 
+package_python2-attrs() {
+  depends=('python2')
+ 
+  cd attrs-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:21:12
  Author: felixonmars
Revision: 363867

upgpkg: python-attrs 19.2.0-1

Modified:
  python-attrs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:59:45 UTC (rev 363866)
+++ PKGBUILD2019-10-05 21:21:12 UTC (rev 363867)
@@ -2,7 +2,7 @@
 
 pkgbase=python-attrs
 pkgname=('python-attrs' 'python2-attrs')
-pkgver=19.1.0
+pkgver=19.2.0
 pkgrel=1
 pkgdesc="Attributes without boilerplate."
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
   'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
 source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz;)
-sha512sums=('22ee45e8b10a7abe10e720788c5cfab424d0bfe70e595dfb116928b8ebea497a747e8234d96549da00f0967de750fb943db0cd3669354253a27be2ca30fe413a')
+sha512sums=('c6239f5553d99f324a36193d9f6e684fdce26efcf4da866d1b995cd644909ec4b58ac6ef6c20a0fda4b8a16d00ec0aacfd3970a52b68997fd10804d5286b41c6')
 
 prepare() {
   cp -a attrs-$pkgver{,-py2}


[arch-commits] Commit in dnscrypt-proxy/repos/community-x86_64 (10 files)

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:09:31
  Author: dvzrv
Revision: 513015

archrelease: copy trunk to community-x86_64

Added:
  dnscrypt-proxy/repos/community-x86_64/PKGBUILD
(from rev 513014, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-x86_64/configuration.diff
(from rev 513014, dnscrypt-proxy/trunk/configuration.diff)
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.install
(from rev 513014, dnscrypt-proxy/trunk/dnscrypt-proxy.install)
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.service
(from rev 513014, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.socket
(from rev 513014, dnscrypt-proxy/trunk/dnscrypt-proxy.socket)
Deleted:
  dnscrypt-proxy/repos/community-x86_64/PKGBUILD
  dnscrypt-proxy/repos/community-x86_64/configuration.diff
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.install
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.service
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.socket

+
 PKGBUILD   |  140 ++--
 configuration.diff |  234 +++
 dnscrypt-proxy.install |   14 +-
 dnscrypt-proxy.service |   48 -
 dnscrypt-proxy.socket  |   32 +++---
 5 files changed, 234 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 21:09:24 UTC (rev 513014)
+++ PKGBUILD2019-10-05 21:09:31 UTC (rev 513015)
@@ -1,70 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Felix Yan 
-# Contributor: Techlive Zheng 
-# Contributor: peace4all 
-
-pkgname=dnscrypt-proxy
-pkgver=2.0.27
-pkgrel=1
-pkgdesc="DNS proxy, supporting encrypted DNS protocols such as DNSCrypt v2 and 
DNS-over-HTTPS"
-arch=('x86_64')
-url="https://dnscrypt.info;
-license=('custom:ISC')
-depends=('glibc')
-makedepends=('git' 'go-pie')
-install="${pkgname}.install"
-backup=("etc/${pkgname}/${pkgname}.toml"
-"etc/${pkgname}/blacklist.txt"
-"etc/${pkgname}/cloaking-rules.txt"
-"etc/${pkgname}/forwarding-rules.txt"
-"etc/${pkgname}/ip-blacklist.txt"
-"etc/${pkgname}/whitelist.txt"
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jedisct1/${pkgname}/archive/${pkgver}.tar.gz;
-"${pkgname}.service"
-"${pkgname}.socket"
-'configuration.diff')
-sha512sums=('68cecec0228b3f03d5c50576c7dec32c7474a22bd1740d43b29514b5a00f27376ed5236302fa68c493f0c188134855b277f92937fa726783af3f7246'
-
'aa871927bbc37d0c629e75a39cbfe50ce6062a19d7fe5b61895c604d6a480ba8f484cf207943c6ee7bf2dc3c7799d8f7a2b1ea5c8e586920c97730a7c503985e'
-
'56a56e87032da9316b392b0613124b0743673041596c717005541ae9b3994c7fc16c02497ea773d321f45d8e0f9ea8fda00783062cef4d5c8277b5b6f7cb10d5'
-
'6144f3d33f3d85c9a4e5573f88e92f1b9d7118fd654072eeac6c3f76085086d4b2464e1d3579d8501153f453bc5125859d148fc3b3486d26368d1f51911aeb33')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  patch -Np1 -i ../configuration.diff
-  # create empty ip-blacklist.txt
-  touch "${pkgname}/ip-blacklist.txt"
-}
-
-build() {
-  cd "$pkgname-$pkgver/${pkgname}"
-  go build -ldflags="-linkmode external -extldflags ${LDFLAGS} -s -w"
-}
-
-package() {
-  cd $pkgname-$pkgver
-  # executable
-  install -vDm 755 "${pkgname}/${pkgname}" -t "${pkgdir}/usr/bin/"
-  # configuration
-  install -vDm 644 "${pkgname}/example-${pkgname}.toml" \
-"${pkgdir}/etc/${pkgname}/${pkgname}.toml"
-  install -vDm 644 "${pkgname}/example-blacklist.txt" \
-"${pkgdir}/etc/${pkgname}/blacklist.txt"
-  install -vDm 644 "${pkgname}/example-cloaking-rules.txt" \
-"${pkgdir}/etc/${pkgname}/cloaking-rules.txt"
-  install -vDm 644 "${pkgname}/example-forwarding-rules.txt" \
-"${pkgdir}/etc/${pkgname}/forwarding-rules.txt"
-  install -vDm 644 "${pkgname}/ip-blacklist.txt" \
-"${pkgdir}/etc/${pkgname}/ip-blacklist.txt"
-  install -vDm 644 "${pkgname}/example-whitelist.txt" \
-"${pkgdir}/etc/${pkgname}/whitelist.txt"
-  # systemd service/socket
-  install -vDm 644 "../${pkgname}."{service,socket} \
--t "${pkgdir}/usr/lib/systemd/system/"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-# vim:set ts=2 sw=2 et:

Copied: dnscrypt-proxy/repos/community-x86_64/PKGBUILD (from rev 513014, 
dnscrypt-proxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 21:09:31 UTC (rev 513015)
@@ -0,0 +1,70 @@
+# Maintainer: David Runge 
+# Contributor: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=2.0.27
+pkgrel=2
+pkgdesc="DNS proxy, supporting encrypted DNS protocols such as DNSCrypt v2 and 
DNS-over-HTTPS"

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

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:09:24
  Author: dvzrv
Revision: 513014

upgpkg: dnscrypt-proxy 2.0.27-2

Rebuilding against go 1.13.1 to fix CVE-2019-16276.

Modified:
  dnscrypt-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:07:45 UTC (rev 513013)
+++ PKGBUILD2019-10-05 21:09:24 UTC (rev 513014)
@@ -5,7 +5,7 @@
 
 pkgname=dnscrypt-proxy
 pkgver=2.0.27
-pkgrel=1
+pkgrel=2
 pkgdesc="DNS proxy, supporting encrypted DNS protocols such as DNSCrypt v2 and 
DNS-over-HTTPS"
 arch=('x86_64')
 url="https://dnscrypt.info;


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

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:07:45
  Author: dvzrv
Revision: 513013

archrelease: copy trunk to community-staging-x86_64

Added:
  umurmur/repos/community-staging-x86_64/
  umurmur/repos/community-staging-x86_64/PKGBUILD
(from rev 513012, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-staging-x86_64/umurmur.service
(from rev 513012, umurmur/trunk/umurmur.service)
  umurmur/repos/community-staging-x86_64/umurmur.sysusers
(from rev 513012, umurmur/trunk/umurmur.sysusers)
  umurmur/repos/community-staging-x86_64/umurmur.tmpfiles
(from rev 513012, umurmur/trunk/umurmur.tmpfiles)

--+
 PKGBUILD |   55 +
 umurmur.service  |   26 +
 umurmur.sysusers |1 
 umurmur.tmpfiles |1 
 4 files changed, 83 insertions(+)

Copied: umurmur/repos/community-staging-x86_64/PKGBUILD (from rev 513012, 
umurmur/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-05 21:07:45 UTC (rev 513013)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Robert Knauer 
+# Contributor: xav 
+
+pkgname=umurmur
+pkgver=0.2.17
+pkgrel=15
+pkgdesc='Minimalistic Mumble server'
+url="https://github.com/umurmur/umurmur;
+arch=('x86_64')
+license=('BSD')
+depends=('mbedtls' 'libconfig' 'protobuf-c')
+makedepends=('cmake')
+backup=('etc/umurmur/umurmur.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz
+umurmur.sysusers
+umurmur.service
+umurmur.tmpfiles)
+sha256sums=('e77b7b6616768f4a1c07442afe49a772692f667b00c23cc85909d4dd0ce206d2'
+'0fc68df464ee51a431d934d068aed0be5f8c5e64d0bd29848f97532d39f8c310'
+'b8b22b6299777fbd1d12e3105280c8585ceca9b6caf7b8d3ab0642c5a56b031f'
+'287068f47fc035a70e2ae0c8434e8013f176d185bf7688216c36976982fe4491')
+sha512sums=('a496a51fd7815ad117f5aee17bb78cbd319c584ad60ab8aebbfd8ddf7b1760f443f2337bc74be1e0d5af17d3c3df2ae6c9060eca576cf1e6ed4c6cb0825e9c15'
+
'd84950a32ab8a2e84f5fe333cd2894e52aba624531644d106c982aa4ff04271d318543398fa7f48c719f26338679fa971bb5332472e9040ac9aa8a9b4a1f2832'
+
'746a3e2d9e8c5154bdfb2cef6cbe39cccf0356bc1dde0434b92ec1a6b224a5bfa51fd15483c3ac5a75292eae7a6d4b0431ecb2a586bdd9fcc3fe9b2a7bff64a1'
+
'825b50448231b5d791e87d7c4c471fdfe2e9a1560dad6fc90c2f4f8d0c5ed682291bf20b147a6a8c7ae361aeb8b1a11c24c6d41ffc17f06fb0f5ccd8208a899a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  mkdir build
+}
+
+build() {
+  cd ${pkgname}-${pkgver}/build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSSL=mbedtls
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -vDm 640 "${pkgdir}/usr/etc/umurmur.conf" -t "${pkgdir}/etc/umurmur"
+  rm -r "${pkgdir}/usr/etc"
+  install -vDm 644 "${srcdir}/umurmur.service" -t 
"${pkgdir}/usr/lib/systemd/system"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -vDm 644 "${srcdir}/umurmur.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/umurmur.conf"
+  install -vDm 644 "${srcdir}/umurmur.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/umurmur.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: umurmur/repos/community-staging-x86_64/umurmur.service (from rev 
513012, umurmur/trunk/umurmur.service)
===
--- community-staging-x86_64/umurmur.service(rev 0)
+++ community-staging-x86_64/umurmur.service2019-10-05 21:07:45 UTC (rev 
513013)
@@ -0,0 +1,26 @@
+[Unit]
+Description=Minimalistic Mumble server
+After=network.target
+
+[Service]
+Type=simple
+User=umurmur
+Group=umurmur
+PIDFile=/run/umurmurd.pid
+ExecStartPre=/usr/bin/umurmurd -t -c /etc/umurmur/umurmur.conf
+ExecStart=/usr/bin/umurmurd -d -r -c /etc/umurmur/umurmur.conf
+ExecReload=/bin/kill -HUP $MAINPID
+PrivateDevices=yes
+PrivateTmp=yes
+ProtectSystem=strict
+ReadWriteDirectories=/etc/umurmur
+ProtectHome=yes
+ProtectControlGroups=yes
+ProtectKernelModules=yes
+ProtectKernelTunables=yes
+LockPersonality=yes
+NoNewPrivileges=yes
+LimitRTPRIO=1
+
+[Install]
+WantedBy=multi-user.target

Copied: umurmur/repos/community-staging-x86_64/umurmur.sysusers (from rev 
513012, umurmur/trunk/umurmur.sysusers)
===
--- community-staging-x86_64/umurmur.sysusers   (rev 0)
+++ community-staging-x86_64/umurmur.sysusers   2019-10-05 21:07:45 UTC (rev 
513013)
@@ -0,0 +1 @@
+u umurmur - - -

Copied: umurmur/repos/community-staging-x86_64/umurmur.tmpfiles (from rev 
513012, umurmur/trunk/umurmur.tmpfiles)
===
--- 

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

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:07:28
  Author: dvzrv
Revision: 513012

upgpkg: umurmur 0.2.17-15

Rebuilding against protobuf 3.9.2 (and quoting the url with double quotes).

Modified:
  umurmur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:06:09 UTC (rev 513011)
+++ PKGBUILD2019-10-05 21:07:28 UTC (rev 513012)
@@ -6,9 +6,9 @@
 
 pkgname=umurmur
 pkgver=0.2.17
-pkgrel=14
+pkgrel=15
 pkgdesc='Minimalistic Mumble server'
-url='https://github.com/umurmur/umurmur'
+url="https://github.com/umurmur/umurmur;
 arch=('x86_64')
 license=('BSD')
 depends=('mbedtls' 'libconfig' 'protobuf-c')


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:06:06
  Author: felixonmars
Revision: 513010

upgpkg: certbot-nginx 0.39.0-1

Modified:
  certbot-nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:01:46 UTC (rev 513009)
+++ PKGBUILD2019-10-05 21:06:06 UTC (rev 513010)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot-nginx
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Nginx plugin for Let’s Encrypt client"
 arch=('any')
@@ -16,7 +16,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('4fe7fa1ad131cb9971b0cbc4934d4d4167920b16b35da310cf339ae64d46a72bd33ee0b5fc5b3177a564be627061cb1c2394a180ba42cc61c9180539372637c6'
+sha512sums=('cd318a73f892b41d44adf5fa4fbb7fadc90fe5fe78e912e8d2658ef757d16e71822424a3692deb8303140b4ef68d7dc8a1aee8b06ad0aec06bfa2ca66101592a'
 'SKIP')
 
 build() {


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:06:09
  Author: felixonmars
Revision: 513011

archrelease: copy trunk to community-any

Added:
  certbot-nginx/repos/community-any/PKGBUILD
(from rev 513010, certbot-nginx/trunk/PKGBUILD)
Deleted:
  certbot-nginx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 21:06:06 UTC (rev 513010)
+++ PKGBUILD2019-10-05 21:06:09 UTC (rev 513011)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot-nginx
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Nginx plugin for Let’s Encrypt client"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-mock' 'python-pyopenssl' 
'python-pyparsing'
- 'python-setuptools' 'python-zope-interface')
-checkdepends=('python-pytest')
-replaces=("letsencrypt-nginx")
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('4fe7fa1ad131cb9971b0cbc4934d4d4167920b16b35da310cf339ae64d46a72bd33ee0b5fc5b3177a564be627061cb1c2394a180ba42cc61c9180539372637c6'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-nginx/repos/community-any/PKGBUILD (from rev 513010, 
certbot-nginx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 21:06:09 UTC (rev 513011)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-nginx
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Nginx plugin for Let’s Encrypt client"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-mock' 'python-pyopenssl' 
'python-pyparsing'
+ 'python-setuptools' 'python-zope-interface')
+checkdepends=('python-pytest')
+replaces=("letsencrypt-nginx")
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('cd318a73f892b41d44adf5fa4fbb7fadc90fe5fe78e912e8d2658ef757d16e71822424a3692deb8303140b4ef68d7dc8a1aee8b06ad0aec06bfa2ca66101592a'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-linode/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:01:46
  Author: felixonmars
Revision: 513009

archrelease: copy trunk to community-any

Added:
  certbot-dns-linode/repos/community-any/PKGBUILD
(from rev 513008, certbot-dns-linode/trunk/PKGBUILD)
Deleted:
  certbot-dns-linode/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 21:01:40 UTC (rev 513008)
+++ PKGBUILD2019-10-05 21:01:46 UTC (rev 513009)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-linode
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Linode DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('4d7d9a1fc8e71cafe3bca4b3b38e12da637fd7224361074edafc5883647640f3ee0236ab316a92204e888ea433afcc6a9f464c9f6dff576a71468cf6ef6612ac'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-linode/repos/community-any/PKGBUILD (from rev 513008, 
certbot-dns-linode/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 21:01:46 UTC (rev 513009)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-linode
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Linode DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('9ca19108cb4716c957aa02f8c1c74bd6c5c59599c2531681813f6bb1c176c2b276f6db58b7068142cf412654d0d36a64d72b37fe3b1d1da6689eadc757ab47b5'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-linode/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:01:40
  Author: felixonmars
Revision: 513008

upgpkg: certbot-dns-linode 0.39.0-1

Modified:
  certbot-dns-linode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:01:13 UTC (rev 513007)
+++ PKGBUILD2019-10-05 21:01:40 UTC (rev 513008)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-linode
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Linode DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('4d7d9a1fc8e71cafe3bca4b3b38e12da637fd7224361074edafc5883647640f3ee0236ab316a92204e888ea433afcc6a9f464c9f6dff576a71468cf6ef6612ac'
+sha512sums=('9ca19108cb4716c957aa02f8c1c74bd6c5c59599c2531681813f6bb1c176c2b276f6db58b7068142cf412654d0d36a64d72b37fe3b1d1da6689eadc757ab47b5'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-gehirn/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:00:50
  Author: felixonmars
Revision: 513005

archrelease: copy trunk to community-any

Added:
  certbot-dns-gehirn/repos/community-any/PKGBUILD
(from rev 513004, certbot-dns-gehirn/trunk/PKGBUILD)
Deleted:
  certbot-dns-gehirn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 21:00:44 UTC (rev 513004)
+++ PKGBUILD2019-10-05 21:00:50 UTC (rev 513005)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-gehirn
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('2a12cdb534e69d36eed05185360b9db6c52443a927cd29195c72d6f2db7af170aefb9d2df832e531d658537626e0b61529ff9b94e2f3fcfd5d8bba0f6427'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-gehirn/repos/community-any/PKGBUILD (from rev 513004, 
certbot-dns-gehirn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 21:00:50 UTC (rev 513005)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-gehirn
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('7a1456cd0078cfebee04b7d38d1f97474fd9a7ceb9aefdf6d5052e78ea9968ac2cd2f25571fe1f1751fbc5ef3d222c149a14a8d02e1ef5cc42aa07d33356d422'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in faust/trunk (PKGBUILD faust-2.15.11-llvm9.diff)

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:01:08
  Author: dvzrv
Revision: 513006

upgpkg: faust 2.15.11-2

Rebuilding against llvm9 (by adding a fix applicable to version 2.15.11 - the 
next release will be buildable against llvm9 by default).

Added:
  faust/trunk/faust-2.15.11-llvm9.diff
Modified:
  faust/trunk/PKGBUILD

--+
 PKGBUILD |9 +-
 faust-2.15.11-llvm9.diff |  165 +
 2 files changed, 171 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 21:00:50 UTC (rev 513005)
+++ PKGBUILD2019-10-05 21:01:08 UTC (rev 513006)
@@ -5,7 +5,7 @@
 
 pkgname=faust
 pkgver=2.15.11
-pkgrel=1
+pkgrel=2
 pkgdesc="A functional programming language for realtime audio signal 
processing."
 arch=('x86_64')
 url="https://faust.grame.fr/;
@@ -32,11 +32,14 @@
 'supercollider: for faust2supercollider'
 'texlive-core: for faust2pdf')
 options=('staticlibs')
-source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('24590a2f726e5aff577a8be57293940a2cb80bcacff7e33986c66c0aa1e4d27bbba6b1335b2855efc35e83b3a8206a12f4f3bb83aa813a817a648e174a3c15fc')
+source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"${pkgname}-2.15.11-llvm9.diff")
+sha512sums=('24590a2f726e5aff577a8be57293940a2cb80bcacff7e33986c66c0aa1e4d27bbba6b1335b2855efc35e83b3a8206a12f4f3bb83aa813a817a648e174a3c15fc'
+
'3e3edee491bf2c2ab9c6eb7a04f792448ef00bf364bea04babdf9c8b7bcf002b4ef142e413b0d8ba5f40cce413176a9ff021a1bab371500468cec5ee11cd1c12')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "../${pkgname}-2.15.11-llvm9.diff"
   # fix scripts requiring python2:
   # https://github.com/grame-cncm/faust/issues/301
   sed -e '1s/python/&2/' \

Added: faust-2.15.11-llvm9.diff
===
--- faust-2.15.11-llvm9.diff(rev 0)
+++ faust-2.15.11-llvm9.diff2019-10-05 21:01:08 UTC (rev 513006)
@@ -0,0 +1,165 @@
+diff -ruN a/compiler/generator/llvm/llvm_code_container.cpp 
b/compiler/generator/llvm/llvm_code_container.cpp
+--- a/compiler/generator/llvm/llvm_code_container.cpp  2019-03-14 
10:42:49.0 +0100
 b/compiler/generator/llvm/llvm_code_container.cpp  2019-10-05 
22:44:42.735096142 +0200
+@@ -76,7 +76,7 @@
+ 
+ // Set "-fast-math"
+ FastMathFlags FMF;
+-#if defined(LLVM_60) || defined(LLVM_70) || defined(LLVM_80)
++#if defined(LLVM_60) || defined(LLVM_70) || defined(LLVM_80) || 
defined(LLVM_90)
+ FMF.setFast();  // has replaced the below function
+ #else
+ FMF.setUnsafeAlgebra();
+@@ -106,7 +106,7 @@
+ 
+ // Set "-fast-math"
+ FastMathFlags FMF;
+-#if defined(LLVM_60) || defined(LLVM_70) || defined(LLVM_80)
++#if defined(LLVM_60) || defined(LLVM_70) || defined(LLVM_80) || 
defined(LLVM_90)
+ FMF.setFast();  // has replaced the below function
+ #else
+ FMF.setUnsafeAlgebra();
+@@ -228,7 +228,7 @@
+ Function::Create(llvm_compute_type, GlobalValue::ExternalLinkage, 
"compute" + fKlassName, fModule);
+ llvm_compute->setCallingConv(CallingConv::C);
+ 
+-#if !defined(LLVM_50) && !defined(LLVM_60) && !defined(LLVM_70) && 
!defined(LLVM_80)
++#if !defined(LLVM_50) && !defined(LLVM_60) && !defined(LLVM_70) && 
!defined(LLVM_80) && !defined(LLVM_90)
+ llvm_compute->setDoesNotAlias(3U);
+ llvm_compute->setDoesNotAlias(4U);
+ #endif
+diff -ruN a/compiler/generator/llvm/llvm_dsp_aux.cpp 
b/compiler/generator/llvm/llvm_dsp_aux.cpp
+--- a/compiler/generator/llvm/llvm_dsp_aux.cpp 2019-03-14 10:42:49.0 
+0100
 b/compiler/generator/llvm/llvm_dsp_aux.cpp 2019-10-05 22:47:39.383479149 
+0200
+@@ -43,7 +43,7 @@
+ #include 
+ #include 
+ 
+-#if defined(LLVM_40) || defined(LLVM_50) || defined(LLVM_60) || 
defined(LLVM_70) || defined(LLVM_80)
++#if defined(LLVM_40) || defined(LLVM_50) || defined(LLVM_60) || 
defined(LLVM_70) || defined(LLVM_80) || defined(LLVM_90)
+ #include 
+ #include 
+ #else
+diff -ruN a/compiler/generator/llvm/llvm_dynamic_dsp_aux.cpp 
b/compiler/generator/llvm/llvm_dynamic_dsp_aux.cpp
+--- a/compiler/generator/llvm/llvm_dynamic_dsp_aux.cpp 2019-03-14 
10:42:49.0 +0100
 b/compiler/generator/llvm/llvm_dynamic_dsp_aux.cpp 2019-10-05 
22:47:06.543779403 +0200
+@@ -76,7 +76,7 @@
+ #include 
+ #endif
+ 
+-#if defined(LLVM_40) || defined(LLVM_50) || defined(LLVM_60) || 
defined(LLVM_70) || defined(LLVM_80)
++#if defined(LLVM_40) || defined(LLVM_50) || defined(LLVM_60) || 
defined(LLVM_70) || defined(LLVM_80) || defined(LLVM_90)
+ #include 
+ #include 
+ #include 
+@@ -113,7 +113,7 @@
+ return def;
+ }
+ 
+-#if defined(LLVM_40) || defined(LLVM_50) || defined(LLVM_60) || 
defined(LLVM_70) || defined(LLVM_80)
++#if defined(LLVM_40) || defined(LLVM_50) || 

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

2019-10-05 Thread David Runge via arch-commits
Date: Saturday, October 5, 2019 @ 21:01:13
  Author: dvzrv
Revision: 513007

archrelease: copy trunk to community-staging-x86_64

Added:
  faust/repos/community-staging-x86_64/
  faust/repos/community-staging-x86_64/PKGBUILD
(from rev 513006, faust/trunk/PKGBUILD)
  faust/repos/community-staging-x86_64/faust-2.15.11-llvm9.diff
(from rev 513006, faust/trunk/faust-2.15.11-llvm9.diff)

--+
 PKGBUILD |  101 +++
 faust-2.15.11-llvm9.diff |  165 +
 2 files changed, 266 insertions(+)

Copied: faust/repos/community-staging-x86_64/PKGBUILD (from rev 513006, 
faust/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-05 21:01:13 UTC (rev 513007)
@@ -0,0 +1,101 @@
+# Maintainer: David Runge 
+# Contributor: Albert Graef 
+# Contributor: Bernardo Barros 
+# Contributor: bjoern lindig (bjoern _dot_ lindig _at_ google.com)
+
+pkgname=faust
+pkgver=2.15.11
+pkgrel=2
+pkgdesc="A functional programming language for realtime audio signal 
processing."
+arch=('x86_64')
+url="https://faust.grame.fr/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('llvm-libs' 'libsndfile' 'libmicrohttpd')
+makedepends=('cmake' 'llvm' 'xxd')
+optdepends=('clang: for sound2reader'
+'csound: for faust2csound'
+'graphviz: for faust2sig{,viewer}'
+'gtk2: for faust2{jack,rosgtk}'
+'inkscape: for faust2{pdf,png}'
+'jack: for 
faust2{api,jack{,console,internal,server,rust},jaqt,netjackqt,nodejs,ros,rosgtk,rpinetjackconsole}'
+'swig: for faust2android'
+'libsndfile: for faust2{dummy,sndfile}'
+'octave: for faust2octave'
+'pd: for faust2puredata'
+'portaudio: for faust2paqt'
+'python2: for faust2md and faust2atomsnippets'
+'qt5-tools: for faust2{faustvst,jaqt,lv2}'
+'rtaudio: for faust2raqt'
+'ruby: for faust2sc and scbuilder'
+'rust: for faust2jackrust'
+'supercollider: for faust2supercollider'
+'texlive-core: for faust2pdf')
+options=('staticlibs')
+source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"${pkgname}-2.15.11-llvm9.diff")
+sha512sums=('24590a2f726e5aff577a8be57293940a2cb80bcacff7e33986c66c0aa1e4d27bbba6b1335b2855efc35e83b3a8206a12f4f3bb83aa813a817a648e174a3c15fc'
+
'3e3edee491bf2c2ab9c6eb7a04f792448ef00bf364bea04babdf9c8b7bcf002b4ef142e413b0d8ba5f40cce413176a9ff021a1bab371500468cec5ee11cd1c12')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "../${pkgname}-2.15.11-llvm9.diff"
+  # fix scripts requiring python2:
+  # https://github.com/grame-cncm/faust/issues/301
+  sed -e '1s/python/&2/' \
+  -i "tools/${pkgname}2appls/${pkgname}2atomsnippets"
+  # RELRO for sound2faust and sound2file
+  # https://github.com/grame-cncm/faust/issues/302
+  sed -e "/\$(LIBS)/ s/$/ $LDFLAGS/g" \
+  -i tools/sound2faust/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr world
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install PREFIX=/usr DESTDIR="$pkgdir"
+
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 documentation/{,misc/}*.pdf
+
+  # examples
+  install -vd "${pkgdir}/usr/share/${pkgname}/examples"
+  cp -vR "examples/"* "${pkgdir}/usr/share/${pkgname}/examples/"
+
+  cd syntax-highlighting
+  # atom
+  install -vDm 644 "atom/language-${pkgname}/package.json" \
+-t "${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/"
+  install -vDm 644 "atom/language-${pkgname}/grammars/${pkgname}.cson" \
+-t "${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/grammars/"
+  install -vDm 644 
"atom/language-${pkgname}/settings/language-${pkgname}.cson" \
+-t "${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/settings/"
+  install -vDm 644 "atom/language-${pkgname}/snippets/"* \
+-t "${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/snippets/"
+  install -vDm 644 "atom/language-${pkgname}/process-palette.json.linux" \
+"${pkgdir}/usr/share/doc/${pkgname}/process-palette.json"
+  # kate
+  install -vDm 644 "${pkgname}.xml" \
+-t "${pkgdir}/usr/share/apps/katepart/syntax/"
+  # gedit
+  install -vDm 644 "${pkgname}.lang" \
+-t "${pkgdir}/usr/share/gtksourceview-2.0/language-specs/"
+  install -vDm 644 "${pkgname}.lang" \
+-t "${pkgdir}/usr/share/gtksourceview-3.0/language-specs/"
+  # highlight
+  install -vDm 644 dsp.lang -t "$pkgdir/usr/share/highlight/langDefs/"
+  # nano
+  install -vDm 644 "${pkgname}.nanorc" -t "$pkgdir/usr/share/nano/"
+  # vim
+  install -vDm 644 "${pkgname}.vim" \
+-t "${pkgdir}/usr/share/vim/vimfiles/syntax/"
+  # emacs
+  install -vDm 644 

[arch-commits] Commit in certbot-dns-gehirn/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 21:00:44
  Author: felixonmars
Revision: 513004

upgpkg: certbot-dns-gehirn 0.39.0-1

Modified:
  certbot-dns-gehirn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:59:25 UTC (rev 513003)
+++ PKGBUILD2019-10-05 21:00:44 UTC (rev 513004)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-gehirn
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('2a12cdb534e69d36eed05185360b9db6c52443a927cd29195c72d6f2db7af170aefb9d2df832e531d658537626e0b61529ff9b94e2f3fcfd5d8bba0f6427'
+sha512sums=('7a1456cd0078cfebee04b7d38d1f97474fd9a7ceb9aefdf6d5052e78ea9968ac2cd2f25571fe1f1751fbc5ef3d222c149a14a8d02e1ef5cc42aa07d33356d422'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-sakuracloud/repos/community-any (2 files)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:59:25
  Author: felixonmars
Revision: 513003

archrelease: copy trunk to community-any

Added:
  certbot-dns-sakuracloud/repos/community-any/PKGBUILD
(from rev 513002, certbot-dns-sakuracloud/trunk/PKGBUILD)
Deleted:
  certbot-dns-sakuracloud/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:59:22 UTC (rev 513002)
+++ PKGBUILD2019-10-05 20:59:25 UTC (rev 513003)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-sakuracloud
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('58e1b23162d8cfc2d0fe54c6913f28c11439721ed75ee7aee7a6f1cff90fe73c9d2d6ecbe5561403fce04a8ee07e89a00e50c6d64b95d02e800888ef60e9'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-sakuracloud/repos/community-any/PKGBUILD (from rev 513002, 
certbot-dns-sakuracloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:59:25 UTC (rev 513003)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-sakuracloud
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('e3ee6160b10f1c63ee8c0212b458f9d61a844a3125b6edc4b56b2783d1dbe7688770824dcb2e7eb1c85013807573671297d5364b2d8dc691e87d5d46e9273735'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 20:59:29
  Author: heftig
Revision: 363865

8.10.20-1

Modified:
  libphonenumber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:53:59 UTC (rev 363864)
+++ PKGBUILD2019-10-05 20:59:29 UTC (rev 363865)
@@ -1,8 +1,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libphonenumber
-pkgver=8.10.18
-pkgrel=2
+pkgver=8.10.20
+pkgrel=1
 pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
 url="https://github.com/googlei18n/libphonenumber;
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=(Apache)
 depends=(icu protobuf boost-libs)
 makedepends=(boost cmake gtest git 'java-environment>=9')
-_commit=c10211f2c56ab2b67ef8e6936e96a72bff37fbcc  # tags/v8.10.18^0
+_commit=b8da23f917f8553a0d06979d1da02f304d8f6659  # tags/v8.10.20^0
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 20:59:45
  Author: heftig
Revision: 363866

archrelease: copy trunk to staging-x86_64

Added:
  libphonenumber/repos/staging-x86_64/
  libphonenumber/repos/staging-x86_64/PKGBUILD
(from rev 363865, libphonenumber/trunk/PKGBUILD)

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

Copied: libphonenumber/repos/staging-x86_64/PKGBUILD (from rev 363865, 
libphonenumber/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-05 20:59:45 UTC (rev 363866)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libphonenumber
+pkgver=8.10.20
+pkgrel=1
+pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
+url="https://github.com/googlei18n/libphonenumber;
+arch=(x86_64)
+license=(Apache)
+depends=(icu protobuf boost-libs)
+makedepends=(boost cmake gtest git 'java-environment>=9')
+_commit=b8da23f917f8553a0d06979d1da02f304d8f6659  # tags/v8.10.20^0
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libphonenumber-\|^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
+  CXXFLAGS+=" -Wno-error=unused-variable"  # this is nuts
+  cmake -H$pkgname/cpp -Bbuild \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  cmake --build build
+}
+
+check() {
+  cmake --build build --target tests
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --build build --target install
+}


[arch-commits] Commit in certbot-dns-ovh/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:58:33
  Author: felixonmars
Revision: 513000

upgpkg: certbot-dns-ovh 0.39.0-1

Modified:
  certbot-dns-ovh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:57:34 UTC (rev 512999)
+++ PKGBUILD2019-10-05 20:58:33 UTC (rev 513000)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-ovh
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="OVH DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('c7a079dab59c96db7ec2821891b3e84115acea06bfe83330d7cd8143b66a0d0c6eb5f6673a3850297836f224531e444a88ae72f395f1bde0195cae3151a34616'
+sha512sums=('789a669e6c40a031a158e655bf38f40a858f97c60a02c776c6db4a090cbbcd3d3e3eddfc9340d224fe8850f09cc8105112210cf824671861e611d1278491be37'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-ovh/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:58:40
  Author: felixonmars
Revision: 513001

archrelease: copy trunk to community-any

Added:
  certbot-dns-ovh/repos/community-any/PKGBUILD
(from rev 513000, certbot-dns-ovh/trunk/PKGBUILD)
Deleted:
  certbot-dns-ovh/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:58:33 UTC (rev 513000)
+++ PKGBUILD2019-10-05 20:58:40 UTC (rev 513001)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-ovh
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="OVH DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('c7a079dab59c96db7ec2821891b3e84115acea06bfe83330d7cd8143b66a0d0c6eb5f6673a3850297836f224531e444a88ae72f395f1bde0195cae3151a34616'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-ovh/repos/community-any/PKGBUILD (from rev 513000, 
certbot-dns-ovh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:58:40 UTC (rev 513001)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-ovh
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="OVH DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('789a669e6c40a031a158e655bf38f40a858f97c60a02c776c6db4a090cbbcd3d3e3eddfc9340d224fe8850f09cc8105112210cf824671861e611d1278491be37'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-sakuracloud/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:59:22
  Author: felixonmars
Revision: 513002

upgpkg: certbot-dns-sakuracloud 0.39.0-1

Modified:
  certbot-dns-sakuracloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:58:40 UTC (rev 513001)
+++ PKGBUILD2019-10-05 20:59:22 UTC (rev 513002)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-sakuracloud
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('58e1b23162d8cfc2d0fe54c6913f28c11439721ed75ee7aee7a6f1cff90fe73c9d2d6ecbe5561403fce04a8ee07e89a00e50c6d64b95d02e800888ef60e9'
+sha512sums=('e3ee6160b10f1c63ee8c0212b458f9d61a844a3125b6edc4b56b2783d1dbe7688770824dcb2e7eb1c85013807573671297d5364b2d8dc691e87d5d46e9273735'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-route53/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:57:31
  Author: felixonmars
Revision: 512998

upgpkg: certbot-dns-route53 0.39.0-1

Modified:
  certbot-dns-route53/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:54:04 UTC (rev 512997)
+++ PKGBUILD2019-10-05 20:57:31 UTC (rev 512998)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-route53
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Route53 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('6586cf60076a2e1449430b9515f9342c2a7b988808303866d89cf60348163e153d7d7d866f4812460e7791f8dd50c702d993a876ee8c4cf73b06044f688fab06'
+sha512sums=('53bb123e92990dcceb153c1e601dd40927c30c29ef8cf01860d3079b15094773a5dfa1008881b78a7a8b0761d7afe7742d39816a155f3485d59784c2d47279b7'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-route53/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:57:34
  Author: felixonmars
Revision: 512999

archrelease: copy trunk to community-any

Added:
  certbot-dns-route53/repos/community-any/PKGBUILD
(from rev 512998, certbot-dns-route53/trunk/PKGBUILD)
Deleted:
  certbot-dns-route53/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:57:31 UTC (rev 512998)
+++ PKGBUILD2019-10-05 20:57:34 UTC (rev 512999)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-route53
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Route53 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-boto3' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('6586cf60076a2e1449430b9515f9342c2a7b988808303866d89cf60348163e153d7d7d866f4812460e7791f8dd50c702d993a876ee8c4cf73b06044f688fab06'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-route53/repos/community-any/PKGBUILD (from rev 512998, 
certbot-dns-route53/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:57:34 UTC (rev 512999)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-route53
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Route53 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-boto3' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('53bb123e92990dcceb153c1e601dd40927c30c29ef8cf01860d3079b15094773a5dfa1008881b78a7a8b0761d7afe7742d39816a155f3485d59784c2d47279b7'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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

2019-10-05 Thread Antonio Rojas via arch-commits
Date: Saturday, October 5, 2019 @ 20:53:51
  Author: arojas
Revision: 512996

archrelease: copy trunk to community-staging-x86_64

Added:
  strawberry/repos/community-staging-x86_64/
  strawberry/repos/community-staging-x86_64/PKGBUILD
(from rev 512995, strawberry/trunk/PKGBUILD)

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

Copied: strawberry/repos/community-staging-x86_64/PKGBUILD (from rev 512995, 
strawberry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-05 20:53:51 UTC (rev 512996)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+
+pkgname=strawberry
+pkgver=0.6.5
+pkgrel=2
+pkgdesc="A music player aimed at audio enthusiasts and music collectors"
+arch=(x86_64)
+url="https://www.strawbs.org/;
+license=(GPL3)
+depends=(chromaprint protobuf gst-plugins-base gst-plugins-good qt5-x11extras 
udisks2 libcdio libgpod libmtp fftw desktop-file-utils)
+makedepends=(cmake boost qt5-tools)
+optdepends=('gst-libav: additional codecs'
+'gst-plugins-bad: additional codecs'
+'gst-plugins-ugly: additional codecs')
+source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('e8c12b6f286e9f2b3ae77ffe964371da478056ed60631e1394b1491d63fb528e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_SYSTEM_TAGLIB=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-10-05 Thread Antonio Rojas via arch-commits
Date: Saturday, October 5, 2019 @ 20:53:32
  Author: arojas
Revision: 512994

protobuf 3.9 rebuild

Modified:
  strawberry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:45:51 UTC (rev 512993)
+++ PKGBUILD2019-10-05 20:53:32 UTC (rev 512994)
@@ -3,7 +3,7 @@
 
 pkgname=strawberry
 pkgver=0.6.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A music player aimed at audio enthusiasts and music collectors"
 arch=(x86_64)
 url="https://www.strawbs.org/;


[arch-commits] Commit in certbot-dns-rfc2136/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:45:48
  Author: felixonmars
Revision: 512992

upgpkg: certbot-dns-rfc2136 0.39.0-1

Modified:
  certbot-dns-rfc2136/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:44:51 UTC (rev 512991)
+++ PKGBUILD2019-10-05 20:45:48 UTC (rev 512992)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-rfc2136
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="NS1 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('5355967eeab4784d30db97ca43ec8b1cd99bae75d9d4041e83d76dd8198681f8df7a352560a68d7a6c561b980fdc2d10a304cd6afcbf3fcbf6995e65af3f60ef'
+sha512sums=('e27e6747c9b3f2a20179cc3ad3db218cf3d2faa0175ce0c8da52f499afa4b1ecf7ec873f3336153ae74f4c9ab6c4cfd6acdaccf1720ee20fe7106d3b35164165'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-rfc2136/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:45:51
  Author: felixonmars
Revision: 512993

archrelease: copy trunk to community-any

Added:
  certbot-dns-rfc2136/repos/community-any/PKGBUILD
(from rev 512992, certbot-dns-rfc2136/trunk/PKGBUILD)
Deleted:
  certbot-dns-rfc2136/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:45:48 UTC (rev 512992)
+++ PKGBUILD2019-10-05 20:45:51 UTC (rev 512993)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-rfc2136
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="NS1 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-dnspython' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('5355967eeab4784d30db97ca43ec8b1cd99bae75d9d4041e83d76dd8198681f8df7a352560a68d7a6c561b980fdc2d10a304cd6afcbf3fcbf6995e65af3f60ef'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-rfc2136/repos/community-any/PKGBUILD (from rev 512992, 
certbot-dns-rfc2136/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:45:51 UTC (rev 512993)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-rfc2136
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-dnspython' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('e27e6747c9b3f2a20179cc3ad3db218cf3d2faa0175ce0c8da52f499afa4b1ecf7ec873f3336153ae74f4c9ab6c4cfd6acdaccf1720ee20fe7106d3b35164165'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-nsone/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:44:51
  Author: felixonmars
Revision: 512991

archrelease: copy trunk to community-any

Added:
  certbot-dns-nsone/repos/community-any/PKGBUILD
(from rev 512990, certbot-dns-nsone/trunk/PKGBUILD)
Deleted:
  certbot-dns-nsone/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:44:47 UTC (rev 512990)
+++ PKGBUILD2019-10-05 20:44:51 UTC (rev 512991)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-nsone
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="NS1 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('3c976ce3d1d6ad9dabb50b2aabd9a81f031bc898e660fc64c63e895a471db2886e4bb8c7fad86ca5ff0257fc46e1e33ee0808b9916f440905591ac63c4f94f64'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-nsone/repos/community-any/PKGBUILD (from rev 512990, 
certbot-dns-nsone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:44:51 UTC (rev 512991)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-nsone
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('aac303012e9213d4c95a6de8fd4ca938e357db02713e533693a4dc93ef983a9528158bbcf288bb96549438b831fd835732fd2504772d069c26d57db0b4db5be3'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-nsone/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:44:47
  Author: felixonmars
Revision: 512990

upgpkg: certbot-dns-nsone 0.39.0-1

Modified:
  certbot-dns-nsone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:44:16 UTC (rev 512989)
+++ PKGBUILD2019-10-05 20:44:47 UTC (rev 512990)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-nsone
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="NS1 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('3c976ce3d1d6ad9dabb50b2aabd9a81f031bc898e660fc64c63e895a471db2886e4bb8c7fad86ca5ff0257fc46e1e33ee0808b9916f440905591ac63c4f94f64'
+sha512sums=('aac303012e9213d4c95a6de8fd4ca938e357db02713e533693a4dc93ef983a9528158bbcf288bb96549438b831fd835732fd2504772d069c26d57db0b4db5be3'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-luadns/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:44:16
  Author: felixonmars
Revision: 512989

archrelease: copy trunk to community-any

Added:
  certbot-dns-luadns/repos/community-any/PKGBUILD
(from rev 512988, certbot-dns-luadns/trunk/PKGBUILD)
Deleted:
  certbot-dns-luadns/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:44:13 UTC (rev 512988)
+++ PKGBUILD2019-10-05 20:44:16 UTC (rev 512989)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-luadns
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('b16cbe14ce2bb7e0f2944c22c793b5bc81d84af94fac89f3516775e9cc1e33bd13e066476d88da19bff9d109a1875a9ac622338a458d4d4196498d0d202adbc5'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-luadns/repos/community-any/PKGBUILD (from rev 512988, 
certbot-dns-luadns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:44:16 UTC (rev 512989)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-luadns
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('0b649403566f58e40d824fea3573c514cf3b39f3b1d86d2bfaead27128b544ea6b305250b571446facf58d5885d7d974369aaac2c17af1e44b56cb7c35b4e1f8'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-google/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:43:33
  Author: felixonmars
Revision: 512986

upgpkg: certbot-dns-google 0.39.0-1

Modified:
  certbot-dns-google/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:42:45 UTC (rev 512985)
+++ PKGBUILD2019-10-05 20:43:33 UTC (rev 512986)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-google
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('bcbe8fb3906c7853279e7abfbdcb8eeb51982b335277c96ad76c02eb7404e5435b5c3b02bc6fc79b59fdb304cad41995d5bd01b259baff09b4c2cd9b7df9502e'
+sha512sums=('93c4680e974de81013f5fd6453310a2cc46d56a3f1f33ebc1aaa73b9b9e730e2b244387c401024297d58da32587ede8f37783d814a67616beaa7efd0e83c4b0d'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-luadns/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:44:13
  Author: felixonmars
Revision: 512988

upgpkg: certbot-dns-luadns 0.39.0-1

Modified:
  certbot-dns-luadns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:43:37 UTC (rev 512987)
+++ PKGBUILD2019-10-05 20:44:13 UTC (rev 512988)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-luadns
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('b16cbe14ce2bb7e0f2944c22c793b5bc81d84af94fac89f3516775e9cc1e33bd13e066476d88da19bff9d109a1875a9ac622338a458d4d4196498d0d202adbc5'
+sha512sums=('0b649403566f58e40d824fea3573c514cf3b39f3b1d86d2bfaead27128b544ea6b305250b571446facf58d5885d7d974369aaac2c17af1e44b56cb7c35b4e1f8'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-google/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:43:37
  Author: felixonmars
Revision: 512987

archrelease: copy trunk to community-any

Added:
  certbot-dns-google/repos/community-any/PKGBUILD
(from rev 512986, certbot-dns-google/trunk/PKGBUILD)
Deleted:
  certbot-dns-google/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:43:33 UTC (rev 512986)
+++ PKGBUILD2019-10-05 20:43:37 UTC (rev 512987)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-google
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-mock' 
'python-google-api-python-client'
- 'python-oauth2client' 'python-setuptools' 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('bcbe8fb3906c7853279e7abfbdcb8eeb51982b335277c96ad76c02eb7404e5435b5c3b02bc6fc79b59fdb304cad41995d5bd01b259baff09b4c2cd9b7df9502e'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-google/repos/community-any/PKGBUILD (from rev 512986, 
certbot-dns-google/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:43:37 UTC (rev 512987)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-google
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-mock' 
'python-google-api-python-client'
+ 'python-oauth2client' 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('93c4680e974de81013f5fd6453310a2cc46d56a3f1f33ebc1aaa73b9b9e730e2b244387c401024297d58da32587ede8f37783d814a67616beaa7efd0e83c4b0d'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-dnsmadeeasy/repos/community-any (2 files)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:42:45
  Author: felixonmars
Revision: 512985

archrelease: copy trunk to community-any

Added:
  certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD
(from rev 512984, certbot-dns-dnsmadeeasy/trunk/PKGBUILD)
Deleted:
  certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:42:43 UTC (rev 512984)
+++ PKGBUILD2019-10-05 20:42:45 UTC (rev 512985)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-dnsmadeeasy
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('8d12cc3b532d215f438b3e81521942b442b266291d8849251e0e615f6854c466f8f6b1b211284d8b13fa25cf4905b85fb89e67112f0584bc2b12d34b3a091fed'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD (from rev 512984, 
certbot-dns-dnsmadeeasy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:42:45 UTC (rev 512985)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-dnsmadeeasy
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('4f4b04e893f0b9a996a7f602fe99a0a82c51abdc1e21383701af44549cd1c8efbe99576ca6968f5b11f6b0a753c576f7588a4a4ffd530fc7873cb0795e03eb7b'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-dnsmadeeasy/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:42:43
  Author: felixonmars
Revision: 512984

upgpkg: certbot-dns-dnsmadeeasy 0.39.0-1

Modified:
  certbot-dns-dnsmadeeasy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:41:35 UTC (rev 512983)
+++ PKGBUILD2019-10-05 20:42:43 UTC (rev 512984)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-dnsmadeeasy
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('8d12cc3b532d215f438b3e81521942b442b266291d8849251e0e615f6854c466f8f6b1b211284d8b13fa25cf4905b85fb89e67112f0584bc2b12d34b3a091fed'
+sha512sums=('4f4b04e893f0b9a996a7f602fe99a0a82c51abdc1e21383701af44549cd1c8efbe99576ca6968f5b11f6b0a753c576f7588a4a4ffd530fc7873cb0795e03eb7b'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-dnsimple/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:41:31
  Author: felixonmars
Revision: 512982

upgpkg: certbot-dns-dnsimple 0.39.0-1

Modified:
  certbot-dns-dnsimple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:40:53 UTC (rev 512981)
+++ PKGBUILD2019-10-05 20:41:31 UTC (rev 512982)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-dnsimple
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('16cd360ad78f82fec6156ca076024748902ca348f14d9fe7bcf619fc5cad237e36155a52eeaee019ab240ea531bb10161ad0cda7b95c99c239c55cfb726b0f15'
+sha512sums=('f6cbba82ccff0ea6dcc0c159ac60bc7c14d91125d09d36535ca158eaa869e903818b33326e1c7eeaee57aa7fbc30def76f1ae5bc59bc8629d00170011748ec2b'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-dnsimple/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:41:35
  Author: felixonmars
Revision: 512983

archrelease: copy trunk to community-any

Added:
  certbot-dns-dnsimple/repos/community-any/PKGBUILD
(from rev 512982, certbot-dns-dnsimple/trunk/PKGBUILD)
Deleted:
  certbot-dns-dnsimple/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:41:31 UTC (rev 512982)
+++ PKGBUILD2019-10-05 20:41:35 UTC (rev 512983)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-dnsimple
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('16cd360ad78f82fec6156ca076024748902ca348f14d9fe7bcf619fc5cad237e36155a52eeaee019ab240ea531bb10161ad0cda7b95c99c239c55cfb726b0f15'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-dnsimple/repos/community-any/PKGBUILD (from rev 512982, 
certbot-dns-dnsimple/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:41:35 UTC (rev 512983)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-dnsimple
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('f6cbba82ccff0ea6dcc0c159ac60bc7c14d91125d09d36535ca158eaa869e903818b33326e1c7eeaee57aa7fbc30def76f1ae5bc59bc8629d00170011748ec2b'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-digitalocean/repos/community-any (2 files)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:40:53
  Author: felixonmars
Revision: 512981

archrelease: copy trunk to community-any

Added:
  certbot-dns-digitalocean/repos/community-any/PKGBUILD
(from rev 512980, certbot-dns-digitalocean/trunk/PKGBUILD)
Deleted:
  certbot-dns-digitalocean/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:40:50 UTC (rev 512980)
+++ PKGBUILD2019-10-05 20:40:53 UTC (rev 512981)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-digitalocean
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-digitalocean' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('c2992ffb263fd6862e32593c197bd2b5ed86eed854597981f0f894dc84cc46bb5dfa45b3dd1d2e0ebed20fd302b86f11237c48d9e96659c9295c66410bd1ea73'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-digitalocean/repos/community-any/PKGBUILD (from rev 512980, 
certbot-dns-digitalocean/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:40:53 UTC (rev 512981)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-digitalocean
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-digitalocean' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('6661be9488fff91cfd5c6133ee384bfe01e1565f1f30ca5d995d9548f218c3da7b29c4c1faff21c6b8671b711f2cc8ffe7e195ed979e75eaa67c4bddff1fc019'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-digitalocean/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:40:50
  Author: felixonmars
Revision: 512980

upgpkg: certbot-dns-digitalocean 0.39.0-1

Modified:
  certbot-dns-digitalocean/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:40:11 UTC (rev 512979)
+++ PKGBUILD2019-10-05 20:40:50 UTC (rev 512980)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-digitalocean
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('c2992ffb263fd6862e32593c197bd2b5ed86eed854597981f0f894dc84cc46bb5dfa45b3dd1d2e0ebed20fd302b86f11237c48d9e96659c9295c66410bd1ea73'
+sha512sums=('6661be9488fff91cfd5c6133ee384bfe01e1565f1f30ca5d995d9548f218c3da7b29c4c1faff21c6b8671b711f2cc8ffe7e195ed979e75eaa67c4bddff1fc019'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-cloudxns/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:40:06
  Author: felixonmars
Revision: 512978

upgpkg: certbot-dns-cloudxns 0.39.0-1

Modified:
  certbot-dns-cloudxns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:39:30 UTC (rev 512977)
+++ PKGBUILD2019-10-05 20:40:06 UTC (rev 512978)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-cloudxns
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('540ea001559a8dbd275d713e5a2189a3ce703b47d7c4b633288ade7fce70719000d8b428ac3343692c1018e34bd37f825647a441257b3933317f4b9f8dfebf01'
+sha512sums=('d0fbcb9c0c64048733e86f67a62f08c4988d2b2fdeddb71b58bb77e60f2e1258a8a9ce443ef31c53572cd754a19a9be295a9a289f7631c0889f025ad82dd5284'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-cloudflare/trunk (PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:39:25
  Author: felixonmars
Revision: 512976

upgpkg: certbot-dns-cloudflare 0.39.0-1

Modified:
  certbot-dns-cloudflare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 20:38:13 UTC (rev 512975)
+++ PKGBUILD2019-10-05 20:39:25 UTC (rev 512976)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=certbot-dns-cloudflare
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -13,7 +13,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('9eb5e42db5a9c6921855742827478f80adb94337cfe1a9b0741426ff91261b5cbcd9aaa115afdc78d57ce9f7d44562ee2db86d272cee41d560dd1e5a4cf21a27'
+sha512sums=('bc912c5b4a357963227a4be2195266740af4e8d406c855f0ec3d52099bce780a6bac460e8447e5a3c4a0d02e04284096869c70922f10e86d60b62152e1d83ef8'
 'SKIP')
 
 build() {


[arch-commits] Commit in certbot-dns-cloudxns/repos/community-any (PKGBUILD PKGBUILD)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:40:11
  Author: felixonmars
Revision: 512979

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudxns/repos/community-any/PKGBUILD
(from rev 512978, certbot-dns-cloudxns/trunk/PKGBUILD)
Deleted:
  certbot-dns-cloudxns/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:40:06 UTC (rev 512978)
+++ PKGBUILD2019-10-05 20:40:11 UTC (rev 512979)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-cloudxns
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('540ea001559a8dbd275d713e5a2189a3ce703b47d7c4b633288ade7fce70719000d8b428ac3343692c1018e34bd37f825647a441257b3933317f4b9f8dfebf01'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-cloudxns/repos/community-any/PKGBUILD (from rev 512978, 
certbot-dns-cloudxns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:40:11 UTC (rev 512979)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudxns
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'dns-lexicon' 'python-acme' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('d0fbcb9c0c64048733e86f67a62f08c4988d2b2fdeddb71b58bb77e60f2e1258a8a9ce443ef31c53572cd754a19a9be295a9a289f7631c0889f025ad82dd5284'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in certbot-dns-cloudflare/repos/community-any (2 files)

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:39:30
  Author: felixonmars
Revision: 512977

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudflare/repos/community-any/PKGBUILD
(from rev 512976, certbot-dns-cloudflare/trunk/PKGBUILD)
Deleted:
  certbot-dns-cloudflare/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:39:25 UTC (rev 512976)
+++ PKGBUILD2019-10-05 20:39:30 UTC (rev 512977)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=certbot-dns-cloudflare
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=('certbot' 'python-acme' 'python-cloudflare' 'python-mock' 
'python-setuptools'
- 'python-zope-interface')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('9eb5e42db5a9c6921855742827478f80adb94337cfe1a9b0741426ff91261b5cbcd9aaa115afdc78d57ce9f7d44562ee2db86d272cee41d560dd1e5a4cf21a27'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: certbot-dns-cloudflare/repos/community-any/PKGBUILD (from rev 512976, 
certbot-dns-cloudflare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:39:30 UTC (rev 512977)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudflare
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=('certbot' 'python-acme' 'python-cloudflare' 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('bc912c5b4a357963227a4be2195266740af4e8d406c855f0ec3d52099bce780a6bac460e8447e5a3c4a0d02e04284096869c70922f10e86d60b62152e1d83ef8'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:38:13
  Author: felixonmars
Revision: 512975

archrelease: copy trunk to community-any

Added:
  certbot-apache/repos/community-any/PKGBUILD
(from rev 512974, certbot-apache/trunk/PKGBUILD)
Deleted:
  certbot-apache/repos/community-any/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 20:37:44 UTC (rev 512974)
+++ PKGBUILD2019-10-05 20:38:13 UTC (rev 512975)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot-apache
-pkgver=0.38.0
-pkgrel=1
-pkgdesc="Apache plugin for Let’s Encrypt client"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-replaces=("letsencrypt-apache")
-depends=('certbot' 'python-acme' 'python-augeas' 'python-mock' 
'python-setuptools'
- 'python-zope-component' 'python-zope-interface')
-checkdepends=('python-pytest')
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('ddeac286676b9b4845c02886d528650107523326011f7ef68b080c30a29d4cb867f06e3b60ce9979bc3d6b9fe1205b64ecc24014975662919dcade56a886d84a'
-'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  # https://github.com/certbot/certbot/issues/5510
-  cd $pkgname-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install -O1 --root="$pkgdir"
-}

Copied: certbot-apache/repos/community-any/PKGBUILD (from rev 512974, 
certbot-apache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 20:38:13 UTC (rev 512975)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-apache
+pkgver=0.39.0
+pkgrel=1
+pkgdesc="Apache plugin for Let’s Encrypt client"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+replaces=("letsencrypt-apache")
+depends=('certbot' 'python-acme' 'python-augeas' 'python-mock' 
'python-setuptools'
+ 'python-zope-component' 'python-zope-interface')
+checkdepends=('python-pytest')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('ef7540e310e041103b7fc939ec43546673176754ae40b78169dc48179b341b418749737eac77df205a2daec82cf4cd983648cec28dadae6153a0f513817af98c'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  # https://github.com/certbot/certbot/issues/5510
+  cd $pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+}


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 20:37:44
  Author: felixonmars
Revision: 512974

upgpkg: certbot-apache 0.39.0-1

Modified:
  certbot-apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 19:03:00 UTC (rev 512973)
+++ PKGBUILD2019-10-05 20:37:44 UTC (rev 512974)
@@ -2,7 +2,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot-apache
-pkgver=0.38.0
+pkgver=0.39.0
 pkgrel=1
 pkgdesc="Apache plugin for Let’s Encrypt client"
 arch=('any')
@@ -16,7 +16,7 @@
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('ddeac286676b9b4845c02886d528650107523326011f7ef68b080c30a29d4cb867f06e3b60ce9979bc3d6b9fe1205b64ecc24014975662919dcade56a886d84a'
+sha512sums=('ef7540e310e041103b7fc939ec43546673176754ae40b78169dc48179b341b418749737eac77df205a2daec82cf4cd983648cec28dadae6153a0f513817af98c'
 'SKIP')
 
 build() {


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

2019-10-05 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 5, 2019 @ 18:53:23
  Author: yan12125
Revision: 512972

archrelease: copy trunk to community-any

Added:
  python-cfn-lint/repos/community-any/PKGBUILD
(from rev 512971, python-cfn-lint/trunk/PKGBUILD)
Deleted:
  python-cfn-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 18:52:58 UTC (rev 512971)
+++ PKGBUILD2019-10-05 18:53:23 UTC (rev 512972)
@@ -1,32 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-cfn-lint
-pkgver=0.24.3
-pkgrel=1
-pkgdesc='CloudFormation Linter'
-arch=(any)
-url='https://github.com/aws-cloudformation/cfn-python-lint'
-license=('custom:MIT No Attribution')
-depends=(python python-yaml python-six python-aws-sam-translator
- python-jsonpatch python-jsonschema python-setuptools)
-checkdepends=(python-pytest python-mock)
-source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('8eb134f1f7fb89f6f1330deb52a945a6453df2843f069e6079033999565a766e')
-
-build() {
-  cd cfn-python-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-python-lint-$pkgver
-
-  PYTHONPATH="$PWD/build/lib" pytest -v test
-}
-
-package() {
-  cd cfn-python-lint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-cfn-lint/repos/community-any/PKGBUILD (from rev 512971, 
python-cfn-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 18:53:23 UTC (rev 512972)
@@ -0,0 +1,32 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-cfn-lint
+pkgver=0.24.4
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-python-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-yaml python-six python-aws-sam-translator
+ python-jsonpatch python-jsonschema python-setuptools)
+checkdepends=(python-pytest python-mock)
+source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
+sha256sums=('aebcccad5961851d5e432f1ac42c31b25ff649a6b9bca5544e008c8c85c6e18b')
+
+build() {
+  cd cfn-python-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-python-lint-$pkgver
+
+  PYTHONPATH="$PWD/build/lib" pytest -v test
+}
+
+package() {
+  cd cfn-python-lint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2019-10-05 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 5, 2019 @ 18:52:42
  Author: yan12125
Revision: 512970

upgpkg: lximage-qt 0.14.1-2

* Add qt5-imageformats to optdepends; fixes FS#64021
* Remove no longer needed -DCMAKE_INSTALL_LIBDIR=lib [1]. This package does not 
install to /usr/lib, anyway.

[1] 
https://git.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/cmake=26b053e768072197c4ce326fd620f5ab01d74407

Modified:
  lximage-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 18:45:42 UTC (rev 512969)
+++ PKGBUILD2019-10-05 18:52:42 UTC (rev 512970)
@@ -3,7 +3,7 @@
 
 pkgname=lximage-qt
 pkgver=0.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="The LXQt image viewer and screenshot tool"
 arch=("x86_64")
 groups=("lxqt")
@@ -10,6 +10,9 @@
 url="https://lxqt.org;
 license=("GPL2")
 depends=("lxqt-themes" "libfm-qt" "qt5-svg" "libexif" "libxfixes")
+optdepends=(
+   "qt5-imageformats: support for additional image formats (WEBP, TIFF, 
etc.)"
+)
 makedepends=("lxqt-build-tools")
 source=(

"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
@@ -27,8 +30,7 @@
mkdir -p build
cd build
cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
+   -DCMAKE_INSTALL_PREFIX=/usr
make
 }
 


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

2019-10-05 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 5, 2019 @ 18:52:58
  Author: yan12125
Revision: 512971

archrelease: copy trunk to community-x86_64

Added:
  lximage-qt/repos/community-x86_64/PKGBUILD
(from rev 512970, lximage-qt/trunk/PKGBUILD)
Deleted:
  lximage-qt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 18:52:42 UTC (rev 512970)
+++ PKGBUILD2019-10-05 18:52:58 UTC (rev 512971)
@@ -1,38 +0,0 @@
-# Maintainer: Jerome Leclanche 
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=lximage-qt
-pkgver=0.14.1
-pkgrel=1
-pkgdesc="The LXQt image viewer and screenshot tool"
-arch=("x86_64")
-groups=("lxqt")
-url="https://lxqt.org;
-license=("GPL2")
-depends=("lxqt-themes" "libfm-qt" "qt5-svg" "libexif" "libxfixes")
-makedepends=("lxqt-build-tools")
-source=(
-   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
-   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
-)
-sha256sums=('ea130039f8f65c7279de440c2c0a787d731721176ddd8053b8527c5273293846'
-'SKIP')
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

-)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lximage-qt/repos/community-x86_64/PKGBUILD (from rev 512970, 
lximage-qt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 18:52:58 UTC (rev 512971)
@@ -0,0 +1,40 @@
+# Maintainer: Jerome Leclanche 
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=lximage-qt
+pkgver=0.14.1
+pkgrel=2
+pkgdesc="The LXQt image viewer and screenshot tool"
+arch=("x86_64")
+groups=("lxqt")
+url="https://lxqt.org;
+license=("GPL2")
+depends=("lxqt-themes" "libfm-qt" "qt5-svg" "libexif" "libxfixes")
+optdepends=(
+   "qt5-imageformats: support for additional image formats (WEBP, TIFF, 
etc.)"
+)
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('ea130039f8f65c7279de440c2c0a787d731721176ddd8053b8527c5273293846'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2019-10-05 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, October 5, 2019 @ 18:45:42
  Author: yan12125
Revision: 512969

upgpkg: python-cfn-lint 0.24.4-1

Modified:
  python-cfn-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 18:45:23 UTC (rev 512968)
+++ PKGBUILD2019-10-05 18:45:42 UTC (rev 512969)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-cfn-lint
-pkgver=0.24.3
+pkgver=0.24.4
 pkgrel=1
 pkgdesc='CloudFormation Linter'
 arch=(any)
@@ -11,7 +11,7 @@
  python-jsonpatch python-jsonschema python-setuptools)
 checkdepends=(python-pytest python-mock)
 
source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('8eb134f1f7fb89f6f1330deb52a945a6453df2843f069e6079033999565a766e')
+sha256sums=('aebcccad5961851d5e432f1ac42c31b25ff649a6b9bca5544e008c8c85c6e18b')
 
 build() {
   cd cfn-python-lint-$pkgver


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

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:45:23
  Author: bpiotrowski
Revision: 512968

archrelease: copy trunk to community-x86_64

Added:
  networkmanager-fortisslvpn/repos/community-x86_64/
  networkmanager-fortisslvpn/repos/community-x86_64/PKGBUILD
(from rev 512967, networkmanager-fortisslvpn/trunk/PKGBUILD)

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

Copied: networkmanager-fortisslvpn/repos/community-x86_64/PKGBUILD (from rev 
512967, networkmanager-fortisslvpn/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-10-05 18:45:23 UTC (rev 512968)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=networkmanager-fortisslvpn
+pkgver=1.4rc1
+pkgrel=1
+pkgdesc='Fortinet SSLVPN support for NetworkManager'
+arch=(x86_64)
+license=(GPL)
+url='https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn'
+depends=(networkmanager nm-connection-editor openfortivpn libsecret)
+makedepends=(git intltool python)
+_commit=9688d63ecacec97d0c9217281eb7b85053f1f4a1
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd NetworkManager-fortisslvpn
+  autoreconf -fi
+}
+
+build() {
+  cd NetworkManager-fortisslvpn
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/networkmanager \
+--disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-fortisslvpn
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (4 files)

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:45:07
  Author: bpiotrowski
Revision: 512967

newpkg: networkmanager-fortisslvpn 1.4rc1-1

Added:
  networkmanager-fortisslvpn/
  networkmanager-fortisslvpn/repos/
  networkmanager-fortisslvpn/trunk/
  networkmanager-fortisslvpn/trunk/PKGBUILD

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

Added: networkmanager-fortisslvpn/trunk/PKGBUILD
===
--- networkmanager-fortisslvpn/trunk/PKGBUILD   (rev 0)
+++ networkmanager-fortisslvpn/trunk/PKGBUILD   2019-10-05 18:45:07 UTC (rev 
512967)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=networkmanager-fortisslvpn
+pkgver=1.4rc1
+pkgrel=1
+pkgdesc='Fortinet SSLVPN support for NetworkManager'
+arch=(x86_64)
+license=(GPL)
+url='https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn'
+depends=(networkmanager nm-connection-editor openfortivpn libsecret)
+makedepends=(git intltool python)
+_commit=9688d63ecacec97d0c9217281eb7b85053f1f4a1
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd NetworkManager-fortisslvpn
+  autoreconf -fi
+}
+
+build() {
+  cd NetworkManager-fortisslvpn
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/networkmanager \
+--disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-fortisslvpn
+  make DESTDIR="$pkgdir" install
+}


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

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:30:06
  Author: bpiotrowski
Revision: 512966

cleanup

Deleted:
  openfortivpn/repos/testing-x86_64/


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

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:29:44
  Author: bpiotrowski
Revision: 512964

archrelease: copy trunk to testing-x86_64

Added:
  openfortivpn/repos/testing-x86_64/
  openfortivpn/repos/testing-x86_64/PKGBUILD
(from rev 512963, openfortivpn/trunk/PKGBUILD)

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

Copied: openfortivpn/repos/testing-x86_64/PKGBUILD (from rev 512963, 
openfortivpn/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-05 18:29:44 UTC (rev 512964)
@@ -0,0 +1,29 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=openfortivpn
+pkgver=1.10.0
+pkgrel=2
+pkgdesc="An open implementation of Fortinet's proprietary PPP+SSL VPN solution"
+arch=(x86_64)
+url="https://github.com/adrienverge/openfortivpn;
+license=(GPL3)
+depends=(openssl ppp)
+backup=(etc/openfortivpn/config)
+source=($pkgname-$pkgver.tar.gz::https://github.com/adrienverge/openfortivpn/archive/v$pkgver.tar.gz)
+sha256sums=('d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+   ./configure --prefix=/usr --sysconfdir=/etc
+   make
+}
+
+package() {
+  cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


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

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:29:40
  Author: bpiotrowski
Revision: 512963

1.10.0-2: bump pkgrel for AUR users

Modified:
  openfortivpn/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 18:28:42 UTC (rev 512962)
+++ PKGBUILD2019-10-05 18:29:40 UTC (rev 512963)
@@ -2,7 +2,7 @@
 
 pkgname=openfortivpn
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An open implementation of Fortinet's proprietary PPP+SSL VPN solution"
 arch=(x86_64)
 url="https://github.com/adrienverge/openfortivpn;
@@ -23,11 +23,6 @@
make
 }
 
-check() {
-  cd $pkgname-$pkgver
-   make check
-}
-
 package() {
   cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install


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

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:29:55
  Author: bpiotrowski
Revision: 512965

archrelease: copy trunk to community-testing-x86_64

Added:
  openfortivpn/repos/community-testing-x86_64/
  openfortivpn/repos/community-testing-x86_64/PKGBUILD
(from rev 512964, openfortivpn/trunk/PKGBUILD)

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

Copied: openfortivpn/repos/community-testing-x86_64/PKGBUILD (from rev 512964, 
openfortivpn/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-10-05 18:29:55 UTC (rev 512965)
@@ -0,0 +1,29 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=openfortivpn
+pkgver=1.10.0
+pkgrel=2
+pkgdesc="An open implementation of Fortinet's proprietary PPP+SSL VPN solution"
+arch=(x86_64)
+url="https://github.com/adrienverge/openfortivpn;
+license=(GPL3)
+depends=(openssl ppp)
+backup=(etc/openfortivpn/config)
+source=($pkgname-$pkgver.tar.gz::https://github.com/adrienverge/openfortivpn/archive/v$pkgver.tar.gz)
+sha256sums=('d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+   ./configure --prefix=/usr --sysconfdir=/etc
+   make
+}
+
+package() {
+  cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (4 files)

2019-10-05 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 5, 2019 @ 18:28:42
  Author: bpiotrowski
Revision: 512962

newpkg: openfortivpn 1.10.0-1

Added:
  openfortivpn/
  openfortivpn/repos/
  openfortivpn/trunk/
  openfortivpn/trunk/PKGBUILD

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

Added: openfortivpn/trunk/PKGBUILD
===
--- openfortivpn/trunk/PKGBUILD (rev 0)
+++ openfortivpn/trunk/PKGBUILD 2019-10-05 18:28:42 UTC (rev 512962)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=openfortivpn
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="An open implementation of Fortinet's proprietary PPP+SSL VPN solution"
+arch=(x86_64)
+url="https://github.com/adrienverge/openfortivpn;
+license=(GPL3)
+depends=(openssl ppp)
+backup=(etc/openfortivpn/config)
+source=($pkgname-$pkgver.tar.gz::https://github.com/adrienverge/openfortivpn/archive/v$pkgver.tar.gz)
+sha256sums=('d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+   ./configure --prefix=/usr --sysconfdir=/etc
+   make
+}
+
+check() {
+  cd $pkgname-$pkgver
+   make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 17:58:08
  Author: andyrtr
Revision: 363861

upgpkg: sqlite 3.30.0-1

upstream update 3.30.0

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 17:32:27 UTC (rev 363860)
+++ PKGBUILD2019-10-05 17:58:08 UTC (rev 363861)
@@ -3,10 +3,10 @@
 
 pkgbase="sqlite"
 pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
-_srcver=329
+_srcver=330
 _docver=${_srcver}
 #_docver=3250200
-pkgver=3.29.0
+pkgver=3.30.0
 pkgrel=1
 pkgdesc="A C library that implements an SQL database engine"
 arch=('x86_64')
@@ -17,8 +17,8 @@
 https://www.sqlite.org/2019/sqlite-doc-${_docver}.zip
 license.txt)
 options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
-sha1sums=('e8862aa46fb70e25c8006a1fe519067a1fa9e618'
-  'b0f697c557b415cb1d67acb61b40fbad0b012cad'
+sha1sums=('e07542078e2252d620a65152aa33fb0c6fa6f8a9'
+  '828cf2af20ef4b216620bdc7c86ac1073a7400bf'
   'f34f6daa4ab3073d74e774aad21d66878cf26853')
 
 prepare() {


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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 17:58:19
  Author: andyrtr
Revision: 363862

archrelease: copy trunk to testing-x86_64

Added:
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 363861, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 363861, sqlite/trunk/license.txt)

-+
 PKGBUILD|  117 ++
 license.txt |   33 
 2 files changed, 150 insertions(+)

Copied: sqlite/repos/testing-x86_64/PKGBUILD (from rev 363861, 
sqlite/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-05 17:58:19 UTC (rev 363862)
@@ -0,0 +1,117 @@
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=330
+_docver=${_srcver}
+#_docver=3250200
+pkgver=3.30.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('x86_64')
+license=('custom:Public Domain')
+url="https://www.sqlite.org/;
+makedepends=('tcl' 'readline' 'zlib')
+source=(https://www.sqlite.org/2019/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2019/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('e07542078e2252d620a65152aa33fb0c6fa6f8a9'
+  '828cf2af20ef4b216620bdc7c86ac1073a7400bf'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
+ -DSQLITE_SECURE_DELETE \
+ -DSQLITE_MAX_VARIABLE_NUMBER=25 \
+ -DSQLITE_MAX_EXPR_DEPTH=1"
+
+  # build sqlite
+  cd sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-amalgamation \
+   --enable-fts3 \
+   --enable-fts4 \
+   --enable-fts5 \
+   --enable-rtree \
+   --enable-json1 \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
+}
+
+package_sqlite() {
+
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline' 'zlib')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+
+  cd sqlite-src-$_srcver
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 showdb showjournal showstat4 showwal sqldiff 
"${pkgdir}"/usr/bin/
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/man1
+  install -m644 sqlite3.1 "${pkgdir}"/usr/share/man/man1/
+
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/license.txt
+
+  # split out tcl extension
+  mkdir "$srcdir"/tcl
+  mv "$pkgdir"/usr/lib/sqlite* "$srcdir"/tcl
+}
+
+package_sqlite-tcl() {
+
+ pkgdesc="sqlite Tcl Extension Architecture (TEA)"
+ depends=('sqlite')
+ provides=("sqlite3-tcl=$pkgver")
+ replaces=("sqlite3-tcl")
+
+  install -m755 -d "${pkgdir}"/usr/lib
+  mv "$srcdir"/tcl/* "${pkgdir}"/usr/lib
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/mann
+  install -m644 "${srcdir}"/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n 
"${pkgdir}"/usr/share/man/mann/
+
+  # link license
+  install -m755 -d "${pkgdir}"/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_sqlite-analyzer() {
+
+ pkgdesc="An analysis program for sqlite3 database files"
+ depends=('sqlite' 'tcl')
+
+  cd sqlite-src-$_srcver
+  install -m755 -d "${pkgdir}"/usr/bin
+  install -m755 sqlite3_analyzer "${pkgdir}"/usr/bin/
+}
+
+package_sqlite-doc() {
+
+ pkgdesc="most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation"
+ #arch=('any') - not yet supported
+ provides=("sqlite3-doc=$pkgver")
+ replaces=("sqlite3-doc")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p "${pkgdir}"/usr/share/doc/${pkgbase}
+  cp -R *  "${pkgdir}"/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-x86_64/license.txt (from rev 363861, 
sqlite/trunk/license.txt)
===
--- testing-x86_64/license.txt  (rev 0)
+++ testing-x86_64/license.txt  2019-10-05 17:58:19 UTC (rev 363862)
@@ -0,0 +1,33 @@
+SQLite Copyright
+SQLite is in the
+Public Domain 
+
+
+All of the deliverable code in SQLite has been dedicated to the public domain 
by the authors. All code authors, and 

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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 17:32:27
  Author: andyrtr
Revision: 363860

archrelease: copy trunk to testing-x86_64

Added:
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 363859, 
linux-lts/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  
linux-lts/repos/testing-x86_64/0002-ZEN-Add-CONFIG-for-unprivileged_userns_clone.patch
(from rev 363859, 
linux-lts/trunk/0002-ZEN-Add-CONFIG-for-unprivileged_userns_clone.patch)
  linux-lts/repos/testing-x86_64/60-linux.hook
(from rev 363859, linux-lts/trunk/60-linux.hook)
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 363859, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 363859, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 363859, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 363859, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 363859, linux-lts/trunk/linux-lts.preset)
Deleted:
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
  
linux-lts/repos/testing-x86_64/0002-ZEN-Add-CONFIG-for-unprivileged_userns_clone.patch
  linux-lts/repos/testing-x86_64/60-linux.hook
  linux-lts/repos/testing-x86_64/90-linux.hook
  linux-lts/repos/testing-x86_64/PKGBUILD
  linux-lts/repos/testing-x86_64/config
  linux-lts/repos/testing-x86_64/linux-lts.install
  linux-lts/repos/testing-x86_64/linux-lts.preset

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  204 
 0002-ZEN-Add-CONFIG-for-unprivileged_userns_clone.patch |  114 
 60-linux.hook   |   24 
 90-linux.hook   |   22 
 PKGBUILD|  470 
 config  |19590 
+-
 linux-lts.install   |   20 
 linux-lts.preset|   28 
 8 files changed, 10236 insertions(+), 10236 deletions(-)

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


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

2019-10-05 Thread Andreas Radke via arch-commits
Date: Saturday, October 5, 2019 @ 17:32:08
  Author: andyrtr
Revision: 363859

upgpkg: linux-lts 4.19.77-1

upstream update 4.19.77

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 17:14:18 UTC (rev 363858)
+++ PKGBUILD2019-10-05 17:32:08 UTC (rev 363859)
@@ -3,8 +3,8 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.19
-pkgver=4.19.76
-pkgrel=2
+pkgver=4.19.77
+pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
 license=('GPL2')
@@ -24,7 +24,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('0c68f5655528aed4f99dae71a5b259edc93239fa899e2df79c055275c21749a1'
 'SKIP'
-'eade564136310b38596ed33ebffb69f73d5d4c2c5885b9d0aa933ba214889d08'
+'de3473cf607e2ca144e51b4a70ba81667bbd05eaf08252469e90fa43dab8064f'
 '3bb61a3bb4bef364234ef8dabaedb6166a043966768664cd8f783aadd96d90b6'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'


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

2019-10-05 Thread Lukas Fleischer via arch-commits
Date: Saturday, October 5, 2019 @ 17:14:18
  Author: lfleischer
Revision: 363858

archrelease: copy trunk to staging-x86_64

Added:
  protobuf/repos/staging-x86_64/
  protobuf/repos/staging-x86_64/PKGBUILD
(from rev 363857, protobuf/trunk/PKGBUILD)

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

Copied: protobuf/repos/staging-x86_64/PKGBUILD (from rev 363857, 
protobuf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-05 17:14:18 UTC (rev 363858)
@@ -0,0 +1,63 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+
+pkgbase='protobuf'
+pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
+pkgver=3.9.2
+pkgrel=1
+pkgdesc="Protocol Buffers - Google's data interchange format"
+arch=('x86_64')
+url='https://developers.google.com/protocol-buffers/'
+license=('BSD')
+depends=('gcc-libs' 'zlib')
+makedepends=('unzip' 'python-setuptools' 'python2-setuptools')
+source=("https://github.com/protocolbuffers/$pkgname/releases/download/v$pkgver/$pkgname-all-$pkgver.tar.gz;)
+md5sums=('f0ce2dbffc9cb5df36ac171b23686c21')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C "$srcdir/$pkgbase-$pkgver" check
+}
+
+package_protobuf() {
+  replaces=('protobuf-cpp')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 editors/protobuf-mode.el 
"$pkgdir"/usr/share/emacs/site-lisp/protobuf-mode.el
+}
+
+package_python2-protobuf() {
+  pkgdesc='Python 2 bindings for Google Protocol Buffers'
+  depends=('python2' 'python2-six' "protobuf=$pkgver")
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python2 setup.py install --root="$pkgdir" --cpp_implementation
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+
+package_python-protobuf() {
+  pkgdesc='Python 3 bindings for Google Protocol Buffers'
+  depends=('python' 'python-six' "protobuf=$pkgver")
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python3 setup.py install --root="$pkgdir" --cpp_implementation
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2019-10-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, October 5, 2019 @ 17:10:22
  Author: anatolik
Revision: 512961

archrelease: copy trunk to community-x86_64

Added:
  vegeta/repos/community-x86_64/PKGBUILD
(from rev 512960, vegeta/trunk/PKGBUILD)
Deleted:
  vegeta/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 17:10:01 UTC (rev 512960)
+++ PKGBUILD2019-10-05 17:10:22 UTC (rev 512961)
@@ -1,37 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=vegeta
-pkgver=12.7.0
-pkgrel=3
-pkgdesc="HTTP load testing tool"
-arch=(x86_64)
-url="https://github.com/tsenart/vegeta;
-license=(MIT)
-depends=(glibc)
-makedepends=(go-pie dep git)
-source=(vegeta-$pkgver.zip::https://github.com/tsenart/vegeta/archive/v$pkgver.zip)
-sha256sums=('7c9232a8f8edbefff759c6fa8fbc253a670008c1b143f5c00a01dc8e9f57f832')
-
-prepare() {
-  export GOPATH="$srcdir/gopath"
-  mkdir -p gopath/src/github.com/tsenart
-  cp -r vegeta-$pkgver/ gopath/src/github.com/tsenart/vegeta
-
-  cd gopath/src/github.com/tsenart/vegeta
-  dep ensure -v
-}
-
-build() {
-  cd gopath/src/github.com/tsenart/vegeta
-  #go build -v -X main.Version=$pkgver ./...
-  CGO_ENABLED=0 go install -v -ldflags "-X main.Version=$pkgver -X 
main.Date=`date +'%FT%TZ%z'`" ./...
-}
-
-check() {
-  cd gopath/src/github.com/tsenart/vegeta
-  go test ./...
-}
-
-package() {
-  install -Dm755 "gopath/bin/vegeta" "$pkgdir/usr/bin/vegeta"
-}

Copied: vegeta/repos/community-x86_64/PKGBUILD (from rev 512960, 
vegeta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 17:10:22 UTC (rev 512961)
@@ -0,0 +1,37 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=vegeta
+pkgver=12.7.0
+pkgrel=4
+pkgdesc="HTTP load testing tool"
+arch=(x86_64)
+url="https://github.com/tsenart/vegeta;
+license=(MIT)
+depends=(glibc)
+makedepends=(go-pie dep git)
+source=(vegeta-$pkgver.zip::https://github.com/tsenart/vegeta/archive/v$pkgver.zip)
+sha256sums=('7c9232a8f8edbefff759c6fa8fbc253a670008c1b143f5c00a01dc8e9f57f832')
+
+prepare() {
+  export GOPATH="$srcdir/gopath"
+  mkdir -p gopath/src/github.com/tsenart
+  cp -r vegeta-$pkgver/ gopath/src/github.com/tsenart/vegeta
+
+  cd gopath/src/github.com/tsenart/vegeta
+  dep ensure -v
+}
+
+build() {
+  cd gopath/src/github.com/tsenart/vegeta
+  #go build -v -X main.Version=$pkgver ./...
+  CGO_ENABLED=0 go install -v -ldflags "-X main.Version=$pkgver -X 
main.Date=`date +'%FT%TZ%z'`" ./...
+}
+
+check() {
+  cd gopath/src/github.com/tsenart/vegeta
+  go test ./...
+}
+
+package() {
+  install -Dm755 "gopath/bin/vegeta" "$pkgdir/usr/bin/vegeta"
+}


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

2019-10-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, October 5, 2019 @ 17:10:01
  Author: anatolik
Revision: 512960

upgpkg: vegeta 12.7.0-4

golang 1.13.1 security rebuild

Modified:
  vegeta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 16:49:53 UTC (rev 512959)
+++ PKGBUILD2019-10-05 17:10:01 UTC (rev 512960)
@@ -2,7 +2,7 @@
 
 pkgname=vegeta
 pkgver=12.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc="HTTP load testing tool"
 arch=(x86_64)
 url="https://github.com/tsenart/vegeta;


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 16:49:53
  Author: archange
Revision: 512959

archrelease: copy trunk to community-x86_64

Added:
  netcdf-openmpi/repos/community-x86_64/PKGBUILD
(from rev 512958, netcdf-openmpi/trunk/PKGBUILD)
Deleted:
  netcdf-openmpi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 16:49:20 UTC (rev 512958)
+++ PKGBUILD2019-10-05 16:49:53 UTC (rev 512959)
@@ -1,63 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Maintainer: Bruno Pagani 
-# Contributor: damir 
-
-_pkg=netcdf
-_mpi=openmpi
-pkgname=${_pkg}-${_mpi}
-pkgver=4.7.1
-pkgrel=1
-pkgdesc="network Common Data Form interface for array-oriented data access and 
corresponding library with parallel support (${_mpi} version)"
-arch=(x86_64)
-url="https://www.unidata.ucar.edu/software/netcdf/;
-license=(custom)
-depends=("hdf5-${_mpi}" "pnetcdf-${_mpi}" curl)
-makedepends=(cmake)
-optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
-checkdepends=(inetutils)
-provides=("${_pkg}")
-conflicts=("${_pkg}")
-options=(!makeflags)
-source=(https://github.com/Unidata/netcdf-c/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('583e6b89c57037293fc3878c9181bb89151da8c6015ecea404dd426fea219b2c')
-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-export CC=mpicc
-cmake ../${_pkg}-c-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DENABLE_CDF5=ON \
--DENABLE_PNETCDF=ON \
--DENABLE_DAP_LONG_TESTS=ON \
--DENABLE_EXAMPLE_TESTS=ON \
--DENABLE_EXTRA_TESTS=ON \
--DENABLE_FAILING_TESTS=ON \
--DENABLE_FILTER_TESTING=ON \
--DENABLE_LARGE_FILE_TESTS=ON
-make
-}
-
-
-check() {
-cd build
-
-# This is required starting with OpenMPI 3.0 when trying to run more
-# processes than the number of available cores
-export OMPI_MCA_rmaps_base_oversubscribe=yes
-
-make test
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-
-cd "${srcdir}"/${_pkg}-c-${pkgver}
-install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}/
-}

Copied: netcdf-openmpi/repos/community-x86_64/PKGBUILD (from rev 512958, 
netcdf-openmpi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 16:49:53 UTC (rev 512959)
@@ -0,0 +1,63 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Bruno Pagani 
+# Contributor: damir 
+
+_pkg=netcdf
+_mpi=openmpi
+pkgname=${_pkg}-${_mpi}
+pkgver=4.7.1
+pkgrel=2
+pkgdesc="network Common Data Form interface for array-oriented data access and 
corresponding library with parallel support (${_mpi} version)"
+arch=(x86_64)
+url="https://www.unidata.ucar.edu/software/netcdf/;
+license=(custom)
+depends=("hdf5-${_mpi}" "pnetcdf-${_mpi}" curl)
+makedepends=(cmake)
+optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
+checkdepends=(inetutils)
+provides=("${_pkg}")
+conflicts=("${_pkg}")
+options=(!makeflags)
+source=(https://github.com/Unidata/netcdf-c/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('583e6b89c57037293fc3878c9181bb89151da8c6015ecea404dd426fea219b2c')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+export CC=mpicc
+cmake ../${_pkg}-c-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_CDF5=ON \
+-DENABLE_PNETCDF=ON \
+-DENABLE_DAP_LONG_TESTS=ON \
+-DENABLE_EXAMPLE_TESTS=ON \
+-DENABLE_EXTRA_TESTS=ON \
+-DENABLE_FAILING_TESTS=ON \
+-DENABLE_FILTER_TESTING=ON \
+-DENABLE_LARGE_FILE_TESTS=ON
+make
+}
+
+
+check() {
+cd build
+
+# This is required starting with OpenMPI 3.0 when trying to run more
+# processes than the number of available cores
+export OMPI_MCA_rmaps_base_oversubscribe=yes
+
+make test
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+
+cd "${srcdir}"/${_pkg}-c-${pkgver}
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}/
+}


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 16:49:20
  Author: archange
Revision: 512958

pnetcdf 1.12.0 rebuild

Modified:
  netcdf-openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 16:43:03 UTC (rev 512957)
+++ PKGBUILD2019-10-05 16:49:20 UTC (rev 512958)
@@ -6,7 +6,7 @@
 _mpi=openmpi
 pkgname=${_pkg}-${_mpi}
 pkgver=4.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="network Common Data Form interface for array-oriented data access and 
corresponding library with parallel support (${_mpi} version)"
 arch=(x86_64)
 url="https://www.unidata.ucar.edu/software/netcdf/;


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 16:43:00
  Author: felixonmars
Revision: 512956

upgpkg: python-awkward 0.12.12-1

Modified:
  python-awkward/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 15:41:41 UTC (rev 512955)
+++ PKGBUILD2019-10-05 16:43:00 UTC (rev 512956)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-awkward
-pkgver=0.12.11
+pkgver=0.12.12
 pkgrel=1
 pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
 url="https://github.com/scikit-hep/awkward-array;
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python-pytest-runner')
 checkdepends=('python-h5py')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('024ec07275d733ae361decab440d19af9476e1eafa8498163b975face7be7412defe35494b6d2cfa9992ed3be909d6e576c3649682e47db8469eec8047a550e5')
+sha512sums=('0331b91fe26179dc9b50d8bd49b9567fcefcbb87e0e59c6523243d9b153883244ab96a7a331b72a93dc2bd849634b3c744b717a577a469bdb1fd93ee626e859c')
 
 build() {
   cd awkward-array-$pkgver


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

2019-10-05 Thread Felix Yan via arch-commits
Date: Saturday, October 5, 2019 @ 16:43:03
  Author: felixonmars
Revision: 512957

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 16:43:00 UTC (rev 512956)
+++ PKGBUILD2019-10-05 16:43:03 UTC (rev 512957)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-awkward
-pkgver=0.12.11
-pkgrel=1
-pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
-url="https://github.com/scikit-hep/awkward-array;
-license=('BSD')
-arch=('any')
-depends=('python-numpy')
-makedepends=('python-setuptools' 'python-pytest-runner')
-checkdepends=('python-h5py')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
-sha512sums=('024ec07275d733ae361decab440d19af9476e1eafa8498163b975face7be7412defe35494b6d2cfa9992ed3be909d6e576c3649682e47db8469eec8047a550e5')
-
-build() {
-  cd awkward-array-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd awkward-array-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd awkward-array-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-awkward/repos/community-any/PKGBUILD (from rev 512956, 
python-awkward/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 16:43:03 UTC (rev 512957)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-awkward
+pkgver=0.12.12
+pkgrel=1
+pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
+url="https://github.com/scikit-hep/awkward-array;
+license=('BSD')
+arch=('any')
+depends=('python-numpy')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-h5py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz;)
+sha512sums=('0331b91fe26179dc9b50d8bd49b9567fcefcbb87e0e59c6523243d9b153883244ab96a7a331b72a93dc2bd849634b3c744b717a577a469bdb1fd93ee626e859c')
+
+build() {
+  cd awkward-array-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd awkward-array-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd awkward-array-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:24:42
  Author: heftig
Revision: 363856

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 16:24:28 UTC (rev 363855)
+++ PKGBUILD2019-10-05 16:24:42 UTC (rev 363856)
@@ -1,41 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-calendar
-pkgver=3.34.0+13+gcb14c3f4
-pkgrel=1
-pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
-url="https://wiki.gnome.org/Apps/Calendar;
-arch=(x86_64)
-license=(GPL)
-depends=(evolution-data-server gsettings-desktop-schemas gnome-control-center 
libdazzle)
-makedepends=(python appstream-glib git meson gtk-doc)
-optdepends=('evolution: ICS file import')
-groups=(gnome)
-_commit=cb14c3f46c1b626d1391828b66f11ce19f1f8993  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-calendar.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D documentation=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-calendar/repos/extra-x86_64/PKGBUILD (from rev 363855, 
gnome-calendar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 16:24:42 UTC (rev 363856)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-calendar
+pkgver=3.34.1
+pkgrel=1
+pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
+url="https://wiki.gnome.org/Apps/Calendar;
+arch=(x86_64)
+license=(GPL)
+depends=(evolution-data-server gsettings-desktop-schemas gnome-control-center 
libdazzle)
+makedepends=(python appstream-glib git meson)
+optdepends=('evolution: ICS file import')
+groups=(gnome)
+_commit=ca58f2b4643e6477f4c25b49ed6678b83033cefc  # tags/3.34.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-calendar.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:24:42
  Author: heftig
Revision: 363857

archrelease: copy trunk to extra-x86_64

Added:
  gnome-control-center/repos/extra-x86_64/PKGBUILD
(from rev 363855, gnome-control-center/trunk/PKGBUILD)
Deleted:
  gnome-control-center/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 16:24:42 UTC (rev 363856)
+++ PKGBUILD2019-10-05 16:24:42 UTC (rev 363857)
@@ -1,55 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-control-center
-pkgver=3.34.0.1+10+g0f8e3f332
-pkgrel=1
-pkgdesc="GNOME's main interface to configure various aspects of the desktop"
-url="https://gitlab.gnome.org/GNOME/gnome-control-center;
-license=(GPL2)
-arch=(x86_64)
-depends=(accountsservice cups-pk-helper gnome-bluetooth gnome-desktop
- gnome-online-accounts gnome-settings-daemon gsettings-desktop-schemas 
gtk3
- libgtop nm-connection-editor sound-theme-freedesktop upower 
libpwquality
- gnome-color-manager smbclient libmm-glib libgnomekbd grilo libibus
- cheese libgudev bolt udisks2 libhandy gsound)
-makedepends=(docbook-xsl modemmanager git python meson)
-checkdepends=(python-dbusmock python-gobject xorg-server-xvfb)
-optdepends=('system-config-printer: Printer settings'
-'gnome-user-share: Bluetooth and WebDAV file sharing'
-'gnome-remote-desktop: screen sharing'
-'rygel: media sharing'
-'openssh: remote login')
-groups=(gnome)
-_commit=0f8e3f332c47e1f9bb336e320d4c5a6d9d762572  # gnome-3-34
-source=("git+https://gitlab.gnome.org/GNOME/gnome-control-center.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_CONTROL_CENTER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git submodule init
-  git config --local submodule.subprojects/gvc.url 
"$srcdir/libgnome-volume-control"
-  git submodule update
-}
-
-
-build() {
-  arch-meson $pkgname build -D documentation=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: gnome-control-center/repos/extra-x86_64/PKGBUILD (from rev 363855, 
gnome-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 16:24:42 UTC (rev 363857)
@@ -0,0 +1,55 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-control-center
+pkgver=3.34.1
+pkgrel=1
+pkgdesc="GNOME's main interface to configure various aspects of the desktop"
+url="https://gitlab.gnome.org/GNOME/gnome-control-center;
+license=(GPL2)
+arch=(x86_64)
+depends=(accountsservice cups-pk-helper gnome-bluetooth gnome-desktop
+ gnome-online-accounts gnome-settings-daemon gsettings-desktop-schemas 
gtk3
+ libgtop nm-connection-editor sound-theme-freedesktop upower 
libpwquality
+ gnome-color-manager smbclient libmm-glib libgnomekbd grilo libibus
+ cheese libgudev bolt udisks2 libhandy gsound)
+makedepends=(docbook-xsl modemmanager git python meson)
+checkdepends=(python-dbusmock python-gobject xorg-server-xvfb)
+optdepends=('system-config-printer: Printer settings'
+'gnome-user-share: Bluetooth and WebDAV file sharing'
+'gnome-remote-desktop: screen sharing'
+'rygel: media sharing'
+'openssh: remote login')
+groups=(gnome)
+_commit=777c68347d49d079acb014c8910bed4abed22835  # tags/3.34.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-control-center.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_CONTROL_CENTER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  git config --local submodule.subprojects/gvc.url 
"$srcdir/libgnome-volume-control"
+  git submodule update
+}
+
+
+build() {
+  arch-meson $pkgname build -D documentation=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:24:28
  Author: heftig
Revision: 363855

3.34.1-1

Modified:
  gnome-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 16:22:02 UTC (rev 363854)
+++ PKGBUILD2019-10-05 16:24:28 UTC (rev 363855)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-control-center
-pkgver=3.34.0.1+10+g0f8e3f332
+pkgver=3.34.1
 pkgrel=1
 pkgdesc="GNOME's main interface to configure various aspects of the desktop"
 url="https://gitlab.gnome.org/GNOME/gnome-control-center;
@@ -21,7 +21,7 @@
 'rygel: media sharing'
 'openssh: remote login')
 groups=(gnome)
-_commit=0f8e3f332c47e1f9bb336e320d4c5a6d9d762572  # gnome-3-34
+_commit=777c68347d49d079acb014c8910bed4abed22835  # tags/3.34.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-control-center.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:22:02
  Author: heftig
Revision: 363854

3.34.1-1

Modified:
  gnome-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 16:00:54 UTC (rev 363853)
+++ PKGBUILD2019-10-05 16:22:02 UTC (rev 363854)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-calendar
-pkgver=3.34.0+13+gcb14c3f4
+pkgver=3.34.1
 pkgrel=1
 pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
 url="https://wiki.gnome.org/Apps/Calendar;
@@ -9,10 +9,10 @@
 arch=(x86_64)
 license=(GPL)
 depends=(evolution-data-server gsettings-desktop-schemas gnome-control-center 
libdazzle)
-makedepends=(python appstream-glib git meson gtk-doc)
+makedepends=(python appstream-glib git meson)
 optdepends=('evolution: ICS file import')
 groups=(gnome)
-_commit=cb14c3f46c1b626d1391828b66f11ce19f1f8993  # master
+_commit=ca58f2b4643e6477f4c25b49ed6678b83033cefc  # tags/3.34.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-calendar.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -26,7 +26,7 @@
 }
 
 build() {
-  arch-meson $pkgname build -D documentation=true
+  arch-meson $pkgname build
   ninja -C build
 }
 


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:00:54
  Author: heftig
Revision: 363853

archrelease: copy trunk to extra-x86_64

Added:
  clutter-gst/repos/extra-x86_64/PKGBUILD
(from rev 363852, clutter-gst/trunk/PKGBUILD)
Deleted:
  clutter-gst/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 16:00:06 UTC (rev 363852)
+++ PKGBUILD2019-10-05 16:00:54 UTC (rev 363853)
@@ -1,48 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=clutter-gst
-pkgver=3.0.27
-pkgrel=1
-pkgdesc="GStreamer bindings for clutter"
-url="https://gitlab.gnome.org/GNOME/clutter-gst;
-arch=(x86_64)
-license=(LGPL)
-depends=(clutter gst-plugins-base-libs libxdamage libgudev gdk-pixbuf2)
-makedepends=(gobject-introspection gtk-doc git)
-_commit=01a461da1bdb3b29edd2d198b877ec0765af1f39  # tags/3.0.27^0
-source=("git+https://gitlab.gnome.org/GNOME/clutter-gst.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git tag -f 3.0.26 7e191b675decc87bca263f08c1b01a694c74d44a  # Fixup missing 
tag
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
---enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: clutter-gst/repos/extra-x86_64/PKGBUILD (from rev 363852, 
clutter-gst/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 16:00:54 UTC (rev 363853)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=clutter-gst
+pkgver=3.0.27
+pkgrel=2
+pkgdesc="GStreamer bindings for clutter"
+url="https://gitlab.gnome.org/GNOME/clutter-gst;
+arch=(x86_64)
+license=(LGPL)
+depends=(clutter gst-plugins-base-libs libxdamage libgudev gdk-pixbuf2)
+makedepends=(gobject-introspection gtk-doc git gst-plugins-good)
+optdepends=("gst-plugins-good: Video camera capture")
+_commit=01a461da1bdb3b29edd2d198b877ec0765af1f39  # tags/3.0.27^0
+source=("git+https://gitlab.gnome.org/GNOME/clutter-gst.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git tag -f 3.0.26 7e191b675decc87bca263f08c1b01a694c74d44a  # Fixup missing 
tag
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-05 Thread Jan Steffens via arch-commits
Date: Saturday, October 5, 2019 @ 16:00:06
  Author: heftig
Revision: 363852

3.0.27-2

Modified:
  clutter-gst/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 15:41:28 UTC (rev 363851)
+++ PKGBUILD2019-10-05 16:00:06 UTC (rev 363852)
@@ -2,13 +2,14 @@
 
 pkgname=clutter-gst
 pkgver=3.0.27
-pkgrel=1
+pkgrel=2
 pkgdesc="GStreamer bindings for clutter"
 url="https://gitlab.gnome.org/GNOME/clutter-gst;
 arch=(x86_64)
 license=(LGPL)
 depends=(clutter gst-plugins-base-libs libxdamage libgudev gdk-pixbuf2)
-makedepends=(gobject-introspection gtk-doc git)
+makedepends=(gobject-introspection gtk-doc git gst-plugins-good)
+optdepends=("gst-plugins-good: Video camera capture")
 _commit=01a461da1bdb3b29edd2d198b877ec0765af1f39  # tags/3.0.27^0
 source=("git+https://gitlab.gnome.org/GNOME/clutter-gst.git#commit=$_commit;)
 sha256sums=('SKIP')


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

2019-10-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, October 5, 2019 @ 15:41:41
  Author: anatolik
Revision: 512955

archrelease: copy trunk to community-x86_64

Added:
  fossil/repos/community-x86_64/PKGBUILD
(from rev 512954, fossil/trunk/PKGBUILD)
  fossil/repos/community-x86_64/fossil-xinetd
(from rev 512954, fossil/trunk/fossil-xinetd)
  fossil/repos/community-x86_64/fossil.service
(from rev 512954, fossil/trunk/fossil.service)
  fossil/repos/community-x86_64/fossil.socket
(from rev 512954, fossil/trunk/fossil.socket)
Deleted:
  fossil/repos/community-x86_64/PKGBUILD
  fossil/repos/community-x86_64/fossil-xinetd
  fossil/repos/community-x86_64/fossil.service
  fossil/repos/community-x86_64/fossil.socket

+
 PKGBUILD   |   88 +++
 fossil-xinetd  |   46 ++--
 fossil.service |   22 ++---
 fossil.socket  |   20 ++--
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 15:41:21 UTC (rev 512954)
+++ PKGBUILD2019-10-05 15:41:41 UTC (rev 512955)
@@ -1,44 +0,0 @@
-# Maintainer: Anatol Pomozov  
-# Contributor: Daniel YC Lin 
-# Contributor: Konstantin Plotnikov 
-
-pkgname=fossil
-pkgver=2.9
-pkgrel=1
-pkgdesc='Simple, high-reliability, distributed software configuration 
management'
-arch=(x86_64)
-license=(BSD)
-url='https://www.fossil-scm.org'
-depends=(openssl zlib sqlite)
-makedepends=(tcl)
-optdepends=(tcl)
-backup=(etc/xinetd.d/fossil)
-source=(
-  fossil.socket
-  fossil.service
-  fossil-xinetd
-  https://www.fossil-scm.org/index.html/uv/fossil-src-$pkgver.tar.gz
-)
-sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
-'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
-'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'1cb2ada92d43e3e7e008fe77f5e743d301c7ea34d4c36c42f255f873e73d8b4f')
-
-build() {
-  cd fossil-$pkgver
-  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
-  # headers and translate targets are problematic with parallel jobs
-  #make -j1 bld bld/headers
-  make
-}
-
-package() {
-  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
-  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
-  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
-
-  cd fossil-$pkgver
-  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
-  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
-  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: fossil/repos/community-x86_64/PKGBUILD (from rev 512954, 
fossil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 15:41:41 UTC (rev 512955)
@@ -0,0 +1,44 @@
+# Maintainer: Anatol Pomozov  
+# Contributor: Daniel YC Lin 
+# Contributor: Konstantin Plotnikov 
+
+pkgname=fossil
+pkgver=2.10
+pkgrel=1
+pkgdesc='Simple, high-reliability, distributed software configuration 
management'
+arch=(x86_64)
+license=(BSD)
+url='https://www.fossil-scm.org'
+depends=(openssl zlib sqlite)
+makedepends=(tcl)
+optdepends=(tcl)
+backup=(etc/xinetd.d/fossil)
+source=(
+  fossil.socket
+  fossil.service
+  fossil-xinetd
+  https://www.fossil-scm.org/index.html/uv/fossil-src-$pkgver.tar.gz
+)
+sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
+'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
+'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
+'d8a3776d2ce77385ed5ff20a2776d13bb534fb2508e87351e14e94f91cd12b10')
+
+build() {
+  cd fossil-$pkgver
+  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
+  # headers and translate targets are problematic with parallel jobs
+  #make -j1 bld bld/headers
+  make
+}
+
+package() {
+  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
+  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
+  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
+
+  cd fossil-$pkgver
+  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
+  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
+  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: fossil-xinetd
===
--- fossil-xinetd   2019-10-05 15:41:21 UTC (rev 512954)
+++ fossil-xinetd   2019-10-05 15:41:41 UTC (rev 512955)
@@ -1,23 +0,0 @@
-service fossil
-{
-#better not change any of these
-type = UNLISTED
-socket_type = stream
-protocol = tcp

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

2019-10-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, October 5, 2019 @ 15:41:06
  Author: anatolik
Revision: 512944

upgpkg: fossil 2.10-1

Modified:
  fossil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 15:21:10 UTC (rev 512943)
+++ PKGBUILD2019-10-05 15:41:06 UTC (rev 512944)
@@ -3,7 +3,7 @@
 # Contributor: Konstantin Plotnikov 
 
 pkgname=fossil
-pkgver=2.9
+pkgver=2.10
 pkgrel=1
 pkgdesc='Simple, high-reliability, distributed software configuration 
management'
 arch=(x86_64)
@@ -22,7 +22,7 @@
 sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
 'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
 '2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'1cb2ada92d43e3e7e008fe77f5e743d301c7ea34d4c36c42f255f873e73d8b4f')
+'d8a3776d2ce77385ed5ff20a2776d13bb534fb2508e87351e14e94f91cd12b10')
 
 build() {
   cd fossil-$pkgver


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 15:21:10
  Author: archange
Revision: 512943

archrelease: copy trunk to community-x86_64

Added:
  pnetcdf-openmpi/repos/community-x86_64/PKGBUILD
(from rev 512942, pnetcdf-openmpi/trunk/PKGBUILD)
Deleted:
  pnetcdf-openmpi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 15:20:55 UTC (rev 512942)
+++ PKGBUILD2019-10-05 15:21:10 UTC (rev 512943)
@@ -1,39 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=pnetcdf
-_mpi=openmpi
-pkgname=${_pkg}-${_mpi}
-pkgver=1.11.2
-pkgrel=1
-pkgdesc="Parallel I/O Library for NetCDF File Access (${_mpi} version)"
-arch=(x86_64)
-url="https://parallel-netcdf.github.io/;
-license=(custom)
-depends=("${_mpi}" "netcdf-${_mpi}")
-makedepends=(gcc-fortran)
-checkdepends=(inetutils)
-provides=(parallel-netcdf parallel-netcdf-openmpi)
-conflicts=(parallel-netcdf parallel-netcdf-openmpi)
-replaces=(parallel-netcdf parallel-netcdf-openmpi)
-options=(staticlibs)
-source=("${url}/Release/${_pkg}-${pkgver}.tar.gz")
-sha1sums=(cf310a037846a5722c05525b0a77273bea8059a0)
-
-build() {
-cd ${_pkg}-${pkgver}
-autoreconf -vfi
-./configure --prefix=/usr --enable-shared --enable-netcdf4
-make LIBTOOLFLAGS=--verbose
-}
-
-check() {
-cd ${_pkg}-${pkgver}
-make check
-make ptest
-}
-
-package() {
-cd ${_pkg}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}
-}

Copied: pnetcdf-openmpi/repos/community-x86_64/PKGBUILD (from rev 512942, 
pnetcdf-openmpi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 15:21:10 UTC (rev 512943)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=pnetcdf
+_mpi=openmpi
+pkgname=${_pkg}-${_mpi}
+pkgver=1.12.0
+pkgrel=1
+pkgdesc="Parallel I/O Library for NetCDF File Access (${_mpi} version)"
+arch=(x86_64)
+url="https://parallel-netcdf.github.io/;
+license=(custom)
+depends=("${_mpi}" "netcdf-${_mpi}")
+makedepends=(gcc-fortran)
+checkdepends=(inetutils)
+provides=(parallel-netcdf parallel-netcdf-openmpi)
+conflicts=(parallel-netcdf parallel-netcdf-openmpi)
+replaces=(parallel-netcdf parallel-netcdf-openmpi)
+options=(staticlibs)
+source=("${url}/Release/${_pkg}-${pkgver}.tar.gz")
+sha1sums=('0b815d623a7a63631d6466d8df67be433e78cb7b')
+
+build() {
+cd ${_pkg}-${pkgver}
+autoreconf -vfi
+./configure --prefix=/usr --enable-shared --enable-netcdf4
+make LIBTOOLFLAGS=--verbose
+}
+
+check() {
+cd ${_pkg}-${pkgver}
+make check
+make ptest
+}
+
+package() {
+cd ${_pkg}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}
+}


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 15:20:55
  Author: archange
Revision: 512942

upgpkg: pnetcdf-openmpi 1.12.0-1

Modified:
  pnetcdf-openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 15:20:53 UTC (rev 512941)
+++ PKGBUILD2019-10-05 15:20:55 UTC (rev 512942)
@@ -3,7 +3,7 @@
 _pkg=pnetcdf
 _mpi=openmpi
 pkgname=${_pkg}-${_mpi}
-pkgver=1.11.2
+pkgver=1.12.0
 pkgrel=1
 pkgdesc="Parallel I/O Library for NetCDF File Access (${_mpi} version)"
 arch=(x86_64)
@@ -17,7 +17,7 @@
 replaces=(parallel-netcdf parallel-netcdf-openmpi)
 options=(staticlibs)
 source=("${url}/Release/${_pkg}-${pkgver}.tar.gz")
-sha1sums=(cf310a037846a5722c05525b0a77273bea8059a0)
+sha1sums=('0b815d623a7a63631d6466d8df67be433e78cb7b')
 
 build() {
 cd ${_pkg}-${pkgver}


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

2019-10-05 Thread Laurent Carlier via arch-commits
Date: Saturday, October 5, 2019 @ 15:20:50
  Author: lcarlier
Revision: 512940

upgpkg: lib32-llvm 9.0.0-1

Upstream update 9.0.0

Modified:
  lib32-llvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 15:13:22 UTC (rev 512939)
+++ PKGBUILD2019-10-05 15:20:50 UTC (rev 512940)
@@ -3,16 +3,16 @@
 # Contributor: Jan "heftig" Steffens 
 
 pkgname=('lib32-llvm' 'lib32-llvm-libs')
-pkgver=8.0.1
+pkgver=9.0.0
 pkgrel=1
 arch=('x86_64')
 url="https://llvm.org/;
-license=('custom:University of Illinois/NCSA Open Source License')
+license=('custom:Apache 2.0 with LLVM Execption')
 makedepends=('cmake' 'ninja' 'lib32-libffi' 'lib32-zlib' 'python' 
'gcc-multilib'
  'lib32-libxml2')
 options=('staticlibs')
-source=(https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver/llvm-$pkgver.src.tar.xz{,.sig})
-sha256sums=('44787a6d02f7140f145e2250d56c9f849334e11f9ae379827510ed72f12b75e7'
+source=(https://releases.llvm.org/$pkgver/llvm-$pkgver.src.tar.xz{,.sig})
+sha256sums=('d6a0565cf21f22e9b4353b2eb92622e8365000a9e90a16b09b56f8157eabfe84'
 'SKIP')
 validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

 validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

@@ -35,11 +35,12 @@
 -DCMAKE_CXX_FLAGS:STRING=-m32 \
 -DLLVM_TARGET_ARCH:STRING=i686 \
 -DLLVM_HOST_TRIPLE=$CHOST \
--DLLVM_DEFAULT_TARGET_TRIPLE="i686-pc-linux-gnu" \
+-DLLVM_DEFAULT_TARGETS_TRIPLE="i686-pc-linux-gnu" \
 -DLLVM_BUILD_LLVM_DYLIB=ON \
 -DLLVM_LINK_LLVM_DYLIB=ON \
 -DLLVM_ENABLE_RTTI=ON \
 -DLLVM_ENABLE_FFI=ON \
+-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=AVR \
 -DLLVM_BUILD_DOCS=OFF \
 -DLLVM_ENABLE_SPHINX=OFF \
 -DLLVM_ENABLE_DOXYGEN=OFF \


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

2019-10-05 Thread Laurent Carlier via arch-commits
Date: Saturday, October 5, 2019 @ 15:20:53
  Author: lcarlier
Revision: 512941

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-llvm/repos/multilib-staging-x86_64/
  lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD
(from rev 512940, lib32-llvm/trunk/PKGBUILD)

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

Copied: lib32-llvm/repos/multilib-staging-x86_64/PKGBUILD (from rev 512940, 
lib32-llvm/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2019-10-05 15:20:53 UTC (rev 512941)
@@ -0,0 +1,102 @@
+# Maintainer: Laurent Carlier 
+# Contributor: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+
+pkgname=('lib32-llvm' 'lib32-llvm-libs')
+pkgver=9.0.0
+pkgrel=1
+arch=('x86_64')
+url="https://llvm.org/;
+license=('custom:Apache 2.0 with LLVM Execption')
+makedepends=('cmake' 'ninja' 'lib32-libffi' 'lib32-zlib' 'python' 
'gcc-multilib'
+ 'lib32-libxml2')
+options=('staticlibs')
+source=(https://releases.llvm.org/$pkgver/llvm-$pkgver.src.tar.xz{,.sig})
+sha256sums=('d6a0565cf21f22e9b4353b2eb92622e8365000a9e90a16b09b56f8157eabfe84'
+'SKIP')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/llvm-$pkgver.src"
+  mkdir build
+}
+
+build() {
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_LIBDIR_SUFFIX=32 \
+-DCMAKE_C_FLAGS:STRING=-m32 \
+-DCMAKE_CXX_FLAGS:STRING=-m32 \
+-DLLVM_TARGET_ARCH:STRING=i686 \
+-DLLVM_HOST_TRIPLE=$CHOST \
+-DLLVM_DEFAULT_TARGETS_TRIPLE="i686-pc-linux-gnu" \
+-DLLVM_BUILD_LLVM_DYLIB=ON \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_ENABLE_RTTI=ON \
+-DLLVM_ENABLE_FFI=ON \
+-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=AVR \
+-DLLVM_BUILD_DOCS=OFF \
+-DLLVM_ENABLE_SPHINX=OFF \
+-DLLVM_ENABLE_DOXYGEN=OFF \
+-DFFI_INCLUDE_DIR=$(pkg-config --variable=includedir libffi) \
+-DLLVM_BINUTILS_INCDIR=/usr/include
+
+  ninja all
+}
+
+package_lib32-llvm() {
+  pkgdesc="Collection of modular and reusable compiler and toolchain 
technologies (32-bit)"
+  depends=('lib32-llvm-libs' 'llvm')
+
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+
+  # The runtime library goes into lib32-llvm-libs
+  mv "$pkgdir"/usr/lib32/lib{LLVM,LTO}*.so* "$srcdir"
+  mv -f "$pkgdir"/usr/lib32/LLVMgold.so "$srcdir"
+
+  # Fix permissions of static libs
+  chmod -x "$pkgdir"/usr/lib32/*.a
+
+  mv "$pkgdir/usr/bin/llvm-config" "$pkgdir/usr/lib32/llvm-config"
+  mv "$pkgdir/usr/include/llvm/Config/llvm-config.h" \
+"$pkgdir/usr/lib32/llvm-config-32.h"
+
+  rm -rf "$pkgdir"/usr/{bin,include,share/{doc,man,llvm,opt-viewer}}
+
+  # Needed for multilib (https://bugs.archlinux.org/task/29951)
+  # Header stub is taken from Fedora
+  install -d "$pkgdir/usr/include/llvm/Config"
+  mv "$pkgdir/usr/lib32/llvm-config-32.h" "$pkgdir/usr/include/llvm/Config/"
+
+  mkdir "$pkgdir"/usr/bin
+  mv "$pkgdir/usr/lib32/llvm-config" "$pkgdir/usr/bin/llvm-config32"
+
+  install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lib32-llvm-libs() {
+  pkgdesc="Low Level Virtual Machine (runtime library)(32-bit) "
+  depends=('lib32-libffi' 'lib32-zlib' 'lib32-ncurses' 'lib32-libxml2' 
'lib32-gcc-libs')
+
+  install -d "$pkgdir/usr/lib32"
+
+  cp -P \
+"$srcdir"/lib{LLVM,LTO}*.so* \
+"$srcdir"/LLVMgold.so \
+"$pkgdir/usr/lib32/"
+
+  # Symlink LLVMgold.so from /usr/lib/bfd-plugins
+  # https://bugs.archlinux.org/task/28479
+  install -d "$pkgdir/usr/lib32/bfd-plugins"
+  ln -s ../LLVMgold.so "$pkgdir/usr/lib32/bfd-plugins/LLVMgold.so"
+
+  install -Dm644 llvm-$pkgver.src/LICENSE.TXT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 15:13:22
  Author: archange
Revision: 512939

archrelease: copy trunk to community-staging-x86_64

Added:
  ispc/repos/community-staging-x86_64/
  ispc/repos/community-staging-x86_64/PKGBUILD
(from rev 512938, ispc/trunk/PKGBUILD)

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

Copied: ispc/repos/community-staging-x86_64/PKGBUILD (from rev 512938, 
ispc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-05 15:13:22 UTC (rev 512939)
@@ -0,0 +1,39 @@
+# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+
+pkgname=ispc
+pkgver=1.12.0
+pkgrel=1
+pkgdesc="A compiler for high-performance SIMD programming on the CPU"
+arch=(x86_64)
+url="https://ispc.github.io/;
+license=(BSD)
+depends=(ncurses zlib llvm-libs clang)
+makedepends=(llvm python lib32-glibc cmake)
+source=("https://github.com/ispc/ispc/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9ebc29adcdf477659b45155d0f91e61120a12084e42113d0e9f4ce5cfdfbdcab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DISPC_INCLUDE_EXAMPLES=OFF \
+-DISPC_NO_DUMPS=ON 
+  make
+}
+
+check() {
+  cd build
+  make check-all
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+  cd ../${pkgname}-${pkgver}
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 15:10:56
  Author: archange
Revision: 512938

archrelease: copy trunk to community-x86_64

Added:
  ispc/repos/community-x86_64/PKGBUILD
(from rev 512937, ispc/trunk/PKGBUILD)
Deleted:
  ispc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-05 15:10:43 UTC (rev 512937)
+++ PKGBUILD2019-10-05 15:10:56 UTC (rev 512938)
@@ -1,39 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Bruno Pagani 
-
-pkgname=ispc
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="A compiler for high-performance SIMD programming on the CPU"
-arch=(x86_64)
-url="https://ispc.github.io/;
-license=(BSD)
-depends=(ncurses zlib llvm-libs clang)
-makedepends=(llvm python lib32-glibc cmake)
-source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/ispc/ispc/archive/v${pkgver}.tar.gz;)
-sha256sums=('f48ef6e8a1fe5ad4fca691583bf7419f4dce1596e7ed850ff99cc017f8711b2f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DISPC_INCLUDE_EXAMPLES=OFF \
--DISPC_NO_DUMPS=ON 
-  make
-}
-
-check() {
-  cd build
-  make check-all
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-  cd ../${pkgname}-${pkgver}
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ispc/repos/community-x86_64/PKGBUILD (from rev 512937, 
ispc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-05 15:10:56 UTC (rev 512938)
@@ -0,0 +1,39 @@
+# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+
+pkgname=ispc
+pkgver=1.12.0
+pkgrel=1
+pkgdesc="A compiler for high-performance SIMD programming on the CPU"
+arch=(x86_64)
+url="https://ispc.github.io/;
+license=(BSD)
+depends=(ncurses zlib llvm-libs clang)
+makedepends=(llvm python lib32-glibc cmake)
+source=("https://github.com/ispc/ispc/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9ebc29adcdf477659b45155d0f91e61120a12084e42113d0e9f4ce5cfdfbdcab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DISPC_INCLUDE_EXAMPLES=OFF \
+-DISPC_NO_DUMPS=ON 
+  make
+}
+
+check() {
+  cd build
+  make check-all
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+  cd ../${pkgname}-${pkgver}
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2019-10-05 Thread Bruno Pagani via arch-commits
Date: Saturday, October 5, 2019 @ 15:10:43
  Author: archange
Revision: 512937

upgpkg: ispc 1.12.0-1

Modified:
  ispc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-05 14:34:34 UTC (rev 512936)
+++ PKGBUILD2019-10-05 15:10:43 UTC (rev 512937)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=ispc
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc="A compiler for high-performance SIMD programming on the CPU"
 arch=(x86_64)
@@ -10,8 +10,8 @@
 license=(BSD)
 depends=(ncurses zlib llvm-libs clang)
 makedepends=(llvm python lib32-glibc cmake)
-source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/ispc/ispc/archive/v${pkgver}.tar.gz;)
-sha256sums=('f48ef6e8a1fe5ad4fca691583bf7419f4dce1596e7ed850ff99cc017f8711b2f')
+source=("https://github.com/ispc/ispc/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9ebc29adcdf477659b45155d0f91e61120a12084e42113d0e9f4ce5cfdfbdcab')
 
 prepare() {
   mkdir -p build


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

2019-10-05 Thread Laurent Carlier via arch-commits
Date: Saturday, October 5, 2019 @ 15:09:19
  Author: lcarlier
Revision: 363847

archrelease: copy trunk to staging-x86_64

Added:
  mesa/repos/staging-x86_64/
  mesa/repos/staging-x86_64/LICENSE
(from rev 363846, mesa/trunk/LICENSE)
  mesa/repos/staging-x86_64/PKGBUILD
(from rev 363846, mesa/trunk/PKGBUILD)
  mesa/repos/staging-x86_64/glvnd.patch
(from rev 363846, mesa/trunk/glvnd.patch)
  mesa/repos/staging-x86_64/intel-topology-query-fix-old-gens.patch
(from rev 363846, mesa/trunk/intel-topology-query-fix-old-gens.patch)

-+
 LICENSE |   83 
 PKGBUILD|  197 ++
 glvnd.patch |  148 ++
 intel-topology-query-fix-old-gens.patch |   39 +
 4 files changed, 467 insertions(+)

Copied: mesa/repos/staging-x86_64/LICENSE (from rev 363846, mesa/trunk/LICENSE)
===
--- staging-x86_64/LICENSE  (rev 0)
+++ staging-x86_64/LICENSE  2019-10-05 15:09:19 UTC (rev 363847)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
+   OpenGL license from SGI, and makes no claim that Mesa is in any way a
+   compatible replacement for OpenGL or associated with SGI. Those who
+   want a licensed implementation of OpenGL should contact a licensed
+   vendor.
+
+   Please do not refer to the library as MesaGL (for legal reasons). It's
+   just Mesa or The Mesa 3-D graphics library.
+
+   * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+   The Mesa distribution consists of several components. Different
+   copyrights and licenses apply to different components. For example, the
+   GLX client code uses the SGI Free Software License B, and some of the
+   Mesa device drivers are copyrighted by their authors. See below for a
+   list of Mesa's main components and the license for each.
+
+   The core Mesa library is licensed according to the terms of the MIT
+   license. This allows integration with the XFree86, Xorg and DRI
+   projects.
+
+   The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+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.
+
+Attention, Contributors
+
+   When contributing to the Mesa project you must agree to the licensing
+   terms of the component to which you're contributing. The following
+   section lists the primary components of the Mesa distribution and their
+   respective licenses.
+
+Mesa Component Licenses
+
+Component Location   License
+--
+Main Mesa codesrc/mesa/  MIT
+
+Device driverssrc/mesa/drivers/* MIT, generally
+
+Gallium code  src/gallium/   MIT
+
+Ext headers   include/GL/glext.h Khronos
+  include/GL/glxext.h
+
+GLX client code   src/glx/   SGI Free Software License B
+
+C11 threadinclude/c11/threads*.h Boost (permissive) emulation
+
+   In general, consult the source files for license terms.
+
+References
+
+   1. https://www.opengl.org/
+   2. https://www.sgi.com/
+   3. https://www.sgi.com/

Copied: mesa/repos/staging-x86_64/PKGBUILD (from rev 363846, 
mesa/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-05 15:09:19 UTC (rev 363847)
@@ -0,0 +1,197 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+

  1   2   >