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

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 07:54:39
  Author: tensor5
Revision: 563708

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 563707, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 563707, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 563707, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 563707, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  286 -
 use-system-qpid-proton.patch |   52 +++
 use-system-rust.patch|   44 +++---
 zcashd.service   |   18 +-
 4 files changed, 200 insertions(+), 200 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 07:53:57 UTC (rev 563707)
+++ PKGBUILD2020-02-07 07:54:39 UTC (rev 563708)
@@ -1,143 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.1
-_commit=b8ca7131c75f74973e9bc6322c2cfd613a5d82ba
-pkgrel=2
-pkgdesc='Permissionless financial system employing zero-knowledge security'
-arch=('x86_64')
-url='https://z.cash/'
-license=('MIT')
-depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
-makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'2d877820a16c4cd89f5506e59575e23088df418f8cb8a0cf78d28365704b1ada5154bb13ab645a00cfda1329c25b4dcc8e3c0851302e788087c932adf98a9090'
-
'e905707b3fbbce732c77ff0c831b33a4778d62f4c0404f93c587d20a9c893b141c2acbde80a10ced98631668d62c9689b8faef3163aeb178b20391e06833a360'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../use-system-qpid-proton.patch
-patch -Np1 -i ../use-system-rust.patch
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayref
-  crate_arrayvec
-  crate_autocfg
-  crate_bech32
-  crate_bit_vec
-  crate_blake2b_simd
-  crate_blake2s_simd
-  crate_block_buffer
-  crate_block_cipher_trait
-  crate_block_padding
-  crate_byte_tools
-  crate_byteorder
-  crate_c2_chacha
-  crate_cfg_if
-  crate_constant_time_eq
-  crate_crossbeam_channel
-  crate_crossbeam_deque
-  crate_crossbeam_epoch
-  crate_crossbeam_queue
-  crate_crossbeam_utils
-  crate_crossbeam
-  crate_crypto_api_chachapoly
-  crate_crypto_api  
-  crate_digest
-  crate_directories
-  crate_fake_simd
-  crate_fpe
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_getrandom
-  crate_hex
-  crate_lazy_static
-  crate_libc
-  crate_log
-  crate_memoffset  
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_ppv_lite86
-  crate_proc_macro2
-  crate_quote
-  crate_rand_chacha
-  crate_rand_core
-  crate_rand_hc
-  crate_rand_os
-  crate_rand_xorshift  
-  crate_rand
-  crate_rustc_version
-  crate_scopeguard
-  crate_semver_parser
-  crate_semver
-  crate_sha2
-  crate_syn
-  crate_typenum
-  crate_unicode_xid
-  crate_wasi
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-# Tests require python2
-mkdir "${srcdir}/python"
-ln -s /usr/bin/python2 "${srcdir}/python/python"
-export PATH="${srcdir}/python:${PATH}"
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" 

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

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 07:53:57
  Author: tensor5
Revision: 563707

upgpkg: zcash 2.1.1_1-1

Modified:
  zcash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 07:35:35 UTC (rev 563706)
+++ PKGBUILD2020-02-07 07:53:57 UTC (rev 563707)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.1.1
-_commit=b8ca7131c75f74973e9bc6322c2cfd613a5d82ba
-pkgrel=2
+pkgver=2.1.1_1
+_commit=5cb77119e4327a652908e4fede9b3816d37487f3
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


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

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Friday, February 7, 2020 @ 07:35:27
  Author: alucryd
Revision: 563705

upgpkg: home-assistant 0.105.2-1

Modified:
  home-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 07:31:06 UTC (rev 563704)
+++ PKGBUILD2020-02-07 07:35:27 UTC (rev 563705)
@@ -6,7 +6,7 @@
 
 pkgname=home-assistant
 pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.105.1
+pkgver=0.105.2
 pkgrel=1
 arch=(any)
 url=https://home-assistant.io/
@@ -44,7 +44,7 @@
   'python-lxml: Meteo France integration'
 )
 source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=8b4bd95fc59976ea9e86389f01eae2514106111f
+  
git+https://github.com/home-assistant/home-assistant.git#tag=76d2658101d612a2546e8fc5343482631218a887
   home-assistant.service
   home-assistant.sysusers
   home-assistant.tmpfiles


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

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Friday, February 7, 2020 @ 07:35:35
  Author: alucryd
Revision: 563706

archrelease: copy trunk to community-any

Added:
  home-assistant/repos/community-any/PKGBUILD
(from rev 563705, home-assistant/trunk/PKGBUILD)
  home-assistant/repos/community-any/home-assistant.service
(from rev 563705, home-assistant/trunk/home-assistant.service)
  home-assistant/repos/community-any/home-assistant.sysusers
(from rev 563705, home-assistant/trunk/home-assistant.sysusers)
  home-assistant/repos/community-any/home-assistant.tmpfiles
(from rev 563705, home-assistant/trunk/home-assistant.tmpfiles)
Deleted:
  home-assistant/repos/community-any/PKGBUILD
  home-assistant/repos/community-any/home-assistant.service
  home-assistant/repos/community-any/home-assistant.sysusers
  home-assistant/repos/community-any/home-assistant.tmpfiles

-+
 PKGBUILD|  176 +++---
 home-assistant.service  |   28 +++
 home-assistant.sysusers |2 
 home-assistant.tmpfiles |2 
 4 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 07:35:27 UTC (rev 563705)
+++ PKGBUILD2020-02-07 07:35:35 UTC (rev 563706)
@@ -1,88 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ethan Skinner 
-# Contributor: Grégoire Seux 
-# Contributor: Dean Galvin 
-# Contributor: NicoHood 
-
-pkgname=home-assistant
-pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.105.1
-pkgrel=1
-arch=(any)
-url=https://home-assistant.io/
-license=(APACHE)
-depends=(
-  gcc
-  python-aiohttp
-  python-aiohttp-cors
-  python-astral
-  python-async-timeout
-  python-attrs
-  python-bcrypt
-  python-certifi
-  python-cryptography
-  python-importlib-metadata
-  python-jinja
-  python-pyjwt
-  python-pip
-  python-pytz
-  python-requests
-  python-ruamel-yaml
-  python-slugify
-  python-sqlalchemy
-  python-voluptuous
-  python-voluptuous-serialize
-  python-yaml
-)
-makedepends=(
-  git
-  python-setuptools
-)
-optdepends=(
-  'net-tools: Nmap host discovery'
-  'openzwave: Z-Wave integration'
-  'python-lxml: Meteo France integration'
-)
-source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=8b4bd95fc59976ea9e86389f01eae2514106111f
-  home-assistant.service
-  home-assistant.sysusers
-  home-assistant.tmpfiles
-)
-sha256sums=(
-  SKIP
-  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
-  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
-  f9e43edb276e0fbbbc2273b836ef1da0ac43347b5c3e4c63774e7f7ecdf25660
-)
-
-pkgver() {
-  cd home-assistant
-
-  git describe --tags
-}
-
-prepare() {
-  cd home-assistant
-
-  # lift hard dep constraints, we'll deal with breaking changes ourselves
-  sed 's/==/>=/g' -i setup.py
-}
-
-build() {
-  cd home-assistant
-
-  python setup.py build
-}
-
-package() {
-  cd home-assistant
-
-  python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-
-  install -Dm 644 ../home-assistant.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-  install -Dm 644 ../home-assistant.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/home-assistant.conf
-  install -Dm 644 ../home-assistant.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/home-assistant.conf
-}
-
-# vim: ts=2 sw=2 et:

Copied: home-assistant/repos/community-any/PKGBUILD (from rev 563705, 
home-assistant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 07:35:35 UTC (rev 563706)
@@ -0,0 +1,88 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ethan Skinner 
+# Contributor: Grégoire Seux 
+# Contributor: Dean Galvin 
+# Contributor: NicoHood 
+
+pkgname=home-assistant
+pkgdesc='Open source home automation that puts local control and privacy first'
+pkgver=0.105.2
+pkgrel=1
+arch=(any)
+url=https://home-assistant.io/
+license=(APACHE)
+depends=(
+  gcc
+  python-aiohttp
+  python-aiohttp-cors
+  python-astral
+  python-async-timeout
+  python-attrs
+  python-bcrypt
+  python-certifi
+  python-cryptography
+  python-importlib-metadata
+  python-jinja
+  python-pyjwt
+  python-pip
+  python-pytz
+  python-requests
+  python-ruamel-yaml
+  python-slugify
+  python-sqlalchemy
+  python-voluptuous
+  python-voluptuous-serialize
+  python-yaml
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'net-tools: Nmap host discovery'
+  'openzwave: Z-Wave integration'
+  'python-lxml: Meteo France integration'
+)
+source=(
+  
git+https://github.com/home-assistant/home-assistant.git#tag=76d2658101d612a2546e8fc5343482631218a887
+  home-assistant.service
+  home-assistant.sysusers
+  home-assistant.tmpfiles
+)
+sha256sums=(
+  SKIP
+  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
+  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
+  

[arch-commits] Commit in tlp/repos/community-any (4 files)

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Friday, February 7, 2020 @ 07:31:06
  Author: alucryd
Revision: 563704

archrelease: copy trunk to community-any

Added:
  tlp/repos/community-any/PKGBUILD
(from rev 563703, tlp/trunk/PKGBUILD)
  tlp/repos/community-any/tlp.install
(from rev 563703, tlp/trunk/tlp.install)
Deleted:
  tlp/repos/community-any/PKGBUILD
  tlp/repos/community-any/tlp.install

-+
 PKGBUILD|  142 +-
 tlp.install |   18 +++
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 07:30:59 UTC (rev 563703)
+++ PKGBUILD2020-02-07 07:31:06 UTC (rev 563704)
@@ -1,71 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Marc Schulte 
-
-pkgbase=tlp
-pkgname=(
-  tlp
-  tlp-rdw
-)
-pkgver=1.3.0
-pkgrel=2
-arch=(any)
-url=https://linrunner.de/en/tlp/tlp.html
-license=(GPL2)
-makedepends=(git)
-source=(git+https://github.com/linrunner/TLP.git#tag=538766b577d45b767aeb5755e10dfaec66f97512)
-sha256sums=(SKIP)
-install=tlp.install
-
-pkgver() {
-  cd TLP
-
-  git describe --tags
-}
-
-package_tlp() {
-  pkgdesc='Linux Advanced Power Management'
-  depends=(
-hdparm
-iw
-pciutils
-rfkill
-usbutils
-util-linux
-  )
-  optdepends=(
-'acpi_call: ThinkPad battery functions, Sandy Bridge and newer'
-'bash-completion: Bash completion'
-'ethtool: Disable Wake On Lan'
-'lsb-release: Display LSB release version in tlp-stat'
-'smartmontools: Display S.M.A.R.T. data in tlp-stat'
-'tp_smapi: ThinkPad battery functions'
-'x86_energy_perf_policy: Set energy versus performance policy on x86 
processors'
-  )
-  conflicts=(
-laptop-mode-tools
-pm-utils
-  )
-  backup=(etc/tlp.conf)
-
-  export TLP_NO_INIT=1
-  export TLP_SBIN=/usr/bin
-  export TLP_SDSL=/usr/lib/systemd/system-sleep
-  export TLP_SYSD=/usr/lib/systemd/system
-  export TLP_ULIB=/usr/lib/udev
-  export TLP_WITH_ELOGIND=0
-  export TLP_WITH_SYSTEMD=1
-
-  make DESTDIR="${pkgdir}" -C TLP install-tlp install-man-tlp
-}
-
-package_tlp-rdw() {
-  pkgdesc='Linux Advanced Power Management - Radio Device Wizard'
-  depends=(
-networkmanager
-tlp
-  )
-
-  make DESTDIR="${pkgdir}" -C TLP install-rdw install-man-rdw
-}
-
-# vim: ts=2 sw=2 et:

Copied: tlp/repos/community-any/PKGBUILD (from rev 563703, tlp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 07:31:06 UTC (rev 563704)
@@ -0,0 +1,71 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Marc Schulte 
+
+pkgbase=tlp
+pkgname=(
+  tlp
+  tlp-rdw
+)
+pkgver=1.3.1
+pkgrel=1
+arch=(any)
+url=https://linrunner.de/en/tlp/tlp.html
+license=(GPL2)
+makedepends=(git)
+source=(git+https://github.com/linrunner/TLP.git#tag=ab788abf4936dfb44fbb408afc34af834230a64d)
+sha256sums=(SKIP)
+install=tlp.install
+
+pkgver() {
+  cd TLP
+
+  git describe --tags
+}
+
+package_tlp() {
+  pkgdesc='Linux Advanced Power Management'
+  depends=(
+hdparm
+iw
+pciutils
+rfkill
+usbutils
+util-linux
+  )
+  optdepends=(
+'acpi_call: ThinkPad battery functions, Sandy Bridge and newer'
+'bash-completion: Bash completion'
+'ethtool: Disable Wake On Lan'
+'lsb-release: Display LSB release version in tlp-stat'
+'smartmontools: Display S.M.A.R.T. data in tlp-stat'
+'tp_smapi: ThinkPad battery functions'
+'x86_energy_perf_policy: Set energy versus performance policy on x86 
processors'
+  )
+  conflicts=(
+laptop-mode-tools
+pm-utils
+  )
+  backup=(etc/tlp.conf)
+
+  export TLP_NO_INIT=1
+  export TLP_SBIN=/usr/bin
+  export TLP_SDSL=/usr/lib/systemd/system-sleep
+  export TLP_SYSD=/usr/lib/systemd/system
+  export TLP_ULIB=/usr/lib/udev
+  export TLP_WITH_ELOGIND=0
+  export TLP_WITH_SYSTEMD=1
+
+  make DESTDIR="${pkgdir}" -C TLP install-tlp install-man-tlp
+}
+
+package_tlp-rdw() {
+  pkgdesc='Linux Advanced Power Management - Radio Device Wizard'
+  depends=(
+networkmanager
+tlp
+  )
+
+  make DESTDIR="${pkgdir}" -C TLP install-rdw install-man-rdw
+}
+
+# vim: ts=2 sw=2 et:

Deleted: tlp.install
===
--- tlp.install 2020-02-07 07:30:59 UTC (rev 563703)
+++ tlp.install 2020-02-07 07:31:06 UTC (rev 563704)
@@ -1,9 +0,0 @@
-post_upgrade() {
-  if [ $(vercmp $2 1.3.0) -lt 0 ]; then
-cat << EOF
-The default TLP configuration has moved from /etc/default/tlp to /etc/tlp.conf.
-The syntax is the same, you can move your old configuration or start fresh.
-EOF
-  fi
-}
-

Copied: tlp/repos/community-any/tlp.install (from rev 563703, 
tlp/trunk/tlp.install)
===
--- tlp.install (rev 0)
+++ tlp.install 2020-02-07 07:31:06 UTC (rev 563704)
@@ -0,0 +1,9 @@
+post_upgrade() {
+  if [ $(vercmp $2 1.3.0) 

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

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Friday, February 7, 2020 @ 07:30:59
  Author: alucryd
Revision: 563703

upgpkg: tlp 1.3.1-1

Modified:
  tlp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 06:53:08 UTC (rev 563702)
+++ PKGBUILD2020-02-07 07:30:59 UTC (rev 563703)
@@ -6,13 +6,13 @@
   tlp
   tlp-rdw
 )
-pkgver=1.3.0
-pkgrel=2
+pkgver=1.3.1
+pkgrel=1
 arch=(any)
 url=https://linrunner.de/en/tlp/tlp.html
 license=(GPL2)
 makedepends=(git)
-source=(git+https://github.com/linrunner/TLP.git#tag=538766b577d45b767aeb5755e10dfaec66f97512)
+source=(git+https://github.com/linrunner/TLP.git#tag=ab788abf4936dfb44fbb408afc34af834230a64d)
 sha256sums=(SKIP)
 install=tlp.install
 


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

2020-02-06 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, February 7, 2020 @ 06:53:08
  Author: yan12125
Revision: 563702

archrelease: copy trunk to community-x86_64

Added:
  python-snappy/repos/community-x86_64/
  python-snappy/repos/community-x86_64/PKGBUILD
(from rev 563701, python-snappy/trunk/PKGBUILD)

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

Copied: python-snappy/repos/community-x86_64/PKGBUILD (from rev 563701, 
python-snappy/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-02-07 06:53:08 UTC (rev 563702)
@@ -0,0 +1,40 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Guillaume Horel 
+
+pkgname=python-snappy
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Python bindings for the snappy compression library.'
+url='https://github.com/andrix/python-snappy'
+depends=(python snappy)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest)
+license=(BSD)
+arch=(x86_64)
+source=(https://files.pythonhosted.org/packages/source/p/python-snappy/python-snappy-$pkgver.tar.gz)
+sha256sums=('d9c26532cfa510f45e8d135cde140e8a5603d3fb254cfec273ebc0ecf9f668e2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Move test scripts around, so that they can use the correct sys.path 
(build/lib.linux...)
+  mkdir tests
+  mv test_*.py tests
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-$pyver"
+  pytest -v tests --ignore=tests/test_snappy_cffi.py -k 'not 
test_snappy_cffi_enum'
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2020-02-06 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, February 7, 2020 @ 06:52:32
  Author: yan12125
Revision: 563701

addpkg: python-snappy, optdepends of python-autobahn

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

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

Added: python-snappy/trunk/PKGBUILD
===
--- python-snappy/trunk/PKGBUILD(rev 0)
+++ python-snappy/trunk/PKGBUILD2020-02-07 06:52:32 UTC (rev 563701)
@@ -0,0 +1,40 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Guillaume Horel 
+
+pkgname=python-snappy
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Python bindings for the snappy compression library.'
+url='https://github.com/andrix/python-snappy'
+depends=(python snappy)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest)
+license=(BSD)
+arch=(x86_64)
+source=(https://files.pythonhosted.org/packages/source/p/python-snappy/python-snappy-$pkgver.tar.gz)
+sha256sums=('d9c26532cfa510f45e8d135cde140e8a5603d3fb254cfec273ebc0ecf9f668e2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Move test scripts around, so that they can use the correct sys.path 
(build/lib.linux...)
+  mkdir tests
+  mv test_*.py tests
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-$pyver"
+  pytest -v tests --ignore=tests/test_snappy_cffi.py -k 'not 
test_snappy_cffi_enum'
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in skk-jisyo/repos/community-any (4 files)

2020-02-06 Thread Jiachen Yang via arch-commits
Date: Friday, February 7, 2020 @ 06:01:10
  Author: farseerfc
Revision: 563700

archrelease: copy trunk to community-any

Added:
  skk-jisyo/repos/community-any/PKGBUILD
(from rev 563699, skk-jisyo/trunk/PKGBUILD)
  skk-jisyo/repos/community-any/skk-jisyo.install
(from rev 563699, skk-jisyo/trunk/skk-jisyo.install)
Deleted:
  skk-jisyo/repos/community-any/PKGBUILD
  skk-jisyo/repos/community-any/skk-jisyo.install

---+
 PKGBUILD  |  156 ++--
 skk-jisyo.install |   20 +++---
 2 files changed, 88 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 06:00:27 UTC (rev 563699)
+++ PKGBUILD2020-02-07 06:01:10 UTC (rev 563700)
@@ -1,78 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: Felix Yan 
-# Contributor: jeneshicc 
-
-pkgname=skk-jisyo
-pkgver=20191208
-pkgrel=1
-pkgdesc="Dictionaries for the SKK Japanese input method"
-arch=('any')
-url="http://openlab.ring.gr.jp/skk/;
-optdepends=('skktools: Dictionary maintenance tools')
-license=('GPL')
-install=${pkgname}.install
-
-_skk_jisyo_gz=(L
-   M
-   ML
-   S
-   JIS2
-   JIS2004
-   JIS3_4
-   assoc
-   china_taiwan
-   fullname
-   geo
-   itaiji
-   itaiji.JIS3_4
-   jinmei
-   law
-   lisp
-   mazegaki
-   okinawa
-   propernoun
-   pubdic+
-   requested
-   station
-   wrong
-   wrong.annotated)
-
-source=()
-for _t in "${_skk_jisyo_gz[@]}" ; do
-  
source+=("SKK-JISYO.$_t.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.$_t.gz;)
-done
-
-md5sums=('91bc14eac4a3d77a42731696e2da6059'
- 'f7aa51134b25c5481daca8cb396b3964'
- '7cf77e039da06101bef47adb30ca2b34'
- 'ad07adfb18b270d54faf0b8a63b4a296'
- 'dd400ae8446958dc8976b629a5afa37e'
- '87bb25fd8bbaaab7ad0af9ab1c2c6f2a'
- '569935e0fd4a8acf064f3ee5effec762'
- 'f4d39ee02f15216456bddc07d2b25559'
- 'bed4a0399a7d6305dca28dd20af695f4'
- '03282044a5069ac1baffb35e2e01199f'
- '1c6950951234f06168e16ab3718fbd90'
- 'e2df40facb2bc150fa12cdff6f168ab3'
- '2af0a6271df8f8e1e9ddac2d6be92d69'
- '87bab3dd7440c2577e28573a613c63e7'
- 'b9c6a38ff2aafe0e24be793c038f78b0'
- '829293eba49a4c48399f43ce43ead238'
- '05536815be073f4eb36e9ad147a2389d'
- '4bf0b1761f03e05caa61c8a6ff295d9f'
- '53407c1d74036759a7db1fa07dd8e5d4'
- 'fd4b8dda0e411c82435e97a0a03771e7'
- 'be9617afe977227b721ec46f6114aff5'
- '8a7d5efefea00655b4c178dff4c89070'
- '063ec31d1cb1c08c8dfc89d2db1b64a3'
- 'bbbf4139679c451a342a55406ad7d907')
-
-
-package() {
-  mkdir jisyo
-  for _t in "${_skk_jisyo_gz[@]}" ; do
-cp "SKK-JISYO.$_t.$pkgver.gz" "jisyo/SKK-JISYO.$_t.$pkgver.gz"
-gunzip "jisyo/SKK-JISYO.$_t.$pkgver.gz"
-install -D -m 644 "jisyo/SKK-JISYO.$_t.$pkgver" 
"$pkgdir/usr/share/skk/SKK-JISYO.$_t"
-  done
-}

Copied: skk-jisyo/repos/community-any/PKGBUILD (from rev 563699, 
skk-jisyo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 06:01:10 UTC (rev 563700)
@@ -0,0 +1,78 @@
+# Maintainer: Jiachen Yang 
+# Contributor: Felix Yan 
+# Contributor: jeneshicc 
+
+pkgname=skk-jisyo
+pkgver=20200202
+pkgrel=1
+pkgdesc="Dictionaries for the SKK Japanese input method"
+arch=('any')
+url="http://openlab.ring.gr.jp/skk/;
+optdepends=('skktools: Dictionary maintenance tools')
+license=('GPL')
+install=${pkgname}.install
+
+_skk_jisyo_gz=(L
+   M
+   ML
+   S
+   JIS2
+   JIS2004
+   JIS3_4
+   assoc
+   china_taiwan
+   fullname
+   geo
+   itaiji
+   itaiji.JIS3_4
+   jinmei
+   law
+   lisp
+   mazegaki
+   okinawa
+   propernoun
+   pubdic+
+   requested
+   station
+   wrong
+   wrong.annotated)
+
+source=()
+for _t in "${_skk_jisyo_gz[@]}" ; do
+  
source+=("SKK-JISYO.$_t.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.$_t.gz;)
+done
+
+md5sums=('411187fc42595efd3d769b5b174ec7c7'
+ 'f7aa51134b25c5481daca8cb396b3964'
+ '7cf77e039da06101bef47adb30ca2b34'
+ 'ad07adfb18b270d54faf0b8a63b4a296'
+ 'dd400ae8446958dc8976b629a5afa37e'
+ '87bb25fd8bbaaab7ad0af9ab1c2c6f2a'
+ '569935e0fd4a8acf064f3ee5effec762'
+ 'f4d39ee02f15216456bddc07d2b25559'
+ 'd629e8f9050bf4345d6d686aa0a0c0fe'
+ 

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

2020-02-06 Thread Jiachen Yang via arch-commits
Date: Friday, February 7, 2020 @ 06:00:27
  Author: farseerfc
Revision: 563699

upgpkg: skk-jisyo 20200202-1: skk-jisyo 20200202

Modified:
  skk-jisyo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 05:13:04 UTC (rev 563698)
+++ PKGBUILD2020-02-07 06:00:27 UTC (rev 563699)
@@ -3,7 +3,7 @@
 # Contributor: jeneshicc 
 
 pkgname=skk-jisyo
-pkgver=20191208
+pkgver=20200202
 pkgrel=1
 pkgdesc="Dictionaries for the SKK Japanese input method"
 arch=('any')
@@ -42,7 +42,7 @@
   
source+=("SKK-JISYO.$_t.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.$_t.gz;)
 done
 
-md5sums=('91bc14eac4a3d77a42731696e2da6059'
+md5sums=('411187fc42595efd3d769b5b174ec7c7'
  'f7aa51134b25c5481daca8cb396b3964'
  '7cf77e039da06101bef47adb30ca2b34'
  'ad07adfb18b270d54faf0b8a63b4a296'
@@ -50,7 +50,7 @@
  '87bb25fd8bbaaab7ad0af9ab1c2c6f2a'
  '569935e0fd4a8acf064f3ee5effec762'
  'f4d39ee02f15216456bddc07d2b25559'
- 'bed4a0399a7d6305dca28dd20af695f4'
+ 'd629e8f9050bf4345d6d686aa0a0c0fe'
  '03282044a5069ac1baffb35e2e01199f'
  '1c6950951234f06168e16ab3718fbd90'
  'e2df40facb2bc150fa12cdff6f168ab3'
@@ -64,7 +64,7 @@
  'fd4b8dda0e411c82435e97a0a03771e7'
  'be9617afe977227b721ec46f6114aff5'
  '8a7d5efefea00655b4c178dff4c89070'
- '063ec31d1cb1c08c8dfc89d2db1b64a3'
+ 'dc2c5720e02aef3ca786a5eb2f15dfd9'
  'bbbf4139679c451a342a55406ad7d907')
 
 


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

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 05:13:04
  Author: tensor5
Revision: 563698

archrelease: copy trunk to community-x86_64

Added:
  parity-ethereum/repos/community-x86_64/PKGBUILD
(from rev 563697, parity-ethereum/trunk/PKGBUILD)
  parity-ethereum/repos/community-x86_64/parity-system.service
(from rev 563697, parity-ethereum/trunk/parity-system.service)
  parity-ethereum/repos/community-x86_64/parity-user.service
(from rev 563697, parity-ethereum/trunk/parity-user.service)
  parity-ethereum/repos/community-x86_64/parity.toml
(from rev 563697, parity-ethereum/trunk/parity.toml)
Deleted:
  parity-ethereum/repos/community-x86_64/PKGBUILD
  parity-ethereum/repos/community-x86_64/parity-system.service
  parity-ethereum/repos/community-x86_64/parity-user.service
  parity-ethereum/repos/community-x86_64/parity.toml

---+
 PKGBUILD  |   92 
 parity-system.service |   38 +--
 parity-user.service   |   28 +++---
 parity.toml   |6 +--
 4 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 05:12:21 UTC (rev 563697)
+++ PKGBUILD2020-02-07 05:13:04 UTC (rev 563698)
@@ -1,46 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=parity-ethereum
-pkgver=2.7.1
-_commit=6885be06a47bfb34869a068b44f8fa7b46bd2123
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('x86_64')
-url='https://parity.io/'
-license=('GPL3')
-depends=('systemd-libs')
-makedepends=('clang' 'cmake' 'git' 'rust' 'systemd')
-provides=('parity')
-conflicts=('parity')
-replaces=('parity')
-backup=('etc/parity.toml')
-source=("git+https://github.com/paritytech/parity-ethereum.git#commit=${_commit};
-'parity-system.service'
-'parity-user.service'
-'parity.toml')
-sha256sums=('SKIP'
-'b2382103002707202324a40d1de186d35de7317c5112d9e5d197f97075c6c109'
-'7d979968367564dc48636344350403984ceb85f88a0b7d838bc047686e767289'
-'f4efce76a180b5a26b7e9bceee1d192b1d4d4790b711fa928fd8c9172d0cd290')
-
-build() {
-cd ${pkgname}
-
-cargo build --release --features final
-cargo build --release -p evmbin
-cargo build --release -p ethstore-cli
-cargo build --release -p ethkey-cli
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin \
-target/release/{ethstore,parity,parity-evm}
-install -Dm755 target/release/ethkey "${pkgdir}"/usr/bin/parity-ethkey
-for type in system user; do
-install -Dm644 ../parity-${type}.service \
-"${pkgdir}/usr/lib/systemd/${type}/parity.service"
-done
-install -Dm644 -t "${pkgdir}/etc" ../parity.toml
-}

Copied: parity-ethereum/repos/community-x86_64/PKGBUILD (from rev 563697, 
parity-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 05:13:04 UTC (rev 563698)
@@ -0,0 +1,46 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=parity-ethereum
+pkgver=2.7.2
+_commit=2662d1925ec794f3ad7c5759b2412ff5128d259b
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('x86_64')
+url='https://parity.io/'
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('clang' 'cmake' 'git' 'rust')
+provides=('parity')
+conflicts=('parity')
+replaces=('parity')
+backup=('etc/parity.toml')
+source=("git+https://github.com/paritytech/parity-ethereum.git#commit=${_commit};
+'parity-system.service'
+'parity-user.service'
+'parity.toml')
+sha256sums=('SKIP'
+'b2382103002707202324a40d1de186d35de7317c5112d9e5d197f97075c6c109'
+'7d979968367564dc48636344350403984ceb85f88a0b7d838bc047686e767289'
+'f4efce76a180b5a26b7e9bceee1d192b1d4d4790b711fa928fd8c9172d0cd290')
+
+build() {
+cd ${pkgname}
+
+cargo build --release --features final
+cargo build --release -p evmbin
+cargo build --release -p ethstore-cli
+cargo build --release -p ethkey-cli
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin \
+target/release/{ethstore,parity,parity-evm}
+install -Dm755 target/release/ethkey "${pkgdir}"/usr/bin/parity-ethkey
+for type in system user; do
+install -Dm644 ../parity-${type}.service \
+"${pkgdir}/usr/lib/systemd/${type}/parity.service"
+done
+install -Dm644 -t "${pkgdir}/etc" ../parity.toml
+}

Deleted: parity-system.service
===
--- parity-system.service   2020-02-07 05:12:21 UTC (rev 563697)
+++ parity-system.service   2020-02-07 05:13:04 UTC (rev 563698)
@@ -1,19 +0,0 @@
-[Unit]
-Description=Parity Ethereum Daemon
-After=network.target
-
-[Service]
-User=parity
-Group=parity
-DynamicUser=on
-StateDirectory=parity
-

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

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 05:12:21
  Author: tensor5
Revision: 563697

upgpkg: parity-ethereum 2.7.2-1

Modified:
  parity-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 04:11:47 UTC (rev 563696)
+++ PKGBUILD2020-02-07 05:12:21 UTC (rev 563697)
@@ -1,15 +1,15 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=parity-ethereum
-pkgver=2.7.1
-_commit=6885be06a47bfb34869a068b44f8fa7b46bd2123
+pkgver=2.7.2
+_commit=2662d1925ec794f3ad7c5759b2412ff5128d259b
 pkgrel=1
 pkgdesc='Fast, light, robust Ethereum implementation'
 arch=('x86_64')
 url='https://parity.io/'
 license=('GPL3')
-depends=('systemd-libs')
-makedepends=('clang' 'cmake' 'git' 'rust' 'systemd')
+depends=('gcc-libs')
+makedepends=('clang' 'cmake' 'git' 'rust')
 provides=('parity')
 conflicts=('parity')
 replaces=('parity')


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

2020-02-06 Thread Eli Schwartz via arch-commits
Date: Friday, February 7, 2020 @ 04:11:47
  Author: eschwartz
Revision: 563696

archrelease: copy trunk to community-x86_64

Added:
  pageedit/repos/community-x86_64/PKGBUILD
(from rev 563695, pageedit/trunk/PKGBUILD)
Deleted:
  pageedit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 04:11:30 UTC (rev 563695)
+++ PKGBUILD2020-02-07 04:11:47 UTC (rev 563696)
@@ -1,39 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-pkgname=pageedit
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
-arch=('x86_64')
-url="https://github.com/Sigil-Ebook/PageEdit;
-license=('GPL3')
-depends=('qt5-webengine')
-makedepends=('cmake' 'qt5-tools')
-source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
-sha256sums=('75a5ca61b7c44ba4d655c7573a984066d8e2814831549ec38ebe2fbbd3569d50'
-'SKIP')
-b2sums=('0fe8198d1aea1c6d6cde64a9918dc7659282e3de4f02faeea2e3311980f79c80a550c0011b3fcce734086c0432abdfe60844fbd3c46e264dfdc90ac4628fdba0'
-'SKIP')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-build() {
-mkdir -p "${srcdir}"/PageEdit-${pkgver}/build
-cd "${srcdir}"/PageEdit-${pkgver}/build
-
-cmake -G "Unix Makefiles" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DINSTALL_BUNDLED_DICTS=0 \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
-..
-make
-}
-
-package() {
-cd "${srcdir}"/PageEdit-${pkgver}/build
-
-make install DESTDIR="${pkgdir}"
-}

Copied: pageedit/repos/community-x86_64/PKGBUILD (from rev 563695, 
pageedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 04:11:47 UTC (rev 563696)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=pageedit
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
+arch=('x86_64')
+url="https://github.com/Sigil-Ebook/PageEdit;
+license=('GPL3')
+depends=('qt5-webengine')
+makedepends=('cmake' 'qt5-tools')
+source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
+sha256sums=('ef8a683c91bdfc85e80099c26483dbaeb1a03984eeb97675bfe7f9bd1c3fd1ab'
+'SKIP')
+b2sums=('93c04b2acbaad2df3c78342652bb044e0e7c1e4ce8b49132c977d8f80c4cbabf1645ed70e0dc49c87327b6f9946929519de32c922ca94bb97fd2cc7d5dc7679c'
+'SKIP')
+validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

+
+build() {
+mkdir -p "${srcdir}"/PageEdit-${pkgver}/build
+cd "${srcdir}"/PageEdit-${pkgver}/build
+
+cmake -G "Unix Makefiles" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_BUNDLED_DICTS=0 \
+-DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
+-DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
+-DCMAKE_BUILD_TYPE=Release \
+..
+make
+}
+
+package() {
+cd "${srcdir}"/PageEdit-${pkgver}/build
+
+make install DESTDIR="${pkgdir}"
+}


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

2020-02-06 Thread Eli Schwartz via arch-commits
Date: Friday, February 7, 2020 @ 04:11:30
  Author: eschwartz
Revision: 563695

upgpkg: pageedit 1.1.0-1: upstream release

Modified:
  pageedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 04:04:51 UTC (rev 563694)
+++ PKGBUILD2020-02-07 04:11:30 UTC (rev 563695)
@@ -1,7 +1,7 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=pageedit
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
 arch=('x86_64')
@@ -11,9 +11,9 @@
 makedepends=('cmake' 'qt5-tools')
 source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
-sha256sums=('75a5ca61b7c44ba4d655c7573a984066d8e2814831549ec38ebe2fbbd3569d50'
+sha256sums=('ef8a683c91bdfc85e80099c26483dbaeb1a03984eeb97675bfe7f9bd1c3fd1ab'
 'SKIP')
-b2sums=('0fe8198d1aea1c6d6cde64a9918dc7659282e3de4f02faeea2e3311980f79c80a550c0011b3fcce734086c0432abdfe60844fbd3c46e264dfdc90ac4628fdba0'
+b2sums=('93c04b2acbaad2df3c78342652bb044e0e7c1e4ce8b49132c977d8f80c4cbabf1645ed70e0dc49c87327b6f9946929519de32c922ca94bb97fd2cc7d5dc7679c'
 'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 


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

2020-02-06 Thread Eli Schwartz via arch-commits
Date: Friday, February 7, 2020 @ 04:04:51
  Author: eschwartz
Revision: 563694

archrelease: copy trunk to community-x86_64

Added:
  sigil/repos/community-x86_64/PKGBUILD
(from rev 563693, sigil/trunk/PKGBUILD)
  sigil/repos/community-x86_64/sigil.install
(from rev 563693, sigil/trunk/sigil.install)
Deleted:
  sigil/repos/community-x86_64/PKGBUILD
  sigil/repos/community-x86_64/sigil.install

---+
 PKGBUILD  |  136 
 sigil.install |   20 
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 04:04:32 UTC (rev 563693)
+++ PKGBUILD2020-02-07 04:04:51 UTC (rev 563694)
@@ -1,68 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Alad Wenter 
-# Contributor: Giovanni Scafora 
-# Contributor: Larry Hajali 
-
-pkgname=sigil
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
-arch=('x86_64')
-url="https://sigil-ebook.com/;
-license=('GPL3')
-depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 
'python-css-parser'
- 'python-lxml' 'qt5-webengine')
-makedepends=('qt5-tools' 'cmake')
-optdepends=('hunspell-en_US: for English dictionary support'
-'hyphen-en: for English hyphenation support in plugins'
-'pageedit: external editor to replace BookView'
-'python-html5lib: recommended for plugins'
-'python-chardet: recommended for plugins'
-'python-cssselect: recommended for plugins'
-'python-pillow: recommended for plugins'
-'python-regex: recommended for plugins'
-'python-pyqt5: recommended for plugins'
-'tk: recommended for plugins')
-install=${pkgname}.install
-source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
-
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;)
-sha256sums=('431c25791c1bdfa0397a1473aa014727d40b2def7e6be236b23ef98a495b1b10'
-'SKIP')
-b2sums=('5772316d3ffc78387f7fb9db1e88397756bf82c25513246033fe71f288d619844e9316f43b7f08b914e4f59912e42eea061079cd4b468de77087bf7a8ea46be0'
-'SKIP')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-build() {
-mkdir -p "${srcdir}"/Sigil-${pkgver}/build
-cd "${srcdir}"/Sigil-${pkgver}/build
-
-cmake -G "Unix Makefiles" \
--DUSE_SYSTEM_LIBS=1 \
--DSYSTEM_LIBS_REQUIRED=1 \
--DINSTALL_BUNDLED_DICTS=0 \
--DMATHJAX_DIR=/usr/share/mathjax2 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON ..
-
-make
-}
-
-package() {
-cd "${srcdir}"/Sigil-${pkgver}/build
-make install DESTDIR="${pkgdir}"
-
-for _pic in 16 32 48 128 256; do
-install -D -m 0644 ../src/Resource_Files/icon/app_icon_${_pic}.png \
-
"${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
-done
-install -Dm644 ../src/Resource_Files/icon/app_icon_128.png \
-"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-# Compile python bytecode
-python -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-python -O -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-}

Copied: sigil/repos/community-x86_64/PKGBUILD (from rev 563693, 
sigil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-07 04:04:51 UTC (rev 563694)
@@ -0,0 +1,68 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Alad Wenter 
+# Contributor: Giovanni Scafora 
+# Contributor: Larry Hajali 
+
+pkgname=sigil
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
+arch=('x86_64')
+url="https://sigil-ebook.com/;
+license=('GPL3')
+depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 
'python-css-parser'
+ 'python-lxml' 'qt5-webengine')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('hunspell-en_US: for English dictionary support'
+'hyphen-en: for English hyphenation support in plugins'
+'pageedit: external editor to replace BookView'
+'python-html5lib: recommended for plugins'
+'python-chardet: recommended for plugins'
+'python-cssselect: recommended for plugins'
+'python-pillow: recommended for plugins'
+'python-regex: recommended for plugins'
+'python-pyqt5: recommended for plugins'
+'tk: recommended for plugins')
+install=${pkgname}.install
+source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
+

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

2020-02-06 Thread Eli Schwartz via arch-commits
Date: Friday, February 7, 2020 @ 04:04:32
  Author: eschwartz
Revision: 563693

upgpkg: sigil 1.1.0-1: upstream release

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 23:37:04 UTC (rev 563692)
+++ PKGBUILD2020-02-07 04:04:32 UTC (rev 563693)
@@ -4,7 +4,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=sigil
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
 arch=('x86_64')
@@ -26,9 +26,9 @@
 install=${pkgname}.install
 
source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
 
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;)
-sha256sums=('431c25791c1bdfa0397a1473aa014727d40b2def7e6be236b23ef98a495b1b10'
+sha256sums=('b22c612464f5d3f62f850c0412183d7eba0c6f4879c3d6a521f9872b6f98da79'
 'SKIP')
-b2sums=('5772316d3ffc78387f7fb9db1e88397756bf82c25513246033fe71f288d619844e9316f43b7f08b914e4f59912e42eea061079cd4b468de77087bf7a8ea46be0'
+b2sums=('f5e522e6cd6335ef0a897fecdc99f40da5f6be902c02fadc8bf5817bc0e88c4bacab1075995f5da1fd6bbacb8759ab9f20c6810acfeb3736d033241d1ca6f2ed'
 'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 


[arch-commits] Commit in openssh/trunk (PKGBUILD.snap)

2020-02-06 Thread Gaëtan Bisson via arch-commits
Date: Friday, February 7, 2020 @ 03:18:39
  Author: bisson
Revision: 374969

bump snap version

Modified:
  openssh/trunk/PKGBUILD.snap

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

Modified: PKGBUILD.snap
===
--- PKGBUILD.snap   2020-02-06 19:46:49 UTC (rev 374968)
+++ PKGBUILD.snap   2020-02-07 03:18:39 UTC (rev 374969)
@@ -4,7 +4,7 @@
 
 pkgname=openssh
 _YMD=20200206
-pkgver=8.1p1snap$_YMD
+pkgver=8.2p1snap$_YMD
 pkgrel=1
 pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
 url='https://www.openssh.com/portable.html'


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 23:37:04
  Author: anatolik
Revision: 563692

archrelease: copy trunk to community-testing-x86_64

Added:
  fio/repos/community-testing-x86_64/
  fio/repos/community-testing-x86_64/PKGBUILD
(from rev 563691, fio/trunk/PKGBUILD)

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

Copied: fio/repos/community-testing-x86_64/PKGBUILD (from rev 563691, 
fio/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-02-06 23:37:04 UTC (rev 563692)
@@ -0,0 +1,46 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Mariusz Libera 
+# Contributor: John Williams 
+
+pkgname=fio
+pkgver=3.18
+pkgrel=1
+pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
+arch=(x86_64)
+url='https://github.com/axboe/fio'
+license=(GPL2)
+# TODO: enable rdma, need to move the libraries from AUR
+depends=(bash libaio python numactl glusterfs)
+makedepends=(gtk2)
+optdepends=(
+  'gtk2: for gfio - fio GUI frontend' 
+  'gnuplot: generating plots using fio_generate_plots'
+)
+source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
+sha256sums=('0a9c433a31585f2c620e6c0d82749123ffea483893539696b0f4118af8ec6c67')
+
+prepare() {
+  cd fio-fio-$pkgver
+  sed -e 's|#!/usr/bin/python2.7$|#!/usr/bin/python|' -i 
tools/{fio_jsonplus_clat2csv,fiologparser.py,hist/fiologparser_hist.py,hist/half-bins.py,plot/fio2gnuplot}
+}
+
+build() {
+  cd fio-fio-$pkgver
+  ./configure --disable-native --enable-gfio --extra-cflags="$CFLAGS"
+  make
+}
+
+package() {
+  cd fio-fio-$pkgver
+  make DESTDIR="$pkgdir" prefix=/usr mandir=/usr/share/man install
+
+  # documentation
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+  install -m644 HOWTO README REPORTING-BUGS SERVER-TODO 
"$pkgdir/usr/share/doc/$pkgname"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 MORAL-LICENSE 
"$pkgdir/usr/share/licenses/$pkgname/MORAL-LICENSE"
+
+  # examples
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
+  install -m644 examples/* "$pkgdir/usr/share/doc/$pkgname/examples"
+}


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 23:36:41
  Author: anatolik
Revision: 563691

upgpkg: fio 3.18-1

Modified:
  fio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 22:40:15 UTC (rev 563690)
+++ PKGBUILD2020-02-06 23:36:41 UTC (rev 563691)
@@ -3,7 +3,7 @@
 # Contributor: John Williams 
 
 pkgname=fio
-pkgver=3.17
+pkgver=3.18
 pkgrel=1
 pkgdesc='Scriptable I/O tool for storage benchmarks and drive testing'
 arch=(x86_64)
@@ -17,7 +17,7 @@
   'gnuplot: generating plots using fio_generate_plots'
 )
 source=(https://github.com/axboe/fio/archive/fio-$pkgver.zip)
-sha256sums=('3959535de52bc50565c45f66cd86c614513c12cafc02bc655ae65e5fb3bf060b')
+sha256sums=('0a9c433a31585f2c620e6c0d82749123ffea483893539696b0f4118af8ec6c67')
 
 prepare() {
   cd fio-fio-$pkgver


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

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 22:39:13
  Author: ffy00
Revision: 563688

archrelease: copy trunk to community-x86_64

Added:
  srslte/repos/community-x86_64/srslte-avx2.install
(from rev 563687, srslte/trunk/srslte-avx2.install)
  srslte/repos/community-x86_64/srslte.install
(from rev 563687, srslte/trunk/srslte.install)
Deleted:
  srslte/repos/community-x86_64/srslte-avx2.install
  srslte/repos/community-x86_64/srslte.install

-+
 srslte-avx2.install |8 
 srslte.install  |8 
 2 files changed, 8 insertions(+), 8 deletions(-)

Deleted: srslte-avx2.install
===
--- srslte-avx2.install 2020-02-06 22:31:46 UTC (rev 563687)
+++ srslte-avx2.install 2020-02-06 22:39:13 UTC (rev 563688)
@@ -1,4 +0,0 @@
-post_install(){
-echo 'The binaries in the package include AVX2 instructions.'
-echo 'If your CPU does not support them please use the sdrangel package.'
-}

Copied: srslte/repos/community-x86_64/srslte-avx2.install (from rev 563687, 
srslte/trunk/srslte-avx2.install)
===
--- srslte-avx2.install (rev 0)
+++ srslte-avx2.install 2020-02-06 22:39:13 UTC (rev 563688)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package include AVX2 instructions.'
+echo 'If your CPU does not support them please use the sdrangel package.'
+}

Deleted: srslte.install
===
--- srslte.install  2020-02-06 22:31:46 UTC (rev 563687)
+++ srslte.install  2020-02-06 22:39:13 UTC (rev 563688)
@@ -1,4 +0,0 @@
-post_install(){
-echo 'The binaries in the package have limited SIMD support.'
-echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
-}

Copied: srslte/repos/community-x86_64/srslte.install (from rev 563687, 
srslte/trunk/srslte.install)
===
--- srslte.install  (rev 0)
+++ srslte.install  2020-02-06 22:39:13 UTC (rev 563688)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package have limited SIMD support.'
+echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
+}


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

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 22:40:15
  Author: ffy00
Revision: 563690

archrelease: copy trunk to community-x86_64

Added:
  srslte/repos/community-x86_64/PKGBUILD
(from rev 563689, srslte/trunk/PKGBUILD)
  srslte/repos/community-x86_64/srslte-avx2.install
(from rev 563689, srslte/trunk/srslte-avx2.install)
  srslte/repos/community-x86_64/srslte.install
(from rev 563689, srslte/trunk/srslte.install)
Deleted:
  srslte/repos/community-x86_64/srslte-avx2.install
  srslte/repos/community-x86_64/srslte.install

-+
 PKGBUILD|   96 ++
 srslte-avx2.install |8 ++--
 srslte.install  |8 ++--
 3 files changed, 104 insertions(+), 8 deletions(-)

Copied: srslte/repos/community-x86_64/PKGBUILD (from rev 563689, 
srslte/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 22:40:15 UTC (rev 563690)
@@ -0,0 +1,96 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=srslte
+pkgname=($pkgbase $pkgbase-avx2)
+_pkgname=srsLTE
+pkgver=19.12
+_pkgver=release_${pkgver/./_}
+pkgrel=1
+pkgdesc='Open source SDR LTE software suite from Software Radio Systems (SRS)'
+arch=('x86_64')
+url='https://www.srslte.com'
+license=('AGPL3')
+depends=('fftw' 'mbedtls' 'boost-libs' 'lksctp-tools' 'libconfig')
+makedepends=('cmake' 'boost' 'pcsclite' 'libuhd' 'soapysdr' 'bladerf' 
'zeromq') # 'srsgui'
+optdepends=('libuhd: RF frontend'
+'soapysdr: RF frontend'
+'bladerf: RF frontend'
+'zeromq: RF frontend')
+#'srsgui: Real-time plotting'
+provides=('srsue' 'srsenb' 'srsenb')
+conflicts=('srsue' 'srsenb' 'srsenb')
+source=("$_pkgname-$pkgver.tar.gz::https://github.com/srsLTE/srsLTE/archive/$_pkgver.tar.gz;
+
'tunable-simd.patch::https://github.com/FFY00/srsLTE/commit/6b4fd9490bb7b6c2a388e78ee26aa84017585a35.patch'
+
'remove-install-targets.patch::https://github.com/FFY00/srsLTE/commit/738785f4fb9f308c5270fb1b0bac83e1e96838df.patch')
+sha512sums=('bd3e39761e8fe48661d3639f44bb724d4ba2e20d03d0fc9871fc5d9a38fea2f3cd05f5b7254c0b0b63d2973b8cf41f8f65981f5206bb42c30588d0b593d1f69f'
+
'e4a9c4457e06fb71bf18b2f8e91234588c01327c15f1267c60ee0ea747baaf9795b55767e99d359e6140f2ccace3d00a17e4fc151798eafa5f523decfcdb35ee'
+
'0bfbb73d47bda2280007c7a71a81fa9a35ee4a414b809cdb18d76e3bdbceb2e1ee4797a05f68b4ad89843002b6dd58b3eef45ad3a407da35fe614ffb5f685ce3')
+
+prepare() {
+  cd $_pkgname-$_pkgver
+
+  patch -p1 -i ../tunable-simd.patch
+  patch -p1 -i ../remove-install-targets.patch
+
+  # Disable failing test
+  sed -i '/add_test(ue_rf_failure/d' srsue/src/CMakeLists.txt
+
+  mkdir build
+
+  cp -r "$srcdir"/$_pkgname-$_pkgver "$srcdir"/$_pkgname-avx2-$_pkgver
+}
+
+build() {
+  echo 'Building srslte...'
+  cd "$srcdir"/$_pkgname-$_pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_GENERIC=True
+
+  make
+
+  echo 'Building srslte-avx2...'
+  cd "$srcdir"/$_pkgname-avx2-$_pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_GENERIC=True \
+-DHAVE_AVX2=True
+
+  make
+}
+
+check() {
+  echo 'Running tests for srslte...'
+  cd "$srcdir"/$_pkgname-$_pkgver/build
+
+  ctest $(echo $MAKEFLAGS | grep -Po '\-j[0-9][0-9]*')
+
+  echo 'Running tests for srslte-avx2...'
+  cd "$srcdir"/$_pkgname-avx2-$_pkgver/build
+
+  ctest $(echo $MAKEFLAGS | grep -Po '\-j[0-9][0-9]*')
+}
+
+package_srslte() {
+  install=$pkgname.install
+
+  cd $_pkgname-$_pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+
+package_srslte-avx2() {
+  pkgdesc="$pkgdesc (with AVX2 extensions)"
+  provides=($pkgbase)
+  conflicts=($pkgbase)
+  install=$pkgname.install
+
+  cd $_pkgname-avx2-$_pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: srslte-avx2.install
===
--- srslte-avx2.install 2020-02-06 22:40:10 UTC (rev 563689)
+++ srslte-avx2.install 2020-02-06 22:40:15 UTC (rev 563690)
@@ -1,4 +0,0 @@
-post_install(){
-echo 'The binaries in the package include AVX2 instructions.'
-echo 'If your CPU does not support them please use the sdrangel package.'
-}

Copied: srslte/repos/community-x86_64/srslte-avx2.install (from rev 563689, 
srslte/trunk/srslte-avx2.install)
===
--- srslte-avx2.install (rev 0)
+++ srslte-avx2.install 2020-02-06 22:40:15 UTC (rev 563690)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package include AVX2 instructions.'
+echo 'If your CPU does not support them please use the sdrangel package.'
+}

Deleted: srslte.install
===
--- srslte.install  2020-02-06 22:40:10 UTC (rev 563689)
+++ srslte.install  

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

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 22:40:10
  Author: ffy00
Revision: 563689

upgpkg: srslte 19.12-1

Added:
  srslte/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 22:40:10 UTC (rev 563689)
@@ -0,0 +1,96 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgbase=srslte
+pkgname=($pkgbase $pkgbase-avx2)
+_pkgname=srsLTE
+pkgver=19.12
+_pkgver=release_${pkgver/./_}
+pkgrel=1
+pkgdesc='Open source SDR LTE software suite from Software Radio Systems (SRS)'
+arch=('x86_64')
+url='https://www.srslte.com'
+license=('AGPL3')
+depends=('fftw' 'mbedtls' 'boost-libs' 'lksctp-tools' 'libconfig')
+makedepends=('cmake' 'boost' 'pcsclite' 'libuhd' 'soapysdr' 'bladerf' 
'zeromq') # 'srsgui'
+optdepends=('libuhd: RF frontend'
+'soapysdr: RF frontend'
+'bladerf: RF frontend'
+'zeromq: RF frontend')
+#'srsgui: Real-time plotting'
+provides=('srsue' 'srsenb' 'srsenb')
+conflicts=('srsue' 'srsenb' 'srsenb')
+source=("$_pkgname-$pkgver.tar.gz::https://github.com/srsLTE/srsLTE/archive/$_pkgver.tar.gz;
+
'tunable-simd.patch::https://github.com/FFY00/srsLTE/commit/6b4fd9490bb7b6c2a388e78ee26aa84017585a35.patch'
+
'remove-install-targets.patch::https://github.com/FFY00/srsLTE/commit/738785f4fb9f308c5270fb1b0bac83e1e96838df.patch')
+sha512sums=('bd3e39761e8fe48661d3639f44bb724d4ba2e20d03d0fc9871fc5d9a38fea2f3cd05f5b7254c0b0b63d2973b8cf41f8f65981f5206bb42c30588d0b593d1f69f'
+
'e4a9c4457e06fb71bf18b2f8e91234588c01327c15f1267c60ee0ea747baaf9795b55767e99d359e6140f2ccace3d00a17e4fc151798eafa5f523decfcdb35ee'
+
'0bfbb73d47bda2280007c7a71a81fa9a35ee4a414b809cdb18d76e3bdbceb2e1ee4797a05f68b4ad89843002b6dd58b3eef45ad3a407da35fe614ffb5f685ce3')
+
+prepare() {
+  cd $_pkgname-$_pkgver
+
+  patch -p1 -i ../tunable-simd.patch
+  patch -p1 -i ../remove-install-targets.patch
+
+  # Disable failing test
+  sed -i '/add_test(ue_rf_failure/d' srsue/src/CMakeLists.txt
+
+  mkdir build
+
+  cp -r "$srcdir"/$_pkgname-$_pkgver "$srcdir"/$_pkgname-avx2-$_pkgver
+}
+
+build() {
+  echo 'Building srslte...'
+  cd "$srcdir"/$_pkgname-$_pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_GENERIC=True
+
+  make
+
+  echo 'Building srslte-avx2...'
+  cd "$srcdir"/$_pkgname-avx2-$_pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_GENERIC=True \
+-DHAVE_AVX2=True
+
+  make
+}
+
+check() {
+  echo 'Running tests for srslte...'
+  cd "$srcdir"/$_pkgname-$_pkgver/build
+
+  ctest $(echo $MAKEFLAGS | grep -Po '\-j[0-9][0-9]*')
+
+  echo 'Running tests for srslte-avx2...'
+  cd "$srcdir"/$_pkgname-avx2-$_pkgver/build
+
+  ctest $(echo $MAKEFLAGS | grep -Po '\-j[0-9][0-9]*')
+}
+
+package_srslte() {
+  install=$pkgname.install
+
+  cd $_pkgname-$_pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+
+package_srslte-avx2() {
+  pkgdesc="$pkgdesc (with AVX2 extensions)"
+  provides=($pkgbase)
+  conflicts=($pkgbase)
+  install=$pkgname.install
+
+  cd $_pkgname-avx2-$_pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+


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

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 22:31:46
  Author: ffy00
Revision: 563687

archrelease: copy trunk to community-x86_64

Added:
  srslte/repos/community-x86_64/srslte-avx2.install
(from rev 563686, srslte/trunk/srslte-avx2.install)
  srslte/repos/community-x86_64/srslte.install
(from rev 563686, srslte/trunk/srslte.install)
Deleted:
  srslte/repos/community-x86_64/srslte-avx2.install
  srslte/repos/community-x86_64/srslte.install

-+
 srslte-avx2.install |8 
 srslte.install  |8 
 2 files changed, 8 insertions(+), 8 deletions(-)

Deleted: srslte-avx2.install
===
--- srslte-avx2.install 2020-02-06 22:16:43 UTC (rev 563686)
+++ srslte-avx2.install 2020-02-06 22:31:46 UTC (rev 563687)
@@ -1,4 +0,0 @@
-post_install(){
-echo 'The binaries in the package include AVX2 instructions.'
-echo 'If your CPU does not support them please use the sdrangel package.'
-}

Copied: srslte/repos/community-x86_64/srslte-avx2.install (from rev 563686, 
srslte/trunk/srslte-avx2.install)
===
--- srslte-avx2.install (rev 0)
+++ srslte-avx2.install 2020-02-06 22:31:46 UTC (rev 563687)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package include AVX2 instructions.'
+echo 'If your CPU does not support them please use the sdrangel package.'
+}

Deleted: srslte.install
===
--- srslte.install  2020-02-06 22:16:43 UTC (rev 563686)
+++ srslte.install  2020-02-06 22:31:46 UTC (rev 563687)
@@ -1,4 +0,0 @@
-post_install(){
-echo 'The binaries in the package have limited SIMD support.'
-echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
-}

Copied: srslte/repos/community-x86_64/srslte.install (from rev 563686, 
srslte/trunk/srslte.install)
===
--- srslte.install  (rev 0)
+++ srslte.install  2020-02-06 22:31:46 UTC (rev 563687)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package have limited SIMD support.'
+echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
+}


[arch-commits] Commit in riscv64-linux-gnu-binutils/repos/community-x86_64 (2 files)

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 22:16:43
  Author: arodseth
Revision: 563686

archrelease: copy trunk to community-x86_64

Added:
  riscv64-linux-gnu-binutils/repos/community-x86_64/PKGBUILD
(from rev 563685, riscv64-linux-gnu-binutils/trunk/PKGBUILD)
Deleted:
  riscv64-linux-gnu-binutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 22:16:37 UTC (rev 563685)
+++ PKGBUILD2020-02-06 22:16:43 UTC (rev 563686)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Emil Renner Berthing 
-
-_target=riscv64-linux-gnu
-pkgname=$_target-binutils
-pkgver=2.33.1
-pkgrel=1
-pkgdesc='Assemble and manipulate binary and object files for 32-bit and 64-bit 
RISC-V'
-arch=('x86_64')
-url='https://gnu.org/software/binutils/'
-license=('GPL')
-groups=('risc-v')
-makedepends=('setconf')
-source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz;)
-sha512sums=('b7a6767c6c7ca6b5cafa7080e6820b7bb3a53b7148348c438d99905defbdf0d30c9744a484ee01c9441a8153901808513366b15ba9533e20c9673c262ade36ac')
-
-prepare() {
-  setconf binutils-$pkgver/libiberty/configure ac_cpp="'\$CPP \$CPPFLAGS -O2'"
-}
-
-build() {
-  cd "binutils-$pkgver"
-
-  unset CPPFLAGS
-
-  ./configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---disable-nls \
---enable-multilib \
---enable-ld=default \
---enable-gold \
---enable-plugins \
---enable-deterministic-archives
-  make
-}
-
-check() {
-  # * Unset LDFLAGS as testsuite makes assumptions about which ones are active.
-  # * Do not abort on errors - manually check log files.
-  make -C "binutils-$pkgver" LDFLAGS="" -k check
-}
-
-package() {
-  make -C "binutils-$pkgver" DESTDIR="$pkgdir" install
-
-  # Remove info documents that conflict with host version
-  rm -r "$pkgdir/usr/share/info"
-}
-
-# getver: gnu.org/software/binutils
-# vim: ts=2 sw=2 et:

Copied: riscv64-linux-gnu-binutils/repos/community-x86_64/PKGBUILD (from rev 
563685, riscv64-linux-gnu-binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 22:16:43 UTC (rev 563686)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Emil Renner Berthing 
+
+_target=riscv64-linux-gnu
+pkgname=$_target-binutils
+pkgver=2.34
+pkgrel=1
+pkgdesc='Assemble and manipulate binary and object files for 32-bit and 64-bit 
RISC-V'
+arch=(x86_64)
+url='https://gnu.org/software/binutils/'
+license=(GPL)
+groups=(risc-v)
+makedepends=(setconf)
+source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz;)
+sha512sums=('2c7976939dcf5e8c5b7374cccd39bfe803b1bec73c6abfa0eb17c24e1942574c6bdb874c66a092a82adc443182eacd8a5a8001c19a76101f0c7ba40c27de0bbd')
+
+prepare() {
+  setconf binutils-$pkgver/libiberty/configure ac_cpp="'\$CPP \$CPPFLAGS -O2'"
+}
+
+build() {
+  cd "binutils-$pkgver"
+
+  unset CPPFLAGS
+  ./configure \
+--target=$_target \
+--prefix=/usr \
+--with-sysroot=/usr/$_target \
+--with-gnu-as \
+--with-gnu-ld \
+--with-system-zlib \
+--disable-nls \
+--enable-multilib \
+--enable-ld=default \
+--enable-gold \
+--enable-plugins \
+--enable-deterministic-archives
+  make
+}
+
+check() {
+  # * Unset LDFLAGS as testsuite makes assumptions about which ones are active.
+  # * Do not abort on errors - manually check log files.
+  make -C "binutils-$pkgver" LDFLAGS="" -k check
+}
+
+package() {
+  make -C "binutils-$pkgver" DESTDIR="$pkgdir" install
+
+  # Remove info documents that conflict with host version
+  rm -r "$pkgdir/usr/share/info"
+}
+
+# getver: gnu.org/software/binutils
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 22:16:37
  Author: arodseth
Revision: 563685

upgpkg: riscv64-linux-gnu-binutils 2.34-1

Modified:
  riscv64-linux-gnu-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 21:48:41 UTC (rev 563684)
+++ PKGBUILD2020-02-06 22:16:37 UTC (rev 563685)
@@ -4,16 +4,16 @@
 
 _target=riscv64-linux-gnu
 pkgname=$_target-binutils
-pkgver=2.33.1
+pkgver=2.34
 pkgrel=1
 pkgdesc='Assemble and manipulate binary and object files for 32-bit and 64-bit 
RISC-V'
-arch=('x86_64')
+arch=(x86_64)
 url='https://gnu.org/software/binutils/'
-license=('GPL')
-groups=('risc-v')
-makedepends=('setconf')
+license=(GPL)
+groups=(risc-v)
+makedepends=(setconf)
 source=("https://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.xz;)
-sha512sums=('b7a6767c6c7ca6b5cafa7080e6820b7bb3a53b7148348c438d99905defbdf0d30c9744a484ee01c9441a8153901808513366b15ba9533e20c9673c262ade36ac')
+sha512sums=('2c7976939dcf5e8c5b7374cccd39bfe803b1bec73c6abfa0eb17c24e1942574c6bdb874c66a092a82adc443182eacd8a5a8001c19a76101f0c7ba40c27de0bbd')
 
 prepare() {
   setconf binutils-$pkgver/libiberty/configure ac_cpp="'\$CPP \$CPPFLAGS -O2'"
@@ -23,7 +23,6 @@
   cd "binutils-$pkgver"
 
   unset CPPFLAGS
-
   ./configure \
 --target=$_target \
 --prefix=/usr \


[arch-commits] Commit in srslte/trunk (srslte-avx2.install srslte.install)

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 21:48:09
  Author: ffy00
Revision: 563683

upgpkg: srslte 19.12-1

Added:
  srslte/trunk/srslte-avx2.install
  srslte/trunk/srslte.install

-+
 srslte-avx2.install |4 
 srslte.install  |4 
 2 files changed, 8 insertions(+)

Added: srslte-avx2.install
===
--- srslte-avx2.install (rev 0)
+++ srslte-avx2.install 2020-02-06 21:48:09 UTC (rev 563683)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package include AVX2 instructions.'
+echo 'If your CPU does not support them please use the sdrangel package.'
+}

Added: srslte.install
===
--- srslte.install  (rev 0)
+++ srslte.install  2020-02-06 21:48:09 UTC (rev 563683)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package have limited SIMD support.'
+echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
+}


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

2020-02-06 Thread Filipe Laíns via arch-commits
Date: Thursday, February 6, 2020 @ 21:48:41
  Author: ffy00
Revision: 563684

archrelease: copy trunk to community-x86_64

Added:
  srslte/repos/community-x86_64/
  srslte/repos/community-x86_64/srslte-avx2.install
(from rev 563683, srslte/trunk/srslte-avx2.install)
  srslte/repos/community-x86_64/srslte.install
(from rev 563683, srslte/trunk/srslte.install)

-+
 srslte-avx2.install |4 
 srslte.install  |4 
 2 files changed, 8 insertions(+)

Copied: srslte/repos/community-x86_64/srslte-avx2.install (from rev 563683, 
srslte/trunk/srslte-avx2.install)
===
--- community-x86_64/srslte-avx2.install(rev 0)
+++ community-x86_64/srslte-avx2.install2020-02-06 21:48:41 UTC (rev 
563684)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package include AVX2 instructions.'
+echo 'If your CPU does not support them please use the sdrangel package.'
+}

Copied: srslte/repos/community-x86_64/srslte.install (from rev 563683, 
srslte/trunk/srslte.install)
===
--- community-x86_64/srslte.install (rev 0)
+++ community-x86_64/srslte.install 2020-02-06 21:48:41 UTC (rev 563684)
@@ -0,0 +1,4 @@
+post_install(){
+echo 'The binaries in the package have limited SIMD support.'
+echo 'Please consider using srslte-avx2 if your CPU supports AVX2 
extensions, it will give you a bigperformance boost.'
+}


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 21:26:39
  Author: arodseth
Revision: 563681

upgpkg: k9s 0.13.8-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 21:25:27 UTC (rev 563680)
+++ PKGBUILD2020-02-06 21:26:39 UTC (rev 563681)
@@ -1,7 +1,7 @@
 # Maintainer: Alexander F. Rødseth 
 
 pkgname=k9s
-pkgver=0.13.7
+pkgver=0.13.8
 pkgrel=1
 pkgdesc='Kubernetes TUI for managing clusters and pods'
 arch=(x86_64)
@@ -8,7 +8,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go-pie)
-source=("git+$url#commit=7df87a80ab15d767648af9ca1a7601fb03b58237") # 0.13.7
+source=("git+$url#commit=bd4fdf33229fbeae46b58365a225262a9558273b") # 0.13.8
 sha256sums=('SKIP')
 
 build() {


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 21:26:44
  Author: arodseth
Revision: 563682

archrelease: copy trunk to community-x86_64

Added:
  k9s/repos/community-x86_64/PKGBUILD
(from rev 563681, k9s/trunk/PKGBUILD)
Deleted:
  k9s/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 21:26:39 UTC (rev 563681)
+++ PKGBUILD2020-02-06 21:26:44 UTC (rev 563682)
@@ -1,28 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-
-pkgname=k9s
-pkgver=0.13.7
-pkgrel=1
-pkgdesc='Kubernetes TUI for managing clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go-pie)
-source=("git+$url#commit=7df87a80ab15d767648af9ca1a7601fb03b58237") # 0.13.7
-sha256sums=('SKIP')
-
-build() {
-  cd $pkgname
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}"
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 563681, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 21:26:44 UTC (rev 563682)
@@ -0,0 +1,28 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=k9s
+pkgver=0.13.8
+pkgrel=1
+pkgdesc='Kubernetes TUI for managing clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go-pie)
+source=("git+$url#commit=bd4fdf33229fbeae46b58365a225262a9558273b") # 0.13.8
+sha256sums=('SKIP')
+
+build() {
+  cd $pkgname
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}"
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Levente Polyak via arch-commits
Date: Thursday, February 6, 2020 @ 21:25:27
  Author: anthraxx
Revision: 563680

archrelease: copy trunk to community-x86_64

Added:
  aircrack-ng/repos/community-x86_64/PKGBUILD
(from rev 563679, aircrack-ng/trunk/PKGBUILD)
Deleted:
  aircrack-ng/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 21:25:14 UTC (rev 563679)
+++ PKGBUILD2020-02-06 21:25:27 UTC (rev 563680)
@@ -1,44 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Brad Fanella 
-# Contributor: Daenyth 
-# Contributor: Corrado Primier 
-# Contributor: ice-man 
-
-pkgname=aircrack-ng
-_pkgver=1.5.2
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="Key cracker for the 802.11 WEP and WPA-PSK protocols"
-arch=('x86_64')
-url="https://www.aircrack-ng.org;
-license=('GPL2')
-depends=('openssl' 'sqlite' 'iw' 'net-tools' 'wireless_tools' 'ethtool'
- 'pcre' 'libpcap' 'python')
-conflicts=('aircrack-ng-scripts')
-replaces=('aircrack-ng-scripts')
-provides=('aircrack-ng-scripts')
-source=(https://download.aircrack-ng.org/$pkgname-$_pkgver.tar.gz)
-md5sums=('2648c192d206e953c67dca64967d2982')
-
-build() {
-  cd $pkgname-$_pkgver
-
-  ./autogen.sh
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-
-  make
-}
-
-check() {
-  cd $pkgname-$_pkgver
-
-  make check
-}
-
-package() {
-  cd $pkgname-$_pkgver
-
-  make DESTDIR="$pkgdir" pkglibexecdir=/usr/lib/aircrack-ng \
-sbindir=/usr/bin install
-}

Copied: aircrack-ng/repos/community-x86_64/PKGBUILD (from rev 563679, 
aircrack-ng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 21:25:27 UTC (rev 563680)
@@ -0,0 +1,54 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Brad Fanella 
+# Contributor: Daenyth 
+# Contributor: Corrado Primier 
+# Contributor: ice-man 
+
+pkgname=aircrack-ng
+_pkgver=1.6
+pkgver=${_pkgver//-/}
+pkgrel=1
+pkgdesc="Key cracker for the 802.11 WEP and WPA-PSK protocols"
+arch=('x86_64')
+url="https://www.aircrack-ng.org;
+license=('GPL2')
+depends=('openssl' 'sqlite' 'iw' 'net-tools' 'wireless_tools' 'ethtool'
+ 'pcre' 'libpcap' 'python' 'zlib' 'libnl' 'hwloc')
+checkdepends=('cmocka')
+conflicts=('aircrack-ng-scripts')
+replaces=('aircrack-ng-scripts')
+provides=('aircrack-ng-scripts')
+source=(https://download.aircrack-ng.org/$pkgname-$_pkgver.tar.gz)
+sha256sums=('4f0bfd486efc6ea7229f7fbc54340ff8b2094a0d73e9f617e0a39f878999a247')
+
+prepare() {
+  cd $pkgname-$_pkgver
+  autoreconf -fiv
+}
+
+build() {
+  cd $pkgname-$_pkgver
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib \
+--sbindir=/usr/bin \
+--with-ext-scripts \
+--with-experimental
+
+  make
+}
+
+check() {
+  cd $pkgname-$_pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$_pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Levente Polyak via arch-commits
Date: Thursday, February 6, 2020 @ 21:25:14
  Author: anthraxx
Revision: 563679

upgpkg: aircrack-ng 1.6-1: activate aircrack-ng-scripts

FS#64435

Modified:
  aircrack-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 20:48:36 UTC (rev 563678)
+++ PKGBUILD2020-02-06 21:25:14 UTC (rev 563679)
@@ -5,7 +5,7 @@
 # Contributor: ice-man 
 
 pkgname=aircrack-ng
-_pkgver=1.5.2
+_pkgver=1.6
 pkgver=${_pkgver//-/}
 pkgrel=1
 pkgdesc="Key cracker for the 802.11 WEP and WPA-PSK protocols"
@@ -13,20 +13,29 @@
 url="https://www.aircrack-ng.org;
 license=('GPL2')
 depends=('openssl' 'sqlite' 'iw' 'net-tools' 'wireless_tools' 'ethtool'
- 'pcre' 'libpcap' 'python')
+ 'pcre' 'libpcap' 'python' 'zlib' 'libnl' 'hwloc')
+checkdepends=('cmocka')
 conflicts=('aircrack-ng-scripts')
 replaces=('aircrack-ng-scripts')
 provides=('aircrack-ng-scripts')
 source=(https://download.aircrack-ng.org/$pkgname-$_pkgver.tar.gz)
-md5sums=('2648c192d206e953c67dca64967d2982')
+sha256sums=('4f0bfd486efc6ea7229f7fbc54340ff8b2094a0d73e9f617e0a39f878999a247')
 
+prepare() {
+  cd $pkgname-$_pkgver
+  autoreconf -fiv
+}
+
 build() {
   cd $pkgname-$_pkgver
 
-  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib \
+--sbindir=/usr/bin \
+--with-ext-scripts \
+--with-experimental
 
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-
   make
 }
 
@@ -39,6 +48,7 @@
 package() {
   cd $pkgname-$_pkgver
 
-  make DESTDIR="$pkgdir" pkglibexecdir=/usr/lib/aircrack-ng \
-sbindir=/usr/bin install
+  make DESTDIR="$pkgdir" install
 }
+
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, February 6, 2020 @ 20:48:36
  Author: mtorromeo
Revision: 563678

archrelease: copy trunk to community-x86_64

Added:
  cockpit/repos/community-x86_64/PKGBUILD
(from rev 563677, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
(from rev 563677, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 563677, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit.pam
(from rev 563677, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-x86_64/PKGBUILD
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-x86_64/cockpit.pam

-+
 PKGBUILD|  196 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 105 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 20:48:26 UTC (rev 563677)
+++ PKGBUILD2020-02-06 20:48:36 UTC (rev 563678)
@@ -1,98 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp cockpit-dashboard)
-pkgver=211.1
-pkgrel=1
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz;
-
"https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-cache-$pkgver.tar.xz;
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('0ce3a6f3088052ed81abc566f78f6037bd8c0249c1c6d66d3eba5006137e75e3'
-'fdb70ddf54e5af2a80918cb9b13e4e62a898ab48538cefb642ba962a10855a3a'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---with-appstream-data-packages='[ "archlinux-appstream-data" ]' \
---with-nfs-client-package='"nfs-utils"' \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-dashboard: dashboard and support for connecting to 
remote hosts"
-  "udisks2: manage hard disks"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "docker: manage containers"
-  "libvirt: manage virtual machines"
-  "kubernetes: manage cluster")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/{pcp,dashboard} \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-
-package_cockpit-pcp() {
-  pkgdesc='Cockpit support for reading PCP metrics and loading PCP archives'
-  depends=(cockpit pcp)
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir"/tmp install
-
-  cd "$pkgdir"/tmp
-  bsdtar -cf - usr/share/cockpit/pcp usr/lib/cockpit/cockpit-pcp var/lib/pcp \
-| bsdtar -xf - -C "$pkgdir"
-  rm -rf "$pkgdir"/tmp
-}
-
-package_cockpit-dashboard() {
-  pkgdesc='Cockpit support for connecting to remote servers (through ssh), 
bastion hosts, and a basic dashboard.'
-  

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

2020-02-06 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, February 6, 2020 @ 20:48:26
  Author: mtorromeo
Revision: 563677

upgpkg: cockpit 212-1

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 20:43:52 UTC (rev 563676)
+++ PKGBUILD2020-02-06 20:48:26 UTC (rev 563677)
@@ -5,7 +5,7 @@
 
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp cockpit-dashboard)
-pkgver=211.1
+pkgver=212
 pkgrel=1
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
@@ -18,8 +18,8 @@
 "cockpit.pam"
 "cockpit-ws.sysuser.conf"
 "cockpit-wsinstance.sysuser.conf")
-sha256sums=('0ce3a6f3088052ed81abc566f78f6037bd8c0249c1c6d66d3eba5006137e75e3'
-'fdb70ddf54e5af2a80918cb9b13e4e62a898ab48538cefb642ba962a10855a3a'
+sha256sums=('2dc243021398e75286d060d9596940214943539cabcb671b97102b72491c5fe6'
+'32f9fbfcae6f0e7b1a9d5bc2c0e25311df02a9762244dd8b00aee2d12d3eba2c'
 'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
 '1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
 '46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')


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

2020-02-06 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, February 6, 2020 @ 20:43:31
  Author: mtorromeo
Revision: 563675

upgpkg: cockpit-podman 13-1

Modified:
  cockpit-podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 20:25:03 UTC (rev 563674)
+++ PKGBUILD2020-02-06 20:43:31 UTC (rev 563675)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-podman
-pkgver=12
+pkgver=13
 pkgrel=1
 pkgdesc='Cockpit UI for podman containers'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(cockpit podman)
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('43fa9fd532c2880715e362badd70394ba1a30455efbca0bc1ec166e08e5ab1cf')
+sha256sums=('1e3f494637a1d99a1047ff766edcfaeae0330144728e708ced2410f6c6b3c219')
 
 package() {
   cd $pkgname


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

2020-02-06 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, February 6, 2020 @ 20:43:52
  Author: mtorromeo
Revision: 563676

archrelease: copy trunk to community-x86_64

Added:
  cockpit-podman/repos/community-x86_64/PKGBUILD
(from rev 563675, cockpit-podman/trunk/PKGBUILD)
Deleted:
  cockpit-podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 20:43:31 UTC (rev 563675)
+++ PKGBUILD2020-02-06 20:43:52 UTC (rev 563676)
@@ -1,17 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-podman
-pkgver=12
-pkgrel=1
-pkgdesc='Cockpit UI for podman containers'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-podman'
-license=(LGPL)
-depends=(cockpit podman)
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('43fa9fd532c2880715e362badd70394ba1a30455efbca0bc1ec166e08e5ab1cf')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-podman/repos/community-x86_64/PKGBUILD (from rev 563675, 
cockpit-podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 20:43:52 UTC (rev 563676)
@@ -0,0 +1,17 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-podman
+pkgver=13
+pkgrel=1
+pkgdesc='Cockpit UI for podman containers'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-podman'
+license=(LGPL)
+depends=(cockpit podman)
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('1e3f494637a1d99a1047ff766edcfaeae0330144728e708ced2410f6c6b3c219')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-02-06 Thread Lukas Fleischer via arch-commits
Date: Thursday, February 6, 2020 @ 20:24:55
  Author: lfleischer
Revision: 563673

upgpkg: python-mysql-connector 8.0.19-2: add python-dnspython dependency

Modified:
  python-mysql-connector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 20:17:32 UTC (rev 563672)
+++ PKGBUILD2020-02-06 20:24:55 UTC (rev 563673)
@@ -5,12 +5,12 @@
 pkgname=python-mysql-connector
 _pkgname=mysql-connector-python
 pkgver=8.0.19
-pkgrel=1
+pkgrel=2
 pkgdesc="A standardized database driver for Python platforms and development"
 arch=('any')
 url="https://dev.mysql.com/downloads/connector/python/;
 license=('GPL')
-depends=('python')
+depends=('python' 'python-dnspython')
 makedepends=('python-setuptools')
 
source=("https://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
 
sha512sums=('9137b0b6aafbff16c83f59ab03da810232a92f6b76e38f460782153c5ddbdf6ae55d0c72a0c7902b7bc05ad1010bdc849662cd3d2138ae93476abf013e7a508f')


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

2020-02-06 Thread Lukas Fleischer via arch-commits
Date: Thursday, February 6, 2020 @ 20:25:03
  Author: lfleischer
Revision: 563674

archrelease: copy trunk to community-any

Added:
  python-mysql-connector/repos/community-any/PKGBUILD
(from rev 563673, python-mysql-connector/trunk/PKGBUILD)
Deleted:
  python-mysql-connector/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 20:24:55 UTC (rev 563673)
+++ PKGBUILD2020-02-06 20:25:03 UTC (rev 563674)
@@ -1,26 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Evgeniy Alekseev 
-# Contributor: Raphaël Doursenaud 
-
-pkgname=python-mysql-connector
-_pkgname=mysql-connector-python
-pkgver=8.0.19
-pkgrel=1
-pkgdesc="A standardized database driver for Python platforms and development"
-arch=('any')
-url="https://dev.mysql.com/downloads/connector/python/;
-license=('GPL')
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
-sha512sums=('9137b0b6aafbff16c83f59ab03da810232a92f6b76e38f460782153c5ddbdf6ae55d0c72a0c7902b7bc05ad1010bdc849662cd3d2138ae93476abf013e7a508f')
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   python setup.py build
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   python setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-mysql-connector/repos/community-any/PKGBUILD (from rev 563673, 
python-mysql-connector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 20:25:03 UTC (rev 563674)
@@ -0,0 +1,26 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Evgeniy Alekseev 
+# Contributor: Raphaël Doursenaud 
+
+pkgname=python-mysql-connector
+_pkgname=mysql-connector-python
+pkgver=8.0.19
+pkgrel=2
+pkgdesc="A standardized database driver for Python platforms and development"
+arch=('any')
+url="https://dev.mysql.com/downloads/connector/python/;
+license=('GPL')
+depends=('python' 'python-dnspython')
+makedepends=('python-setuptools')
+source=("https://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9137b0b6aafbff16c83f59ab03da810232a92f6b76e38f460782153c5ddbdf6ae55d0c72a0c7902b7bc05ad1010bdc849662cd3d2138ae93476abf013e7a508f')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   python setup.py build
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   python setup.py install --root="${pkgdir}" --optimize=1
+}


[arch-commits] Commit in ttf-jetbrains-mono/repos/community-any (PKGBUILD PKGBUILD)

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 20:17:32
  Author: arodseth
Revision: 563672

archrelease: copy trunk to community-any

Added:
  ttf-jetbrains-mono/repos/community-any/PKGBUILD
(from rev 563671, ttf-jetbrains-mono/trunk/PKGBUILD)
Deleted:
  ttf-jetbrains-mono/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 20:17:26 UTC (rev 563671)
+++ PKGBUILD2020-02-06 20:17:32 UTC (rev 563672)
@@ -1,21 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Althorion 
-# Contributor: Jordan Day 
-
-pkgname=ttf-jetbrains-mono
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='Typeface for developers, by JetBrains'
-arch=(any)
-url='https://www.jetbrains.com/lp/mono'
-license=(Apache)
-source=("https://github.com/JetBrains/JetBrainsMono/releases/download/$pkgver/JetBrainsMono-$pkgver.zip;)
-sha256sums=('5c280da4dd1d8adcaddf14cd0d3a60b461d65cface30a0a0d7cb72a7ea1c0cd9')
-depends=(fontconfig xorg-font-utils)
-
-package() {
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -Dm 644 ttf/*.ttf "$pkgdir/usr/share/fonts/TTF/"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ttf-jetbrains-mono/repos/community-any/PKGBUILD (from rev 563671, 
ttf-jetbrains-mono/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 20:17:32 UTC (rev 563672)
@@ -0,0 +1,21 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Althorion 
+# Contributor: Jordan Day 
+
+pkgname=ttf-jetbrains-mono
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Typeface for developers, by JetBrains'
+arch=(any)
+url='https://www.jetbrains.com/lp/mono'
+license=(Apache)
+depends=(fontconfig xorg-font-utils)
+source=("https://github.com/JetBrains/JetBrainsMono/releases/download/v$pkgver/JetBrainsMono-$pkgver.zip;)
+sha256sums=('59f9b9762d5625eb438eedf034dbbcdcf09ed18ded994540b466872840229762')
+
+package() {
+  install -Dm644 -t "$pkgdir/usr/share/fonts/TTF" \
+JetBrainsMono-"$pkgver"/ttf/*.ttf
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ttf-jetbrains-mono/trunk (PKGBUILD)

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 20:17:26
  Author: arodseth
Revision: 563671

upgpkg: ttf-jetbrains-mono 1.0.2-1

Modified:
  ttf-jetbrains-mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:45:36 UTC (rev 563670)
+++ PKGBUILD2020-02-06 20:17:26 UTC (rev 563671)
@@ -3,19 +3,19 @@
 # Contributor: Jordan Day 
 
 pkgname=ttf-jetbrains-mono
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc='Typeface for developers, by JetBrains'
 arch=(any)
 url='https://www.jetbrains.com/lp/mono'
 license=(Apache)
-source=("https://github.com/JetBrains/JetBrainsMono/releases/download/$pkgver/JetBrainsMono-$pkgver.zip;)
-sha256sums=('5c280da4dd1d8adcaddf14cd0d3a60b461d65cface30a0a0d7cb72a7ea1c0cd9')
 depends=(fontconfig xorg-font-utils)
+source=("https://github.com/JetBrains/JetBrainsMono/releases/download/v$pkgver/JetBrainsMono-$pkgver.zip;)
+sha256sums=('59f9b9762d5625eb438eedf034dbbcdcf09ed18ded994540b466872840229762')
 
 package() {
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -Dm 644 ttf/*.ttf "$pkgdir/usr/share/fonts/TTF/"
+  install -Dm644 -t "$pkgdir/usr/share/fonts/TTF" \
+JetBrainsMono-"$pkgver"/ttf/*.ttf
 }
 
 # vim: ts=2 sw=2 et:


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 19:46:27
  Author: anatolik
Revision: 374967

upgpkg: strace 5.5-1

Modified:
  strace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:30:32 UTC (rev 374966)
+++ PKGBUILD2020-02-06 19:46:27 UTC (rev 374967)
@@ -2,7 +2,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=strace
-pkgver=5.4
+pkgver=5.5
 pkgrel=1
 pkgdesc='A diagnostic, debugging and instructional userspace tracer'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(perl libunwind)
 
source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc})
-sha1sums=('a73590b4489deb832d969a51850ce564677c7e46'
+sha1sums=('ebacd8fb078aabc2e4a856657bac299589641d28'
   'SKIP')
 validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin 

 


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 19:46:49
  Author: anatolik
Revision: 374968

archrelease: copy trunk to testing-x86_64

Added:
  strace/repos/testing-x86_64/
  strace/repos/testing-x86_64/PKGBUILD
(from rev 374967, strace/trunk/PKGBUILD)

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

Copied: strace/repos/testing-x86_64/PKGBUILD (from rev 374967, 
strace/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-06 19:46:49 UTC (rev 374968)
@@ -0,0 +1,34 @@
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=strace
+pkgver=5.5
+pkgrel=1
+pkgdesc='A diagnostic, debugging and instructional userspace tracer'
+arch=(x86_64)
+url='https://strace.io/'
+license=(BSD)
+depends=(perl libunwind)
+source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc})
+sha1sums=('ebacd8fb078aabc2e4a856657bac299589641d28'
+  'SKIP')
+validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--with-libunwind
+  make
+}
+
+check() {
+  # tests do not work in chroot environment. TODO: fixit.
+  # make -C $pkgname-$pkgver check
+  true
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in intel-gpu-tools/repos (2 files)

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:45:36
  Author: jelle
Revision: 563670

archrelease: copy trunk to community-staging-x86_64

Added:
  intel-gpu-tools/repos/community-staging-x86_64/
  intel-gpu-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 563669, intel-gpu-tools/trunk/PKGBUILD)

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

Copied: intel-gpu-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
563669, intel-gpu-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-06 19:45:36 UTC (rev 563670)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Micay 
+# Contributor: Mikael Eriksson 
+# Originally by: Denis Smirnov 
+
+_pkgname=igt-gpu-tools
+pkgname=intel-gpu-tools
+pkgver=1.24
+pkgrel=2
+pkgdesc="Tools for development and testing of the Intel DRM driver"
+arch=(x86_64)
+license=(MIT)
+url='https://gitlab.freedesktop.org/drm/igt-gpu-tools'
+depends=(libdrm libpciaccess cairo python xorg-xrandr procps-ng kmod libxv 
libunwind peg systemd)
+makedepends=(swig gtk-doc xorg-util-macros xorgproto meson)
+source=(https://xorg.freedesktop.org/releases/individual/app/${_pkgname}-$pkgver.tar.xz{,.sig})
+sha512sums=('22c25e27ead64f561fe8f46b132d6c7562a90d7bff09dc2618a532b16d7b8fdf54ed94d986a45655657b54219d350ce1b1e6c89da2b6073024e9bbe0973fa190'
+'SKIP')
+validpgpkeys=('775965B85650195ACE77E18D7370055DB74C2475')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  meson ../$_pkgname-$pkgver \
+--prefix=/usr \
+--libexecdir=/usr/lib
+
+  ninja
+}
+
+check() {
+  cd build
+  ninja test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+
+  cd ../$_pkgname-$pkgver
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
+}


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

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:45:31
  Author: jelle
Revision: 563669

upgpkg: intel-gpu-tools 1.24-2

procps-ng 3.3.16 rebuild

Modified:
  intel-gpu-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:38:40 UTC (rev 563668)
+++ PKGBUILD2020-02-06 19:45:31 UTC (rev 563669)
@@ -5,7 +5,7 @@
 _pkgname=igt-gpu-tools
 pkgname=intel-gpu-tools
 pkgver=1.24
-pkgrel=1
+pkgrel=2
 pkgdesc="Tools for development and testing of the Intel DRM driver"
 arch=(x86_64)
 license=(MIT)


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

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:38:04
  Author: jelle
Revision: 563667

upgpkg: grafana 6.6.1-1

Upstream update.

Modified:
  grafana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:31:10 UTC (rev 563666)
+++ PKGBUILD2020-02-06 19:38:04 UTC (rev 563667)
@@ -3,7 +3,7 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=6.6.0
+pkgver=6.6.1
 pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'
@@ -22,7 +22,7 @@
 
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
 
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
 
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("AA70DF6234FBF96AB9101D09E6D5D452E87026E9")
+validpgpkeys=("D45B6DC53E9057C46487E25CE17E9ABACEFA59EB")
 
 prepare() {
   cd $pkgname


[arch-commits] Commit in grafana/repos/community-x86_64 (12 files)

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:38:40
  Author: jelle
Revision: 563668

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 563667, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/golang-xerrors.patch
(from rev 563667, grafana/trunk/golang-xerrors.patch)
  grafana/repos/community-x86_64/grafana.install
(from rev 563667, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 563667, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 563667, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 563667, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/golang-xerrors.patch
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  158 -
 golang-xerrors.patch |   52 
 grafana.install  |   44 ++---
 grafana.service  |   46 +++---
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 6 files changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 19:38:04 UTC (rev 563667)
+++ PKGBUILD2020-02-06 19:38:40 UTC (rev 563668)
@@ -1,79 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=6.6.0
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go-pie' 'npm' 'grunt-cli' 'python' 'nodejs-lts-erbium')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git?signed#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("AA70DF6234FBF96AB9101D09E6D5D452E87026E9")
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  echo "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  echo 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  echo 'building the backend'
-  go run build.go setup
-  go run build.go build
-
-  echo 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  npm install -g yarn
-  yarn install --pure-lockfile --no-progress
-  npm run build release
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers "$pkgdir/usr/lib/sysusers.d/grafana.conf"
-  install -Dm644 grafana.service 
"$pkgdir/usr/lib/systemd/system/grafana.service"
-  cd $pkgname
-  install -Dsm755 bin/linux-amd64/grafana-server 
"$pkgdir/usr/bin/grafana-server"
-  install -Dsm755 bin/linux-amd64/grafana-cli "$pkgdir/usr/bin/grafana-cli"
-  install -Dm640 -o207 -g207 conf/sample.ini "$pkgdir/etc/$pkgname.ini"
-  install -Dm644 conf/defaults.ini 
"$pkgdir/usr/share/$pkgname/conf/defaults.ini"
-  install -dm755 "$pkgdir/usr/share/grafana/"
-  for i in vendor public tools; do
-cp -r "$i" "$pkgdir/usr/share/grafana/$i"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grafana/repos/community-x86_64/PKGBUILD (from rev 563667, 
grafana/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 

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

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:31:10
  Author: jelle
Revision: 563666

archrelease: copy trunk to community-testing-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 19:31:00 UTC (rev 563665)
+++ PKGBUILD2020-02-06 19:31:10 UTC (rev 563666)
@@ -1,44 +0,0 @@
-# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
-depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
-makedepends=(ghc)
-source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('91dbf6ef3d0d7f6308c3156c491235623abfa25a550af627841182e61ff517cb2bfc0608ae5ed814a391ab78a88df36d08c7a773cc08e76f7e38c218d63136b1')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i -e 's/== *0.50/==0.51/' -e 's/< *4/<5/' -e 's/< *2/<3/' -e 's/< 
*1/<2/' $pkgname.cabal
-}
-
-build() {
-  cd $pkgname-$pkgver
-  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---datasubdir=$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
---ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie'
-  runhaskell Setup build
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-  cd $pkgname-$pkgver
-  runghc Setup.hs copy --destdir="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Doc only contains the license
-  rm -rf "$pkgdir/usr/share/doc"
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskell/repos/community-testing-x86_64/PKGBUILD (from rev 563665, 
taskell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 19:31:10 UTC (rev 563666)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('4c55922ad9f6c529a8c8ca73602b9f42fa3cda4945fe8edaa554909334445e089db0b7a5ba7f6804bdf618274543fd6598d19802907a0ae661571ed48366376b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/== *0.50/==0.51/' -e 's/< *4/<5/' -e 's/< *2/<3/' -e 's/< 
*1/<2/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Jelle van der Waa via arch-commits
Date: Thursday, February 6, 2020 @ 19:31:00
  Author: jelle
Revision: 563665

upgpkg: taskell 1.9.2.0-1

Upstream update.

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:17:35 UTC (rev 563664)
+++ PKGBUILD2020-02-06 19:31:00 UTC (rev 563665)
@@ -1,8 +1,8 @@
 # Maintainer: Jelle van der Waa https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('91dbf6ef3d0d7f6308c3156c491235623abfa25a550af627841182e61ff517cb2bfc0608ae5ed814a391ab78a88df36d08c7a773cc08e76f7e38c218d63136b1')
+sha512sums=('4c55922ad9f6c529a8c8ca73602b9f42fa3cda4945fe8edaa554909334445e089db0b7a5ba7f6804bdf618274543fd6598d19802907a0ae661571ed48366376b')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in screen/repos/extra-x86_64 (6 files)

2020-02-06 Thread Gaëtan Bisson via arch-commits
Date: Thursday, February 6, 2020 @ 19:30:32
  Author: bisson
Revision: 374966

archrelease: copy trunk to extra-x86_64

Added:
  screen/repos/extra-x86_64/PKGBUILD
(from rev 374965, screen/trunk/PKGBUILD)
  screen/repos/extra-x86_64/pam.d
(from rev 374965, screen/trunk/pam.d)
  screen/repos/extra-x86_64/tmpfiles.d
(from rev 374965, screen/trunk/tmpfiles.d)
Deleted:
  screen/repos/extra-x86_64/PKGBUILD
  screen/repos/extra-x86_64/pam.d
  screen/repos/extra-x86_64/tmpfiles.d

+
 PKGBUILD   |  110 +--
 pam.d  |2 -
 tmpfiles.d |2 -
 3 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 19:29:58 UTC (rev 374965)
+++ PKGBUILD2020-02-06 19:30:32 UTC (rev 374966)
@@ -1,55 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Allan McRae 
-# Committer: dorphell 
-
-pkgname=screen
-pkgver=4.7.0
-pkgrel=1
-pkgdesc='Full-screen window manager that multiplexes a physical terminal'
-url='https://www.gnu.org/software/screen/'
-arch=('x86_64')
-license=('GPL')
-depends=('ncurses' 'pam')
-validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4'
-  '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7')
-source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
-'tmpfiles.d'
-'pam.d')
-sha256sums=('da775328fa783bd2a787d722014dbd99c6093effc11f337827604c2efc5d20c1'
-'SKIP'
-'1f33ce4faca7bd05dd80403411af31e682d5d23e79558e884ae5a35f1dd96223'
-'971c25929ea97422c09e10679ab98e9e6c59295aae1a4a9970909d2206e23090')
-
-backup=('etc/screenrc' 'etc/pam.d/screen')
-options=('!makeflags')
-
-_ptygroup=5 #the UID of our PTY/TTY group
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --infodir=/usr/share/info \
-   --enable-colors256 \
-   --enable-pam \
-   --enable-rxvt_osc \
-   --enable-telnet \
-   --with-pty-group=$_ptygroup \
-   --with-socket-dir=/run/screens \
-   --with-sys-screenrc=/etc/screenrc \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf
-
-   install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
-   install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
-}

Copied: screen/repos/extra-x86_64/PKGBUILD (from rev 374965, 
screen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 19:30:32 UTC (rev 374966)
@@ -0,0 +1,55 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Allan McRae 
+# Committer: dorphell 
+
+pkgname=screen
+pkgver=4.8.0
+pkgrel=1
+pkgdesc='Full-screen window manager that multiplexes a physical terminal'
+url='https://www.gnu.org/software/screen/'
+arch=('x86_64')
+license=('GPL')
+depends=('ncurses' 'pam')
+validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4'
+  '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7')
+source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+'tmpfiles.d'
+'pam.d')
+sha256sums=('6e11b13d8489925fde25dfb0935bf6ed71f9eb47eff233a181e078fde5655aa1'
+'SKIP'
+'1f33ce4faca7bd05dd80403411af31e682d5d23e79558e884ae5a35f1dd96223'
+'971c25929ea97422c09e10679ab98e9e6c59295aae1a4a9970909d2206e23090')
+
+backup=('etc/screenrc' 'etc/pam.d/screen')
+options=('!makeflags')
+
+_ptygroup=5 #the UID of our PTY/TTY group
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --infodir=/usr/share/info \
+   --enable-colors256 \
+   --enable-pam \
+   --enable-rxvt_osc \
+   --enable-telnet \
+   --with-pty-group=$_ptygroup \
+   --with-socket-dir=/run/screens \
+   --with-sys-screenrc=/etc/screenrc \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
+   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf
+
+   install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
+   install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
+}

Deleted: pam.d
===
--- pam.d   2020-02-06 19:29:58 UTC (rev 374965)
+++ pam.d   2020-02-06 19:30:32 UTC (rev 374966)
@@ -1 +0,0 @@
-auth   requiredpam_unix.so


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

2020-02-06 Thread Gaëtan Bisson via arch-commits
Date: Thursday, February 6, 2020 @ 19:29:58
  Author: bisson
Revision: 374965

upstream update

Modified:
  screen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:43:24 UTC (rev 374964)
+++ PKGBUILD2020-02-06 19:29:58 UTC (rev 374965)
@@ -3,7 +3,7 @@
 # Committer: dorphell 
 
 pkgname=screen
-pkgver=4.7.0
+pkgver=4.8.0
 pkgrel=1
 pkgdesc='Full-screen window manager that multiplexes a physical terminal'
 url='https://www.gnu.org/software/screen/'
@@ -15,7 +15,7 @@
 source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
 'tmpfiles.d'
 'pam.d')
-sha256sums=('da775328fa783bd2a787d722014dbd99c6093effc11f337827604c2efc5d20c1'
+sha256sums=('6e11b13d8489925fde25dfb0935bf6ed71f9eb47eff233a181e078fde5655aa1'
 'SKIP'
 '1f33ce4faca7bd05dd80403411af31e682d5d23e79558e884ae5a35f1dd96223'
 '971c25929ea97422c09e10679ab98e9e6c59295aae1a4a9970909d2206e23090')


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 19:17:26
  Author: jsteel
Revision: 563663

upgpkg: obs-studio 24.0.6-1

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 19:01:52 UTC (rev 563662)
+++ PKGBUILD2020-02-06 19:17:26 UTC (rev 563663)
@@ -2,8 +2,8 @@
 # Contributor: Benjamin Klettbach 
 
 pkgname=obs-studio
-pkgver=24.0.5
-pkgrel=2
+pkgver=24.0.6
+pkgrel=1
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('x86_64')
 url="https://obsproject.com;
@@ -19,7 +19,7 @@
 'python: scripting support'
 'vlc: VLC Media Source support')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('92fc0ba6e51672a5edbeef318ea98165')
+md5sums=('804bccba4476f696d15b01ff88ae02f2')
 
 build() {
   cd $pkgname-$pkgver


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 19:17:35
  Author: jsteel
Revision: 563664

archrelease: copy trunk to community-x86_64

Added:
  obs-studio/repos/community-x86_64/PKGBUILD
(from rev 563663, obs-studio/trunk/PKGBUILD)
Deleted:
  obs-studio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 19:17:26 UTC (rev 563663)
+++ PKGBUILD2020-02-06 19:17:35 UTC (rev 563664)
@@ -1,39 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=24.0.5
-pkgrel=2
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('x86_64')
-url="https://obsproject.com;
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11' 'mbedtls'
- 'qt5-svg' 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264' 'vlc' 'swig' 'python' 
'luajit')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support'
-'libva-intel-driver: hardware encoding'
-'libva-mesa-driver: hardware encoding'
-'luajit: scripting support'
-'python: scripting support'
-'vlc: VLC Media Source support')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('92fc0ba6e51672a5edbeef318ea98165')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-x86_64/PKGBUILD (from rev 563663, 
obs-studio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 19:17:35 UTC (rev 563664)
@@ -0,0 +1,39 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=24.0.6
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11' 'mbedtls'
+ 'qt5-svg' 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264' 'vlc' 'swig' 'python' 
'luajit')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support'
+'libva-intel-driver: hardware encoding'
+'libva-mesa-driver: hardware encoding'
+'luajit: scripting support'
+'python: scripting support'
+'vlc: VLC Media Source support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('804bccba4476f696d15b01ff88ae02f2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}


[arch-commits] Commit in firefox-dark-reader/repos/community-any (PKGBUILD PKGBUILD)

2020-02-06 Thread Daniel M. Capella via arch-commits
Date: Thursday, February 6, 2020 @ 18:47:03
  Author: polyzen
Revision: 563661

archrelease: copy trunk to community-any

Added:
  firefox-dark-reader/repos/community-any/PKGBUILD
(from rev 563660, firefox-dark-reader/trunk/PKGBUILD)
Deleted:
  firefox-dark-reader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 18:46:44 UTC (rev 563660)
+++ PKGBUILD2020-02-06 18:47:03 UTC (rev 563661)
@@ -1,22 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=firefox-dark-reader
-pkgver=4.8.8
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-url=https://darkreader.org/
-arch=('any')
-license=('MIT')
-groups=('firefox-addons')
-conflicts=('firefox-extension-dark-reader')
-replaces=('firefox-extension-dark-reader')
-source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('3ed00d3d4614393faa2d043c841b1610871aaca2cb6328e2e32fcdfeed02aa13')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-dark-reader/repos/community-any/PKGBUILD (from rev 563660, 
firefox-dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 18:47:03 UTC (rev 563661)
@@ -0,0 +1,22 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.8.9
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+url=https://darkreader.org/
+arch=('any')
+license=('MIT')
+groups=('firefox-addons')
+conflicts=('firefox-extension-dark-reader')
+replaces=('firefox-extension-dark-reader')
+source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('756974831ecd76e670e214ea7acfbb2e49c9c0deb2f319173693824a1289f2a6')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-02-06 Thread Daniel M. Capella via arch-commits
Date: Thursday, February 6, 2020 @ 18:46:44
  Author: polyzen
Revision: 563660

upgpkg: firefox-dark-reader 4.8.9-1

Modified:
  firefox-dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 18:41:23 UTC (rev 563659)
+++ PKGBUILD2020-02-06 18:46:44 UTC (rev 563660)
@@ -2,7 +2,7 @@
 # Contributor: Cookie Engineer 
 
 pkgname=firefox-dark-reader
-pkgver=4.8.8
+pkgver=4.8.9
 pkgrel=1
 pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
 url=https://darkreader.org/
@@ -13,7 +13,7 @@
 replaces=('firefox-extension-dark-reader')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('3ed00d3d4614393faa2d043c841b1610871aaca2cb6328e2e32fcdfeed02aa13')
+sha256sums=('756974831ecd76e670e214ea7acfbb2e49c9c0deb2f319173693824a1289f2a6')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:41:23
  Author: jsteel
Revision: 563659

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 563658, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 18:41:17 UTC (rev 563658)
+++ PKGBUILD2020-02-06 18:41:23 UTC (rev 563659)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.17.9
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('0dc067a71898810e9301524382808768')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 563658, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 18:41:23 UTC (rev 563659)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.17.11
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('9961da3e9bf12b5cb6f512894dd87a73')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:41:17
  Author: jsteel
Revision: 563658

upgpkg: aws-cli 1.17.11-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 18:39:57 UTC (rev 563657)
+++ PKGBUILD2020-02-06 18:41:17 UTC (rev 563658)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.17.9
+pkgver=1.17.11
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('0dc067a71898810e9301524382808768')
+md5sums=('9961da3e9bf12b5cb6f512894dd87a73')
 
 build() {
   cd $pkgname-$pkgver


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:39:31
  Author: jsteel
Revision: 563655

upgpkg: python-boto3 1.11.11-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 18:37:33 UTC (rev 563654)
+++ PKGBUILD2020-02-06 18:39:31 UTC (rev 563655)
@@ -3,7 +3,7 @@
 
 pkgbase=python-boto3
 pkgname=python-boto3
-pkgver=1.11.9
+pkgver=1.11.11
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('c19253d60d8934d6a444ab696b75f858b7046b75419edcc001a78de9dbddfca1bf91c192af52a543e08d81932b2983067150e8a2e178613d11d86a8b241e40e1')
+sha512sums=('75c007959b876bb27a046549a26c0175d1d1fd50dcb65d7ce42ad5569a765e167516759ebe49c9b86e0a19830d5e368516bccdf1a28e22ca59e4f65b16eb1cea')
 
 build() {
   cd boto3-$pkgver


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:39:57
  Author: jsteel
Revision: 563657

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 18:39:39 UTC (rev 563656)
+++ PKGBUILD2020-02-06 18:39:57 UTC (rev 563657)
@@ -1,27 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.14.9
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('849fe37991eb7cbb4e2e6be906b4c444')
-
-build() {
-  cd botocore-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 563656, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 18:39:57 UTC (rev 563657)
@@ -0,0 +1,27 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.14.11
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('adefa3b86258770fd9758b2a763ef2cb')
+
+build() {
+  cd botocore-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:39:39
  Author: jsteel
Revision: 563656

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 18:39:31 UTC (rev 563655)
+++ PKGBUILD2020-02-06 18:39:39 UTC (rev 563656)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Felix Yan 
-
-pkgbase=python-boto3
-pkgname=python-boto3
-pkgver=1.11.9
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('c19253d60d8934d6a444ab696b75f858b7046b75419edcc001a78de9dbddfca1bf91c192af52a543e08d81932b2983067150e8a2e178613d11d86a8b241e40e1')
-
-build() {
-  cd boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 563655, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 18:39:39 UTC (rev 563656)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgbase=python-boto3
+pkgname=python-boto3
+pkgver=1.11.11
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('75c007959b876bb27a046549a26c0175d1d1fd50dcb65d7ce42ad5569a765e167516759ebe49c9b86e0a19830d5e368516bccdf1a28e22ca59e4f65b16eb1cea')
+
+build() {
+  cd boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-02-06 Thread Jonathan Steel via arch-commits
Date: Thursday, February 6, 2020 @ 18:37:33
  Author: jsteel
Revision: 563654

upgpkg: python-botocore 1.14.11-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 18:35:32 UTC (rev 563653)
+++ PKGBUILD2020-02-06 18:37:33 UTC (rev 563654)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.14.9
+pkgver=1.14.11
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('849fe37991eb7cbb4e2e6be906b4c444')
+md5sums=('adefa3b86258770fd9758b2a763ef2cb')
 
 build() {
   cd botocore-$pkgver


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 18:35:32
  Author: anatolik
Revision: 563653

archrelease: copy trunk to community-x86_64

Added:
  easyjson/repos/community-x86_64/
  easyjson/repos/community-x86_64/PKGBUILD
(from rev 563652, easyjson/trunk/PKGBUILD)

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

Copied: easyjson/repos/community-x86_64/PKGBUILD (from rev 563652, 
easyjson/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-02-06 18:35:32 UTC (rev 563653)
@@ -0,0 +1,33 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=easyjson
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='Fast JSON serializer for golang'
+arch=(x86_64)
+url='https://github.com/mailru/easyjson'
+license=(MIT)
+depends=(glibc)
+makedepends=(go-pie git)
+source=(easyjson-$pkgver.zip::https://github.com/mailru/easyjson/archive/v$pkgver.zip)
+sha256sums=('6756189f9a5af990c87316398ab166b281da8df7dad0ad4d700834f19aa425cd')
+
+prepare() {
+  cd $srcdir/easyjson-$pkgver
+  sed -i 's/golint /#golint /g' Makefile
+}
+
+build() {
+  cd $srcdir/easyjson-$pkgver
+  make build
+}
+
+check() {
+  cd $srcdir/easyjson-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/easyjson-$pkgver
+  install -Dm755 bin/easyjson $pkgdir/usr/bin/easyjson
+}


[arch-commits] Commit in (4 files)

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 18:28:44
  Author: anatolik
Revision: 563652

easyjson: Fast JSON serializer for golang

Added:
  easyjson/
  easyjson/repos/
  easyjson/trunk/
  easyjson/trunk/PKGBUILD

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

Added: easyjson/trunk/PKGBUILD
===
--- easyjson/trunk/PKGBUILD (rev 0)
+++ easyjson/trunk/PKGBUILD 2020-02-06 18:28:44 UTC (rev 563652)
@@ -0,0 +1,33 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=easyjson
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='Fast JSON serializer for golang'
+arch=(x86_64)
+url='https://github.com/mailru/easyjson'
+license=(MIT)
+depends=(glibc)
+makedepends=(go-pie git)
+source=(easyjson-$pkgver.zip::https://github.com/mailru/easyjson/archive/v$pkgver.zip)
+sha256sums=('6756189f9a5af990c87316398ab166b281da8df7dad0ad4d700834f19aa425cd')
+
+prepare() {
+  cd $srcdir/easyjson-$pkgver
+  sed -i 's/golint /#golint /g' Makefile
+}
+
+build() {
+  cd $srcdir/easyjson-$pkgver
+  make build
+}
+
+check() {
+  cd $srcdir/easyjson-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/easyjson-$pkgver
+  install -Dm755 bin/easyjson $pkgdir/usr/bin/easyjson
+}


Property changes on: easyjson/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 6, 2020 @ 18:03:53
  Author: alucryd
Revision: 563651

archrelease: copy trunk to community-any

Added:
  home-assistant/repos/community-any/PKGBUILD
(from rev 563650, home-assistant/trunk/PKGBUILD)
  home-assistant/repos/community-any/home-assistant.service
(from rev 563650, home-assistant/trunk/home-assistant.service)
  home-assistant/repos/community-any/home-assistant.sysusers
(from rev 563650, home-assistant/trunk/home-assistant.sysusers)
  home-assistant/repos/community-any/home-assistant.tmpfiles
(from rev 563650, home-assistant/trunk/home-assistant.tmpfiles)
Deleted:
  home-assistant/repos/community-any/PKGBUILD
  home-assistant/repos/community-any/home-assistant.service
  home-assistant/repos/community-any/home-assistant.sysusers
  home-assistant/repos/community-any/home-assistant.tmpfiles

-+
 PKGBUILD|  176 +++---
 home-assistant.service  |   28 +++
 home-assistant.sysusers |2 
 home-assistant.tmpfiles |2 
 4 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 18:03:46 UTC (rev 563650)
+++ PKGBUILD2020-02-06 18:03:53 UTC (rev 563651)
@@ -1,88 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ethan Skinner 
-# Contributor: Grégoire Seux 
-# Contributor: Dean Galvin 
-# Contributor: NicoHood 
-
-pkgname=home-assistant
-pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.104.3
-pkgrel=1
-arch=(any)
-url=https://home-assistant.io/
-license=(APACHE)
-depends=(
-  gcc
-  python-aiohttp
-  python-aiohttp-cors
-  python-astral
-  python-async-timeout
-  python-attrs
-  python-bcrypt
-  python-certifi
-  python-cryptography
-  python-importlib-metadata
-  python-jinja
-  python-pyjwt
-  python-pip
-  python-pytz
-  python-requests
-  python-ruamel-yaml
-  python-slugify
-  python-sqlalchemy
-  python-voluptuous
-  python-voluptuous-serialize
-  python-yaml
-)
-makedepends=(
-  git
-  python-setuptools
-)
-optdepends=(
-  'net-tools: Nmap host discovery'
-  'openzwave: Z-Wave integration'
-  'python-lxml: Meteo France integration'
-)
-source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=a3bcf69adff44ee7dc7bad3c849e4d3a083abfd2
-  home-assistant.service
-  home-assistant.sysusers
-  home-assistant.tmpfiles
-)
-sha256sums=(
-  SKIP
-  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
-  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
-  f9e43edb276e0fbbbc2273b836ef1da0ac43347b5c3e4c63774e7f7ecdf25660
-)
-
-pkgver() {
-  cd home-assistant
-
-  git describe --tags
-}
-
-prepare() {
-  cd home-assistant
-
-  # lift hard dep constraints, we'll deal with breaking changes ourselves
-  sed 's/==/>=/g' -i setup.py
-}
-
-build() {
-  cd home-assistant
-
-  python setup.py build
-}
-
-package() {
-  cd home-assistant
-
-  python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-
-  install -Dm 644 ../home-assistant.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-  install -Dm 644 ../home-assistant.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/home-assistant.conf
-  install -Dm 644 ../home-assistant.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/home-assistant.conf
-}
-
-# vim: ts=2 sw=2 et:

Copied: home-assistant/repos/community-any/PKGBUILD (from rev 563650, 
home-assistant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 18:03:53 UTC (rev 563651)
@@ -0,0 +1,88 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ethan Skinner 
+# Contributor: Grégoire Seux 
+# Contributor: Dean Galvin 
+# Contributor: NicoHood 
+
+pkgname=home-assistant
+pkgdesc='Open source home automation that puts local control and privacy first'
+pkgver=0.105.1
+pkgrel=1
+arch=(any)
+url=https://home-assistant.io/
+license=(APACHE)
+depends=(
+  gcc
+  python-aiohttp
+  python-aiohttp-cors
+  python-astral
+  python-async-timeout
+  python-attrs
+  python-bcrypt
+  python-certifi
+  python-cryptography
+  python-importlib-metadata
+  python-jinja
+  python-pyjwt
+  python-pip
+  python-pytz
+  python-requests
+  python-ruamel-yaml
+  python-slugify
+  python-sqlalchemy
+  python-voluptuous
+  python-voluptuous-serialize
+  python-yaml
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'net-tools: Nmap host discovery'
+  'openzwave: Z-Wave integration'
+  'python-lxml: Meteo France integration'
+)
+source=(
+  
git+https://github.com/home-assistant/home-assistant.git#tag=8b4bd95fc59976ea9e86389f01eae2514106111f
+  home-assistant.service
+  home-assistant.sysusers
+  home-assistant.tmpfiles
+)
+sha256sums=(
+  SKIP
+  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
+  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
+  

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

2020-02-06 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 6, 2020 @ 18:03:46
  Author: alucryd
Revision: 563650

upgpkg: home-assistant 0.105.1-1

Modified:
  home-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:52:23 UTC (rev 563649)
+++ PKGBUILD2020-02-06 18:03:46 UTC (rev 563650)
@@ -6,7 +6,7 @@
 
 pkgname=home-assistant
 pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.104.3
+pkgver=0.105.1
 pkgrel=1
 arch=(any)
 url=https://home-assistant.io/
@@ -44,7 +44,7 @@
   'python-lxml: Meteo France integration'
 )
 source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=a3bcf69adff44ee7dc7bad3c849e4d3a083abfd2
+  
git+https://github.com/home-assistant/home-assistant.git#tag=8b4bd95fc59976ea9e86389f01eae2514106111f
   home-assistant.service
   home-assistant.sysusers
   home-assistant.tmpfiles


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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:52:23
  Author: jlichtblau
Revision: 563649

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 563648, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 563648, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 563648, josm/trunk/josm.conf.d)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d

+
 PKGBUILD   |  116 -
 josm.changelog |  692 +++
 josm.conf.d|8 
 3 files changed, 408 insertions(+), 408 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 17:52:12 UTC (rev 563648)
+++ PKGBUILD2020-02-06 17:52:23 UTC (rev 563649)
@@ -1,58 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Michele Schäuble 
-
-pkgname=josm
-pkgver=15628
-pkgrel=1
-pkgdesc="An editor for OpenStreetMap written in Java"
-arch=('any')
-url="https://josm.openstreetmap.de/;
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=8' 'libxtst' 
'ttf-font')
-makedepends=('subversion')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
-$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
-$pkgname.conf.d)
-noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('8601e44c112ef9f77e8a35c830275c70272bf6e50a4431101924f4044318d6a7'
-'SKIP'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-package() {
-  cd "${srcdir}"
-
-  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 
$pkgname/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop \
-"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
-  install -Dm644 $pkgname/linux/tested/usr/share/man/man1/josm.1 \
-"${pkgdir}"/usr/share/man/man1/josm.1
-  install -Dm644 
$pkgname/linux/tested/usr/share/metainfo/org.openstreetmap.josm.appdata.xml \
-"${pkgdir}"/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
-  install -Dm644 
$pkgname/linux/tested/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
 \
-
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
-
-  for _icon in 8 16 22 24 32 36 40 42 48 64 72 80 96 128 192 256 512; do
-  install -Dm644 
$pkgname/linux/tested/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
 \
-
"${pkgdir}"/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
-  done
-
-#executable file
-  install -d "${pkgdir}"/usr/bin
-  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
-CLASSPATH="/usr/share/java/josm/josm.jar"
-java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 "${pkgdir}"/usr/bin/$pkgname
-  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 563648, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 17:52:23 UTC (rev 563649)
@@ -0,0 +1,58 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Michele Schäuble 
+
+pkgname=josm
+pkgver=15806
+pkgrel=1
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="https://josm.openstreetmap.de/;
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=8' 'libxtst' 
'ttf-font')
+makedepends=('subversion')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
+$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
+$pkgname.conf.d)
+noextract=($pkgname-snapshot-$pkgver.jar)
+sha256sums=('7adbbcb0322ecece75fab359117204edbda071977d4a288668d27c630a87410d'
+'SKIP'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 
$pkgname/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop \
+"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
+  install -Dm644 $pkgname/linux/tested/usr/share/man/man1/josm.1 \
+"${pkgdir}"/usr/share/man/man1/josm.1
+  install -Dm644 

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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:52:12
  Author: jlichtblau
Revision: 563648

upgpkg: josm 15806-1 - new upstream release

Modified:
  josm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:49:14 UTC (rev 563647)
+++ PKGBUILD2020-02-06 17:52:12 UTC (rev 563648)
@@ -2,7 +2,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=15628
+pkgver=15806
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -16,7 +16,7 @@
 $pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
 $pkgname.conf.d)
 noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('8601e44c112ef9f77e8a35c830275c70272bf6e50a4431101924f4044318d6a7'
+sha256sums=('7adbbcb0322ecece75fab359117204edbda071977d4a288668d27c630a87410d'
 'SKIP'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 


[arch-commits] Commit in fscrypt/trunk (PKGBUILD reprobuild.patch)

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 17:49:14
  Author: anatolik
Revision: 563647

Use $SOURCE_DATE_EPOCH (if present) as a build date to make the package 
reproducible

Added:
  fscrypt/trunk/reprobuild.patch
Modified:
  fscrypt/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 reprobuild.patch |   14 ++
 2 files changed, 20 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:46:06 UTC (rev 563646)
+++ PKGBUILD2020-02-06 17:49:14 UTC (rev 563647)
@@ -11,19 +11,20 @@
 makedepends=('go')
 depends=('pam')
 
source=("fscrypt-$pkgver.zip::https://github.com/google/fscrypt/archive/v$pkgver.zip;
-"pam_config")
+"pam_config"
+"reprobuild.patch")
 sha256sums=('7ec0dfe6d28079829dfd52bde20821d96957b3399fa47b3b2f4b7ae39b977dc7'
-'ae6ceaefc6d936c95a9b7a3f925111ffb946e6fd0152373247f1d40132f05aef')
+'ae6ceaefc6d936c95a9b7a3f925111ffb946e6fd0152373247f1d40132f05aef'
+'cad9f7964dbb0caaa07250c60805096e2be58a739aa0af1edd8d55582582055a')
 
 prepare() {
   cd "fscrypt-$pkgver"
-  # TODO: replace it with $SOURCE_DATE_EPOCH?
-  sed "s/\$(shell date)//g" -i Makefile
+  patch -p1 < ../reprobuild.patch
 }
 
 build() {
   cd "fscrypt-$pkgver"
-  make
+  BUILDDATE="`date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}"`" make
 }
 
 package() {

Added: reprobuild.patch
===
--- reprobuild.patch(rev 0)
+++ reprobuild.patch2020-02-06 17:49:14 UTC (rev 563647)
@@ -0,0 +1,14 @@
+diff --git a/Makefile b/Makefile
+index f7add11..840a160 100644
+--- a/Makefile
 b/Makefile
+@@ -67,7 +67,8 @@ GO_LINK_FLAGS := -s -w
+ TAG_VERSION := $(shell git describe --tags)
+ VERSION_FLAG := -X "main.version=$(if 
$(TAG_VERSION),$(TAG_VERSION),$(VERSION))"
+ # Flag to embed the date and time of the build into the binary.
+-DATE_FLAG := -X "main.buildTime=$(shell date)"
++BUILDDATE ?= $(shell date)
++DATE_FLAG := -X "main.buildTime='"$(BUILDDATE)"'"
+ 
+ override GO_LINK_FLAGS += $(VERSION_FLAG) $(DATE_FLAG) -extldflags 
"$(LDFLAGS)"
+ override GO_FLAGS += --ldflags '$(GO_LINK_FLAGS)'


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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:46:06
  Author: jlichtblau
Revision: 563646

archrelease: copy trunk to community-x86_64

Added:
  sqlcipher/repos/community-x86_64/PKGBUILD
(from rev 563645, sqlcipher/trunk/PKGBUILD)
Deleted:
  sqlcipher/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 17:45:57 UTC (rev 563645)
+++ PKGBUILD2020-02-06 17:46:06 UTC (rev 563646)
@@ -1,33 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: flu
-
-pkgname=sqlcipher
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
-arch=('x86_64')
-url="https://www.zetetic.net/sqlcipher/;
-license=('BSD')
-makedepends=('openssl' 'sqlite' 'tcl')
-source=(https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip
-
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
-validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

-sha256sums=('85a64be53f9f02d7bcb67883dacce60b5c8c3de2649e646025c9980ebbe7eb7b'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-tempstore=yes \
-CFLAGS="$CFLAGS -DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-#license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: sqlcipher/repos/community-x86_64/PKGBUILD (from rev 563645, 
sqlcipher/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 17:46:06 UTC (rev 563646)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: flu
+
+pkgname=sqlcipher
+pkgver=4.3.0
+pkgrel=1
+pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
+arch=('x86_64')
+url="https://www.zetetic.net/sqlcipher/;
+license=('BSD')
+makedepends=('openssl' 'sqlite' 'tcl')
+source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz)
+# 
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
+# validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

+sha256sums=('fccb37e440ada898902b294d02cde7af9e8706b185d77ed9f6f4d5b18b4c305f')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-tempstore=yes \
+CFLAGS="$CFLAGS -DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:45:57
  Author: jlichtblau
Revision: 563645

upgpkg: sqlcipher 4.3.0-1 - new upstream release

Modified:
  sqlcipher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:36:48 UTC (rev 563644)
+++ PKGBUILD2020-02-06 17:45:57 UTC (rev 563645)
@@ -2,7 +2,7 @@
 # Contributor: flu
 
 pkgname=sqlcipher
-pkgver=4.2.0
+pkgver=4.3.0
 pkgrel=1
 pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
 arch=('x86_64')
@@ -9,11 +9,10 @@
 url="https://www.zetetic.net/sqlcipher/;
 license=('BSD')
 makedepends=('openssl' 'sqlite' 'tcl')
-source=(https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip
-
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
-validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

-sha256sums=('85a64be53f9f02d7bcb67883dacce60b5c8c3de2649e646025c9980ebbe7eb7b'
-'SKIP')
+source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz)
+# 
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
+# validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

+sha256sums=('fccb37e440ada898902b294d02cde7af9e8706b185d77ed9f6f4d5b18b4c305f')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 17:36:28
  Author: arojas
Revision: 563643

Update to 1.0.0

Modified:
  python-flask-babel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:33:00 UTC (rev 563642)
+++ PKGBUILD2020-02-06 17:36:28 UTC (rev 563643)
@@ -3,8 +3,8 @@
 
 _pipname=Flask-Babel
 pkgname=python-flask-babel
-pkgver=0.12.2
-pkgrel=4
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="Adds i18n/l10n support to Flask applications with the help of the 
Babel library."
 arch=(any)
 url="https://pypi.python.org/pypi/Flask-Babel;
@@ -12,7 +12,7 @@
 depends=(python-flask python-babel python-pytz python-speaklater python-jinja)
 makedepends=(python-setuptools)
 
source=("https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz;)
-sha256sums=('316ad183e42003f3922957fa643d0a1e8e34a0f0301a88c3a8f605bc37ba5c86')
+sha256sums=('d6a70468f9a8919d59fba2a291a003da3a05ff884275dddbd965f3b98b09ab3e')
 
 package() {
   cd $_pipname-$pkgver 


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 17:36:48
  Author: arojas
Revision: 563644

archrelease: copy trunk to community-any

Added:
  python-flask-babel/repos/community-any/PKGBUILD
(from rev 563643, python-flask-babel/trunk/PKGBUILD)
Deleted:
  python-flask-babel/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 17:36:28 UTC (rev 563643)
+++ PKGBUILD2020-02-06 17:36:48 UTC (rev 563644)
@@ -1,23 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: djanku 
-
-_pipname=Flask-Babel
-pkgname=python-flask-babel
-pkgver=0.12.2
-pkgrel=4
-pkgdesc="Adds i18n/l10n support to Flask applications with the help of the 
Babel library."
-arch=(any)
-url="https://pypi.python.org/pypi/Flask-Babel;
-license=(BSD)
-depends=(python-flask python-babel python-pytz python-speaklater python-jinja)
-makedepends=(python-setuptools)
-source=("https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz;)
-sha256sums=('316ad183e42003f3922957fa643d0a1e8e34a0f0301a88c3a8f605bc37ba5c86')
-
-package() {
-  cd $_pipname-$pkgver 
-  python setup.py install --root="$pkgdir/" --optimize=1
-
-  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
-  install -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-flask-babel/repos/community-any/PKGBUILD (from rev 563643, 
python-flask-babel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 17:36:48 UTC (rev 563644)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+# Contributor: djanku 
+
+_pipname=Flask-Babel
+pkgname=python-flask-babel
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Adds i18n/l10n support to Flask applications with the help of the 
Babel library."
+arch=(any)
+url="https://pypi.python.org/pypi/Flask-Babel;
+license=(BSD)
+depends=(python-flask python-babel python-pytz python-speaklater python-jinja)
+makedepends=(python-setuptools)
+source=("https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz;)
+sha256sums=('d6a70468f9a8919d59fba2a291a003da3a05ff884275dddbd965f3b98b09ab3e')
+
+package() {
+  cd $_pipname-$pkgver 
+  python setup.py install --root="$pkgdir/" --optimize=1
+
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+  install -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-02-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 6, 2020 @ 17:33:00
  Author: anatolik
Revision: 563642

FS#65279: use SOURCE_DATE_EPOCH (if presents) as a builddate

Modified:
  vegeta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 17:26:15 UTC (rev 563641)
+++ PKGBUILD2020-02-06 17:33:00 UTC (rev 563642)
@@ -24,7 +24,8 @@
 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'`" ./...
+  BUILDDATE=`date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" 
+'%FT%TZ%z'`
+  CGO_ENABLED=0 go install -v -ldflags "-X main.Version=$pkgver -X 
main.Date='$BUILDDATE'" ./...
 }
 
 check() {


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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:26:15
  Author: jlichtblau
Revision: 563641

archrelease: copy trunk to community-x86_64

Added:
  libalkimia/repos/community-x86_64/PKGBUILD
(from rev 563640, libalkimia/trunk/PKGBUILD)
Deleted:
  libalkimia/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 17:26:07 UTC (rev 563640)
+++ PKGBUILD2020-02-06 17:26:15 UTC (rev 563641)
@@ -1,37 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: gumper 
-
-pkgname=libalkimia
-pkgver=8.0.2
-pkgrel=2
-pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
-arch=('x86_64')
-url="https://community.kde.org/Alkimia/libalkimia;
-license=('LGPL')
-depends=('qt5-webkit' 'knewstuff' 'kdelibs4support' 'hicolor-icon-theme')
-makedepends=('cmake' 'doxygen' 'extra-cmake-modules' 'kdesignerplugin' 
'plasma-framework' 'kpackage' 'kdoctools' 'kinit')
-source=(https://download.kde.org/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
-validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

-  '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

-sha256sums=('616f7736fde8ce8acec4575f14e856fabfefb0961d932198d42fbd9a639a852a'
-'SKIP')
-
-prepare() {
-  cd alkimia-$pkgver
-  sed -e '/set(QML_INSTALL_DIR/d' -i qml/CMakeLists.txt # 
https://bugs.kde.org/show_bug.cgi?id=415868
-}
-
-build() {
-  mkdir build
-  cd build
-
-  cmake ../alkimia-${pkgver}
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: libalkimia/repos/community-x86_64/PKGBUILD (from rev 563640, 
libalkimia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 17:26:15 UTC (rev 563641)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Laurent Carlier 
+# Contributor: gumper 
+
+pkgname=libalkimia
+pkgver=8.0.3
+pkgrel=1
+pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
+arch=('x86_64')
+url="https://community.kde.org/Alkimia/libalkimia;
+license=('LGPL')
+depends=('qt5-webkit' 'knewstuff' 'kdelibs4support' 'hicolor-icon-theme')
+makedepends=('cmake' 'doxygen' 'extra-cmake-modules' 'kdesignerplugin' 
'plasma-framework' 'kpackage' 'kdoctools' 'kinit')
+source=(https://download.kde.org/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
+validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

+  '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

+sha256sums=('1e57ed9279557d8e3575e7556a81b08dff4e882e9f5ad8502da63bfc98c7b33e'
+'SKIP')
+
+build() {
+  mkdir build
+  cd build
+
+  cmake ../alkimia-${pkgver}
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}


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

2020-02-06 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, February 6, 2020 @ 17:26:07
  Author: jlichtblau
Revision: 563640

upgpkg: libalkimia 8.0.3-1 - new upstream release

Modified:
  libalkimia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:54:28 UTC (rev 563639)
+++ PKGBUILD2020-02-06 17:26:07 UTC (rev 563640)
@@ -1,10 +1,10 @@
-# Maintainer: Laurent Carlier 
 # Maintainer: Jaroslav Lichtblau 
+# Contributor: Laurent Carlier 
 # Contributor: gumper 
 
 pkgname=libalkimia
-pkgver=8.0.2
-pkgrel=2
+pkgver=8.0.3
+pkgrel=1
 pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
 arch=('x86_64')
 url="https://community.kde.org/Alkimia/libalkimia;
@@ -14,14 +14,9 @@
 
source=(https://download.kde.org/stable/alkimia/$pkgver/alkimia-$pkgver.tar.xz{,.sig})
 validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C'  # Thomas Baumgart 

   '8C13BC14185A65215B592A2F1243132CD9321771') # Ralf Habacker 

-sha256sums=('616f7736fde8ce8acec4575f14e856fabfefb0961d932198d42fbd9a639a852a'
+sha256sums=('1e57ed9279557d8e3575e7556a81b08dff4e882e9f5ad8502da63bfc98c7b33e'
 'SKIP')
 
-prepare() {
-  cd alkimia-$pkgver
-  sed -e '/set(QML_INSTALL_DIR/d' -i qml/CMakeLists.txt # 
https://bugs.kde.org/show_bug.cgi?id=415868
-}
-
 build() {
   mkdir build
   cd build


[arch-commits] Commit in junit-system-rules/trunk (PKGBUILD)

2020-02-06 Thread Jonas Witschel via arch-commits
Date: Thursday, February 6, 2020 @ 15:54:28
  Author: diabonas
Revision: 563639

Add pkgver() function

Modified:
  junit-system-rules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:53:04 UTC (rev 563638)
+++ PKGBUILD2020-02-06 15:54:28 UTC (rev 563639)
@@ -1,7 +1,7 @@
 # Maintainer: Jonas Witschel 
 pkgname=junit-system-rules
 pkgver=1.19.0
-_commit=f4782ebfd72c08bd3f00aa04ad20fe499c5463b4 # signed commit corresponding 
to tag system-rules-1.19.0
+_commit=f4782ebfd72c08bd3f00aa04ad20fe499c5463b4 # signed commit corresponding 
to tag "system-rules-$pkgver"
 pkgrel=5
 pkgdesc='A collection of JUnit rules for testing code that uses 
java.lang.System'
 arch=('any')
@@ -27,6 +27,11 @@
strip-nondeterminism --timestamp "$SOURCE_DATE_EPOCH" 
"target/system-rules-$pkgver.jar"
 }
 
+pkgver() {
+   cd "$pkgname"
+   git describe --tags | sed 
's/^system-rules-//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
 check() {
cd "$pkgname"
mvn test


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

2020-02-06 Thread Jonas Witschel via arch-commits
Date: Thursday, February 6, 2020 @ 15:53:04
  Author: diabonas
Revision: 563638

Add pkgver() function

Modified:
  clevis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 14:17:50 UTC (rev 563637)
+++ PKGBUILD2020-02-06 15:53:04 UTC (rev 563638)
@@ -23,6 +23,11 @@
 sha512sums=('SKIP')
 validpgpkeys=('7CE2CB3D2AF59FE1EA22F551D0D219ED1F7E762C') # Sergio Correia 

 
+pkgver() {
+   cd "$pkgname"
+   git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
 build() {
cd "$pkgname"
meson --prefix=/usr --libexecdir=/usr/lib --buildtype=plain build


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:43:24
  Author: eworm
Revision: 374964

wireguard-dkms: http -> https

Modified:
  wireguard-dkms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:42:12 UTC (rev 374963)
+++ PKGBUILD2020-02-06 15:43:24 UTC (rev 374964)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc='next generation secure network tunnel - module sources'
 arch=('x86_64')
-url='http://www.wireguard.com/'
+url='https://www.wireguard.com/'
 license=('GPL')
 depends=('dkms')
 provides=('WIREGUARD-MODULE')


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:42:12
  Author: eworm
Revision: 374963

wireguard-tools: http -> https

Modified:
  wireguard-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:40:01 UTC (rev 374962)
+++ PKGBUILD2020-02-06 15:42:12 UTC (rev 374963)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc='next generation secure network tunnel - tools for configuration'
 arch=('x86_64')
-url='http://www.wireguard.com/'
+url='https://www.wireguard.com/'
 license=('GPL')
 depends=('bash')
 optdepends=('openresolv: for DNS functionality'


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:40:01
  Author: eworm
Revision: 374962

archrelease: copy trunk to extra-x86_64

Added:
  wireguard-tools/repos/extra-x86_64/PKGBUILD
(from rev 374961, wireguard-tools/trunk/PKGBUILD)
Deleted:
  wireguard-tools/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 15:39:59 UTC (rev 374961)
+++ PKGBUILD2020-02-06 15:40:01 UTC (rev 374962)
@@ -1,46 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Jason A. Donenfeld 
-
-pkgname=wireguard-tools
-pkgver=1.0.20200206
-pkgrel=1
-pkgdesc='next generation secure network tunnel - tools for configuration'
-arch=('x86_64')
-url='http://www.wireguard.com/'
-license=('GPL')
-depends=('libmnl' 'bash')
-optdepends=('openresolv: for DNS functionality'
-'sudo: elevate privileges'
-'wireguard-dkms: wireguard module, built by dkms'
-'wireguard-arch: wireguard module for linux'
-'wireguard-lts: wireguard module for linux-lts')
-validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

-source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
-sha256sums=('f5207248c6a3c3e3bfc9ab30b91c1897b00802ed861e1f9faaed873366078c64'
-'SKIP')
-
-prepare() {
-   cd ${pkgname}-${pkgver}/
-
-   find contrib/ -name '.gitignore' -delete
-}
-
-build() {
-   cd ${pkgname}-${pkgver}/
-
-   make -C src/
-}
-
-package() {
-   cd ${pkgname}-${pkgver}/
-
-   make -C src/ \
-   DESTDIR="${pkgdir}/" \
-   WITH_BASHCOMPLETION=yes \
-WITH_WGQUICK=yes \
-WITH_SYSTEMDUNITS=yes \
-install
-
-   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
-   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
-}

Copied: wireguard-tools/repos/extra-x86_64/PKGBUILD (from rev 374961, 
wireguard-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 15:40:01 UTC (rev 374962)
@@ -0,0 +1,46 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-tools
+pkgver=1.0.20200206
+pkgrel=2
+pkgdesc='next generation secure network tunnel - tools for configuration'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+depends=('bash')
+optdepends=('openresolv: for DNS functionality'
+'sudo: elevate privileges'
+'wireguard-dkms: wireguard module, built by dkms'
+'wireguard-arch: wireguard module for linux'
+'wireguard-lts: wireguard module for linux-lts')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
+sha256sums=('f5207248c6a3c3e3bfc9ab30b91c1897b00802ed861e1f9faaed873366078c64'
+'SKIP')
+
+prepare() {
+   cd ${pkgname}-${pkgver}/
+
+   find contrib/ -name '.gitignore' -delete
+}
+
+build() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/
+}
+
+package() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
+   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
+}


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:39:59
  Author: eworm
Revision: 374961

upgpkg: wireguard-tools 1.0.20200206-2

drop dependency on libmnl

Modified:
  wireguard-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 15:36:40 UTC (rev 374960)
+++ PKGBUILD2020-02-06 15:39:59 UTC (rev 374961)
@@ -3,12 +3,12 @@
 
 pkgname=wireguard-tools
 pkgver=1.0.20200206
-pkgrel=1
+pkgrel=2
 pkgdesc='next generation secure network tunnel - tools for configuration'
 arch=('x86_64')
 url='http://www.wireguard.com/'
 license=('GPL')
-depends=('libmnl' 'bash')
+depends=('bash')
 optdepends=('openresolv: for DNS functionality'
 'sudo: elevate privileges'
 'wireguard-dkms: wireguard module, built by dkms'


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:36:34
  Author: eworm
Revision: 374959

upgpkg: wireguard-tools 1.0.20200206-1

new upstream release

Modified:
  wireguard-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 14:25:22 UTC (rev 374958)
+++ PKGBUILD2020-02-06 15:36:34 UTC (rev 374959)
@@ -2,7 +2,7 @@
 # Contributor: Jason A. Donenfeld 
 
 pkgname=wireguard-tools
-pkgver=1.0.20200121
+pkgver=1.0.20200206
 pkgrel=1
 pkgdesc='next generation secure network tunnel - tools for configuration'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 'wireguard-lts: wireguard module for linux-lts')
 validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

 
source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
-sha256sums=('15bfdbdbecbd3870ced9a7e68286c871bfcb2071d165f113808081f2e428faa3'
+sha256sums=('f5207248c6a3c3e3bfc9ab30b91c1897b00802ed861e1f9faaed873366078c64'
 'SKIP')
 
 prepare() {


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 15:36:40
  Author: eworm
Revision: 374960

archrelease: copy trunk to extra-x86_64

Added:
  wireguard-tools/repos/extra-x86_64/PKGBUILD
(from rev 374959, wireguard-tools/trunk/PKGBUILD)
Deleted:
  wireguard-tools/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 15:36:34 UTC (rev 374959)
+++ PKGBUILD2020-02-06 15:36:40 UTC (rev 374960)
@@ -1,46 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Jason A. Donenfeld 
-
-pkgname=wireguard-tools
-pkgver=1.0.20200121
-pkgrel=1
-pkgdesc='next generation secure network tunnel - tools for configuration'
-arch=('x86_64')
-url='http://www.wireguard.com/'
-license=('GPL')
-depends=('libmnl' 'bash')
-optdepends=('openresolv: for DNS functionality'
-'sudo: elevate privileges'
-'wireguard-dkms: wireguard module, built by dkms'
-'wireguard-arch: wireguard module for linux'
-'wireguard-lts: wireguard module for linux-lts')
-validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

-source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
-sha256sums=('15bfdbdbecbd3870ced9a7e68286c871bfcb2071d165f113808081f2e428faa3'
-'SKIP')
-
-prepare() {
-   cd ${pkgname}-${pkgver}/
-
-   find contrib/ -name '.gitignore' -delete
-}
-
-build() {
-   cd ${pkgname}-${pkgver}/
-
-   make -C src/
-}
-
-package() {
-   cd ${pkgname}-${pkgver}/
-
-   make -C src/ \
-   DESTDIR="${pkgdir}/" \
-   WITH_BASHCOMPLETION=yes \
-WITH_WGQUICK=yes \
-WITH_SYSTEMDUNITS=yes \
-install
-
-   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
-   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
-}

Copied: wireguard-tools/repos/extra-x86_64/PKGBUILD (from rev 374959, 
wireguard-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 15:36:40 UTC (rev 374960)
@@ -0,0 +1,46 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-tools
+pkgver=1.0.20200206
+pkgrel=1
+pkgdesc='next generation secure network tunnel - tools for configuration'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+depends=('libmnl' 'bash')
+optdepends=('openresolv: for DNS functionality'
+'sudo: elevate privileges'
+'wireguard-dkms: wireguard module, built by dkms'
+'wireguard-arch: wireguard module for linux'
+'wireguard-lts: wireguard module for linux-lts')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
+sha256sums=('f5207248c6a3c3e3bfc9ab30b91c1897b00802ed861e1f9faaed873366078c64'
+'SKIP')
+
+prepare() {
+   cd ${pkgname}-${pkgver}/
+
+   find contrib/ -name '.gitignore' -delete
+}
+
+build() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/
+}
+
+package() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
+   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
+}


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

2020-02-06 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, February 6, 2020 @ 14:25:22
  Author: svenstaro
Revision: 374958

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |  158 ++---
 1 file changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 14:25:17 UTC (rev 374957)
+++ PKGBUILD2020-02-06 14:25:22 UTC (rev 374958)
@@ -1,79 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=440.59
-pkgrel=5
-pkgdesc="NVIDIA drivers for linux"
-arch=('x86_64')
-url="https://www.nvidia.com/;
-makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux-headers')
-license=('custom')
-options=('!strip')
-_pkg="NVIDIA-Linux-x86_64-${pkgver}"
-source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('2e9029bc7c93a99eac7d3a5ca1f21da799da442a70b1708d2db734956f77dd1a1eb300f947b8ab46ff9113048cd63ca57924caa912a3ea6c3d678425182b9711')
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-
-# Gift for linux-rt guys
-sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
-}
-
-build() {
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/src/linux module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
-
-_extradir="/usr/lib/modules/$(
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=440.59
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('2e9029bc7c93a99eac7d3a5ca1f21da799da442a70b1708d2db734956f77dd1a1eb300f947b8ab46ff9113048cd63ca57924caa912a3ea6c3d678425182b9711')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/src/linux module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+_extradir="/usr/lib/modules/$(

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

2020-02-06 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, February 6, 2020 @ 14:25:17
  Author: svenstaro
Revision: 374957

upgpkg: nvidia 440.59-6: rebuild

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 13:56:39 UTC (rev 374956)
+++ PKGBUILD2020-02-06 14:25:17 UTC (rev 374957)
@@ -5,7 +5,7 @@
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
 pkgver=440.59
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


[arch-commits] Commit in lib32-glib2/trunk (PKGBUILD gio-querymodules-32.hook)

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 14:17:50
  Author: eworm
Revision: 563637

alpm-hooks Type: File -> Path

Modified:
  lib32-glib2/trunk/PKGBUILD
  lib32-glib2/trunk/gio-querymodules-32.hook

--+
 PKGBUILD |2 +-
 gio-querymodules-32.hook |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 14:17:00 UTC (rev 563636)
+++ PKGBUILD2020-02-06 14:17:50 UTC (rev 563637)
@@ -19,7 +19,7 @@
 gio-querymodules-32.hook)
 sha256sums=('SKIP'
 '2611ec4c97346c3c4eea61786ee20c801207135a9d52a771f5f340b41bf69fbc'
-'73b6791b58180e2a02fe908938e6c547ee1b263f8c387262f9a8c4105ffa999a')
+'c37b2777d6c7b9d2eb6003d8bdb72175f889013bc4d582b3f7a12fc7419a2d6d')
 
 pkgver() {
   cd glib

Modified: gio-querymodules-32.hook
===
--- gio-querymodules-32.hook2020-02-06 14:17:00 UTC (rev 563636)
+++ gio-querymodules-32.hook2020-02-06 14:17:50 UTC (rev 563637)
@@ -1,5 +1,5 @@
 [Trigger]
-Type = File
+Type = Path
 Operation = Install
 Operation = Upgrade
 Operation = Remove


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

2020-02-06 Thread Christian Hesse via arch-commits
Date: Thursday, February 6, 2020 @ 14:17:00
  Author: eworm
Revision: 563636

alpm-hooks Type: File -> Path

Modified:
  lib32-gdk-pixbuf2/trunk/PKGBUILD
  lib32-gdk-pixbuf2/trunk/gdk-pixbuf-query-loaders-32.hook

--+
 PKGBUILD |2 +-
 gdk-pixbuf-query-loaders-32.hook |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 14:10:49 UTC (rev 563635)
+++ PKGBUILD2020-02-06 14:17:00 UTC (rev 563636)
@@ -15,7 +15,7 @@
 source=("git+https://gitlab.gnome.org/GNOME/gdk-pixbuf.git#commit=$_commit;
 gdk-pixbuf-query-loaders-32.hook)
 sha256sums=('SKIP'
-'3fed95ad7075698313caba78c84b4f7eb9935cc5c8cc99412fc56d8d34ef700f')
+'60f0f8c2c022f9adef0902bdb4b89881e81f3388cd2e2e4830456eea10f49bae')
 
 pkgver() {
   cd gdk-pixbuf

Modified: gdk-pixbuf-query-loaders-32.hook
===
--- gdk-pixbuf-query-loaders-32.hook2020-02-06 14:10:49 UTC (rev 563635)
+++ gdk-pixbuf-query-loaders-32.hook2020-02-06 14:17:00 UTC (rev 563636)
@@ -1,5 +1,5 @@
 [Trigger]
-Type = File
+Type = Path
 Operation = Install
 Operation = Upgrade
 Operation = Remove


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

2020-02-06 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, February 6, 2020 @ 14:10:49
  Author: svenstaro
Revision: 563635

archrelease: copy trunk to community-x86_64

Added:
  broot/repos/community-x86_64/PKGBUILD
(from rev 563634, broot/trunk/PKGBUILD)
Deleted:
  broot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 14:10:42 UTC (rev 563634)
+++ PKGBUILD2020-02-06 14:10:49 UTC (rev 563635)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=0.12.2
-pkgrel=1
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha256sums=('9bba901cb81332e5b120e3bdd2d5445386b61e8a6312eebd48204b4dc03a27e7')
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --locked
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 563634, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 14:10:49 UTC (rev 563635)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=0.13.0
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha256sums=('677854cc1b3a177f2281979008cebc1880b0149ebd7be5dc5c58d162ed1e5522')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-02-06 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, February 6, 2020 @ 14:10:42
  Author: svenstaro
Revision: 563634

upgpkg: broot 0.13.0-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 14:05:58 UTC (rev 563633)
+++ PKGBUILD2020-02-06 14:10:42 UTC (rev 563634)
@@ -3,7 +3,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=0.12.2
+pkgver=0.13.0
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha256sums=('9bba901cb81332e5b120e3bdd2d5445386b61e8a6312eebd48204b4dc03a27e7')
+sha256sums=('677854cc1b3a177f2281979008cebc1880b0149ebd7be5dc5c58d162ed1e5522')
 
 build() {
   cd $pkgname-$pkgver


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

2020-02-06 Thread David Runge via arch-commits
Date: Thursday, February 6, 2020 @ 14:05:41
  Author: dvzrv
Revision: 563632

upgpkg: snd 20.1-1: Upgrading to 20.1. Adding sodeps in package() (as only 
there their bitness is properly picked up).

Modified:
  snd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 13:56:47 UTC (rev 563631)
+++ PKGBUILD2020-02-06 14:05:41 UTC (rev 563632)
@@ -3,7 +3,7 @@
 # Contributor: Juergen Hoetzel 
 
 pkgname=snd
-pkgver=20.0
+pkgver=20.1
 pkgrel=1
 pkgdesc="An advanced sound editor"
 arch=('x86_64')
@@ -10,10 +10,12 @@
 url="https://ccrma.stanford.edu/software/snd/;
 license=('custom:free')
 groups=('pro-audio')
-depends=('alsa-lib' 'cairo' 'fftw' 'glibc' 'glib2' 'gmp' 'gsl' 'gtk3'
-'libjack.so' 'libmpc' 'libsamplerate' 'pango' 'ruby')
-makedepends=('flac' 'gendesk' 'glu' 'ladspa' 'libpulse' 'libxpm' 'mpg123'
-'openmotif' 'speex' 'timidity++' 'vorbis-tools' 'wavpack')
+depends=('cairo' 'gdk-pixbuf2' 'glibc' 'glib2' 'gmp' 'gsl' 'gtk3' 'libmpc'
+'mpfr' 'pango' 'ruby')
+# TODO: maybe replace mpg123 with mpg321
+makedepends=('alsa-lib' 'fftw' 'flac' 'gendesk' 'glu' 'jack' 'ladspa'
+'libpulse' 'libsamplerate' 'libxpm' 'mpg123' 'openmotif' 'speex' 'timidity++'
+'vorbis-tools' 'wavpack')
 optdepends=('wavpack: For wav support'
 'flac: For flac support'
 'speex: For speex support'
@@ -22,7 +24,7 @@
 'timidity++: For MIDI to WAVE support'
 'vorbis-tools: For OGG support')
 
source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('4585df8639488a41fb64ff696fa666dd677623bc59459a178682602b49ed339a86ce9f3f215cba7af0104205edf7f5368c90fd719e28db5af1161d1b159ed25b')
+sha512sums=('f0e972ad6fa16765a3e48db2ae5427a3ef690adcbfa87e3e084b4658ff49002015c3e353c1ce156894271bb4752d4c0866c758f2592465d04c13551da14569c6')
 
 prepare() {
   cd "${pkgname}-${pkgver}"
@@ -49,6 +51,7 @@
 }
 
 package() {
+  depends+=('libasound.so' 'libfftw3.so' 'libjack.so' 'libsamplerate.so')
   cd "${pkgname}-${pkgver}"
   make prefix="${pkgdir}/usr" install
   install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications/"


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

2020-02-06 Thread David Runge via arch-commits
Date: Thursday, February 6, 2020 @ 14:05:58
  Author: dvzrv
Revision: 563633

archrelease: copy trunk to community-x86_64

Added:
  snd/repos/community-x86_64/PKGBUILD
(from rev 563632, snd/trunk/PKGBUILD)
Deleted:
  snd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 14:05:41 UTC (rev 563632)
+++ PKGBUILD2020-02-06 14:05:58 UTC (rev 563633)
@@ -1,63 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: Juergen Hoetzel 
-
-pkgname=snd
-pkgver=20.0
-pkgrel=1
-pkgdesc="An advanced sound editor"
-arch=('x86_64')
-url="https://ccrma.stanford.edu/software/snd/;
-license=('custom:free')
-groups=('pro-audio')
-depends=('alsa-lib' 'cairo' 'fftw' 'glibc' 'glib2' 'gmp' 'gsl' 'gtk3'
-'libjack.so' 'libmpc' 'libsamplerate' 'pango' 'ruby')
-makedepends=('flac' 'gendesk' 'glu' 'ladspa' 'libpulse' 'libxpm' 'mpg123'
-'openmotif' 'speex' 'timidity++' 'vorbis-tools' 'wavpack')
-optdepends=('wavpack: For wav support'
-'flac: For flac support'
-'speex: For speex support'
-'mpg123: For MPEG support'
-'pulseaudio: For pulseaudio support'
-'timidity++: For MIDI to WAVE support'
-'vorbis-tools: For OGG support')
-source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('4585df8639488a41fb64ff696fa666dd677623bc59459a178682602b49ed339a86ce9f3f215cba7af0104205edf7f5368c90fd719e28db5af1161d1b159ed25b')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # create XDG desktop file, as the default is broken
-  gendesk -f -n \
-  --pkgname "${pkgname}" \
-  --name "${pkgname}" \
-  --exec "${pkgname}" \
-  --genericname "Sound Editor" \
-  --categories "AudioVideo;Audio"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --with-alsa \
-  --with-gmp \
-  --with-gtk \
-  --with-jack \
-  --with-ladspa \
-  --with-pulseaudio \
-  --with-ruby
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make prefix="${pkgdir}/usr" install
-  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications/"
-  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # docs
-  install -vDm 644 {{HISTORY,README}.Snd,NEWS} \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-  install -vDm 644 *.html -t "${pkgdir}/usr/share/doc/${pkgname}/html"
-  install -vDm 644 pix/*.png -t "${pkgdir}/usr/share/doc/${pkgname}/html/pix"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: snd/repos/community-x86_64/PKGBUILD (from rev 563632, 
snd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 14:05:58 UTC (rev 563633)
@@ -0,0 +1,66 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Juergen Hoetzel 
+
+pkgname=snd
+pkgver=20.1
+pkgrel=1
+pkgdesc="An advanced sound editor"
+arch=('x86_64')
+url="https://ccrma.stanford.edu/software/snd/;
+license=('custom:free')
+groups=('pro-audio')
+depends=('cairo' 'gdk-pixbuf2' 'glibc' 'glib2' 'gmp' 'gsl' 'gtk3' 'libmpc'
+'mpfr' 'pango' 'ruby')
+# TODO: maybe replace mpg123 with mpg321
+makedepends=('alsa-lib' 'fftw' 'flac' 'gendesk' 'glu' 'jack' 'ladspa'
+'libpulse' 'libsamplerate' 'libxpm' 'mpg123' 'openmotif' 'speex' 'timidity++'
+'vorbis-tools' 'wavpack')
+optdepends=('wavpack: For wav support'
+'flac: For flac support'
+'speex: For speex support'
+'mpg123: For MPEG support'
+'pulseaudio: For pulseaudio support'
+'timidity++: For MIDI to WAVE support'
+'vorbis-tools: For OGG support')
+source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f0e972ad6fa16765a3e48db2ae5427a3ef690adcbfa87e3e084b4658ff49002015c3e353c1ce156894271bb4752d4c0866c758f2592465d04c13551da14569c6')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # create XDG desktop file, as the default is broken
+  gendesk -f -n \
+  --pkgname "${pkgname}" \
+  --name "${pkgname}" \
+  --exec "${pkgname}" \
+  --genericname "Sound Editor" \
+  --categories "AudioVideo;Audio"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --with-alsa \
+  --with-gmp \
+  --with-gtk \
+  --with-jack \
+  --with-ladspa \
+  --with-pulseaudio \
+  --with-ruby
+  make
+}
+
+package() {
+  depends+=('libasound.so' 'libfftw3.so' 'libjack.so' 'libsamplerate.so')
+  cd "${pkgname}-${pkgver}"
+  make prefix="${pkgdir}/usr" 

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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:56:30
  Author: arodseth
Revision: 563629

upgpkg: hwinfo 21.68-2

Modified:
  hwinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 13:47:13 UTC (rev 563628)
+++ PKGBUILD2020-02-06 13:56:30 UTC (rev 563629)
@@ -5,7 +5,7 @@
 
 pkgname=hwinfo
 pkgver=21.68
-pkgrel=1
+pkgrel=2
 pkgdesc='Hardware detection tool from openSUSE'
 arch=(x86_64)
 url='https://github.com/openSUSE/hwinfo'
@@ -36,5 +36,5 @@
   mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
 }
 
-# getver: https://github.com/openSUSE/hwinfo/releases
+# getver: github.com/openSUSE/hwinfo/releases
 # vim: ts=2 sw=2 et:


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:56:36
  Author: arodseth
Revision: 563630

archrelease: copy trunk to community-x86_64

Added:
  hwinfo/repos/community-x86_64/PKGBUILD
(from rev 563629, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-x86_64/custom_ioctl.patch
(from rev 563629, hwinfo/trunk/custom_ioctl.patch)
Deleted:
  hwinfo/repos/community-x86_64/PKGBUILD
  hwinfo/repos/community-x86_64/custom_ioctl.patch

+
 PKGBUILD   |   80 +--
 custom_ioctl.patch |   32 ++--
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 13:56:30 UTC (rev 563629)
+++ PKGBUILD2020-02-06 13:56:36 UTC (rev 563630)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Kaiting Chen 
-# Contributor: Gergely Imreh 
-# Contributor: champus, madeye, ranguvar and ninja_pt
-
-pkgname=hwinfo
-pkgver=21.68
-pkgrel=1
-pkgdesc='Hardware detection tool from openSUSE'
-arch=(x86_64)
-url='https://github.com/openSUSE/hwinfo'
-license=(GPL2)
-depends=(libx86emu perl)
-makedepends=(flex git sysfsutils)
-options=(!emptydirs)
-source=("$pkgname-$pkgver.tgz::https://github.com/openSUSE/$pkgname/archive/$pkgver.tar.gz;
-custom_ioctl.patch)
-sha256sums=('066c3cd8802d81b5a55a3a6ba55095eba613e817c60ebae8be3465e7e702c216'
-'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p0 -i ../custom_ioctl.patch
-  echo 'touch changelog' > git2log
-}
-
-build() {
-  make -C $pkgname-$pkgver -j1 \
-HWINFO_VERSION="$pkgver" \
-CFLAGS+="-fPIC -I$srcdir/$pkgname-$pkgver/src/hd" \
-LIBDIR=/usr/lib
-}
-
-package() {
-  make -C $pkgname-$pkgver LIBDIR=/usr/lib DESTDIR="$pkgdir" install
-  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
-}
-
-# getver: https://github.com/openSUSE/hwinfo/releases
-# vim: ts=2 sw=2 et:

Copied: hwinfo/repos/community-x86_64/PKGBUILD (from rev 563629, 
hwinfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 13:56:36 UTC (rev 563630)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Kaiting Chen 
+# Contributor: Gergely Imreh 
+# Contributor: champus, madeye, ranguvar and ninja_pt
+
+pkgname=hwinfo
+pkgver=21.68
+pkgrel=2
+pkgdesc='Hardware detection tool from openSUSE'
+arch=(x86_64)
+url='https://github.com/openSUSE/hwinfo'
+license=(GPL2)
+depends=(libx86emu perl)
+makedepends=(flex git sysfsutils)
+options=(!emptydirs)
+source=("$pkgname-$pkgver.tgz::https://github.com/openSUSE/$pkgname/archive/$pkgver.tar.gz;
+custom_ioctl.patch)
+sha256sums=('066c3cd8802d81b5a55a3a6ba55095eba613e817c60ebae8be3465e7e702c216'
+'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i ../custom_ioctl.patch
+  echo 'touch changelog' > git2log
+}
+
+build() {
+  make -C $pkgname-$pkgver -j1 \
+HWINFO_VERSION="$pkgver" \
+CFLAGS+="-fPIC -I$srcdir/$pkgname-$pkgver/src/hd" \
+LIBDIR=/usr/lib
+}
+
+package() {
+  make -C $pkgname-$pkgver LIBDIR=/usr/lib DESTDIR="$pkgdir" install
+  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
+}
+
+# getver: github.com/openSUSE/hwinfo/releases
+# vim: ts=2 sw=2 et:

Deleted: custom_ioctl.patch
===
--- custom_ioctl.patch  2020-02-06 13:56:30 UTC (rev 563629)
+++ custom_ioctl.patch  2020-02-06 13:56:36 UTC (rev 563630)
@@ -1,16 +0,0 @@
 src/hd/kbd.c.old   2010-03-15 23:37:52.0 +0800
-+++ src/hd/kbd.c   2010-03-22 10:50:58.0 +0800
-@@ -146,11 +146,13 @@
-   }
- 
-   if(!dev && (fd = open(DEV_CONSOLE, O_RDWR | O_NONBLOCK | O_NOCTTY)) >= 0) {
-+/* Removing since TIOCGDEV is not supported by the mainline kernel
- if(ioctl(fd, TIOCGDEV, ) != -1) {
-   tty_major = (u >> 8) & 0xfff;
-   tty_minor = (u & 0xff) | ((u >> 12) & 0xfff00);
-   ADD2LOG(DEV_CONSOLE ": major %u, minor %u\n", tty_major, tty_minor);
- }
-+*/
- 
- if (0)
-   ;

Copied: hwinfo/repos/community-x86_64/custom_ioctl.patch (from rev 563629, 
hwinfo/trunk/custom_ioctl.patch)
===
--- custom_ioctl.patch  (rev 0)
+++ custom_ioctl.patch  2020-02-06 13:56:36 UTC (rev 563630)
@@ -0,0 +1,16 @@
+--- src/hd/kbd.c.old   2010-03-15 23:37:52.0 +0800
 src/hd/kbd.c   2010-03-22 10:50:58.0 +0800
+@@ -146,11 +146,13 @@
+   }
+ 
+   if(!dev && (fd = open(DEV_CONSOLE, O_RDWR | O_NONBLOCK | O_NOCTTY)) >= 0) {
++/* Removing since TIOCGDEV is not supported by the mainline kernel
+ if(ioctl(fd, TIOCGDEV, ) != -1) {
+   tty_major = (u >> 8) & 0xfff;
+   tty_minor = (u & 0xff) | ((u >> 12) & 0xfff00);
+  

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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:47:13
  Author: arodseth
Revision: 563628

archrelease: copy trunk to community-x86_64

Added:
  libx86emu/repos/community-x86_64/PKGBUILD
(from rev 563627, libx86emu/trunk/PKGBUILD)
Deleted:
  libx86emu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 13:47:06 UTC (rev 563627)
+++ PKGBUILD2020-02-06 13:47:13 UTC (rev 563628)
@@ -1,33 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Kaiting Chen 
-# Contributor: Gergely Imreh 
-
-pkgname=libx86emu
-pkgver=2.4
-pkgrel=1
-pkgdesc='x86 emulation library'
-arch=(x86_64)
-url='https://github.com/wfeldt/libx86emu'
-license=(BSD)
-makedepends=(git setconf)
-source=("git+https://github.com/wfeldt/libx86emu#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's/-shared -Wl/-shared '"$LDFLAGS"'/g' "$pkgname/Makefile"
-  setconf "$pkgname/Makefile" \
-CFLAGS="$CFLAGS -shared -fPIC -fvisibility=hidden -fomit-frame-pointer -w"
-}
-
-build() {
-  make -C "$pkgname" LIBDIR=/usr/lib
-}
-
-package() {
-  make -C "$pkgname" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
-  install -Dm644 "$pkgname/LICENSE" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/wfeldt/libx86emu/releases
-# vim: ts=2 sw=2 et:

Copied: libx86emu/repos/community-x86_64/PKGBUILD (from rev 563627, 
libx86emu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 13:47:13 UTC (rev 563628)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Kaiting Chen 
+# Contributor: Gergely Imreh 
+
+pkgname=libx86emu
+pkgver=3.1
+pkgrel=1
+pkgdesc='x86 emulation library'
+arch=(x86_64)
+url='https://github.com/wfeldt/libx86emu'
+license=(BSD)
+makedepends=(git setconf)
+source=("git+$url#commit=0aed125dcc2214ccf9e1a52e9925ae654cefbaf1") # 3.1
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-shared -Wl/-shared '"$LDFLAGS"'/g' "$pkgname/Makefile"
+  setconf "$pkgname/Makefile" \
+CFLAGS="$CFLAGS -shared -fPIC -fvisibility=hidden -fomit-frame-pointer -w"
+}
+
+build() {
+  make -C "$pkgname" LIBDIR=/usr/lib
+}
+
+package() {
+  make -C "$pkgname" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname/LICENSE" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/wfeldt/libx86emu/releases
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:47:06
  Author: arodseth
Revision: 563627

upgpkg: libx86emu 3.1-1

Modified:
  libx86emu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 13:44:27 UTC (rev 563626)
+++ PKGBUILD2020-02-06 13:47:06 UTC (rev 563627)
@@ -3,7 +3,7 @@
 # Contributor: Gergely Imreh 
 
 pkgname=libx86emu
-pkgver=2.4
+pkgver=3.1
 pkgrel=1
 pkgdesc='x86 emulation library'
 arch=(x86_64)
@@ -10,8 +10,8 @@
 url='https://github.com/wfeldt/libx86emu'
 license=(BSD)
 makedepends=(git setconf)
-source=("git+https://github.com/wfeldt/libx86emu#tag=$pkgver;)
-md5sums=('SKIP')
+source=("git+$url#commit=0aed125dcc2214ccf9e1a52e9925ae654cefbaf1") # 3.1
+sha256sums=('SKIP')
 
 prepare() {
   sed -i 's/-shared -Wl/-shared '"$LDFLAGS"'/g' "$pkgname/Makefile"


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:44:27
  Author: arodseth
Revision: 563626

archrelease: copy trunk to community-x86_64

Added:
  opusfile/repos/community-x86_64/PKGBUILD
(from rev 563625, opusfile/trunk/PKGBUILD)
Deleted:
  opusfile/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 13:44:22 UTC (rev 563625)
+++ PKGBUILD2020-02-06 13:44:27 UTC (rev 563626)
@@ -1,31 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: DrZaius 
-
-pkgname=opusfile
-pkgver=0.11
-pkgrel=1
-pkgdesc='Library for opening, seeking, and decoding .opus files'
-arch=('x86_64')
-url='https://opus-codec.org/'
-license=('BSD')
-depends=('libogg' 'openssl' 'opus')
-source=("https://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz;)
-sha256sums=('74ce9b6cf4da103133e7b5c95df810ceb7195471e1162ed57af415fabf5603bf')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/opusfile/LICENSE"
-}
-
-# getver: github.com/xiph/opusfile/tags
-# vim: ts=2 sw=2 et:

Copied: opusfile/repos/community-x86_64/PKGBUILD (from rev 563625, 
opusfile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 13:44:27 UTC (rev 563626)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: DrZaius 
+
+pkgname=opusfile
+pkgver=0.11
+pkgrel=2
+pkgdesc='Library for opening, seeking, and decoding .opus files'
+arch=(x86_64)
+url='https://opus-codec.org/'
+license=(BSD)
+depends=(libogg openssl opus)
+source=("https://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz;)
+sha256sums=('74ce9b6cf4da103133e7b5c95df810ceb7195471e1162ed57af415fabf5603bf')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/opusfile/LICENSE"
+}
+
+# getver: github.com/xiph/opusfile/tags
+# vim: ts=2 sw=2 et:


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

2020-02-06 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 6, 2020 @ 13:44:22
  Author: arodseth
Revision: 563625

upgpkg: opusfile 0.11-2

Modified:
  opusfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 12:21:25 UTC (rev 563624)
+++ PKGBUILD2020-02-06 13:44:22 UTC (rev 563625)
@@ -4,18 +4,17 @@
 
 pkgname=opusfile
 pkgver=0.11
-pkgrel=1
+pkgrel=2
 pkgdesc='Library for opening, seeking, and decoding .opus files'
-arch=('x86_64')
+arch=(x86_64)
 url='https://opus-codec.org/'
-license=('BSD')
-depends=('libogg' 'openssl' 'opus')
+license=(BSD)
+depends=(libogg openssl opus)
 source=("https://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz;)
 sha256sums=('74ce9b6cf4da103133e7b5c95df810ceb7195471e1162ed57af415fabf5603bf')
 
 build() {
   cd "$pkgname-$pkgver"
-
   ./configure --prefix=/usr
   make
 }
@@ -22,7 +21,6 @@
 
 package() {
   cd "$pkgname-$pkgver"
-
   make DESTDIR="$pkgdir" install
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/opusfile/LICENSE"
 }


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 12:47:45
  Author: arojas
Revision: 374954

archrelease: copy trunk to extra-x86_64

Added:
  yakuake/repos/extra-x86_64/PKGBUILD
(from rev 374953, yakuake/trunk/PKGBUILD)
Deleted:
  yakuake/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 12:47:34 UTC (rev 374953)
+++ PKGBUILD2020-02-06 12:47:45 UTC (rev 374954)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: James Rayner 
-# Contributor: leeghoofd 
-
-pkgname=yakuake
-pkgver=19.12.1
-pkgrel=1
-pkgdesc="A drop-down terminal emulator based on KDE konsole technology"
-arch=(x86_64)
-url='https://yakuake.kde.org/'
-license=(GPL)
-depends=(konsole kwayland hicolor-icon-theme)
-makedepends=(extra-cmake-modules)
-groups=(kdeutils kde-applications)
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('abff4f358f41f544b2e12c340a74d92482241b1b95906b14add7810384602e42'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: yakuake/repos/extra-x86_64/PKGBUILD (from rev 374953, 
yakuake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 12:47:45 UTC (rev 374954)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: James Rayner 
+# Contributor: leeghoofd 
+
+pkgname=yakuake
+pkgver=19.12.2
+pkgrel=1
+pkgdesc="A drop-down terminal emulator based on KDE konsole technology"
+arch=(x86_64)
+url='https://kde.org/applications/system/org.kde.yakuake'
+license=(GPL)
+depends=(konsole kwayland hicolor-icon-theme)
+makedepends=(extra-cmake-modules)
+groups=(kdeutils kde-applications)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f6dc8e05e1649cccd1702e5cc8e6f5e04d9860e67b864a4745945be50cee43ac'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 12:47:34
  Author: arojas
Revision: 374953

archrelease: copy trunk to extra-x86_64

Added:
  sweeper/repos/extra-x86_64/PKGBUILD
(from rev 374952, sweeper/trunk/PKGBUILD)
Deleted:
  sweeper/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 12:47:21 UTC (rev 374952)
+++ PKGBUILD2020-02-06 12:47:34 UTC (rev 374953)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=sweeper
-pkgver=19.12.1
-pkgrel=1
-pkgdesc='System Cleaner'
-url='https://kde.org/applications/utilities/sweeper'
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(kactivities-stats kio)
-makedepends=(extra-cmake-modules kdoctools)
-groups=(kde-applications kdeutils)
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('50b1464c08b738f4af4c78b4edc291ce93877a52831b810cd12c8ca6a4df0cf9'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../sweeper-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: sweeper/repos/extra-x86_64/PKGBUILD (from rev 374952, 
sweeper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 12:47:34 UTC (rev 374953)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=sweeper
+pkgver=19.12.2
+pkgrel=1
+pkgdesc='System Cleaner'
+url='https://kde.org/applications/utilities/sweeper'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kactivities-stats kio)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kdeutils)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('bbe3b96824d1252f6a448695e787152f3c76ede581bcb85a322afe3846c3640f'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../sweeper-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 12:47:55
  Author: arojas
Revision: 374955

archrelease: copy trunk to extra-x86_64

Added:
  kimagemapeditor/repos/extra-x86_64/PKGBUILD
(from rev 374954, kimagemapeditor/trunk/PKGBUILD)
Deleted:
  kimagemapeditor/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 12:47:45 UTC (rev 374954)
+++ PKGBUILD2020-02-06 12:47:55 UTC (rev 374955)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kimagemapeditor
-pkgver=19.12.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc="HTML Image Map Editor"
-url='https://www.kde.org'
-license=(GPL LGPL FDL)
-groups=(kde-applications kdewebdev)
-depends=(qt5-webengine kparts)
-makedepends=(extra-cmake-modules kdoctools)
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9869f3a060dc44f2fad0646fa9c0f1c2924d68c3cc3de5147170456f27a39e77'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kimagemapeditor/repos/extra-x86_64/PKGBUILD (from rev 374954, 
kimagemapeditor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 12:47:55 UTC (rev 374955)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kimagemapeditor
+pkgver=19.12.2
+pkgrel=1
+arch=(x86_64)
+pkgdesc="HTML Image Map Editor"
+url='https://www.kde.org'
+license=(GPL LGPL FDL)
+groups=(kde-applications kdewebdev)
+depends=(qt5-webengine kparts)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c86c2d11ac4754e3ba04327ef8802d573114f5534af014cd00709f5e185b948d'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 12:47:09
  Author: arojas
Revision: 374951

archrelease: copy trunk to extra-x86_64

Added:
  kwalletmanager/repos/extra-x86_64/PKGBUILD
(from rev 374950, kwalletmanager/trunk/PKGBUILD)
Deleted:
  kwalletmanager/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 12:47:00 UTC (rev 374950)
+++ PKGBUILD2020-02-06 12:47:09 UTC (rev 374951)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwalletmanager
-pkgver=19.12.1
-pkgrel=1
-pkgdesc='Wallet management tool'
-arch=(x86_64)
-url='https://www.kde.org/applications/system/kwalletmanager/'
-license=(LGPL)
-depends=(kio hicolor-icon-theme)
-makedepends=(extra-cmake-modules kcmutils kdoctools)
-groups=(kde-applications kdeutils)
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('b2370fbf559a3b8e8551daedada9c97d07041388dc74f8bd1286c64ab18b936b'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: kwalletmanager/repos/extra-x86_64/PKGBUILD (from rev 374950, 
kwalletmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 12:47:09 UTC (rev 374951)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwalletmanager
+pkgver=19.12.2
+pkgrel=1
+pkgdesc='Wallet management tool'
+arch=(x86_64)
+url='https://www.kde.org/applications/system/kwalletmanager/'
+license=(LGPL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kcmutils kdoctools)
+groups=(kde-applications kdeutils)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9ea76f109ec6910df6672aec25b50b3baa965437beec678ef5e21f1f66ab89fb'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 12:47:00
  Author: arojas
Revision: 374950

archrelease: copy trunk to extra-x86_64

Added:
  ktimer/repos/extra-x86_64/PKGBUILD
(from rev 374949, ktimer/trunk/PKGBUILD)
Deleted:
  ktimer/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-06 12:46:50 UTC (rev 374949)
+++ PKGBUILD2020-02-06 12:47:00 UTC (rev 374950)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=ktimer
-pkgver=19.12.1
-pkgrel=1
-pkgdesc='Countdown Launcher'
-url='https://kde.org/applications/utilities/ktimer/'
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(kio hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools)
-groups=(kde-applications kdeutils)
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('0c5fac1baddfa3144b8930f3d42b78a3eb8681d642a3c3339c903ad2cb30a2ba'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ktimer/repos/extra-x86_64/PKGBUILD (from rev 374949, 
ktimer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-06 12:47:00 UTC (rev 374950)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktimer
+pkgver=19.12.2
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='https://kde.org/applications/utilities/ktimer/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kdeutils)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e6715f28f26c36033c991f7b2c6c4db40c60b15e7df3fea52aaac997234c253f'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


  1   2   3   4   >