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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:48:10
  Author: arojas
Revision: 421520

archrelease: copy trunk to community-x86_64

Added:
  kea/repos/community-x86_64/PKGBUILD
(from rev 421519, kea/trunk/PKGBUILD)
  kea/repos/community-x86_64/fix-scripts-include-path.patch
(from rev 421519, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-x86_64/kea-dhcp4.service
(from rev 421519, kea/trunk/kea-dhcp4.service)
  kea/repos/community-x86_64/kea-dhcp6.service
(from rev 421519, kea/trunk/kea-dhcp6.service)
  kea/repos/community-x86_64/tmpfiles-kea.conf
(from rev 421519, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-x86_64/PKGBUILD
  kea/repos/community-x86_64/fix-scripts-include-path.patch
  kea/repos/community-x86_64/kea-dhcp4.service
  kea/repos/community-x86_64/kea-dhcp6.service
  kea/repos/community-x86_64/tmpfiles-kea.conf

+
 PKGBUILD   |  158 +--
 fix-scripts-include-path.patch |  532 +++
 kea-dhcp4.service  |   24 -
 kea-dhcp6.service  |   24 -
 tmpfiles-kea.conf  |2 
 5 files changed, 370 insertions(+), 370 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:47:43 UTC (rev 421519)
+++ PKGBUILD2019-01-10 07:48:10 UTC (rev 421520)
@@ -1,79 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: nfnty
-pkgname='kea'
-pkgver=1.4.0.P1
-_upstreamver=1.4.0-P1
-pkgrel=4
-pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
-arch=('x86_64')
-url='http://kea.isc.org'
-license=('MPL2')
-depends=('botan>=2.7.0' 'boost-libs' 'log4cplus' 'libmariadbclient' 
'postgresql-libs')
-makedepends=('boost'
- 'postgresql' # Needed for some headers
- 'python') # kea-shell
-optdepends=('mariadb: lease information database'
-'postgresql: lease information database'
-'python: to use kea-shell'
-'kea-devel-docs: developer documentation')
-# Checks are disabled for now
-#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
-backup=('etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
-
-source=(https://ftp.isc.org/isc/kea/${_upstreamver}/kea-${_upstreamver}.tar.gz{,.asc}
-fix-scripts-include-path.patch
-tmpfiles-kea.conf
-kea-dhcp4.service
-kea-dhcp6.service
-
kea-boost-1.68.patch::"https://github.com/isc-projects/kea/commit/4a88f764.patch;)
-sha512sums=('beb3baae09510de970fb5c1a301c57d64fc56d825d964f413357ba448b993d0a4f714d4efa4da166d3c06623a9ae78b70c25b61793e696551cb97b7e08d5e634'
-'SKIP'
-
'337c1e8689ce569bb8b085261e946743bc88d62ffdd264f4e8f271a6ca92c5bcda2329376aec4ffacd96187c7dba30450b8d5a9e2929f0a559ef8ecba7c0bafc'
-
'13a473bea4f8a1ba40f5667b880010590c5fddecaa76c360113e977c9ab3898558141cda17000def7b1c592b7dc6f8d5a508752351c601f6484abd775b60d214'
-
'873612cdab1c5d72105ccf379885975405e10b4e4b3b93b258293fbd304ea9f6a47e5af5357b130e603d713691d4980d8868a5ed23376e50aba6eb81b348b8cb'
-
'48cd98cfc2a82b4d5f6350e70ba7048976a633ceae3c8f405824d2131700d78a9eeb885a41634a393e3cdaacc9836dda45343b7ae81c44427b46e758d6520f6c'
-
'c1d2d2c4ee980d0485d50c285a441e343e2bf64278aaa98de72b20e45fd956b4fb8fb01a7ad35a5d255ac9a942cb4aafbaac753afd452fd0ed646f681250fbf6')
-validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${_upstreamver}"
-  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
-  # Also, it fallbacks to the absolute path inside the chrooted build dir,
-  # which will certainly not exist on the target system...
-  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
-
-  patch -p1 -i ../kea-boost-1.68.patch # Fix build with boost 1.68
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${_upstreamver}"
-  autoreconf --install
-  ./configure \
-  --prefix='/usr' \
-  --sbindir='/usr/bin' \
-  --libexecdir='/usr/bin' \
-  --sysconfdir='/etc' \
-  --localstatedir='/var' \
-  --with-dhcp-mysql \
-  --with-dhcp-pgsql \
-  --enable-shell
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${_upstreamver}"
-  # Disable for now, some tests fail (for instance dhcp-ddns.sigterm_test)
-  #make check
-}
-
-package() {
-  cd "${srcdir}/kea-${_upstreamver}"
-  make DESTDIR="${pkgdir}" install
-  # Handle /var/run -> /run symlink
-  rmdir "${pkgdir}"/var/run/kea
-  rmdir "${pkgdir}"/var/run
-  install -Dm644 "${srcdir}"/tmpfiles-kea.conf 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-  # Systemd service files
-  install -Dm644 

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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:47:43
  Author: arojas
Revision: 421519

botan 2.9 rebuild

Modified:
  kea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 07:24:18 UTC (rev 421518)
+++ PKGBUILD2019-01-10 07:47:43 UTC (rev 421519)
@@ -3,7 +3,7 @@
 pkgname='kea'
 pkgver=1.4.0.P1
 _upstreamver=1.4.0-P1
-pkgrel=4
+pkgrel=5
 pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
 arch=('x86_64')
 url='http://kea.isc.org'


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:23:54
  Author: arojas
Revision: 421517

botan 2.9 rebuild

Modified:
  powerdns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 07:02:34 UTC (rev 421516)
+++ PKGBUILD2019-01-10 07:23:54 UTC (rev 421517)
@@ -7,7 +7,7 @@
 
 pkgname=powerdns
 pkgver=4.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Authoritative DNS server'
 url='https://www.powerdns.com/'
 arch=('x86_64')


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:24:18
  Author: arojas
Revision: 421518

archrelease: copy trunk to community-x86_64

Added:
  powerdns/repos/community-x86_64/PKGBUILD
(from rev 421517, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-x86_64/sysusers.conf
(from rev 421517, powerdns/trunk/sysusers.conf)
Deleted:
  powerdns/repos/community-x86_64/PKGBUILD
  powerdns/repos/community-x86_64/sysusers.conf

---+
 PKGBUILD  |  156 
 sysusers.conf |2 
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:23:54 UTC (rev 421517)
+++ PKGBUILD2019-01-10 07:24:18 UTC (rev 421518)
@@ -1,78 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Kevin Mihelich 
-# Contributor: Remi Gacogne 
-# Contributor: Pieter Lexis 
-
-pkgname=powerdns
-pkgver=4.1.5
-pkgrel=1
-pkgdesc='Authoritative DNS server'
-url='https://www.powerdns.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('boost-libs' 'botan>=2.7.0' 'libsodium' 'luajit' 'openssl' 'protobuf'
- 'sqlite' 'systemd' 'lua')
-makedepends=('boost' 'geoip' 'libldap' 'libmariadbclient' 'opendbx'
- 'postgresql-libs' 'tinycdb' 'unixodbc' 'yaml-cpp')
-optdepends=('geoip: GeoIP backend'
-'libmariadbclient: MariaDB/MySQL and MyDNS backend'
-'libldap: LDAP backend'
-'opendbx: OpenDBX backend'
-'postgresql-libs: PostgreSQL backend'
-'unixodbc: ODBC backend'
-'tinycdb: TinyDNS backend'
-'yaml-cpp: GeoIP backend')
-provides=('pdns')
-conflicts=('pdns')
-backup=('etc/powerdns/pdns.conf')
-source=(https://downloads.powerdns.com/releases/pdns-${pkgver}.tar.bz2{,.asc}
-sysusers.conf)
-sha512sums=('c5c42975e6402f17b3cdf947a26c944a462d39c23bef44b6f6e823b8c9459be9e8bd750aa0481f9f707eec8b124c4edc4769a6241c75836583ee0bbe111e33e5'
-'SKIP'
-
'522bde8b76367db6edd461fca8f81d50304a4d764addf33774b3e2c5c93a9e72d93993f54ddd4ee887ceeccf70280aceea3ffaf6370d26310e0a7ebbbf61f26a')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'   # Winkels, Erik 

-  '16E12866B7738C73976A57436FFC33439B0D04DF'   # Peter van Dijk 

-  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3' ) # Pieter Lexis 

-
-prepare() {
-  cd pdns-${pkgver}
-  # Patch the Makefile.in's so /powerdns is used instead of /pdns (for e.g. 
$LIBDIR)
-  # This allows for running pdns_server without setting `module-dir` in the 
config.
-  find . -name 'Makefile.in' -exec sed -i 's,pkglibdir = 
\$(libdir)/@PACKAGE@,pkglibdir = $(libdir)/powerdns,' {} \;
-}
-
-build() {
-  cd pdns-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/powerdns \
---sbindir=/usr/bin \
---with-modules='' \
---with-dynmodules="bind geoip gmysql godbc gpgsql gsqlite3 ldap lua mydns 
opendbx pipe random remote tinydns" \
---docdir=/usr/share/doc/powerdns \
---enable-libsodium \
---enable-botan \
---enable-tools \
---disable-dependency-tracking \
---disable-silent-rules \
---enable-reproducible \
---enable-unit-tests \
---enable-systemd
-  make
-}
-
-check() {
-  make -C pdns-${pkgver} check
-}
-
-package() {
-  make -C pdns-${pkgver} DESTDIR="${pkgdir}" install
-  install -D -m644 sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-  mv "${pkgdir}/etc/powerdns/pdns.conf"{-dist,}
-  # Ensure we run as the powerdns user
-  sed -i "s,^# \(set.id=\),\1${pkgname}," "${pkgdir}/etc/powerdns/pdns.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns/repos/community-x86_64/PKGBUILD (from rev 421517, 
powerdns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 07:24:18 UTC (rev 421518)
@@ -0,0 +1,78 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Kevin Mihelich 
+# Contributor: Remi Gacogne 
+# Contributor: Pieter Lexis 
+
+pkgname=powerdns
+pkgver=4.1.5
+pkgrel=2
+pkgdesc='Authoritative DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('boost-libs' 'botan>=2.7.0' 'libsodium' 'luajit' 'openssl' 'protobuf'
+ 'sqlite' 'systemd' 'lua')
+makedepends=('boost' 'geoip' 'libldap' 'libmariadbclient' 'opendbx'
+ 'postgresql-libs' 'tinycdb' 'unixodbc' 'yaml-cpp')
+optdepends=('geoip: GeoIP backend'
+'libmariadbclient: MariaDB/MySQL and MyDNS backend'
+'libldap: LDAP backend'
+'opendbx: OpenDBX backend'
+'postgresql-libs: PostgreSQL backend'
+'unixodbc: ODBC backend'
+'tinycdb: TinyDNS backend'
+'yaml-cpp: GeoIP backend')
+provides=('pdns')
+conflicts=('pdns')

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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:06:31
  Author: arojas
Revision: 343232

archrelease: copy trunk to extra-x86_64

Added:
  qca/repos/extra-x86_64/PKGBUILD
(from rev 343231, qca/trunk/PKGBUILD)
  qca/repos/extra-x86_64/qca-openssl-1.1.patch
(from rev 343231, qca/trunk/qca-openssl-1.1.patch)
Deleted:
  qca/repos/extra-x86_64/PKGBUILD
  qca/repos/extra-x86_64/qca-openssl-1.1.patch

---+
 PKGBUILD  |  100 -
 qca-openssl-1.1.patch | 4072 
 2 files changed, 2086 insertions(+), 2086 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:06:12 UTC (rev 343231)
+++ PKGBUILD2019-01-10 07:06:31 UTC (rev 343232)
@@ -1,50 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=qca
-pkgver=2.1.3
-pkgrel=2
-pkgdesc="Qt Cryptographic Architecture"
-arch=(x86_64)
-url="https://userbase.kde.org/QCA;
-license=(LGPL)
-depends=(qt5-base nss ca-certificates)
-optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan: botan plugin')
-makedepends=(cmake doxygen pkcs11-helper botan)
-conflicts=(qca-qt5)
-provides=(qca-qt5)
-replaces=(qca-qt5)
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;
 qca-openssl-1.1.patch
-qca-botan2.patch::"https://cgit.kde.org/qca.git/patch/?id=47163784;)
-sha256sums=('003fd86a32421057a03b18a8168db52e2940978f9db5ebbb6a08882f8ab1e353'
-'b1505bc313fd2f4e350cd4c94af69256c901afa419ae6700b208cb6e40e6926d'
-'2b2c3103e47166eee46604288ba343b9ed1ccb957c54650e8eea770faab515e9')
-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../qca-openssl-1.1.patch # Fix build with OpenSSL 1.1 
https://bugs.kde.org/show_bug.cgi?id=379810
-  patch -p1 -i ../qca-botan2.patch  # Fix build with botan 2
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTS=OFF \
--DQCA_INSTALL_IN_QT_PREFIX=ON \
--DQCA_MAN_INSTALL_DIR=/usr/share/man
-  make
-}
-
-package() {
-  depends=(qt5-base nss ca-certificates)
-  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan: botan plugin')
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-

Copied: qca/repos/extra-x86_64/PKGBUILD (from rev 343231, qca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 07:06:31 UTC (rev 343232)
@@ -0,0 +1,50 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=qca
+pkgver=2.1.3
+pkgrel=3
+pkgdesc="Qt Cryptographic Architecture"
+arch=(x86_64)
+url="https://userbase.kde.org/QCA;
+license=(LGPL)
+depends=(qt5-base nss ca-certificates)
+optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan: botan plugin')
+makedepends=(cmake doxygen pkcs11-helper botan)
+conflicts=(qca-qt5)
+provides=(qca-qt5)
+replaces=(qca-qt5)
+source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;
 qca-openssl-1.1.patch
+qca-botan2.patch::"https://cgit.kde.org/qca.git/patch/?id=47163784;)
+sha256sums=('003fd86a32421057a03b18a8168db52e2940978f9db5ebbb6a08882f8ab1e353'
+'b1505bc313fd2f4e350cd4c94af69256c901afa419ae6700b208cb6e40e6926d'
+'2b2c3103e47166eee46604288ba343b9ed1ccb957c54650e8eea770faab515e9')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../qca-openssl-1.1.patch # Fix build with OpenSSL 1.1 
https://bugs.kde.org/show_bug.cgi?id=379810
+  patch -p1 -i ../qca-botan2.patch  # Fix build with botan 2
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DQCA_INSTALL_IN_QT_PREFIX=ON \
+-DQCA_MAN_INSTALL_DIR=/usr/share/man
+  make
+}
+
+package() {
+  depends=(qt5-base nss ca-certificates)
+  optdepends=('pkcs11-helper: PKCS-11 plugin' 'botan: botan plugin')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+

Deleted: qca-openssl-1.1.patch
===
--- qca-openssl-1.1.patch   2019-01-10 07:06:12 UTC (rev 343231)
+++ qca-openssl-1.1.patch   2019-01-10 07:06:31 UTC (rev 343232)
@@ -1,2036 +0,0 @@
-diff --git a/plugins/qca-ossl/CMakeLists.txt b/plugins/qca-ossl/CMakeLists.txt
-index cdeaeca..f7c5c1b 100644
 a/plugins/qca-ossl/CMakeLists.txt
-+++ b/plugins/qca-ossl/CMakeLists.txt
-@@ -32,7 +32,7 @@ if(OPENSSL_FOUND)
- message(WARNING "qca-ossl will be compiled without SHA-0 digest algorithm 
support")
-   endif(HAVE_OPENSSL_SHA0)
- 
--  set(QCA_OSSL_SOURCES qca-ossl.cpp)
-+  set(QCA_OSSL_SOURCES libcrypto-compat.c qca-ossl.cpp)
- 
-   my_automoc( QCA_OSSL_SOURCES )
- 
-diff --git a/plugins/qca-ossl/libcrypto-compat.c 
b/plugins/qca-ossl/libcrypto-compat.c
-index e69de29..b587845 100644
 

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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:06:12
  Author: arojas
Revision: 343231

botan 2.9 rebuild

Modified:
  qca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 07:04:36 UTC (rev 343230)
+++ PKGBUILD2019-01-10 07:06:12 UTC (rev 343231)
@@ -4,7 +4,7 @@
 
 pkgname=qca
 pkgver=2.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Qt Cryptographic Architecture"
 arch=(x86_64)
 url="https://userbase.kde.org/QCA;


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:04:36
  Author: arojas
Revision: 343230

archrelease: copy trunk to extra-x86_64

Added:
  icewm/repos/extra-x86_64/PKGBUILD
(from rev 343229, icewm/trunk/PKGBUILD)
Deleted:
  icewm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:04:17 UTC (rev 343229)
+++ PKGBUILD2019-01-10 07:04:36 UTC (rev 343230)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=icewm
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="A Window Manager designed for speed, usability, and consistency"
-arch=('x86_64')
-url="http://www.icewm.org/;
-license=('LGPL')
-depends=('libxrandr' 'libxft' 'libsm' 'libxinerama' 'gdk-pixbuf2' 'fribidi')
-makedepends=('xorg-mkfontdir')
-source=(https://github.com/bbidulock/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9920901c5eadb6df95af68dcb4f044b16e76e80ccd2c420b66c2ab83559477a7')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
---enable-shaped-decorations --enable-gradients
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: icewm/repos/extra-x86_64/PKGBUILD (from rev 343229, 
icewm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 07:04:36 UTC (rev 343230)
@@ -0,0 +1,25 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=icewm
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="A Window Manager designed for speed, usability, and consistency"
+arch=('x86_64')
+url="https://ice-wm.org/;
+license=('LGPL')
+depends=('libxrandr' 'libxft' 'libsm' 'libxinerama' 'gdk-pixbuf2' 'fribidi')
+makedepends=('xorg-mkfontdir' 'asciidoctor')
+source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('14f3ffbc1527390892202c3319ef50d7a63116d01d4a94228303c9833e5e9a0a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--enable-shaped-decorations --enable-gradients
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 07:04:17
  Author: arojas
Revision: 343229

Updat to 1.5.1

Modified:
  icewm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 07:02:23 UTC (rev 343228)
+++ PKGBUILD2019-01-10 07:04:17 UTC (rev 343229)
@@ -1,16 +1,16 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=icewm
-pkgver=1.4.2
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="A Window Manager designed for speed, usability, and consistency"
 arch=('x86_64')
-url="http://www.icewm.org/;
+url="https://ice-wm.org/;
 license=('LGPL')
 depends=('libxrandr' 'libxft' 'libsm' 'libxinerama' 'gdk-pixbuf2' 'fribidi')
-makedepends=('xorg-mkfontdir')
-source=(https://github.com/bbidulock/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9920901c5eadb6df95af68dcb4f044b16e76e80ccd2c420b66c2ab83559477a7')
+makedepends=('xorg-mkfontdir' 'asciidoctor')
+source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('14f3ffbc1527390892202c3319ef50d7a63116d01d4a94228303c9833e5e9a0a')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-01-09 Thread Sébastien Luttringer via arch-commits
Date: Thursday, January 10, 2019 @ 07:02:34
  Author: seblu
Revision: 421516

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 421515, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.sysusers
(from rev 421515, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  298 +++---
 docker.sysusers |4 
 2 files changed, 151 insertions(+), 151 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:02:28 UTC (rev 421515)
+++ PKGBUILD2019-01-10 07:02:34 UTC (rev 421516)
@@ -1,149 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-
-pkgname=docker
-pkgver=18.09.0
-pkgrel=2
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='https://www.docker.com/'
-license=('Apache')
-depends=('glibc' 'bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 
'libsystemd'
- 'libseccomp' 'libtool' 'runc' 'containerd')
-makedepends=('git' 'go' 'btrfs-progs' 'cmake' 'systemd' 'go-md2man')
-optdepends=('btrfs-progs: btrfs backend support'
-'pigz: parallel gzip compressor support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip' '!buildflags')
-# Use exact commit version from Dockerfile, see them in:
-# 
https://github.com/docker/docker-ce/blob/master/components/engine/hack/dockerfile/install/
-_TINI_COMMIT=fec3683b971d9c3ef73f284f176672c44b448662
-_LIBNETWORK_COMMIT=6da50d1978302f04c3e2089e29112ea24812f05b
-source=("git+https://github.com/docker/docker-ce.git#tag=v$pkgver;
-
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT;
-"git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT;
-"git+https://github.com/spf13/cobra.git;
-"$pkgname.sysusers")
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- '9a8b2744db23b14ca3cd350fdf73c179')
-
-
-# create a fake go path directory and pushd into it
-# $1 real directory
-# $2 gopath directory
-_fake_gopath_pushd() {
-  mkdir -p "$GOPATH/src/${2%/*}"
-  rm -f "$GOPATH/src/$2"
-  ln -rsT "$1" "$GOPATH/src/$2"
-  pushd  "$GOPATH/src/$2" >/dev/null
-}
-
-_fake_gopath_popd() {
-  popd >/dev/null
-}
-
-build() {
-  ### check my mistakes on commit version
-  msg2 'Checking commit mismatch'
-  (
-  local _cfile
-  for _cfile in tini proxy; do
-. 
"$srcdir/docker-ce/components/engine/hack/dockerfile/install/$_cfile.installer"
-  done
-  local _commit _pkgbuild _dockerfile
-  for _commit in LIBNETWORK TINI; do
-_pkgbuild=_${_commit}_COMMIT
-_dockerfile=${_commit}_COMMIT
-if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-  error "Invalid $_commit commit, should be ${!_dockerfile}"
-  return 1
-fi
-  done
-  )
-
-  ### globals
-  export GOPATH="$srcdir"
-  export PATH="$GOPATH/bin:$PATH"
-
-  ### cli
-  msg2 'Building cli'
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  DISABLE_WARN_OUTSIDE_CONTAINER=1 make VERSION=$pkgver-ce dynbinary
-  _fake_gopath_popd
-
-  ### daemon
-  msg2 'Building daemon'
-  _fake_gopath_pushd docker-ce/components/engine github.com/docker/docker
-  DOCKER_GITCOMMIT=$(cd "$srcdir"/docker-ce && git rev-parse --short HEAD) \
-DOCKER_BUILDTAGS='seccomp journald' \
-VERSION=$pkgver-ce \
-hack/make.sh dynbinary
-  _fake_gopath_popd
-
-  ### docker man pages
-  msg2 'Building man pages'
-  mkdir -p src/github.com/spf13
-  ln -rsfT cobra src/github.com/spf13/cobra
-  # use docker-ce cli version because they mess up with man dir
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  make manpages 2>/dev/null
-  _fake_gopath_popd
-
-  ### docker proxy
-  msg2 'Building docker-proxy'
-  _fake_gopath_pushd libnetwork github.com/docker/libnetwork
-  go build -ldflags='-linkmode=external' github.com/docker/libnetwork/cmd/proxy
-  _fake_gopath_popd
-
-  ### docker-init
-  msg2 'Building docker-init'
-  _fake_gopath_pushd tini github.com/krallin/tini
-  cmake .
-  # we must use the static binary because it's started in a foreign os
-  make tini-static
-  _fake_gopath_popd
-}
-
-package() {
-  ### proxy
-  install -Dm755 libnetwork/proxy "$pkgdir/usr/bin/docker-proxy"
-  ### init
-  install -Dm755 tini/tini-static "$pkgdir/usr/bin/docker-init"
-  ### engine
-  cd "$srcdir"/docker-ce/components/engine
-  # binary
-  install -Dm755 {bundles/latest/dynbinary-daemon,"$pkgdir"/usr/bin}/dockerd
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-"$pkgdir/usr/lib/systemd/system/docker.service"
-  install -Dm644 'contrib/init/systemd/docker.socket' \
-"$pkgdir/usr/lib/systemd/system/docker.socket"
-  install -Dm644 'contrib/udev/80-docker.rules' \
-

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 07:02:23
  Author: heftig
Revision: 343228

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |  464 ++---
 1 file changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:02:11 UTC (rev 343227)
+++ PKGBUILD2019-01-10 07:02:23 UTC (rev 343228)
@@ -1,232 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=64.0
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=(any)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('f7892be24ac5ef42c22edf86a012e95e25502c5c5f737f54f8b9c63173857372'
-'7ef092a89156e88d11c67574d56f36c0e711021fc82536562c4f62bd1f707e0f'
-'eeefe78961a3c0b51dac647f9e57858c11e68831b51f6c5831c7a0b375797521'
-'13f8d3f342b4b36b5bfd43468bedcf84e576cd7c39ca25cbcc39d94f37a3f671'
-'27a3014d5309f9a9e75633bb30cde0468c3f96e1a6083186f1bdb6961f7f113e'
-'1304896adead0aa137a92efb31e6ea5fc08ecf834eb473dc19d4fae00769790c'
-'5694a4d92272202e033f0b675ecfeea11594b8f1ad72e291888a87e366e8aa6a'
-'a5faf2dbadd4e02dd091c1d4e5ab081d15a81c5e94be6de417656ec4671bf41d'
-'b0e29cc4524f06ca76d28831f6a998668aa6d05d3d54ea089c704e98bccf2ea9'
-'b1db2f78a91ffd26d9d507990b90d03d85c189386645e5a941e551ed7a0f42b7'
-'2d8e5b653fbb3558bff174b0c3719471838f0725127b596c96a6d515da71b5c9'
-'62045a918544b5993defe7567e5e7e8521ffe74812bc0fbbb17be62a0b59ec47'
-'fdfb7b9a220a38c3190f160a8cd0591f0d8aa6c235d6a765d8779473a52951f2'
-   

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

2019-01-09 Thread Sébastien Luttringer via arch-commits
Date: Thursday, January 10, 2019 @ 07:02:28
  Author: seblu
Revision: 421515

upgpkg: docker 1:18.09.1-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 06:49:34 UTC (rev 421514)
+++ PKGBUILD2019-01-10 07:02:28 UTC (rev 421515)
@@ -1,8 +1,8 @@
 # Maintainer: Sébastien "Seblu" Luttringer
 
 pkgname=docker
-pkgver=18.09.0
-pkgrel=2
+pkgver=18.09.1
+pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 # Use exact commit version from Dockerfile, see them in:
 # 
https://github.com/docker/docker-ce/blob/master/components/engine/hack/dockerfile/install/
 _TINI_COMMIT=fec3683b971d9c3ef73f284f176672c44b448662
-_LIBNETWORK_COMMIT=6da50d1978302f04c3e2089e29112ea24812f05b
+_LIBNETWORK_COMMIT=2cfbf9b1f98162a55829a21cc603c76072a75382
 source=("git+https://github.com/docker/docker-ce.git#tag=v$pkgver;
 
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT;
 "git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT;


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 07:02:11
  Author: heftig
Revision: 343227

archrelease: copy trunk to extra-x86_64

Added:
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 343226, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-symbolic.svg
(from rev 343226, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 343226, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/upload-symbol-archive
(from rev 343226, firefox/trunk/upload-symbol-archive)
Deleted:
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-symbolic.svg
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/upload-symbol-archive

---+
 PKGBUILD  |  344 +-
 firefox-symbolic.svg  |  128 -
 firefox.desktop   |  622 
 upload-symbol-archive |   48 +--
 4 files changed, 571 insertions(+), 571 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 07:01:43 UTC (rev 343226)
+++ PKGBUILD2019-01-10 07:02:11 UTC (rev 343227)
@@ -1,172 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Jakub Schmidtke 
-
-pkgname=firefox
-pkgver=64.0
-pkgrel=1
-pkgdesc="Standalone web browser from mozilla.org"
-arch=(x86_64)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-depends=(gtk3 mozilla-common libxt startup-notification mime-types dbus-glib
- ffmpeg nss ttf-font libpulse sqlite libvpx icu)
-makedepends=(unzip zip diffutils python2-setuptools yasm mesa imake inetutils
- xorg-server-xvfb autoconf2.13 rust mercurial clang llvm jack gtk2
- python nodejs python2-psutil cbindgen)
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech'
-'hunspell-en_US: Spell checking, American English')
-options=(!emptydirs !makeflags)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=FIREFOX_${pkgver//./_}_RELEASE"
-$pkgname.desktop firefox-symbolic.svg)
-sha256sums=('SKIP'
-'677e1bde4c6b3cff114345c211805c7c43085038ca0505718a11e96432e9811a'
-'9a1a572dc88014882d54ba2d3079a1cf5b28fa03c5976ed2cb763c93dabbd797')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  mkdir mozbuild
-  cd mozilla-unified
-
-  echo -n "$_google_api_key" >google-api-key
-  echo -n "$_mozilla_api_key" >mozilla-api-key
-
-  cat >.mozconfig 

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 07:01:43
  Author: heftig
Revision: 343226

64.0.2-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:50:59 UTC (rev 343225)
+++ PKGBUILD2019-01-10 07:01:43 UTC (rev 343226)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=64.0
+pkgver=64.0.2
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
@@ -105,7 +105,7 @@
   # LTO needs more open files
   ulimit -n 4096
 
-  ./mach build
+  xvfb-run -a -n 97 -s "-screen 0 1600x1200x24" ./mach build
   ./mach buildsymbols
 }
 


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 06:49:11
  Author: arojas
Revision: 421513

Update to 0.6.9

Modified:
  nbxmpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:50:51 UTC (rev 421512)
+++ PKGBUILD2019-01-10 06:49:11 UTC (rev 421513)
@@ -2,7 +2,7 @@
 
 pkgbase=nbxmpp
 pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.8
+pkgver=0.6.9
 pkgrel=1
 arch=('any')
 url="https://dev.gajim.org/gajim/python-nbxmpp/;
@@ -9,7 +9,7 @@
 license=('GPL3')
 makedepends=('python' 'python2')
 
source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
-sha1sums=('7d17edcdc2f0cbb0f4bd9505c5cd4c930d664832')
+sha1sums=('2fc93454f78b77197934867367b24f660b83fb93')
 
 prepare() {
   cp -r python-nbxmpp-* ${pkgbase}-${pkgver}


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

2019-01-09 Thread Antonio Rojas via arch-commits
Date: Thursday, January 10, 2019 @ 06:49:34
  Author: arojas
Revision: 421514

archrelease: copy trunk to community-any

Added:
  nbxmpp/repos/community-any/PKGBUILD
(from rev 421513, nbxmpp/trunk/PKGBUILD)
Deleted:
  nbxmpp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 06:49:11 UTC (rev 421513)
+++ PKGBUILD2019-01-10 06:49:34 UTC (rev 421514)
@@ -1,38 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=nbxmpp
-pkgname=('python-nbxmpp' 'python2-nbxmpp')
-pkgver=0.6.8
-pkgrel=1
-arch=('any')
-url="https://dev.gajim.org/gajim/python-nbxmpp/;
-license=('GPL3')
-makedepends=('python' 'python2')
-source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
-sha1sums=('7d17edcdc2f0cbb0f4bd9505c5cd4c930d664832')
-
-prepare() {
-  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
-  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-  cd ../${pkgbase}-${pkgver}
-  python setup.py build
-}
-
-package_python-nbxmpp() {
-  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}"
-}
-
-package_python2-nbxmpp() {
-  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root="${pkgdir}"
-}

Copied: nbxmpp/repos/community-any/PKGBUILD (from rev 421513, 
nbxmpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 06:49:34 UTC (rev 421514)
@@ -0,0 +1,38 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=nbxmpp
+pkgname=('python-nbxmpp' 'python2-nbxmpp')
+pkgver=0.6.9
+pkgrel=1
+arch=('any')
+url="https://dev.gajim.org/gajim/python-nbxmpp/;
+license=('GPL3')
+makedepends=('python' 'python2')
+source=($pkgbase-$pkgver.tar.gz::https://dev.gajim.org/gajim/python-nbxmpp/repository/$pkgbase-$pkgver/archive.tar.gz)
+sha1sums=('2fc93454f78b77197934867367b24f660b83fb93')
+
+prepare() {
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}
+  cp -r python-nbxmpp-* ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+  cd ../${pkgbase}-${pkgver}
+  python setup.py build
+}
+
+package_python-nbxmpp() {
+  pkgdesc="A Python 3 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+}
+
+package_python2-nbxmpp() {
+  pkgdesc="A Python 2 library to use Jabber/XMPP networks in a non-blocking 
way"
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root="${pkgdir}"
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:50:25
  Author: heftig
Revision: 421504

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 421503, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 421503, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:50:25 UTC (rev 421504)
@@ -0,0 +1,59 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.0
+pkgrel=4
+_linux_major=4
+_linux_minor=20
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux>=$_linux_cur" "linux<$_linux_next"
+ "linux-headers>=$_linux_cur" "linux-headers<$_linux_next"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in nvidia-390xx/repos (5 files)

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:50:29
  Author: heftig
Revision: 343220

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 343219, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 343219, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-4.19.patch
(from rev 343219, nvidia-390xx/trunk/kernel-4.19.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-4.20.patch
(from rev 343219, nvidia-390xx/trunk/kernel-4.20.patch)

---+
 PKGBUILD  |   95 
 kernel-4.16.patch |   33 ++
 kernel-4.19.patch |   63 ++
 kernel-4.20.patch |   43 +++
 4 files changed, 234 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 343219, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-10 05:50:29 UTC (rev 343220)
@@ -0,0 +1,95 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.87
+_extramodules=extramodules-ARCH
+pkgrel=26
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.20' 'linux-headers<4.21')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch kernel-4.19.patch kernel-4.20.patch)
+sha256sums=('c7c07151e17f610af11f7870560d96c3a3ee9bb91ba1bb82fcc7b5d473d40b66'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'e425320bd3712cc789035d5936412724b0b410f50463980c0a48715fd3f8c431'
+'deb45f7636dfebe938dffe566df9e9a5deeb47ccaf0bfe16a2884579b2524075')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+# Ad-hoc patch
+patch -Np1 -i ../kernel-4.19.patch
+
+# struct ipmi_user
+patch -Np1 -i ../kernel-4.20.patch
+
+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() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux>=4.20' 'linux<4.21' "nvidia-390xx-utils=${pkgver}" 
'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 343219, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch 

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:42
  Author: heftig
Revision: 421496

0.0.20181218-2: kernel 4.20.1.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:36 UTC (rev 421495)
+++ PKGBUILD2019-01-10 05:47:42 UTC (rev 421496)
@@ -2,7 +2,7 @@
 
 pkgname='wireguard-arch'
 pkgver=0.0.20181218
-pkgrel=1
+pkgrel=2
 _linux_major=4
 _linux_minor=20
 arch=('x86_64')


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:36
  Author: heftig
Revision: 421495

1.1.0-184: kernel 4.20.1.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:33 UTC (rev 421494)
+++ PKGBUILD2019-01-10 05:47:36 UTC (rev 421495)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=183
+pkgrel=184
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:08
  Author: heftig
Revision: 421499

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 421496, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 421496, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 421497, vhba-module/trunk/dkms.conf)

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
421496, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-01-10 05:48:08 UTC (rev 
421499)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 421496, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:08 UTC (rev 421499)
@@ -0,0 +1,51 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=125
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.20' 'linux<4.21')
+makedepends=('linux-headers>=4.20' 'linux-headers<4.21')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 421497, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-01-10 05:48:08 UTC (rev 421499)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:38
  Author: heftig
Revision: 343215

390.87-26: kernel 4.20.1.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:04:56 UTC (rev 343214)
+++ PKGBUILD2019-01-10 05:47:38 UTC (rev 343215)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.87
 _extramodules=extramodules-ARCH
-pkgrel=25
+pkgrel=26
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:13
  Author: heftig
Revision: 421503

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 421496, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 421496, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 421496, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:13 UTC (rev 421503)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=184
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.20' 'linux<4.21')
+makedepends=('linux-headers>=4.20' 'linux-headers<4.21')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 421496, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-01-10 05:48:13 UTC (rev 421503)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


[arch-commits] Commit in nvidia-340xx/repos (3 files)

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:05
  Author: heftig
Revision: 343218

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 343217, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 343217, nvidia-340xx/trunk/kernel-4.11.patch)

---+
 PKGBUILD  |   72 
 kernel-4.11.patch |   38 +++
 2 files changed, 110 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 343217, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-10 05:48:05 UTC (rev 343218)
@@ -0,0 +1,72 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.107
+_extramodules=extramodules-ARCH
+pkgrel=53
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.20' 
'linux-headers<4.21')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch')
+sha512sums=('0de6f182d67bd322df7ae04e74c0cde6973c55bfea47a8f2503a29f8a899cd1b801ae4b52d066628df4a4f9c84e5e7547465bdc37d1b87df47af43fdab23466f'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.20' 'linux<4.21' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-340xx=$pkgver")
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 343217, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2019-01-10 05:48:05 UTC (rev 343218)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page = page;
+ 
+@@ -866,7 +874,11 @@
+ // it's dealing with anonymous mapping (see handle_pte_fault).
+ //
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _sigbus_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else
++int _sigbus_fault(struct vm_fault *vmf)
++#endif
+ {
+ 

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:05
  Author: heftig
Revision: 421498

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 421496, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 421496, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:05 UTC (rev 421498)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=78
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.20' 'linux<4.21')
+makedepends=('linux-headers>=4.20' 'linux-headers<4.21' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:02
  Author: heftig
Revision: 421497

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 421496, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
421496, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:02 UTC (rev 421497)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname='wireguard-arch'
+pkgver=0.0.20181218
+pkgrel=2
+_linux_major=4
+_linux_minor=20
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux>=$_linux_cur" "linux<$_linux_next"
+ "linux-headers>=$_linux_cur" "linux-headers<$_linux_next"
+ "wireguard-dkms>=$pkgver")
+
+_extramodules='extramodules-ARCH'
+
+package_wireguard-arch() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Wireguard module for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  conflicts=('wireguard-dkms')
+  provides=('WIREGUARD-MODULE')
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:40
  Author: heftig
Revision: 343216

415.25-6: kernel 4.20.1.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:38 UTC (rev 343215)
+++ PKGBUILD2019-01-10 05:47:40 UTC (rev 343216)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=415.25
 _extramodules=extramodules-ARCH
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:12
  Author: heftig
Revision: 421501

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 421497, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 421497, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:12 UTC (rev 421501)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=190
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux>=4.20' 'linux<4.21')
+makedepends=('linux-headers>=4.20' 'linux-headers<4.21')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:26
  Author: heftig
Revision: 421490

6.30.223.271-71: kernel 4.20.1.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:24 UTC (rev 421489)
+++ PKGBUILD2019-01-10 05:47:26 UTC (rev 421490)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=70
+pkgrel=71
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:29
  Author: heftig
Revision: 421492

0.8-190: kernel 4.20.1.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:28 UTC (rev 421491)
+++ PKGBUILD2019-01-10 05:47:29 UTC (rev 421492)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=189
+pkgrel=190
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:33
  Author: heftig
Revision: 421494

20170610-125: kernel 4.20.1.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:31 UTC (rev 421493)
+++ PKGBUILD2019-01-10 05:47:33 UTC (rev 421494)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=124
+pkgrel=125
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:24
  Author: heftig
Revision: 421489

0.43-78: kernel 4.20.1.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:01:36 UTC (rev 421488)
+++ PKGBUILD2019-01-10 05:47:24 UTC (rev 421489)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=77
+pkgrel=78
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:31
  Author: heftig
Revision: 421493

8.046.00-35: kernel 4.20.1.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:29 UTC (rev 421492)
+++ PKGBUILD2019-01-10 05:47:31 UTC (rev 421493)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.046.00
-pkgrel=34
+pkgrel=35
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:44
  Author: heftig
Revision: 343217

340.107-53: kernel 4.20.1.arch1-1

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:40 UTC (rev 343216)
+++ PKGBUILD2019-01-10 05:47:44 UTC (rev 343217)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.107
 _extramodules=extramodules-ARCH
-pkgrel=52
+pkgrel=53
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:47:28
  Author: heftig
Revision: 421491

6.0.0-4: kernel 4.20.1.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:47:26 UTC (rev 421490)
+++ PKGBUILD2019-01-10 05:47:28 UTC (rev 421491)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.0
-pkgrel=2
+pkgrel=4
 _linux_major=4
 _linux_minor=20
 arch=('x86_64')


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:10
  Author: heftig
Revision: 421500

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 421496, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 421496, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:10 UTC (rev 421500)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.046.00
+pkgrel=35
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b2e66b03b696ba55c9fb7c896db8ac5377233d14120520735d31c33147d0d4c3')
+
+build() {
+   KERNEL_VERSION=$(=4.20" "linux<4.21")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-ARCH" -m644 src/*.ko
+   find "$pkgdir" -name '*.ko' -exec xz {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:12
  Author: heftig
Revision: 421502

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 421496, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-10 05:48:12 UTC (rev 421502)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=71
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*.ko
+find "${pkgdir}" -name '*.ko' -exec xz -T1 {} +
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:48:10
  Author: heftig
Revision: 343219

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 343218, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/kernel-4.16.patch
(from rev 343218, nvidia/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   86 
 kernel-4.16.patch |   33 +++
 2 files changed, 119 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 343218, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-10 05:48:10 UTC (rev 343219)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=415.25
+_extramodules=extramodules-ARCH
+pkgrel=6
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers>=4.20' 
'linux-headers<4.21')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch)
+sha512sums=('d289a37344916f5d17425f17d0530a7838b264c49866a0148665c9b87dcb7c23e868abae866a2568abac425701149d9075da540dd0f45f3d18f67b57102c0857'
+
'ad1185d998adbf89abf7aea300e5b3bbabe2296016f42592fbc232a6c3983f233df1103d37f35a041f12cc1c722d3edce813a4a1b215784a49c7f0e3e652b5af')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+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() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.20' 'linux<4.21' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/kernel-4.16.patch (from rev 343218, 
nvidia/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-01-10 05:48:10 UTC (rev 343219)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ 

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:04:56
  Author: heftig
Revision: 343214

64.0.2-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 05:00:25 UTC (rev 343213)
+++ PKGBUILD2019-01-10 05:04:56 UTC (rev 343214)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=64.0
+pkgver=64.0.2
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -135,98 +135,98 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('f7892be24ac5ef42c22edf86a012e95e25502c5c5f737f54f8b9c63173857372'
-'7ef092a89156e88d11c67574d56f36c0e711021fc82536562c4f62bd1f707e0f'
-'eeefe78961a3c0b51dac647f9e57858c11e68831b51f6c5831c7a0b375797521'
-'13f8d3f342b4b36b5bfd43468bedcf84e576cd7c39ca25cbcc39d94f37a3f671'
-'27a3014d5309f9a9e75633bb30cde0468c3f96e1a6083186f1bdb6961f7f113e'
-'1304896adead0aa137a92efb31e6ea5fc08ecf834eb473dc19d4fae00769790c'
-'5694a4d92272202e033f0b675ecfeea11594b8f1ad72e291888a87e366e8aa6a'
-'a5faf2dbadd4e02dd091c1d4e5ab081d15a81c5e94be6de417656ec4671bf41d'
-'b0e29cc4524f06ca76d28831f6a998668aa6d05d3d54ea089c704e98bccf2ea9'
-'b1db2f78a91ffd26d9d507990b90d03d85c189386645e5a941e551ed7a0f42b7'
-'2d8e5b653fbb3558bff174b0c3719471838f0725127b596c96a6d515da71b5c9'
-'62045a918544b5993defe7567e5e7e8521ffe74812bc0fbbb17be62a0b59ec47'
-'fdfb7b9a220a38c3190f160a8cd0591f0d8aa6c235d6a765d8779473a52951f2'
-'70834220149e07d6724dc5014257fe73e888eef69d1a91ef629ca060a7f133d5'
-'ea3fc352224300a815bdea8f9e21803b96333f00d1a5f3cd3d298558c9a89076'
-'3e7dc361d22cce7edcf76737ae933c6fc1055f8b5de3ed818d951399337eed0f'
-'55c04bb8d52f17d76753fb8f86028e18b6a2ca5c2d31372cd702811f426abecd'
-'7e65181d73225429007c10e55d7df58c112ca3d98ff07e161cdf32bda3771e2e'
-'77a083106fa0d5ac093cda891d1dbd0d1cdbff5d7b2052af4afb371ed7981175'
-'65bf177d7329c30ce40a39d7361a339ecfea14f365b2fc743789b19536c72f40'
-'67c2156fa4780082c17a4a7bd6b0edaed446ea2465f47afbe0568ea6183b4681'
-'879d9544cea983d17b8206c37bb7833a6a423fbe73b142f280dd6b3d7c61581b'
-'de9dc47b1f56c8a9a6f4164ca33b22c00e2bed80f1e8553a8a7ed1c45383d9e7'
-'ae61c96e7046beeb692f8fed5be4787bc5bac704ce001bf80672ee93a7a281fe'
-'9224b4f6cd16a642804619a143502c2d485af8f389fac2f1b403faed55c9f34d'
-'14c662b64faf232835d0e3ca3b5494a3b4f9ef65a03a2636544785e0037a2a1b'
-'67767c7fac17f6b442de39a50f7f46a08dfd45d817277650c71ea27d971897e4'
-'3c2e2cf654f222927cae113dd7a807292723a9fa4fac1772bd7b0f9c92f9c736'
-'c8706e3730119089c1ff90a547d45f4b03731e2009cd6690f2310fdd4e91a227'
-'862425a3d7c21d41b75aed6404d53c2ce5be7052454ab00ec305e4726513f77e'
-'9d63a9332bd6ac379d55396cae8decc1117be86acc757708a906fa1b7df0efb6'
-'08cef3c2c90078067d13b623f7a5c5ae59d7de41da2bc18e08fd2f03bbd04b1b'
-'a500ae05f7680966a4500ae1802bc4b01bc03d5a908af8f091881be48784ae99'
-'690d781512e9e4927070464d8bf4de22d909f896439e59e893c1e9d8fd3fb2f8'
-'12eaefb0cc5a7ed71ca23b9c1bf939ad6a0fe81d767b3fd09fbbf10901ad6957'
-'196c2bd479011ffaf0eb63bbc7d1cd162ea3ce652a471c2c0510f3c456b6426b'
-'97cbb1f60869cdd9f9dab53c907697d83d37d79f69fc632fd367428a68b7bd8d'
-'04bda09e52d28211089e7505d5cb08c4d3e0506440d83dfab83f7ac9e5a3e046'
-'db4a88b2a2d9ab18f1efcb2d12d7c919d023e8727238128857d10f460db7ca71'
-'19dd1406c4539ff5b7b972d4024b21fb022f3574ed4e81b7bd8c7eb6c2d78cec'
-'5bef251086e9b6d7b3685f707350974ac1b7ea47cad03fadf32101aacedec64c'
-'6c800f7e838a565c3a210acdaa3263f3e3293d469b3188bcc53f0f27eab1d80d'
-'766cfd3ab92ed8e8a7a7d4ec58eb6ab8ea4030cfda64e552da825dbe16f7d65a'
-'77ac5ba67a94bd27990df70d630929f377334924e848dfa8ac25a72211daaff8'
-'bf324c51afbabbd0504e7b7c20a4a7573a69b351ba9a75f72b9d87987b461034'
-'9f0aa6b7dd2df887487bfbcadf8abfc46f2b8fd8b7a451d481da973696df9c45'
-'081eb9a2778e441d3fb9136a4dba5e56190167c20db690dda31ac9387316fc56'
-'da12f9c5aae88cb39fe0f2f9f3e9e7f735af8ec91210e49ee384d7be7c9efed0'
-'3816157abe978c0d52445444a54fa26b325c294a36eeac7d6d31dd0db81f5450'
-'4bf2ca86dc3242a721b272eb2cb9c1bca0e9378464e0b3b5c53b04d8b8581788'
-'26f07c033d74b5c8b7e7becb693f8a26c4fadee9cace1ae6af7369af773c7600'
-'8870756a30c0362c5163d81590b1d1313c3f886a1a31edde5a6b03472056e71f'
-'f75f59db9286702720f2c9dc3337c9dd77386103b01d33958cada724e66c27b7'
-   

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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:00:22
  Author: heftig
Revision: 343212

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 343211, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 343211, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 343211, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 343211, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 343211, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 343211, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  243 +
 config| 9865 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10157 insertions(+)

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


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 05:00:25
  Author: heftig
Revision: 343213

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 343211, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 343211, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 343211, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 343211, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 343211, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 343211, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  243 +
 config| 9896 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10188 insertions(+)

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


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 04:59:12
  Author: heftig
Revision: 343211

4.20.1.zen1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 04:59:02 UTC (rev 343210)
+++ PKGBUILD2019-01-10 04:59:12 UTC (rev 343211)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.20-zen1
+_srcver=4.20.1-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -26,7 +26,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'071bdc3d814a56a80c4e40301bcd518662bd9374d6f73b1c9a97b705c5c82bc0'
+'07b06397379e54fd54b1a9ab07d6e7a72604fd03eb472262384ff5bbaeed1fc8'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config
===
--- config  2019-01-10 04:59:02 UTC (rev 343210)
+++ config  2019-01-10 04:59:12 UTC (rev 343211)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.20.0-zen1 Kernel Configuration
+# Linux/x86 4.20.1-zen1 Kernel Configuration
 #
 
 #
@@ -17,6 +17,7 @@
 # General setup
 #
 CONFIG_ZEN_INTERACTIVE=y
+# CONFIG_SCHED_MUQSS is not set
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
 CONFIG_LOCALVERSION=""
@@ -383,6 +384,8 @@
 CONFIG_SCHED_SMT=y
 CONFIG_SCHED_MC=y
 CONFIG_SCHED_MC_PRIO=y
+CONFIG_RQ_NONE=y
+CONFIG_SHARERQ=0
 CONFIG_X86_LOCAL_APIC=y
 CONFIG_X86_IO_APIC=y
 CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
@@ -2462,7 +2465,6 @@
 CONFIG_SCSI=m
 CONFIG_SCSI_DMA=y
 CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_MQ_DEFAULT=y
 CONFIG_SCSI_PROC_FS=y
 
 #
@@ -7267,10 +7269,10 @@
 # USB Type-C Alternate Mode drivers
 #
 CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_USB_ROLE_SWITCH=m
 CONFIG_USB_ROLES_INTEL_XHCI=m
 CONFIG_USB_LED_TRIG=y
 CONFIG_USB_ULPI_BUS=m
-CONFIG_USB_ROLE_SWITCH=m
 CONFIG_UWB=m
 CONFIG_UWB_HWA=m
 CONFIG_UWB_WHCI=m


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

2019-01-09 Thread Jan Steffens via arch-commits
Date: Thursday, January 10, 2019 @ 04:59:02
  Author: heftig
Revision: 343210

4.20.1.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 01:28:05 UTC (rev 343209)
+++ PKGBUILD2019-01-10 04:59:02 UTC (rev 343210)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.20-arch1
+_srcver=4.20.1-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -26,7 +26,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'3f72b50a40e98737a6195b6d2b3c8c301007d40730bc4ec37fdf9e57dceb6fb9'
+'72be7e1240975218dd370a9ce7e10f0b77e7fd9585ae8cdec0deab1800b307fe'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config
===
--- config  2019-01-10 01:28:05 UTC (rev 343209)
+++ config  2019-01-10 04:59:02 UTC (rev 343210)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.20.0-arch1 Kernel Configuration
+# Linux/x86 4.20.1-arch1 Kernel Configuration
 #
 
 #
@@ -7240,10 +7240,10 @@
 # USB Type-C Alternate Mode drivers
 #
 CONFIG_TYPEC_DP_ALTMODE=m
+CONFIG_USB_ROLE_SWITCH=m
 CONFIG_USB_ROLES_INTEL_XHCI=m
 CONFIG_USB_LED_TRIG=y
 CONFIG_USB_ULPI_BUS=m
-CONFIG_USB_ROLE_SWITCH=m
 CONFIG_UWB=m
 CONFIG_UWB_HWA=m
 CONFIG_UWB_WHCI=m


[arch-commits] Commit in ruby-ffi/repos (staging-x86_64)

2019-01-09 Thread Evangelos Foutras via arch-commits
Date: Thursday, January 10, 2019 @ 04:49:06
  Author: foutrelis
Revision: 421487

Remove stale staging-x86_64 directory

Deleted:
  ruby-ffi/repos/staging-x86_64/


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

2019-01-09 Thread Jiachen Yang via arch-commits
Date: Thursday, January 10, 2019 @ 03:18:02
  Author: farseerfc
Revision: 421486

archrelease: copy trunk to community-x86_64

Added:
  libqtshadowsocks/repos/community-x86_64/PKGBUILD
(from rev 421485, libqtshadowsocks/trunk/PKGBUILD)
Deleted:
  libqtshadowsocks/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 03:17:19 UTC (rev 421485)
+++ PKGBUILD2019-01-10 03:18:02 UTC (rev 421486)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: yk 
-
-pkgname=libqtshadowsocks
-pkgver=2.1.0
-pkgrel=4
-pkgdesc="A lightweight library for shadowsocks"
-arch=("x86_64")
-url="https://github.com/shadowsocks/libQtShadowsocks;
-license=("GPL")
-depends=('botan>=2.7.0' 'qt5-base')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/libQtShadowsocks/archive/v$pkgver.tar.gz;)
-sha512sums=('af5b71ce7e40b593bf95c1000d866e2c4426d17398620083a996b84234524e8418fbae071edd03ac1944817a96d7eee8b0b7a5860872fef41996ebbda8418558')
-
-build() {
-  cd libQtShadowsocks-$pkgver
-  cmake -DUSE_BOTAN2=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
.
-  make
-}
-
-package() {
-  cd libQtShadowsocks-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqtshadowsocks/repos/community-x86_64/PKGBUILD (from rev 421485, 
libqtshadowsocks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 03:18:02 UTC (rev 421486)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: yk 
+
+pkgname=libqtshadowsocks
+pkgver=2.1.0
+pkgrel=5
+pkgdesc="A lightweight library for shadowsocks"
+arch=("x86_64")
+url="https://github.com/shadowsocks/libQtShadowsocks;
+license=("GPL")
+depends=('botan>=2.7.0' 'qt5-base')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/libQtShadowsocks/archive/v$pkgver.tar.gz;)
+sha512sums=('af5b71ce7e40b593bf95c1000d866e2c4426d17398620083a996b84234524e8418fbae071edd03ac1944817a96d7eee8b0b7a5860872fef41996ebbda8418558')
+
+build() {
+  cd libQtShadowsocks-$pkgver
+  cmake -DUSE_BOTAN2=On -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
.
+  make
+}
+
+package() {
+  cd libQtShadowsocks-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-01-09 Thread Jiachen Yang via arch-commits
Date: Thursday, January 10, 2019 @ 03:17:19
  Author: farseerfc
Revision: 421485

upgpkg: libqtshadowsocks 2.1.0-5

libqtshadowsocks: botan 2.9.0 rebuild

Modified:
  libqtshadowsocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 01:29:51 UTC (rev 421484)
+++ PKGBUILD2019-01-10 03:17:19 UTC (rev 421485)
@@ -3,7 +3,7 @@
 
 pkgname=libqtshadowsocks
 pkgver=2.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A lightweight library for shadowsocks"
 arch=("x86_64")
 url="https://github.com/shadowsocks/libQtShadowsocks;


[arch-commits] Commit in gitlab/repos/community-staging-x86_64 (20 files)

2019-01-09 Thread Felix Yan via arch-commits
Date: Thursday, January 10, 2019 @ 01:16:35
  Author: felixonmars
Revision: 421363

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab/repos/community-staging-x86_64/PKGBUILD
(from rev 421362, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-staging-x86_64/gitlab-backup.service
(from rev 421362, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-staging-x86_64/gitlab-backup.timer
(from rev 421362, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-staging-x86_64/gitlab-mailroom.service
(from rev 421362, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-staging-x86_64/gitlab-sidekiq.service
(from rev 421362, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-staging-x86_64/gitlab-unicorn.service
(from rev 421362, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-staging-x86_64/gitlab.install
(from rev 421362, gitlab/trunk/gitlab.install)
  gitlab/repos/community-staging-x86_64/gitlab.logrotate
(from rev 421362, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-staging-x86_64/gitlab.target
(from rev 421362, gitlab/trunk/gitlab.target)
  gitlab/repos/community-staging-x86_64/gitlab.tmpfiles.d
(from rev 421362, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-staging-x86_64/PKGBUILD
  gitlab/repos/community-staging-x86_64/gitlab-backup.service
  gitlab/repos/community-staging-x86_64/gitlab-backup.timer
  gitlab/repos/community-staging-x86_64/gitlab-mailroom.service
  gitlab/repos/community-staging-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-staging-x86_64/gitlab-unicorn.service
  gitlab/repos/community-staging-x86_64/gitlab.install
  gitlab/repos/community-staging-x86_64/gitlab.logrotate
  gitlab/repos/community-staging-x86_64/gitlab.target
  gitlab/repos/community-staging-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  436 +++---
 gitlab-backup.service   |   40 ++--
 gitlab-backup.timer |   20 +-
 gitlab-mailroom.service |   44 ++--
 gitlab-sidekiq.service  |   62 +++---
 gitlab-unicorn.service  |   68 +++
 gitlab.install  |   40 ++--
 gitlab.logrotate|   22 +-
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 10 files changed, 374 insertions(+), 374 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 01:15:44 UTC (rev 421362)
+++ PKGBUILD2019-01-10 01:16:35 UTC (rev 421363)
@@ -1,218 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab
-pkgver=11.6.3
-pkgrel=2
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-ce;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
-makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'mysql: database backend'
-'python2-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/${pkgname}/application.rb"
-"etc/webapps/${pkgname}/gitlab.yml"
-"etc/webapps/${pkgname}/resque.yml"
-"etc/webapps/${pkgname}/unicorn.rb"
-"etc/logrotate.d/${pkgname}")
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ce/repository/archive?sha=v${pkgver};
-gitlab-unicorn.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('754916481228b4d726d3ce2c5b2184b0e3741e004e8e80a08d96e9ea4c6be72995a0ecf9cb6ce66b2e697d0474e3353ab4db4ad286a64f2873dec0596dd24666'
-
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
-
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
-
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
-

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

2019-01-09 Thread Felix Yan via arch-commits
Date: Thursday, January 10, 2019 @ 01:15:44
  Author: felixonmars
Revision: 421362

Ruby 2.6.0 rebuild

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:43:52 UTC (rev 421361)
+++ PKGBUILD2019-01-10 01:15:44 UTC (rev 421362)
@@ -11,7 +11,7 @@
 # need this again at some point in the future.
 pkgname=gitlab
 pkgver=11.6.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce;


[arch-commits] Commit in gitlab-gitaly/repos/community-staging-x86_64 (4 files)

2019-01-09 Thread Felix Yan via arch-commits
Date: Thursday, January 10, 2019 @ 00:43:52
  Author: felixonmars
Revision: 421361

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD
(from rev 421360, gitlab-gitaly/trunk/PKGBUILD)
  gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service
(from rev 421360, gitlab-gitaly/trunk/gitlab-gitaly.service)
Deleted:
  gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD
  gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service

---+
 PKGBUILD  |  138 
 gitlab-gitaly.service |   50 -
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:43:28 UTC (rev 421360)
+++ PKGBUILD2019-01-10 00:43:52 UTC (rev 421361)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab-gitaly
-pkgver=1.12.0
-pkgrel=3
-pkgdesc="Speed up Git access using caching"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitaly;
-license=('MIT')
-depends=(glibc ruby2.5 libxml2 libxslt)
-options=(!buildflags)
-makedepends=(go ruby2.5-bundler cmake)
-backup=("etc/gitlab-gitaly/config.toml")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
-"gitlab-gitaly.service")
-sha512sums=('3a97ebbaac1cff259c6ce9ab13758bc4dfc66e92d144da3c9dc7966281f4375f4fd42c6d02e05a8bb8cf375dd69745232505d836339918fc6e0061ff4e399c5d'
-
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
-
-_homedir="/var/lib/gitlab"
-
-prepare() {
-  cd "gitaly-"*
-
-  sed -i "s/bundle install/bundle-2.5 install/" Makefile
-  sed -i "s/bundle config/bundle-2.5 config/" Makefile
-  sed -i "s/bundle show/bundle-2.5 show/" Makefile
-  sed -i "s/bundle/bundle-2.5/" internal/rubyserver/rubyserver.go
-  sed -i "s/bundle/bundle-2.5/" internal/linguist/linguist.go
-  sed -i "s/bundle/bundle-2.5/" _support/makegen.go
-  sed -i "s/\"ruby\"/\"ruby-2.5\"/" internal/linguist/linguist.go
-  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/gitaly-ruby
-  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/ruby-cd
-  sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
-  sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
-  sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example
-  sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" 
config.toml.example
-
-  # https://github.com/bundler/bundler/issues/6882
-  sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
-}
-
-build() {
-  cd "gitaly-"*
-
-  make build
-}
-
-package() {
-  cd "gitaly-"*
-
-  make PREFIX=/usr DESTDIR=${pkgdir} install
-  mkdir -p "${pkgdir}/etc/${pkgname}"
-  sed \
--e "s|^socket_path =.*|socket_path = 
\"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
--e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
-config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
-
-  mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
-  cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
-
-  install -Dm644 config.toml.example 
"${pkgdir}/usr/share/${pkgname}/config.toml.example"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm0644 "${srcdir}/gitlab-gitaly.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD (from rev 421360, 
gitlab-gitaly/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:43:52 UTC (rev 421361)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=1.12.0
+pkgrel=4
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly;
+license=('MIT')
+depends=(glibc ruby2.5 libxml2 libxslt)
+options=(!buildflags)
+makedepends=(go ruby2.5-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
+"gitlab-gitaly.service")

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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:43:13
  Author: anthraxx
Revision: 421358

upgpkg: rabbitmqadmin 3.7.10-1

Modified:
  rabbitmqadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:42:33 UTC (rev 421357)
+++ PKGBUILD2019-01-10 00:43:13 UTC (rev 421358)
@@ -2,7 +2,7 @@
 # Contributor: Dmitry Chusovitin 
 
 pkgname=rabbitmqadmin
-pkgver=3.7.9
+pkgver=3.7.10
 pkgrel=1
 pkgdesc='Command-line tool for managing RabbitMQ server (requires "management" 
plugin)'
 url='https://www.rabbitmq.com/management-cli.html'
@@ -10,8 +10,8 @@
 license=('MPL')
 depends=('python')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rabbitmq/rabbitmq-management/archive/v${pkgver}.tar.gz)
-sha256sums=('879fc6d61124f3ab2ae08acb036ac4770a74d26e2dae673c98aaef4f6aaf68db')
-sha512sums=('6b749ba40e287aa6934d72ca133361b3d199879cdac7cab03fac5ce07062081fa0ce13a2a912255e7fed39dd9dd8610ca68f922456abb7be5ca6b916924b3aae')
+sha256sums=('9a4830200fa705c0d43f80de2fefe5641f899594b6066beef0935b9358823a77')
+sha512sums=('546bf70744839c39b78dbfe64b8e69815f139f703212de88ab3ab4ccdc992be7d5eea374951509600b196b52c32c5117948593d9ee89bb7c6aa739f42c7af5d8')
 
 prepare() {
   cd rabbitmq-management-${pkgver}


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

2019-01-09 Thread Felix Yan via arch-commits
Date: Thursday, January 10, 2019 @ 00:43:28
  Author: felixonmars
Revision: 421360

Ruby 2.6.0 rebuild

Modified:
  gitlab-gitaly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:43:19 UTC (rev 421359)
+++ PKGBUILD2019-01-10 00:43:28 UTC (rev 421360)
@@ -5,7 +5,7 @@
 # need this again at some point in the future.
 pkgname=gitlab-gitaly
 pkgver=1.12.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Speed up Git access using caching"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitaly;


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:43:19
  Author: anthraxx
Revision: 421359

archrelease: copy trunk to community-any

Added:
  rabbitmqadmin/repos/community-any/PKGBUILD
(from rev 421358, rabbitmqadmin/trunk/PKGBUILD)
Deleted:
  rabbitmqadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:43:13 UTC (rev 421358)
+++ PKGBUILD2019-01-10 00:43:19 UTC (rev 421359)
@@ -1,27 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dmitry Chusovitin 
-
-pkgname=rabbitmqadmin
-pkgver=3.7.9
-pkgrel=1
-pkgdesc='Command-line tool for managing RabbitMQ server (requires "management" 
plugin)'
-url='https://www.rabbitmq.com/management-cli.html'
-arch=('any')
-license=('MPL')
-depends=('python')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rabbitmq/rabbitmq-management/archive/v${pkgver}.tar.gz)
-sha256sums=('879fc6d61124f3ab2ae08acb036ac4770a74d26e2dae673c98aaef4f6aaf68db')
-sha512sums=('6b749ba40e287aa6934d72ca133361b3d199879cdac7cab03fac5ce07062081fa0ce13a2a912255e7fed39dd9dd8610ca68f922456abb7be5ca6b916924b3aae')
-
-prepare() {
-  cd rabbitmq-management-${pkgver}
-  sed -e "s|%%VSN%%|${pkgver}|" -i bin/rabbitmqadmin
-}
-
-package() {
-  cd rabbitmq-management-${pkgver}
-  install -Dm 755 bin/rabbitmqadmin -t "${pkgdir}/usr/bin"
-  install -Dm 644 LICENSE-MPL-RabbitMQ -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: rabbitmqadmin/repos/community-any/PKGBUILD (from rev 421358, 
rabbitmqadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:43:19 UTC (rev 421359)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dmitry Chusovitin 
+
+pkgname=rabbitmqadmin
+pkgver=3.7.10
+pkgrel=1
+pkgdesc='Command-line tool for managing RabbitMQ server (requires "management" 
plugin)'
+url='https://www.rabbitmq.com/management-cli.html'
+arch=('any')
+license=('MPL')
+depends=('python')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rabbitmq/rabbitmq-management/archive/v${pkgver}.tar.gz)
+sha256sums=('9a4830200fa705c0d43f80de2fefe5641f899594b6066beef0935b9358823a77')
+sha512sums=('546bf70744839c39b78dbfe64b8e69815f139f703212de88ab3ab4ccdc992be7d5eea374951509600b196b52c32c5117948593d9ee89bb7c6aa739f42c7af5d8')
+
+prepare() {
+  cd rabbitmq-management-${pkgver}
+  sed -e "s|%%VSN%%|${pkgver}|" -i bin/rabbitmqadmin
+}
+
+package() {
+  cd rabbitmq-management-${pkgver}
+  install -Dm 755 bin/rabbitmqadmin -t "${pkgdir}/usr/bin"
+  install -Dm 644 LICENSE-MPL-RabbitMQ -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in rabbitmq/repos/community-any (14 files)

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:42:33
  Author: anthraxx
Revision: 421357

archrelease: copy trunk to community-any

Added:
  rabbitmq/repos/community-any/PKGBUILD
(from rev 421356, rabbitmq/trunk/PKGBUILD)
  rabbitmq/repos/community-any/rabbitmq-customize-systemd-service.patch
(from rev 421356, rabbitmq/trunk/rabbitmq-customize-systemd-service.patch)
  rabbitmq/repos/community-any/rabbitmq-env.conf
(from rev 421356, rabbitmq/trunk/rabbitmq-env.conf)
  rabbitmq/repos/community-any/rabbitmq.install
(from rev 421356, rabbitmq/trunk/rabbitmq.install)
  rabbitmq/repos/community-any/rabbitmq.logrotate
(from rev 421356, rabbitmq/trunk/rabbitmq.logrotate)
  rabbitmq/repos/community-any/rabbitmq.sysusers
(from rev 421356, rabbitmq/trunk/rabbitmq.sysusers)
  rabbitmq/repos/community-any/rabbitmq.tmpfiles
(from rev 421356, rabbitmq/trunk/rabbitmq.tmpfiles)
Deleted:
  rabbitmq/repos/community-any/PKGBUILD
  rabbitmq/repos/community-any/rabbitmq-customize-systemd-service.patch
  rabbitmq/repos/community-any/rabbitmq-env.conf
  rabbitmq/repos/community-any/rabbitmq.install
  rabbitmq/repos/community-any/rabbitmq.logrotate
  rabbitmq/repos/community-any/rabbitmq.sysusers
  rabbitmq/repos/community-any/rabbitmq.tmpfiles

--+
 PKGBUILD |  144 ++---
 rabbitmq-customize-systemd-service.patch |  106 ++---
 rabbitmq-env.conf|6 -
 rabbitmq.install |   18 +--
 rabbitmq.logrotate   |   12 +-
 rabbitmq.sysusers|2 
 rabbitmq.tmpfiles|4 
 7 files changed, 146 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:42:25 UTC (rev 421356)
+++ PKGBUILD2019-01-10 00:42:33 UTC (rev 421357)
@@ -1,72 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Marcello "mereghost" Rocha 
-# Contributor: Gianni Vialetto 
-# Contributor: Stefan J. Betz 
-# Contributor: p2k 
-# Contributor: Jonathan Liu 
-# Contributor: Christopher Grebs 
-# Contributor: mutantmonkey
-
-pkgname=rabbitmq
-pkgver=3.7.9
-pkgrel=1
-pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
-url='https://rabbitmq.com'
-arch=('any')
-license=('MPL')
-depends=('util-linux' 'inetutils' 'erlang-nox' 'socat')
-optdepends=('rabbitmqadmin: CLI management tool'
-'logrotate: rotate log files')
-makedepends=('zip' 'unzip' 'libxslt' 'xmlto' 'systemd' 'elixir' 'python' 
'python-simplejson' 'rsync')
-backup=('etc/rabbitmq/rabbitmq-env.conf')
-options=('!makeflags')
-install=rabbitmq.install
-source=(https://github.com/rabbitmq/rabbitmq-server/releases/download/v${pkgver}/rabbitmq-server-${pkgver}.tar.xz{,.asc}
-rabbitmq-customize-systemd-service.patch
-rabbitmq-env.conf
-rabbitmq.sysusers
-rabbitmq.tmpfiles
-rabbitmq.logrotate)
-sha512sums=('4a9fd452ad878f20c3a269d2dc0fa63ef7dcf99d2ee1ca46ff693df8d92ae0ef5a05453a6aaaeb00db643b2209770b15216fdff109f27d1e531e363a99bd4a2a'
-'SKIP'
-
'1a74f8c375fa363104993fac0ef6d05288fff6e104e796623e52d75ff9ca9893d217b4f9f8a219110f4ab2c5a157b8074343a16472a958f7882f8e2b9fc87c0e'
-
'8b841e28fa0a1424dd9e57c0988e015f3cd4cccef0f73ccdb7c7b66d11ca62ba8ef3a59c7ca5e5f0c9c9d8003ac72bf53785985d98aae867961787003286e179'
-
'17d33e7104172bc265d97821fec58f1402ad3103f1ea4b1f6bbabcf0dd840685708a1bdc808b48c1a60726c5c0aa7b6479395afd9360d3116b812c143c432423'
-
'5cbef5497029ff227050c6f18c4fcc35b3922747408d01b7590f096253af82a8a8f16008efcc8ea21f970ce87244de62e2e375f65c49e407e53440eada5d7114'
-
'f2a6aaa38e575e7c947191a7c67add1434beb768c50acb16d5faa5dd83d390a9a5ec7c153487add4ac26de058a02bbb5c3a7d6377e91a1d0cbcca3c1d6797b02')
-validpgpkeys=('0A9AF2115F4687BD29803A206B73A36E6026DFCA') # RabbitMQ Release 
Signing Key 
-
-prepare() {
-  cd ${pkgname}-server-${pkgver}
-  sed -r 's|^(SYS_PREFIX=).*$|\1""|' -i deps/rabbit/scripts/rabbitmq-defaults
-  patch -p1 < ../rabbitmq-customize-systemd-service.patch
-}
-
-build() {
-  cd ${pkgname}-server-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-server-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr RMQ_ROOTDIR=/usr/lib/rabbitmq \
-install install-man install-bin
-
-  # using script wrapper for better bin handling
-  local libdir="${pkgdir}/usr/lib/rabbitmq/lib/rabbitmq_server-${pkgver}"
-  install -d "${pkgdir}/usr/bin"
-  install -Dm 755 scripts/rabbitmq-script-wrapper -t 
"${pkgdir}/usr/lib/rabbitmq/bin"
-  for script in "${libdir}"/sbin/rabbit*; do
-ln -s /usr/lib/rabbitmq/bin/rabbitmq-script-wrapper 
"${pkgdir}/usr/bin/${script#${libdir}/sbin/}"
-  done
-
-  install -Dm 644 deps/rabbit/docs/rabbitmq-server.service.example 
"${pkgdir}/usr/lib/systemd/system/rabbitmq.service"
-  

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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:42:25
  Author: anthraxx
Revision: 421356

upgpkg: rabbitmq 3.7.10-1

Modified:
  rabbitmq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:35:50 UTC (rev 421355)
+++ PKGBUILD2019-01-10 00:42:25 UTC (rev 421356)
@@ -8,7 +8,7 @@
 # Contributor: mutantmonkey
 
 pkgname=rabbitmq
-pkgver=3.7.9
+pkgver=3.7.10
 pkgrel=1
 pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
 url='https://rabbitmq.com'
@@ -27,7 +27,7 @@
 rabbitmq.sysusers
 rabbitmq.tmpfiles
 rabbitmq.logrotate)
-sha512sums=('4a9fd452ad878f20c3a269d2dc0fa63ef7dcf99d2ee1ca46ff693df8d92ae0ef5a05453a6aaaeb00db643b2209770b15216fdff109f27d1e531e363a99bd4a2a'
+sha512sums=('092df82ac00397fc90ecd69c712985f055ec25fd0ba427fce9330df75f5fe6d788aabc9e25ccbf63c8c3cbe111816a226fb63479a16d8530a53b23ab23b2598e'
 'SKIP'
 
'1a74f8c375fa363104993fac0ef6d05288fff6e104e796623e52d75ff9ca9893d217b4f9f8a219110f4ab2c5a157b8074343a16472a958f7882f8e2b9fc87c0e'
 
'8b841e28fa0a1424dd9e57c0988e015f3cd4cccef0f73ccdb7c7b66d11ca62ba8ef3a59c7ca5e5f0c9c9d8003ac72bf53785985d98aae867961787003286e179'


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:35:50
  Author: anthraxx
Revision: 421355

archrelease: copy trunk to community-x86_64

Added:
  hydra/repos/community-x86_64/PKGBUILD
(from rev 421354, hydra/trunk/PKGBUILD)
Deleted:
  hydra/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:35:44 UTC (rev 421354)
+++ PKGBUILD2019-01-10 00:35:50 UTC (rev 421355)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Rudy Matela 
-# Contributor: Bartek Piotrowski 
-# Contributor: Thomas S Hatch 
-# Contributor: pootzko 
-# Contributor: Jinx 
-# Contributor: Timothée Ravier 
-
-pkgname=hydra
-pkgver=8.6
-pkgrel=2
-pkgdesc='Very fast network logon cracker which support many different services'
-url='https://github.com/vanhauser-thc/thc-hydra'
-arch=('x86_64')
-license=('GPL3')
-depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn'
- 'libfbclient' 'afpfs-ng' 'zlib' 'openssl' 'ncurses' 'pcre')
-optdepends=('gtk2: graphical front-end (xhydra)')
-makedepends=('gtk2')
-source=(thc-hydra-${pkgver}.tar.gz::https://github.com/vanhauser-thc/thc-hydra/archive/${pkgver}.tar.gz)
-sha256sums=('05a87eb018507b24afca970081f067e64441460319fb75ca1e64c4a1f322b80b')
-
-build() {
-  cd thc-hydra-${pkgver}
-  ./configure --fhs
-  make
-}
-
-package() {
-  cd thc-hydra-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hydra/repos/community-x86_64/PKGBUILD (from rev 421354, 
hydra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:35:50 UTC (rev 421355)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Rudy Matela 
+# Contributor: Bartek Piotrowski 
+# Contributor: Thomas S Hatch 
+# Contributor: pootzko 
+# Contributor: Jinx 
+# Contributor: Timothée Ravier 
+
+pkgname=hydra
+pkgver=8.8
+pkgrel=1
+pkgdesc='Very fast network logon cracker which support many different services'
+url='https://github.com/vanhauser-thc/thc-hydra'
+arch=('x86_64')
+license=('GPL3')
+depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn'
+ 'libfbclient' 'afpfs-ng' 'zlib' 'openssl' 'ncurses' 'pcre')
+optdepends=('gtk2: graphical front-end (xhydra)')
+makedepends=('gtk2')
+source=(https://github.com/vanhauser-thc/thc-hydra/archive/v${pkgver}/thc-hydra-v${pkgver}.tar.gz)
+sha256sums=('bc895a7aebdf0279186d40140f0dc1546ac6f3a5c5bc9d13b13766bffea3e966')
+
+build() {
+  cd thc-hydra-${pkgver}
+  ./configure --fhs
+  make
+}
+
+package() {
+  cd thc-hydra-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:35:44
  Author: anthraxx
Revision: 421354

upgpkg: hydra 8.8-1

Modified:
  hydra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:32:34 UTC (rev 421353)
+++ PKGBUILD2019-01-10 00:35:44 UTC (rev 421354)
@@ -7,8 +7,8 @@
 # Contributor: Timothée Ravier 
 
 pkgname=hydra
-pkgver=8.6
-pkgrel=2
+pkgver=8.8
+pkgrel=1
 pkgdesc='Very fast network logon cracker which support many different services'
 url='https://github.com/vanhauser-thc/thc-hydra'
 arch=('x86_64')
@@ -17,8 +17,8 @@
  'libfbclient' 'afpfs-ng' 'zlib' 'openssl' 'ncurses' 'pcre')
 optdepends=('gtk2: graphical front-end (xhydra)')
 makedepends=('gtk2')
-source=(thc-hydra-${pkgver}.tar.gz::https://github.com/vanhauser-thc/thc-hydra/archive/${pkgver}.tar.gz)
-sha256sums=('05a87eb018507b24afca970081f067e64441460319fb75ca1e64c4a1f322b80b')
+source=(https://github.com/vanhauser-thc/thc-hydra/archive/v${pkgver}/thc-hydra-v${pkgver}.tar.gz)
+sha256sums=('bc895a7aebdf0279186d40140f0dc1546ac6f3a5c5bc9d13b13766bffea3e966')
 
 build() {
   cd thc-hydra-${pkgver}


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:32:34
  Author: anthraxx
Revision: 421353

archrelease: copy trunk to community-any

Added:
  gajim/repos/community-any/PKGBUILD
(from rev 421352, gajim/trunk/PKGBUILD)
Deleted:
  gajim/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:32:25 UTC (rev 421352)
+++ PKGBUILD2019-01-10 00:32:34 UTC (rev 421353)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Eric Bélanger 
-
-pkgname=gajim
-pkgver=1.1.0
-pkgrel=1
-pkgdesc='Full featured and easy to use XMPP (Jabber) client'
-url='https://www.gajim.org/'
-arch=('any')
-license=('GPL3')
-depends=('gtk3' 'python-cairo' 'python-dbus' 'python-gobject' 'python-keyring' 
'python-nbxmpp'
- 'python-pyasn1' 'python-pyopenssl' 'python-precis_i18n' 
'python-cssutils'
- 'python-distro' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('alsa-utils: play notification sounds'
-'python-dbus: for gajim-remote and zeroconf support'
-'avahi: serverless chatting with autodetected clients in a local 
network'
-'farstream: start audio and video chat'
-'gst-plugins-good: for video/voice support'
-'gst-plugins-bad: for video/voice support'
-'gst-plugins-ugly: for video/voice support'
-'gst-libav: for video/voice support'
-'gst-python: for video/voice support'
-'gspell: for spell checking support'
-'notification-daemon: for desktop notifications'
-'geoclue2: share current location'
-'gnome-keyring: store passwords encrypted in GNOME Keyring'
-'kded: store passwords encrypted in KSecretService'
-'gspell: spellchecking of composed messages'
-'gupnp-igd: request your router to forward port for file transfer'
-'libxss: measure idle time, in order to set auto status'
-'python-crypto: encrypting chat messages'
-'python-docutils: generate XHTML output from RST code'
-'python-gnupg: encrypting chat messages with OpenPGP'
-'python-pillow: support of WebP avatars')
-source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
-sha512sums=('47b18de111643eba382255e7c2d195b41f30bf15957cd27939ebd44eade7af1b9ebe50c30ca10f33ca36e879d309fc414369fd8ba2c725c336f38a3a0f88ba7c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-# vim: ts=2 sw=2 et:

Copied: gajim/repos/community-any/PKGBUILD (from rev 421352, 
gajim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:32:34 UTC (rev 421353)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: Eric Bélanger 
+
+pkgname=gajim
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='Full featured and easy to use XMPP (Jabber) client'
+url='https://www.gajim.org/'
+arch=('any')
+license=('GPL3')
+depends=('gtk3' 'python-cairo' 'python-gobject' 'python-keyring' 
'python-nbxmpp'
+ 'python-pyasn1' 'python-pyopenssl' 'python-precis_i18n' 
'python-cssutils'
+ 'python-distro' 'hicolor-icon-theme')
+optdepends=('alsa-utils: play notification sounds'
+'python-dbus: for gajim-remote and zeroconf support'
+'avahi: serverless chatting with autodetected clients in a local 
network'
+'farstream: start audio and video chat'
+'gst-plugins-good: for video/voice support'
+'gst-plugins-bad: for video/voice support'
+'gst-plugins-ugly: for video/voice support'
+'gst-libav: for video/voice support'
+'gst-python: for video/voice support'
+'gspell: for spell checking support'
+'notification-daemon: for desktop notifications'
+'geoclue2: share current location'
+'gnome-keyring: store passwords encrypted in GNOME Keyring'
+'kded: store passwords encrypted in KSecretService'
+'gupnp-igd: request your router to forward port for file transfer'
+'libxss: measure idle time, in order to set auto status'
+'python-crypto: encrypting chat messages'
+'python-docutils: generate XHTML output from RST code'
+'python-gnupg: encrypting chat messages with OpenPGP'
+'python-pillow: support of WebP avatars'
+'python-axolotl: OMEMO support'
+'python-qrcode: generate QR codes for OMEMO keys')
+source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)

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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:32:25
  Author: anthraxx
Revision: 421352

upgpkg: gajim 1.1.1-1

Modified:
  gajim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:25:43 UTC (rev 421351)
+++ PKGBUILD2019-01-10 00:32:25 UTC (rev 421352)
@@ -2,16 +2,15 @@
 # Contributor: Eric Bélanger 
 
 pkgname=gajim
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc='Full featured and easy to use XMPP (Jabber) client'
 url='https://www.gajim.org/'
 arch=('any')
 license=('GPL3')
-depends=('gtk3' 'python-cairo' 'python-dbus' 'python-gobject' 'python-keyring' 
'python-nbxmpp'
+depends=('gtk3' 'python-cairo' 'python-gobject' 'python-keyring' 
'python-nbxmpp'
  'python-pyasn1' 'python-pyopenssl' 'python-precis_i18n' 
'python-cssutils'
  'python-distro' 'hicolor-icon-theme')
-makedepends=('intltool')
 optdepends=('alsa-utils: play notification sounds'
 'python-dbus: for gajim-remote and zeroconf support'
 'avahi: serverless chatting with autodetected clients in a local 
network'
@@ -26,15 +25,16 @@
 'geoclue2: share current location'
 'gnome-keyring: store passwords encrypted in GNOME Keyring'
 'kded: store passwords encrypted in KSecretService'
-'gspell: spellchecking of composed messages'
 'gupnp-igd: request your router to forward port for file transfer'
 'libxss: measure idle time, in order to set auto status'
 'python-crypto: encrypting chat messages'
 'python-docutils: generate XHTML output from RST code'
 'python-gnupg: encrypting chat messages with OpenPGP'
-'python-pillow: support of WebP avatars')
+'python-pillow: support of WebP avatars'
+'python-axolotl: OMEMO support'
+'python-qrcode: generate QR codes for OMEMO keys')
 source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2)
-sha512sums=('47b18de111643eba382255e7c2d195b41f30bf15957cd27939ebd44eade7af1b9ebe50c30ca10f33ca36e879d309fc414369fd8ba2c725c336f38a3a0f88ba7c')
+sha512sums=('af943e16129ca8df8b76e44e3ba1514aaa996a016c505305b77efefb6564c5aa1747a4ac001b24c65910713d7aee62e63ca0052dca048283f8eeb0f2d75094f3')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -43,7 +43,7 @@
 
 package() {
   cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }
 
 # vim: ts=2 sw=2 et:


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:25:37
  Author: anthraxx
Revision: 421350

upgpkg: radare2-cutter 1.7.3-1

Modified:
  radare2-cutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:22:29 UTC (rev 421349)
+++ PKGBUILD2019-01-10 00:25:37 UTC (rev 421350)
@@ -2,8 +2,8 @@
 # Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
 
 pkgname=radare2-cutter
-_gitcommit=350375afce668534b6d22a1a5b7725e9777c8f2f
-pkgver=1.7.2.r100.g350375af
+_gitcommit=e0554572020be5cb022df89bf25407635cd5c6e2
+pkgver=1.7.3
 pkgrel=1
 pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
 url='https://github.com/radareorg/cutter'


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:25:43
  Author: anthraxx
Revision: 421351

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:25:37 UTC (rev 421350)
+++ PKGBUILD2019-01-10 00:25:43 UTC (rev 421351)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
-
-pkgname=radare2-cutter
-_gitcommit=350375afce668534b6d22a1a5b7725e9777c8f2f
-pkgver=1.7.2.r100.g350375af
-pkgrel=1
-pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
-url='https://github.com/radareorg/cutter'
-arch=('x86_64')
-license=('GPL3')
-depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python' 'jupyter')
-makedepends=('git' 'cmake')
-source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  # remove 'v' prefix on tags; prefix revision with 'r'; replace all '-' with 
'.'
-  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  mkdir -p ${pkgname}/build
-  cd ${pkgname}/build
-  qmake ../src/Cutter.pro
-  make
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm 755 build/Cutter -t "${pkgdir}/usr/bin"
-  install -Dm 644 src/org.radare.Cutter.desktop -t 
"${pkgdir}/usr/share/applications"
-  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
-  install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: radare2-cutter/repos/community-x86_64/PKGBUILD (from rev 421350, 
radare2-cutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:25:43 UTC (rev 421351)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=radare2-cutter
+_gitcommit=e0554572020be5cb022df89bf25407635cd5c6e2
+pkgver=1.7.3
+pkgrel=1
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/cutter'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python' 'jupyter')
+makedepends=('git' 'cmake')
+source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  # remove 'v' prefix on tags; prefix revision with 'r'; replace all '-' with 
'.'
+  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  mkdir -p ${pkgname}/build
+  cd ${pkgname}/build
+  qmake ../src/Cutter.pro
+  make
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 build/Cutter -t "${pkgdir}/usr/bin"
+  install -Dm 644 src/org.radare.Cutter.desktop -t 
"${pkgdir}/usr/share/applications"
+  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Thursday, January 10, 2019 @ 00:22:18
  Author: alad
Revision: 421348

upgpkg: rtv 1.24.0-2

Modified:
  rtv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:18:06 UTC (rev 421347)
+++ PKGBUILD2019-01-10 00:22:18 UTC (rev 421348)
@@ -1,4 +1,4 @@
-# Maintiner: Alad Wenter 
+# Maintainer: Alad Wenter 
 # Contributor: John Jenkins twodopesha...@gmail.com
 pkgname=rtv
 pkgver=1.24.0


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Thursday, January 10, 2019 @ 00:22:29
  Author: alad
Revision: 421349

archrelease: copy trunk to community-any

Added:
  rtv/repos/community-any/
  rtv/repos/community-any/PKGBUILD
(from rev 421348, rtv/trunk/PKGBUILD)

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

Copied: rtv/repos/community-any/PKGBUILD (from rev 421348, rtv/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-01-10 00:22:29 UTC (rev 421349)
@@ -0,0 +1,25 @@
+# Maintainer: Alad Wenter 
+# Contributor: John Jenkins twodopesha...@gmail.com
+pkgname=rtv
+pkgver=1.24.0
+pkgrel=2
+pkgdesc="Browse Reddit from your terminal"
+arch=('any')
+url="https://github.com/michael-lazar/rtv;
+license=('custom:MIT')
+makedepends=('python-setuptools')
+depends=('python-beautifulsoup4' 'python-decorator' 
+ 'python-kitchen' 'python-six' 'python-requests')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('8a792c6112e27876a48db09c18fe3032734066193d6c79614d7df1b83f48e744')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Thursday, January 10, 2019 @ 00:18:06
  Author: alad
Revision: 421347

import rtv

Added:
  rtv/
  rtv/repos/
  rtv/trunk/
  rtv/trunk/PKGBUILD

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

Added: rtv/trunk/PKGBUILD
===
--- rtv/trunk/PKGBUILD  (rev 0)
+++ rtv/trunk/PKGBUILD  2019-01-10 00:18:06 UTC (rev 421347)
@@ -0,0 +1,25 @@
+# Maintiner: Alad Wenter 
+# Contributor: John Jenkins twodopesha...@gmail.com
+pkgname=rtv
+pkgver=1.24.0
+pkgrel=2
+pkgdesc="Browse Reddit from your terminal"
+arch=('any')
+url="https://github.com/michael-lazar/rtv;
+license=('custom:MIT')
+makedepends=('python-setuptools')
+depends=('python-beautifulsoup4' 'python-decorator' 
+ 'python-kitchen' 'python-six' 'python-requests')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('8a792c6112e27876a48db09c18fe3032734066193d6c79614d7df1b83f48e744')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:17:40
  Author: anthraxx
Revision: 421346

archrelease: copy trunk to community-x86_64

Added:
  radare2/repos/community-x86_64/PKGBUILD
(from rev 421345, radare2/trunk/PKGBUILD)
Deleted:
  radare2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:17:27 UTC (rev 421345)
+++ PKGBUILD2019-01-10 00:17:40 UTC (rev 421346)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Guillermo Ramos <0xwille at gmail dot com>
-
-pkgname=radare2
-pkgver=3.1.3
-pkgrel=1
-pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
-url='https://radare.org'
-arch=('x86_64')
-license=('GPL3' 'LGPL3')
-depends=('sh' 'capstone' 'openssl' 'libzip')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz)
-sha256sums=('e3198565b02b95c67da5c45e7f157b5a9e1c7d8afe0238bd5631459b0e7731fb')
-sha512sums=('75b4966e8d64ffd341c50b22d12653e4ead23352d25a7a1f923ee6cb177bd0a9a16e7c02cbd5b58cf3da03f415168606cd67ed19f594dca75c66114e9c35903f')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-syscapstone \
---with-syszip \
---with-openssl
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 doc/zsh/* -t "${pkgdir}/usr/share/zsh/site-functions"
-}
-
-# vim: ts=2 sw=2 et:

Copied: radare2/repos/community-x86_64/PKGBUILD (from rev 421345, 
radare2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:17:40 UTC (rev 421346)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: Guillermo Ramos <0xwille at gmail dot com>
+
+pkgname=radare2
+pkgver=3.2.0
+pkgrel=1
+pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
+url='https://radare.org'
+arch=('x86_64')
+license=('GPL3' 'LGPL3')
+depends=('sh' 'capstone' 'openssl' 'libzip')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz)
+sha256sums=('18dbec13588d7795e3ce0b3a442578227d941b70cb1421b52abe127191db6634')
+sha512sums=('9773068568cf71797b0c86837188604130ef9d63e7b7fd115820d8979dde37d259aaea45002c9984e8c3599e9bade53720d3bb1b3635bdad5a2dc73aff54f048')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-syscapstone \
+--with-syszip \
+--with-openssl
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 doc/zsh/* -t "${pkgdir}/usr/share/zsh/site-functions"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:17:27
  Author: anthraxx
Revision: 421345

upgpkg: radare2 3.2.0-1

Modified:
  radare2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:12:54 UTC (rev 421344)
+++ PKGBUILD2019-01-10 00:17:27 UTC (rev 421345)
@@ -2,7 +2,7 @@
 # Contributor: Guillermo Ramos <0xwille at gmail dot com>
 
 pkgname=radare2
-pkgver=3.1.3
+pkgver=3.2.0
 pkgrel=1
 pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
 url='https://radare.org'
@@ -11,8 +11,8 @@
 depends=('sh' 'capstone' 'openssl' 'libzip')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz)
-sha256sums=('e3198565b02b95c67da5c45e7f157b5a9e1c7d8afe0238bd5631459b0e7731fb')
-sha512sums=('75b4966e8d64ffd341c50b22d12653e4ead23352d25a7a1f923ee6cb177bd0a9a16e7c02cbd5b58cf3da03f415168606cd67ed19f594dca75c66114e9c35903f')
+sha256sums=('18dbec13588d7795e3ce0b3a442578227d941b70cb1421b52abe127191db6634')
+sha512sums=('9773068568cf71797b0c86837188604130ef9d63e7b7fd115820d8979dde37d259aaea45002c9984e8c3599e9bade53720d3bb1b3635bdad5a2dc73aff54f048')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:12:47
  Author: anthraxx
Revision: 421343

upgpkg: ccache 3.5.1a-1

Modified:
  ccache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:10:19 UTC (rev 421342)
+++ PKGBUILD2019-01-10 00:12:47 UTC (rev 421343)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=ccache
-pkgver=3.5
+pkgver=3.5.1a
 pkgrel=1
 pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
 url='https://ccache.samba.org/'
@@ -12,13 +12,13 @@
 depends=('zlib')
 source=(https://www.samba.org/ftp/ccache/ccache-${pkgver}.tar.xz{,.asc})
 validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

-sha256sums=('bdd44b72ae4506a2e2deef9fefb15c606a474bbca7658cd2be26105155eec012'
+sha256sums=('0baea2c5bc4169ed3dad1f895e6d279323c5b8d3c9f0209998fe6da4601d0701'
 'SKIP')
-sha512sums=('92181fb794f06dc231baa4193c37e8f1d844c9281fd64bcb8f4b35c87b4a88dfc9bf36b810b37151ee85699778fcd3783818949a7010e619aeca7e3b33b7a2e3'
+sha512sums=('8a2e9eb06ba21fcf92084afd94fc221168693de545e0448f4da2098bef2bcbfdb017117c325b0bab4931b9e346dd8c1a9d1ebaed0cdc36496d9452985cdd1b43'
 'SKIP')
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver/a/}
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc
@@ -26,12 +26,12 @@
 }
 
 check() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver/a/}
   make check
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver/a/}
 
   install -Dm 755 ccache -t "${pkgdir}/usr/bin"
   install -Dm 644 doc/ccache.1 -t "${pkgdir}/usr/share/man/man1"


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:12:54
  Author: anthraxx
Revision: 421344

archrelease: copy trunk to community-x86_64

Added:
  ccache/repos/community-x86_64/PKGBUILD
(from rev 421343, ccache/trunk/PKGBUILD)
Deleted:
  ccache/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:12:47 UTC (rev 421343)
+++ PKGBUILD2019-01-10 00:12:54 UTC (rev 421344)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=ccache
-pkgver=3.5
-pkgrel=1
-pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
-url='https://ccache.samba.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('zlib')
-source=(https://www.samba.org/ftp/ccache/ccache-${pkgver}.tar.xz{,.asc})
-validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

-sha256sums=('bdd44b72ae4506a2e2deef9fefb15c606a474bbca7658cd2be26105155eec012'
-'SKIP')
-sha512sums=('92181fb794f06dc231baa4193c37e8f1d844c9281fd64bcb8f4b35c87b4a88dfc9bf36b810b37151ee85699778fcd3783818949a7010e619aeca7e3b33b7a2e3'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 ccache -t "${pkgdir}/usr/bin"
-  install -Dm 644 doc/ccache.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 doc/{AUTHORS,MANUAL,NEWS}.adoc README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-
-  install -d "${pkgdir}/usr/lib/ccache/bin"
-  local _prog
-  for _prog in gcc g++ c++; do
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/${CHOST}-$_prog"
-  done
-  for _prog in cc clang clang++; do
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: ccache/repos/community-x86_64/PKGBUILD (from rev 421343, 
ccache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:12:54 UTC (rev 421344)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=ccache
+pkgver=3.5.1a
+pkgrel=1
+pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
+url='https://ccache.samba.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('zlib')
+source=(https://www.samba.org/ftp/ccache/ccache-${pkgver}.tar.xz{,.asc})
+validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

+sha256sums=('0baea2c5bc4169ed3dad1f895e6d279323c5b8d3c9f0209998fe6da4601d0701'
+'SKIP')
+sha512sums=('8a2e9eb06ba21fcf92084afd94fc221168693de545e0448f4da2098bef2bcbfdb017117c325b0bab4931b9e346dd8c1a9d1ebaed0cdc36496d9452985cdd1b43'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver/a/}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver/a/}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver/a/}
+
+  install -Dm 755 ccache -t "${pkgdir}/usr/bin"
+  install -Dm 644 doc/ccache.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 doc/{AUTHORS,MANUAL,NEWS}.adoc README.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+
+  install -d "${pkgdir}/usr/lib/ccache/bin"
+  local _prog
+  for _prog in gcc g++ c++; do
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/${CHOST}-$_prog"
+  done
+  for _prog in cc clang clang++; do
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
+  done
+}
+
+# vim: ts=2 sw=2 et:


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Thursday, January 10, 2019 @ 00:10:19
  Author: alad
Revision: 421342

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:09:50 UTC (rev 421341)
+++ PKGBUILD2019-01-10 00:10:19 UTC (rev 421342)
@@ -1,24 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: John Jenkins twodopesha...@gmail.com
-# Contributor: Sean Anderson sean...@gmail.com
-pkgname=python-kitchen
-pkgver=1.2.5
-pkgrel=2
-pkgdesc="Useful snippets of python code"
-url="https://github.com/fedora-infra/kitchen;
-depends=('python')
-makedepends=('python' 'python-setuptools')
-license=('LGPL')
-arch=('any')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
-
-build() {
-cd "kitchen-$pkgver"
-python setup.py build
-}
-
-package() {
-cd "kitchen-$pkgver"
-python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-kitchen/repos/community-any/PKGBUILD (from rev 421341, 
python-kitchen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:10:19 UTC (rev 421342)
@@ -0,0 +1,37 @@
+# Maintainer: Alad Wenter 
+# Contributor: John Jenkins twodopesha...@gmail.com
+# Contributor: Sean Anderson sean...@gmail.com
+pkgname=('python-kitchen' 'python2-kitchen')
+pkgbase=python-kitchen
+pkgver=1.2.5
+pkgrel=3
+pkgdesc="Useful snippets of python code"
+url="https://github.com/fedora-infra/kitchen;
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('LGPL')
+arch=('any')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
+
+build() {
+cd "kitchen-$pkgver"
+
+# kitchen has separate source trees for python2 and python3
+python setup.py build
+python2 setup.py build
+}
+
+package_python-kitchen() {
+depends=('python')
+cd "kitchen-$pkgver"
+
+python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-kitchen() {
+depends=('python2')
+cd "kitchen-$pkgver"
+
+python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+sed -i 's/python/python2/' 
"$pkgdir/usr/lib/python2.7/site-packages/kitchen/pycompat24/base64/_base64.py"
+}


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Thursday, January 10, 2019 @ 00:09:50
  Author: alad
Revision: 421341

upgpkg: python-kitchen 1.2.5-3

Modified:
  python-kitchen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-10 00:01:14 UTC (rev 421340)
+++ PKGBUILD2019-01-10 00:09:50 UTC (rev 421341)
@@ -1,13 +1,13 @@
 # Maintainer: Alad Wenter 
 # Contributor: John Jenkins twodopesha...@gmail.com
 # Contributor: Sean Anderson sean...@gmail.com
-pkgname=python-kitchen
+pkgname=('python-kitchen' 'python2-kitchen')
+pkgbase=python-kitchen
 pkgver=1.2.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Useful snippets of python code"
 url="https://github.com/fedora-infra/kitchen;
-depends=('python')
-makedepends=('python' 'python-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools')
 license=('LGPL')
 arch=('any')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
@@ -15,10 +15,23 @@
 
 build() {
 cd "kitchen-$pkgver"
+
+# kitchen has separate source trees for python2 and python3
 python setup.py build
+python2 setup.py build
 }
 
-package() {
+package_python-kitchen() {
+depends=('python')
 cd "kitchen-$pkgver"
+
 python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
+
+package_python2-kitchen() {
+depends=('python2')
+cd "kitchen-$pkgver"
+
+python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+sed -i 's/python/python2/' 
"$pkgdir/usr/lib/python2.7/site-packages/kitchen/pycompat24/base64/_base64.py"
+}


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:01:14
  Author: anthraxx
Revision: 421340

archrelease: copy trunk to community-x86_64

Added:
  distorm/repos/community-x86_64/PKGBUILD
(from rev 421339, distorm/trunk/PKGBUILD)
Deleted:
  distorm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 00:01:05 UTC (rev 421339)
+++ PKGBUILD2019-01-10 00:01:14 UTC (rev 421340)
@@ -1,60 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Mike Sampson 
-# Contributor: Dmitry A. Ilyashevich 
-
-pkgbase=distorm
-pkgname=('distorm' 'python-distorm' 'python2-distorm')
-pkgver=3.3.8
-pkgrel=1
-pkgdesc='Powerful disassembler library for x86/AMD64'
-url='https://github.com/gdabah/distorm'
-arch=('x86_64')
-license=('BSD')
-makedepends=('python' 'python2' 'glibc')
-options=('staticlibs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gdabah/distorm/archive/v${pkgver}.tar.gz)
-sha512sums=('bf65fe500089b4aa38d6430eb985f1dc3494b43c829379c56f91b5b4b25d19504fa3781a2fb2b03946f541962f6e564e46d6ec464c469ee21ecb773303b8494e')
-
-prepare() {
-  cp -ra ${pkgbase}-${pkgver}{,-py2}
-  sed -e '1i#!/usr/bin/env python' -i 
${pkgbase}-${pkgver}/examples/python/sample.py
-  sed -e '1i#!/usr/bin/env python2' -i 
${pkgbase}-${pkgver}-py2/examples/python/sample.py
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}
-make -C make/linux CFLAGS="${CFLAGS} ${CPPFLAGS} -fPIC"
-python setup.py build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-  )
-}
-
-package_distorm() {
-  depends=('glibc')
-  provides=('libdistorm3.so')
-  cd ${pkgbase}-${pkgver}
-  make -C make/linux PREFIX=/usr DESTDIR="${pkgdir}" install
-  install -Dm 644 include/*.h -t "${pkgdir}/usr/include"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /usr/lib/libdistorm3.so "${pkgdir}/usr/lib/libdistorm3.so".$(grep 
'LIB_S_VERSION =' make/linux/Makefile|cut -d' ' -f3)
-}
-
-package_python-distorm() {
-  depends=('python')
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 755 examples/python/sample.py -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python2-distorm() {
-  depends=('python2')
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 755 examples/python/sample.py -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: distorm/repos/community-x86_64/PKGBUILD (from rev 421339, 
distorm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-10 00:01:14 UTC (rev 421340)
@@ -0,0 +1,60 @@
+# Maintainer: Levente Polyak 
+# Contributor: Mike Sampson 
+# Contributor: Dmitry A. Ilyashevich 
+
+pkgbase=distorm
+pkgname=('distorm' 'python-distorm' 'python2-distorm')
+pkgver=3.4.1
+pkgrel=1
+pkgdesc='Powerful disassembler library for x86/AMD64'
+url='https://github.com/gdabah/distorm'
+arch=('x86_64')
+license=('BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 
'glibc')
+options=('staticlibs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gdabah/distorm/archive/v${pkgver}.tar.gz)
+sha512sums=('0e9f8b62bc190ef7d516f1902b6003adef9c7d5d4a5f985fb0bdfc5d4838b2805e2b8836b02d5eccdb3401e814417de615dec675aed9e606c93122ca8a0d2083')
+
+prepare() {
+  cp -ra ${pkgbase}-${pkgver}{,-py2}
+  sed -e '1i#!/usr/bin/env python' -i 
${pkgbase}-${pkgver}/examples/python/sample.py
+  sed -e '1i#!/usr/bin/env python2' -i 
${pkgbase}-${pkgver}-py2/examples/python/sample.py
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}
+make -C make/linux CFLAGS="${CFLAGS} ${CPPFLAGS} -fPIC"
+python setup.py build
+  )
+  (cd ${pkgbase}-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+package_distorm() {
+  depends=('glibc')
+  provides=('libdistorm3.so')
+  cd ${pkgbase}-${pkgver}
+  make -C make/linux PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 include/*.h -t "${pkgdir}/usr/include"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -sf "/usr/lib/libdistorm3.so.$(grep 'LIB_R_VERSION =' 
make/linux/Makefile|cut -d' ' -f3)" "${pkgdir}/usr/lib/libdistorm3.so"
+}
+
+package_python-distorm() {
+  depends=('python')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 755 examples/python/sample.py -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python2-distorm() {
+  depends=('python2')
+  cd ${pkgbase}-${pkgver}-py2
+  python2 

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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Thursday, January 10, 2019 @ 00:01:05
  Author: anthraxx
Revision: 421339

upgpkg: distorm 3.4.1-1

Modified:
  distorm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 23:54:29 UTC (rev 421338)
+++ PKGBUILD2019-01-10 00:01:05 UTC (rev 421339)
@@ -4,16 +4,16 @@
 
 pkgbase=distorm
 pkgname=('distorm' 'python-distorm' 'python2-distorm')
-pkgver=3.3.8
+pkgver=3.4.1
 pkgrel=1
 pkgdesc='Powerful disassembler library for x86/AMD64'
 url='https://github.com/gdabah/distorm'
 arch=('x86_64')
 license=('BSD')
-makedepends=('python' 'python2' 'glibc')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 
'glibc')
 options=('staticlibs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gdabah/distorm/archive/v${pkgver}.tar.gz)
-sha512sums=('bf65fe500089b4aa38d6430eb985f1dc3494b43c829379c56f91b5b4b25d19504fa3781a2fb2b03946f541962f6e564e46d6ec464c469ee21ecb773303b8494e')
+sha512sums=('0e9f8b62bc190ef7d516f1902b6003adef9c7d5d4a5f985fb0bdfc5d4838b2805e2b8836b02d5eccdb3401e814417de615dec675aed9e606c93122ca8a0d2083')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -38,7 +38,7 @@
   make -C make/linux PREFIX=/usr DESTDIR="${pkgdir}" install
   install -Dm 644 include/*.h -t "${pkgdir}/usr/include"
   install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /usr/lib/libdistorm3.so "${pkgdir}/usr/lib/libdistorm3.so".$(grep 
'LIB_S_VERSION =' make/linux/Makefile|cut -d' ' -f3)
+  ln -sf "/usr/lib/libdistorm3.so.$(grep 'LIB_R_VERSION =' 
make/linux/Makefile|cut -d' ' -f3)" "${pkgdir}/usr/lib/libdistorm3.so"
 }
 
 package_python-distorm() {


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Wednesday, January 9, 2019 @ 23:54:29
  Author: alad
Revision: 421338

archrelease: copy trunk to community-any

Added:
  python-kitchen/repos/community-any/
  python-kitchen/repos/community-any/PKGBUILD
(from rev 421337, python-kitchen/trunk/PKGBUILD)

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

Copied: python-kitchen/repos/community-any/PKGBUILD (from rev 421337, 
python-kitchen/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-01-09 23:54:29 UTC (rev 421338)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter 
+# Contributor: John Jenkins twodopesha...@gmail.com
+# Contributor: Sean Anderson sean...@gmail.com
+pkgname=python-kitchen
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="Useful snippets of python code"
+url="https://github.com/fedora-infra/kitchen;
+depends=('python')
+makedepends=('python' 'python-setuptools')
+license=('LGPL')
+arch=('any')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
+
+build() {
+cd "kitchen-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "kitchen-$pkgver"
+python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in (4 files)

2019-01-09 Thread Alad Wenter via arch-commits
Date: Wednesday, January 9, 2019 @ 23:53:56
  Author: alad
Revision: 421337

import python-kitchen

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

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

Added: python-kitchen/trunk/PKGBUILD
===
--- python-kitchen/trunk/PKGBUILD   (rev 0)
+++ python-kitchen/trunk/PKGBUILD   2019-01-09 23:53:56 UTC (rev 421337)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter 
+# Contributor: John Jenkins twodopesha...@gmail.com
+# Contributor: Sean Anderson sean...@gmail.com
+pkgname=python-kitchen
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="Useful snippets of python code"
+url="https://github.com/fedora-infra/kitchen;
+depends=('python')
+makedepends=('python' 'python-setuptools')
+license=('LGPL')
+arch=('any')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
+
+build() {
+cd "kitchen-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "kitchen-$pkgver"
+python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in gitlab-gitaly/repos/community-staging-x86_64 (4 files)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 23:31:19
  Author: svenstaro
Revision: 421336

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD
(from rev 421335, gitlab-gitaly/trunk/PKGBUILD)
  gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service
(from rev 421335, gitlab-gitaly/trunk/gitlab-gitaly.service)
Deleted:
  gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD
  gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service

---+
 PKGBUILD  |  138 
 gitlab-gitaly.service |   50 -
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 23:31:15 UTC (rev 421335)
+++ PKGBUILD2019-01-09 23:31:19 UTC (rev 421336)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab-gitaly
-pkgver=1.12.0
-pkgrel=2
-pkgdesc="Speed up Git access using caching"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitaly;
-license=('MIT')
-depends=(glibc ruby2.3 libxml2 libxslt)
-options=(!buildflags)
-makedepends=(go ruby2.3-bundler cmake)
-backup=("etc/gitlab-gitaly/config.toml")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
-"gitlab-gitaly.service")
-sha512sums=('3a97ebbaac1cff259c6ce9ab13758bc4dfc66e92d144da3c9dc7966281f4375f4fd42c6d02e05a8bb8cf375dd69745232505d836339918fc6e0061ff4e399c5d'
-
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
-
-_homedir="/var/lib/gitlab"
-
-prepare() {
-  cd "gitaly-"*
-
-  sed -i "s/bundle install/bundle-2.3 install/" Makefile
-  sed -i "s/bundle config/bundle-2.3 config/" Makefile
-  sed -i "s/bundle show/bundle-2.3 show/" Makefile
-  sed -i "s/bundle/bundle-2.3/" internal/rubyserver/rubyserver.go
-  sed -i "s/bundle/bundle-2.3/" internal/linguist/linguist.go
-  sed -i "s/bundle/bundle-2.3/" _support/makegen.go
-  sed -i "s/\"ruby\"/\"ruby-2.3\"/" internal/linguist/linguist.go
-  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/gitaly-ruby
-  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/ruby-cd
-  sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
-  sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
-  sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example
-  sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" 
config.toml.example
-
-  # https://github.com/bundler/bundler/issues/6882
-  sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
-}
-
-build() {
-  cd "gitaly-"*
-
-  make build
-}
-
-package() {
-  cd "gitaly-"*
-
-  make PREFIX=/usr DESTDIR=${pkgdir} install
-  mkdir -p "${pkgdir}/etc/${pkgname}"
-  sed \
--e "s|^socket_path =.*|socket_path = 
\"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
--e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
-config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
-
-  mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
-  cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
-
-  install -Dm644 config.toml.example 
"${pkgdir}/usr/share/${pkgname}/config.toml.example"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm0644 "${srcdir}/gitlab-gitaly.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD (from rev 421335, 
gitlab-gitaly/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 23:31:19 UTC (rev 421336)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=1.12.0
+pkgrel=3
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly;
+license=('MIT')
+depends=(glibc ruby2.5 libxml2 libxslt)
+options=(!buildflags)
+makedepends=(go ruby2.5-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
+"gitlab-gitaly.service")

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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 23:31:15
  Author: svenstaro
Revision: 421335

upgpkg: gitlab-gitaly 1.12.0-3

Actually use ruby2.5

Modified:
  gitlab-gitaly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 23:27:20 UTC (rev 421334)
+++ PKGBUILD2019-01-09 23:31:15 UTC (rev 421335)
@@ -5,14 +5,14 @@
 # need this again at some point in the future.
 pkgname=gitlab-gitaly
 pkgver=1.12.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Speed up Git access using caching"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitaly;
 license=('MIT')
-depends=(glibc ruby2.3 libxml2 libxslt)
+depends=(glibc ruby2.5 libxml2 libxslt)
 options=(!buildflags)
-makedepends=(go ruby2.3-bundler cmake)
+makedepends=(go ruby2.5-bundler cmake)
 backup=("etc/gitlab-gitaly/config.toml")
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
 "gitlab-gitaly.service")
@@ -24,15 +24,15 @@
 prepare() {
   cd "gitaly-"*
 
-  sed -i "s/bundle install/bundle-2.3 install/" Makefile
-  sed -i "s/bundle config/bundle-2.3 config/" Makefile
-  sed -i "s/bundle show/bundle-2.3 show/" Makefile
-  sed -i "s/bundle/bundle-2.3/" internal/rubyserver/rubyserver.go
-  sed -i "s/bundle/bundle-2.3/" internal/linguist/linguist.go
-  sed -i "s/bundle/bundle-2.3/" _support/makegen.go
-  sed -i "s/\"ruby\"/\"ruby-2.3\"/" internal/linguist/linguist.go
-  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/gitaly-ruby
-  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/ruby-cd
+  sed -i "s/bundle install/bundle-2.5 install/" Makefile
+  sed -i "s/bundle config/bundle-2.5 config/" Makefile
+  sed -i "s/bundle show/bundle-2.5 show/" Makefile
+  sed -i "s/bundle/bundle-2.5/" internal/rubyserver/rubyserver.go
+  sed -i "s/bundle/bundle-2.5/" internal/linguist/linguist.go
+  sed -i "s/bundle/bundle-2.5/" _support/makegen.go
+  sed -i "s/\"ruby\"/\"ruby-2.5\"/" internal/linguist/linguist.go
+  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/gitaly-ruby
+  sed -i "s/env ruby/env ruby-2.5/" ruby/bin/ruby-cd
   sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
   sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
   sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example


[arch-commits] Commit in (ruby2.3-bundler ruby2.3)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 23:27:20
  Author: svenstaro
Revision: 421334

Remove ruby2.3 stuff

Deleted:
  ruby2.3-bundler/
  ruby2.3/


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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 23:23:24
  Author: svenstaro
Revision: 421333

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab/repos/community-staging-x86_64/
  gitlab/repos/community-staging-x86_64/PKGBUILD
(from rev 421332, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-staging-x86_64/gitlab-backup.service
(from rev 421332, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-staging-x86_64/gitlab-backup.timer
(from rev 421332, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-staging-x86_64/gitlab-mailroom.service
(from rev 421332, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-staging-x86_64/gitlab-sidekiq.service
(from rev 421332, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-staging-x86_64/gitlab-unicorn.service
(from rev 421332, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-staging-x86_64/gitlab.install
(from rev 421332, gitlab/trunk/gitlab.install)
  gitlab/repos/community-staging-x86_64/gitlab.logrotate
(from rev 421332, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-staging-x86_64/gitlab.target
(from rev 421332, gitlab/trunk/gitlab.target)
  gitlab/repos/community-staging-x86_64/gitlab.tmpfiles.d
(from rev 421332, gitlab/trunk/gitlab.tmpfiles.d)

-+
 PKGBUILD|  218 ++
 gitlab-backup.service   |   20 
 gitlab-backup.timer |   10 ++
 gitlab-mailroom.service |   22 
 gitlab-sidekiq.service  |   31 ++
 gitlab-unicorn.service  |   34 +++
 gitlab.install  |   20 
 gitlab.logrotate|   11 ++
 gitlab.target   |7 +
 gitlab.tmpfiles.d   |1 
 10 files changed, 374 insertions(+)

Copied: gitlab/repos/community-staging-x86_64/PKGBUILD (from rev 421332, 
gitlab/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-09 23:23:24 UTC (rev 421333)
@@ -0,0 +1,218 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Jonas Heinrich 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+# Contributor: Caleb Maclennan 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab
+pkgver=11.6.3
+pkgrel=2
+pkgdesc="Project management and code hosting application"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-ce;
+license=('MIT')
+options=(!buildflags)
+depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
+makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
+optdepends=('postgresql: database backend'
+'mysql: database backend'
+'python2-docutils: reStructuredText markup language support'
+'smtp-server: mail server in order to receive mail notifications')
+backup=("etc/webapps/${pkgname}/application.rb"
+"etc/webapps/${pkgname}/gitlab.yml"
+"etc/webapps/${pkgname}/resque.yml"
+"etc/webapps/${pkgname}/unicorn.rb"
+"etc/logrotate.d/${pkgname}")
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-ce/repository/archive?sha=v${pkgver};
+gitlab-unicorn.service
+gitlab-sidekiq.service
+gitlab-backup.service
+gitlab-mailroom.service
+gitlab-backup.timer
+gitlab.target
+gitlab.tmpfiles.d
+gitlab.logrotate)
+install='gitlab.install'
+sha512sums=('754916481228b4d726d3ce2c5b2184b0e3741e004e8e80a08d96e9ea4c6be72995a0ecf9cb6ce66b2e697d0474e3353ab4db4ad286a64f2873dec0596dd24666'
+
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
+
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
+
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
+
'fdb698c86057574aecaa1f1503f3d3319e06d5e872c676d58590b48bb7b3483b837bc991136eb2cc4b2cea68b52d294b8c1b382c9659f14027a923ac3c17d6d5'
+
'c11d2c59da8325551a465227096e8d39b0e4bcd5b1db21565cf3439e431838c04bc00aa6f07f4d493f3f47fd6b4e25aeb0fe0fc1a05756064706bf5708c960ec'
+
'bf33b818e4ea671c16f58563997ba5fe0a09090e5c03577ff974d31324d4e9782b85a9bb4f1749b97257ce93400c692de935f003770d52b5994c9cab9aee57c6'
+

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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 23:23:16
  Author: svenstaro
Revision: 421332

upgpkg: gitlab 11.6.3-2

Fix version to ruby2.5

Modified:
  gitlab/trunk/PKGBUILD
  gitlab/trunk/gitlab-backup.service
  gitlab/trunk/gitlab-mailroom.service
  gitlab/trunk/gitlab-sidekiq.service
  gitlab/trunk/gitlab-unicorn.service
  gitlab/trunk/gitlab.install

-+
 PKGBUILD|   28 +++-
 gitlab-backup.service   |4 ++--
 gitlab-mailroom.service |4 ++--
 gitlab-sidekiq.service  |6 +++---
 gitlab-unicorn.service  |4 ++--
 gitlab.install  |8 
 6 files changed, 32 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 23:21:50 UTC (rev 421331)
+++ PKGBUILD2019-01-09 23:23:16 UTC (rev 421332)
@@ -11,13 +11,13 @@
 # need this again at some point in the future.
 pkgname=gitlab
 pkgver=11.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce;
 license=('MIT')
 options=(!buildflags)
-depends=('ruby' 'git' 'ruby-bundler' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
+depends=('ruby2.5' 'ruby2.5-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs')
 makedepends=('cmake' 'postgresql' 'mariadb' 'yarn' 'go' 'nodejs')
 optdepends=('postgresql: database backend'
 'mysql: database backend'
@@ -39,10 +39,10 @@
 gitlab.logrotate)
 install='gitlab.install'
 
sha512sums=('754916481228b4d726d3ce2c5b2184b0e3741e004e8e80a08d96e9ea4c6be72995a0ecf9cb6ce66b2e697d0474e3353ab4db4ad286a64f2873dec0596dd24666'
-
'b4cb93962f46f2aedb891be06e052db8d9651992636ce9c0807ad437e9040062fde1a3ff3e91a055b936752c622e0c1762bd2d7d512040c6136928dabf884888'
-
'd2de30f346677ed9387303a7890c8b47aef167325c10314dc4f34fb595265b8a43c311329a8977ab606894561a0f672d23acdbaec628b887f19f3f73d9f385d0'
-
'8d2ca0abb3cc14f02b7e9582cc4628f3443f93f32a005d2c7a3f82b6726d31a1b43e06c1a957e29bd1bdcead596f9194427afc5671a6d1ae44b208ad5a24fb1f'
-
'41f6bf17251fb77105d62c1a5199719414ea2bfe7743d5557138347329e1fd137eeeb22f43f3e77b3058d5ae23639cc9f0ccb41dce3b1a507211e0f3a2b3229b'
+
'd6d0604a726277f27a7596caf31909ff7d9854fd85f2902fd8a06eb581b38cc0e0fd6c10b3b16c84e0c629230501bc51d2f74c765761b43cdead139a521a327d'
+
'41ca8890aff1dd99b3c4ef283f70a172af772837ab6b1bda1d26710616a822f5179899ca9b3a96bc0b434f8f6d614b29b39b1596c0f284e5347ae9e06d40c1c4'
+
'2e49f4c2549c219d5d1c8572a7db7a700847bc8c520b44bdfc1742d3caf57d8336da5c0b74672f820349b8eab0fa1712dcec5588a4fb742ad98c8eb7ec2b5951'
+
'fdb698c86057574aecaa1f1503f3d3319e06d5e872c676d58590b48bb7b3483b837bc991136eb2cc4b2cea68b52d294b8c1b382c9659f14027a923ac3c17d6d5'
 
'c11d2c59da8325551a465227096e8d39b0e4bcd5b1db21565cf3439e431838c04bc00aa6f07f4d493f3f47fd6b4e25aeb0fe0fc1a05756064706bf5708c960ec'
 
'bf33b818e4ea671c16f58563997ba5fe0a09090e5c03577ff974d31324d4e9782b85a9bb4f1749b97257ce93400c692de935f003770d52b5994c9cab9aee57c6'
 
'abacbff0d7be918337a17b56481c84e6bf3eddd9551efe78ba9fb74337179e95c9b60f41c49f275e05074a4074a616be36fa208a48fc12d5b940f0554fbd89c3'
@@ -109,7 +109,7 @@
   echo "Fetching bundled gems..."
 
   # Gems will be installed into vendor/bundle
-  bundle install --no-cache --deployment --without development test aws 
kerberos
+  bundle-2.5 install --no-cache --deployment --without development test aws 
kerberos
 
   # We'll temporarily stick this in here so we can build the assets
   cp config/database.yml.postgresql.orig config/database.yml
@@ -117,8 +117,8 @@
   sed -i 's/url.*/nope.sock/g' config/resque.yml
 
   yarn install --production --pure-lockfile
-  bundle exec rake gitlab:assets:compile RAILS_ENV=production 
NODE_ENV=production NODE_OPTIONS="--max_old_space_size=4096"
-  bundle exec rake gettext:compile RAILS_ENV=production
+  bundle-2.5 exec rake gitlab:assets:compile RAILS_ENV=production 
NODE_ENV=production NODE_OPTIONS="--max_old_space_size=4096"
+  bundle-2.5 exec rake gettext:compile RAILS_ENV=production
 
   # After building assets, clean this up again
   rm config/database.yml config/database.yml.postgresql.orig
@@ -172,6 +172,16 @@
 
   sed -i "s|require_relative '../lib|require '${_datadir}/lib|" 
config/application.rb
 
+  # Fix for ruby-2.5 and bundle-2.5
+  sed -i "s|bundle|bundle-2.5|g" 
"${pkgdir}${_datadir}/lib/tasks/gitlab/check.rake"
+  grep -rl "bin/env ruby" "${pkgdir}${_datadir}" | xargs sed -i "s|bin/env 
ruby$|bin/env ruby-2.5|g"
+  sed -i \
+-e "s|ruby --version|ruby-2.5 --version|g" \
+-e "s|gem --version|gem-2.5 --version|g" \
+-e "s|bundle --version|bundle-2.5 --version|g" \
+-e "s|rake --version|rake-2.5 --version|g" \
+

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

2019-01-09 Thread Daniel M. Capella via arch-commits
Date: Wednesday, January 9, 2019 @ 23:21:50
  Author: polyzen
Revision: 421331

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 23:21:34 UTC (rev 421330)
+++ PKGBUILD2019-01-09 23:21:50 UTC (rev 421331)
@@ -1,21 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=firefox-dark-reader
-pkgver=4.7.2
-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')
-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=('b1d47fb27119ec186fefb7d00cb992f0efdeed4b3e92a8f5d735c5a59b45b224')
-
-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 421330, 
firefox-dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 23:21:50 UTC (rev 421331)
@@ -0,0 +1,22 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.7.5
+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=('ca3cb345a4d424878cc9767387f1002787885919bf6b95160fe7d453afb8f0f9')
+
+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)

2019-01-09 Thread Daniel M. Capella via arch-commits
Date: Wednesday, January 9, 2019 @ 23:21:34
  Author: polyzen
Revision: 421330

upgpkg: firefox-dark-reader 4.7.5-1

Modified:
  firefox-dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:57:36 UTC (rev 421329)
+++ PKGBUILD2019-01-09 23:21:34 UTC (rev 421330)
@@ -2,7 +2,7 @@
 # Contributor: Cookie Engineer 
 
 pkgname=firefox-dark-reader
-pkgver=4.7.2
+pkgver=4.7.5
 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=('b1d47fb27119ec186fefb7d00cb992f0efdeed4b3e92a8f5d735c5a59b45b224')
+sha256sums=('ca3cb345a4d424878cc9767387f1002787885919bf6b95160fe7d453afb8f0f9')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi


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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:57:32
  Author: svenstaro
Revision: 421328

upgpkg: gitlab-gitaly 1.12.0-2

Fix version to ruby2.5

Modified:
  gitlab-gitaly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:54:11 UTC (rev 421327)
+++ PKGBUILD2019-01-09 22:57:32 UTC (rev 421328)
@@ -5,14 +5,14 @@
 # need this again at some point in the future.
 pkgname=gitlab-gitaly
 pkgver=1.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Speed up Git access using caching"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitaly;
 license=('MIT')
-depends=(glibc ruby libxml2 libxslt)
+depends=(glibc ruby2.3 libxml2 libxslt)
 options=(!buildflags)
-makedepends=(go ruby-bundler cmake)
+makedepends=(go ruby2.3-bundler cmake)
 backup=("etc/gitlab-gitaly/config.toml")
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
 "gitlab-gitaly.service")
@@ -24,6 +24,15 @@
 prepare() {
   cd "gitaly-"*
 
+  sed -i "s/bundle install/bundle-2.3 install/" Makefile
+  sed -i "s/bundle config/bundle-2.3 config/" Makefile
+  sed -i "s/bundle show/bundle-2.3 show/" Makefile
+  sed -i "s/bundle/bundle-2.3/" internal/rubyserver/rubyserver.go
+  sed -i "s/bundle/bundle-2.3/" internal/linguist/linguist.go
+  sed -i "s/bundle/bundle-2.3/" _support/makegen.go
+  sed -i "s/\"ruby\"/\"ruby-2.3\"/" internal/linguist/linguist.go
+  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/gitaly-ruby
+  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/ruby-cd
   sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
   sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
   sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example


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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:57:36
  Author: svenstaro
Revision: 421329

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab-gitaly/repos/community-staging-x86_64/
  gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD
(from rev 421328, gitlab-gitaly/trunk/PKGBUILD)
  gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service
(from rev 421328, gitlab-gitaly/trunk/gitlab-gitaly.service)

---+
 PKGBUILD  |   69 
 gitlab-gitaly.service |   25 +
 2 files changed, 94 insertions(+)

Copied: gitlab-gitaly/repos/community-staging-x86_64/PKGBUILD (from rev 421328, 
gitlab-gitaly/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-09 22:57:36 UTC (rev 421329)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=1.12.0
+pkgrel=2
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly;
+license=('MIT')
+depends=(glibc ruby2.3 libxml2 libxslt)
+options=(!buildflags)
+makedepends=(go ruby2.3-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver};
+"gitlab-gitaly.service")
+sha512sums=('3a97ebbaac1cff259c6ce9ab13758bc4dfc66e92d144da3c9dc7966281f4375f4fd42c6d02e05a8bb8cf375dd69745232505d836339918fc6e0061ff4e399c5d'
+
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
+
+_homedir="/var/lib/gitlab"
+
+prepare() {
+  cd "gitaly-"*
+
+  sed -i "s/bundle install/bundle-2.3 install/" Makefile
+  sed -i "s/bundle config/bundle-2.3 config/" Makefile
+  sed -i "s/bundle show/bundle-2.3 show/" Makefile
+  sed -i "s/bundle/bundle-2.3/" internal/rubyserver/rubyserver.go
+  sed -i "s/bundle/bundle-2.3/" internal/linguist/linguist.go
+  sed -i "s/bundle/bundle-2.3/" _support/makegen.go
+  sed -i "s/\"ruby\"/\"ruby-2.3\"/" internal/linguist/linguist.go
+  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/gitaly-ruby
+  sed -i "s/env ruby/env ruby-2.3/" ruby/bin/ruby-cd
+  sed -i "s/VERSION = .*/VERSION = ${pkgver}/" Makefile
+  sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
+  sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example
+  sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" 
config.toml.example
+
+  # https://github.com/bundler/bundler/issues/6882
+  sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
+}
+
+build() {
+  cd "gitaly-"*
+
+  make build
+}
+
+package() {
+  cd "gitaly-"*
+
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+  mkdir -p "${pkgdir}/etc/${pkgname}"
+  sed \
+-e "s|^socket_path =.*|socket_path = 
\"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
+-e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
+config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
+
+  mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
+  cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
+
+  install -Dm644 config.toml.example 
"${pkgdir}/usr/share/${pkgname}/config.toml.example"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-gitaly.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gitlab-gitaly/repos/community-staging-x86_64/gitlab-gitaly.service 
(from rev 421328, gitlab-gitaly/trunk/gitlab-gitaly.service)
===
--- community-staging-x86_64/gitlab-gitaly.service  
(rev 0)
+++ community-staging-x86_64/gitlab-gitaly.service  2019-01-09 22:57:36 UTC 
(rev 421329)
@@ -0,0 +1,25 @@
+#
+#
+# GitLab version: 9.x
+# Contributors  : axil
+# Downloaded from   : 
https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
+#
+
+
+[Unit]
+Description=Gitaly is a Git RPC service for handling all the git calls made by 
GitLab.
+Requires=gitlab-unicorn.service
+Wants=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+Type=simple
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-gitaly
+PIDFile=/run/gitlab/gitaly.pid
+ExecStart=/usr/bin/gitaly /etc/gitlab-gitaly/config.toml
+

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

2019-01-09 Thread Felix Yan via arch-commits
Date: Wednesday, January 9, 2019 @ 22:54:11
  Author: felixonmars
Revision: 421327

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 22:53:53 UTC (rev 421326)
+++ PKGBUILD2019-01-09 22:54:11 UTC (rev 421327)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sergey Mastykov 
-
-pkgbase=python-venusian
-pkgname=('python-venusian' 'python2-venusian')
-pkgver=1.1.0
-pkgrel=2
-pkgdesc="A library for deferring decorator actions"
-arch=('any')
-license=('custom:BSD')
-url="http://pylonsproject.org;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/Pylons/venusian/archive/$pkgver.tar.gz;)
-sha512sums=('a06b26111ace37c1243ac605f1684446247c6e077d15fa77e92c0913e1fc30a0ce339f725cce1414501345abccdfb75e4ac5727e7f4db9fe9757b45b9e29b1cb')
-
-prepare() {
-  cp -a venusian-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/venusian-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/venusian-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/venusian-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/venusian-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-venusian() {
-  depends=('python')
-
-  cd venusian-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-venusian() {
-  depends=('python2')
-
-  cd venusian-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-venusian/repos/community-any/PKGBUILD (from rev 421326, 
python-venusian/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 22:54:11 UTC (rev 421327)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergey Mastykov 
+
+pkgbase=python-venusian
+pkgname=('python-venusian' 'python2-venusian')
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="A library for deferring decorator actions"
+arch=('any')
+license=('custom:BSD')
+url="http://pylonsproject.org;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Pylons/venusian/archive/$pkgver.tar.gz;)
+sha512sums=('8ae485677f28584701d0cb3997aab4c1ecfaa78580a3da951ae63a7c6cc266beee1f5064e0a2653c2e1210a4138aa123c1309be5e5f858ec13ff72ec19429e13')
+
+prepare() {
+  cp -a venusian-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/venusian-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/venusian-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/venusian-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/venusian-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-venusian() {
+  depends=('python')
+
+  cd venusian-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-venusian() {
+  depends=('python2')
+
+  cd venusian-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2019-01-09 Thread Felix Yan via arch-commits
Date: Wednesday, January 9, 2019 @ 22:53:53
  Author: felixonmars
Revision: 421326

upgpkg: python-venusian 1.2.0-1

Modified:
  python-venusian/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:50:06 UTC (rev 421325)
+++ PKGBUILD2019-01-09 22:53:53 UTC (rev 421326)
@@ -3,8 +3,8 @@
 
 pkgbase=python-venusian
 pkgname=('python-venusian' 'python2-venusian')
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.2.0
+pkgrel=1
 pkgdesc="A library for deferring decorator actions"
 arch=('any')
 license=('custom:BSD')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/Pylons/venusian/archive/$pkgver.tar.gz;)
-sha512sums=('a06b26111ace37c1243ac605f1684446247c6e077d15fa77e92c0913e1fc30a0ce339f725cce1414501345abccdfb75e4ac5727e7f4db9fe9757b45b9e29b1cb')
+sha512sums=('8ae485677f28584701d0cb3997aab4c1ecfaa78580a3da951ae63a7c6cc266beee1f5064e0a2653c2e1210a4138aa123c1309be5e5f858ec13ff72ec19429e13')
 
 prepare() {
   cp -a venusian-$pkgver{,-py2}


[arch-commits] Commit in gitlab-shell/repos/community-staging-x86_64 (10 files)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:50:06
  Author: svenstaro
Revision: 421325

archrelease: copy trunk to community-staging-x86_64

Added:
  gitlab-shell/repos/community-staging-x86_64/252.patch
(from rev 421324, gitlab-shell/trunk/252.patch)
  gitlab-shell/repos/community-staging-x86_64/PKGBUILD
(from rev 421324, gitlab-shell/trunk/PKGBUILD)
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.gitconfig
(from rev 421324, gitlab-shell/trunk/gitlab-shell.gitconfig)
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.install
(from rev 421324, gitlab-shell/trunk/gitlab-shell.install)
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.sysusers
(from rev 421324, gitlab-shell/trunk/gitlab-shell.sysusers)
Deleted:
  gitlab-shell/repos/community-staging-x86_64/252.patch
  gitlab-shell/repos/community-staging-x86_64/PKGBUILD
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.gitconfig
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.install
  gitlab-shell/repos/community-staging-x86_64/gitlab-shell.sysusers

+
 252.patch  |   62 +++---
 PKGBUILD   |  208 +++
 gitlab-shell.gitconfig |   10 +-
 gitlab-shell.install   |8 -
 gitlab-shell.sysusers  |2 
 5 files changed, 147 insertions(+), 143 deletions(-)

Deleted: 252.patch
===
--- 252.patch   2019-01-09 22:50:02 UTC (rev 421324)
+++ 252.patch   2019-01-09 22:50:06 UTC (rev 421325)
@@ -1,31 +0,0 @@
-From 2ae15257494d925d67c40ac2af00da127079ae42 Mon Sep 17 00:00:00 2001
-From: Vlad Petrov 
-Date: Tue, 16 Oct 2018 22:24:41 +0300
-Subject: [PATCH] Update current path extraction
-
-It is recommended to use func Executable since 1.8
-https://tip.golang.org/pkg/os/#Executable

- go/cmd/gitlab-shell/main.go | 6 +-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/go/cmd/gitlab-shell/main.go b/go/cmd/gitlab-shell/main.go
-index ae54151..b42aba7 100644
 a/go/cmd/gitlab-shell/main.go
-+++ b/go/cmd/gitlab-shell/main.go
-@@ -15,7 +15,11 @@ var (
- )
- 
- func init() {
--  binDir = filepath.Dir(os.Args[0])
-+  ex, err := os.Executable()
-+  if err != nil {
-+  panic(err)
-+  }
-+  binDir = filepath.Dir(ex)
-   rootDir = filepath.Dir(binDir)
- }
- 
--- 
-2.18.1
-

Copied: gitlab-shell/repos/community-staging-x86_64/252.patch (from rev 421324, 
gitlab-shell/trunk/252.patch)
===
--- 252.patch   (rev 0)
+++ 252.patch   2019-01-09 22:50:06 UTC (rev 421325)
@@ -0,0 +1,31 @@
+From 2ae15257494d925d67c40ac2af00da127079ae42 Mon Sep 17 00:00:00 2001
+From: Vlad Petrov 
+Date: Tue, 16 Oct 2018 22:24:41 +0300
+Subject: [PATCH] Update current path extraction
+
+It is recommended to use func Executable since 1.8
+https://tip.golang.org/pkg/os/#Executable
+---
+ go/cmd/gitlab-shell/main.go | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/go/cmd/gitlab-shell/main.go b/go/cmd/gitlab-shell/main.go
+index ae54151..b42aba7 100644
+--- a/go/cmd/gitlab-shell/main.go
 b/go/cmd/gitlab-shell/main.go
+@@ -15,7 +15,11 @@ var (
+ )
+ 
+ func init() {
+-  binDir = filepath.Dir(os.Args[0])
++  ex, err := os.Executable()
++  if err != nil {
++  panic(err)
++  }
++  binDir = filepath.Dir(ex)
+   rootDir = filepath.Dir(binDir)
+ }
+ 
+-- 
+2.18.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 22:50:02 UTC (rev 421324)
+++ PKGBUILD2019-01-09 22:50:06 UTC (rev 421325)
@@ -1,102 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Jonas Heinrich 
-# Contributor: Lee Watson 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-
-
-# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
-# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
-# need this again at some point in the future.
-pkgname=gitlab-shell
-pkgver=8.4.4
-pkgrel=3
-epoch=2
-pkgdesc="Git management software"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-shell/;
-license=('MIT')
-depends=('ruby' 'redis' 'git')
-makedepends=('go-pie')
-options=('!strip')
-install=gitlab-shell.install
-backup=("etc/webapps/${pkgname}/config.yml"
-"etc/webapps/${pkgname}/secret"
-"etc/webapps/${pkgname}/gitconfig"
-"etc/webapps/${pkgname}/authorized_keys"
-"etc/webapps/${pkgname}/")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-shell/repository/archive?sha=v${pkgver};
-"gitlab-shell.gitconfig"
-"gitlab-shell.sysusers"
-252.patch)

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

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:50:02
  Author: svenstaro
Revision: 421324

upgpkg: gitlab-shell 2:8.4.4-4

Fix version to ruby2.5

Modified:
  gitlab-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:44:30 UTC (rev 421323)
+++ PKGBUILD2019-01-09 22:50:02 UTC (rev 421324)
@@ -12,13 +12,13 @@
 # need this again at some point in the future.
 pkgname=gitlab-shell
 pkgver=8.4.4
-pkgrel=3
+pkgrel=4
 epoch=2
 pkgdesc="Git management software"
 arch=('x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-shell/;
 license=('MIT')
-depends=('ruby' 'redis' 'git')
+depends=('ruby2.5' 'redis' 'git')
 makedepends=('go-pie')
 options=('!strip')
 install=gitlab-shell.install
@@ -55,6 +55,10 @@
   -e "s|# port:|port:|" \
   -e "s|socket:|# socket:|" \
   config.yml.example > config.yml
+
+  for file in {bin,hooks}/*; do
+sed -i s/ruby/ruby-2.5/g ${file}
+  done
 }
 
 build() {


[arch-commits] Commit in ruby2.5-bundler/repos (2 files)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:44:22
  Author: svenstaro
Revision: 421322

archrelease: copy trunk to community-staging-any

Added:
  ruby2.5-bundler/repos/community-staging-any/
  ruby2.5-bundler/repos/community-staging-any/PKGBUILD
(from rev 421321, ruby2.5-bundler/trunk/PKGBUILD)

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

Copied: ruby2.5-bundler/repos/community-staging-any/PKGBUILD (from rev 421321, 
ruby2.5-bundler/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2019-01-09 22:44:22 UTC (rev 421322)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sergey Shatunov 
+# Contributor: Jonne Haß 
+
+_rubyver=2.5
+_gemname=bundler
+pkgname=ruby${_rubyver}-${_gemname}
+pkgver=1.17.1
+pkgrel=1
+pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
+arch=('any')
+url="http://bundler.io;
+license=('MIT')
+depends=('ruby2.5')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('6adf044096b7716c8b0dae5f559506c65dcb8fd8a8a57428ac25331ca3a85b7cb399fb40b79aeccb0908d172686df9213b86f69286c3e383373ff5ee6f3b414d')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby-${_rubyver} -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-${_rubyver} install 
--no-user-install --ignore-dependencies \
+--no-ri --no-rdoc -i "$pkgdir/$_gemdir" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+
+  install -d "$pkgdir/usr/bin/"
+  ln -s "$_gemdir/bin/bundle" "$pkgdir/usr/bin/bundle-${_rubyver}"
+}


[arch-commits] Commit in ruby2.5-bundler/trunk (PKGBUILD)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:44:19
  Author: svenstaro
Revision: 421320

upgpkg: ruby2.5-bundler 1.17.1-1

Modified:
  ruby2.5-bundler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:40:12 UTC (rev 421319)
+++ PKGBUILD2019-01-09 22:44:19 UTC (rev 421320)
@@ -20,7 +20,7 @@
 package() {
   cd "$srcdir"
 
-  local _gemdir="$(ruby-${_rubyver} -rubygems -e'puts Gem.default_dir')"
+  local _gemdir="$(ruby-${_rubyver} -e'puts Gem.default_dir')"
   HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-${_rubyver} install 
--no-user-install --ignore-dependencies \
 --no-ri --no-rdoc -i "$pkgdir/$_gemdir" "$_gemname-$pkgver.gem"
   rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"


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

2019-01-09 Thread Johannes Löthberg via arch-commits
Date: Wednesday, January 9, 2019 @ 22:44:20
  Author: demize
Revision: 421321

upgpkg: haproxy 1.9.1-1

Added:
  haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
Modified:
  haproxy/trunk/PKGBUILD

-+
 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch |   57 ++
 PKGBUILD|   18 +++-
 2 files changed, 70 insertions(+), 5 deletions(-)

Added: 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
===
--- 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch 
(rev 0)
+++ 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch 2019-01-09 
22:44:20 UTC (rev 421321)
@@ -0,0 +1,57 @@
+From 53fd8dbb4ecd3f8bcf4c1f3c0bc7fe39c7be6bd7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Wed, 9 Jan 2019 23:37:02 +0100
+Subject: [PATCH] Use CFLAGS and LDFLAGS when building contrib
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ contrib/halog/Makefile| 2 +-
+ contrib/ip6range/Makefile | 2 +-
+ contrib/iprange/Makefile  | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/contrib/halog/Makefile b/contrib/halog/Makefile
+index 5e687c09..2474409a 100644
+--- a/contrib/halog/Makefile
 b/contrib/halog/Makefile
+@@ -16,7 +16,7 @@ DEFINE   =
+ OBJS = halog
+ 
+ halog: halog.c fgets2.c
+-  $(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c 
$(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c 
$(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) -o $@ $(INCLUDE) 
$(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c 
$(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c 
$(EBTREE_DIR)/ebimtree.c $^
+ 
+ clean:
+   rm -f $(OBJS) *.[oas]
+diff --git a/contrib/ip6range/Makefile b/contrib/ip6range/Makefile
+index 55849b6d..1276b97d 100644
+--- a/contrib/ip6range/Makefile
 b/contrib/ip6range/Makefile
+@@ -7,7 +7,7 @@ OBJS = ip6range
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+diff --git a/contrib/iprange/Makefile b/contrib/iprange/Makefile
+index b3c72eda..e92baf3d 100644
+--- a/contrib/iprange/Makefile
 b/contrib/iprange/Makefile
+@@ -7,7 +7,7 @@ OBJS = iprange
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+-- 
+2.20.1
+

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:44:19 UTC (rev 421320)
+++ PKGBUILD2019-01-09 22:44:20 UTC (rev 421321)
@@ -2,7 +2,7 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgname=haproxy
-pkgver=1.9.0
+pkgver=1.9.1
 pkgrel=1
 
 pkgdesc='Reliable, high performance TCP/HTTP load balancer'
@@ -18,12 +18,20 @@
 
 source=(https://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
 haproxy.cfg
-haproxy.sysusers)
+haproxy.sysusers
+0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
 
-md5sums=('be67ae289d9261940a31e5bc9a3bf79a'
+md5sums=('7694f210115e880af4e9e62cd357aebd'
  '27941f31d25d5629f4bdef6bc4b2555a'
- '2f00e81ee2f3f6e51a0cd9acc6f3ff3e')
+ '2f00e81ee2f3f6e51a0cd9acc6f3ff3e'
+ '5343b0563c2e0e59110a84e2e611d94f')
 
+prepare() {
+  cd haproxy-$pkgver
+
+  patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
+}
+
 build() {
   cd haproxy-$pkgver
 
@@ -38,7 +46,7 @@
 USE_SYSTEMD=1
 
   for contrib in halog iprange ip6range systemd; do
-make -C contrib/$contrib SBINDIR=/usr/bin CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS"
+make -C contrib/$contrib SBINDIR=/usr/bin OPTIMIZE= CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS"
   done
 }
 


[arch-commits] Commit in haproxy/repos/community-testing-x86_64 (9 files)

2019-01-09 Thread Johannes Löthberg via arch-commits
Date: Wednesday, January 9, 2019 @ 22:44:30
  Author: demize
Revision: 421323

archrelease: copy trunk to community-testing-x86_64

Added:
  
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
(from rev 421322, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 421322, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 421322, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 421322, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/haproxy.sysusers
(from rev 421322, haproxy/trunk/haproxy.sysusers)
Deleted:
  haproxy/repos/community-testing-x86_64/PKGBUILD
  haproxy/repos/community-testing-x86_64/haproxy.cfg
  haproxy/repos/community-testing-x86_64/haproxy.install
  haproxy/repos/community-testing-x86_64/haproxy.sysusers

-+
 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch |   57 +
 PKGBUILD|  146 +++---
 haproxy.cfg |   98 -
 haproxy.install |   16 -
 haproxy.sysusers|2 
 5 files changed, 192 insertions(+), 127 deletions(-)

Copied: 
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
 (from rev 421322, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
===
--- 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch 
(rev 0)
+++ 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch 2019-01-09 
22:44:30 UTC (rev 421323)
@@ -0,0 +1,57 @@
+From 53fd8dbb4ecd3f8bcf4c1f3c0bc7fe39c7be6bd7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Wed, 9 Jan 2019 23:37:02 +0100
+Subject: [PATCH] Use CFLAGS and LDFLAGS when building contrib
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg 
+---
+ contrib/halog/Makefile| 2 +-
+ contrib/ip6range/Makefile | 2 +-
+ contrib/iprange/Makefile  | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/contrib/halog/Makefile b/contrib/halog/Makefile
+index 5e687c09..2474409a 100644
+--- a/contrib/halog/Makefile
 b/contrib/halog/Makefile
+@@ -16,7 +16,7 @@ DEFINE   =
+ OBJS = halog
+ 
+ halog: halog.c fgets2.c
+-  $(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(EBTREE_DIR)/ebtree.c 
$(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c $(EBTREE_DIR)/ebmbtree.c 
$(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c $(EBTREE_DIR)/ebimtree.c $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) -o $@ $(INCLUDE) 
$(EBTREE_DIR)/ebtree.c $(EBTREE_DIR)/eb32tree.c $(EBTREE_DIR)/eb64tree.c 
$(EBTREE_DIR)/ebmbtree.c $(EBTREE_DIR)/ebsttree.c $(EBTREE_DIR)/ebistree.c 
$(EBTREE_DIR)/ebimtree.c $^
+ 
+ clean:
+   rm -f $(OBJS) *.[oas]
+diff --git a/contrib/ip6range/Makefile b/contrib/ip6range/Makefile
+index 55849b6d..1276b97d 100644
+--- a/contrib/ip6range/Makefile
 b/contrib/ip6range/Makefile
+@@ -7,7 +7,7 @@ OBJS = ip6range
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+diff --git a/contrib/iprange/Makefile b/contrib/iprange/Makefile
+index b3c72eda..e92baf3d 100644
+--- a/contrib/iprange/Makefile
 b/contrib/iprange/Makefile
+@@ -7,7 +7,7 @@ OBJS = iprange
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+-- 
+2.20.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 22:44:22 UTC (rev 421322)
+++ PKGBUILD2019-01-09 22:44:30 UTC (rev 421323)
@@ -1,69 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=haproxy
-pkgver=1.9.0
-pkgrel=1
-
-pkgdesc='Reliable, high performance TCP/HTTP load balancer'
-url='https://haproxy.org/'
-arch=('x86_64')
-license=('GPL')
-
-depends=('openssl' 'pcre' 'zlib' 'lua' 'libsystemd')
-
-backup=('etc/haproxy/haproxy.cfg')
-
-install=haproxy.install
-
-source=(https://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
-haproxy.cfg
-haproxy.sysusers)
-
-md5sums=('be67ae289d9261940a31e5bc9a3bf79a'
- '27941f31d25d5629f4bdef6bc4b2555a'
- '2f00e81ee2f3f6e51a0cd9acc6f3ff3e')
-
-build() {
-  cd haproxy-$pkgver
-
-  make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-CPU=generic \
-TARGET=linux2628 \
-USE_GETADDRINFO=1 \
-USE_OPENSSL=1 \
-USE_PCRE=1 

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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Wednesday, January 9, 2019 @ 22:40:03
  Author: anthraxx
Revision: 421318

upgpkg: wireshark 2.6.6-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:28:09 UTC (rev 421317)
+++ PKGBUILD2019-01-09 22:40:03 UTC (rev 421318)
@@ -5,7 +5,7 @@
 
 pkgbase=wireshark
 pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgver=2.6.5
+pkgver=2.6.6
 pkgrel=1
 pkgdesc='Network traffic and protocol analyzer/sniffer'
 url='https://www.wireshark.org/'
@@ -17,7 +17,7 @@
 source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
 wireshark.sysusers
 do_not_use_svn_version.patch)
-sha512sums=('fed2d08bb0ba06496c22a5d45946faf2ff4ca19c59faf758c668c583193faeec3c4379b64750478469fede91562891e9b6991591a09a3da8d2193cb64718d02f'
+sha512sums=('b781c3b34dc76a3d8e60dc2b9b4e46a11994440b8df7b56134521ea9a77b27b0719a600db60d7f3d65f15972a5db2a7e85a8bf60d7217fce498fb5668de8fe56'
 
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990'
 
'847eac73c789b02f57f0ec378d086aea5a103cf0c6525c227d168ad67db08703686d4df37ed2ac95f47125cfcd5cafd472e2988f7f743428b291dc2aebe0f435')
 


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Wednesday, January 9, 2019 @ 22:40:12
  Author: anthraxx
Revision: 421319

archrelease: copy trunk to community-x86_64

Added:
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 421318, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
(from rev 421318, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 421318, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/wireshark.sysusers
(from rev 421318, wireshark/trunk/wireshark.sysusers)
Deleted:
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
  wireshark/repos/community-x86_64/wireshark.install
  wireshark/repos/community-x86_64/wireshark.sysusers

--+
 PKGBUILD |  204 -
 do_not_use_svn_version.patch |   26 ++---
 wireshark.install|   16 +--
 wireshark.sysusers   |2 
 4 files changed, 124 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 22:40:03 UTC (rev 421318)
+++ PKGBUILD2019-01-09 22:40:12 UTC (rev 421319)
@@ -1,102 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-
-pkgbase=wireshark
-pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgver=2.6.5
-pkgrel=1
-pkgdesc='Network traffic and protocol analyzer/sniffer'
-url='https://www.wireshark.org/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('c-ares' 'libmaxminddb' 'qt5-tools' 'qt5-multimedia' 'gtk3' 
'krb5' 'libpcap' 'bash' 'libssh'
- 'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
-options=('!emptydirs')
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
-wireshark.sysusers
-do_not_use_svn_version.patch)
-sha512sums=('fed2d08bb0ba06496c22a5d45946faf2ff4ca19c59faf758c668c583193faeec3c4379b64750478469fede91562891e9b6991591a09a3da8d2193cb64718d02f'
-
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990'
-
'847eac73c789b02f57f0ec378d086aea5a103cf0c6525c227d168ad67db08703686d4df37ed2ac95f47125cfcd5cafd472e2988f7f743428b291dc2aebe0f435')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  # Avoid ugly "svn rev unknown from unknown" version string
-  patch -p1 < "${srcdir}/do_not_use_svn_version.patch"
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt=5 \
-  --with-gtk=3 \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5 \
-  --with-c-ares \
-  --with-maxmind
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc+=' - CLI version'
-  depends=('c-ares' 'libmaxminddb' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 
'gnutls' 'glib2' 'lua52' 'libssh' 'libxml2' 'libnghttp2')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" uninstall-local
-
-  # wireshark uid group is 150
-  install -Dm644 "${srcdir}/wireshark.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/wireshark.conf"
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
-
-  # headers
-  install -Dm 644 *.h -t "${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -Dm 644 ${d}/*.h -t "${pkgdir}/usr/include/${pkgbase}/${d}"
-  done
-}
-
-package_wireshark-common() {
-  pkgdesc+=' - common files'
-  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-data-local
-  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
-}
-
-package_wireshark-gtk() {
-  pkgdesc+=' - GTK frontend'
-  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 .libs/wireshark-gtk "${pkgdir}/usr/bin/wireshark-gtk"
-  install -Dm 644 wireshark-gtk.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-package_wireshark-qt() {
-  pkgdesc+=' - Qt frontend'
-  depends=('desktop-file-utils' 'qt5-multimedia' 'wireshark-cli' 
'wireshark-common')
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 .libs/wireshark "${pkgdir}/usr/bin/wireshark"
-  install -Dm 644 wireshark.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: wireshark/repos/community-x86_64/PKGBUILD (from rev 421318, 
wireshark/trunk/PKGBUILD)

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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Wednesday, January 9, 2019 @ 22:24:16
  Author: alad
Revision: 421316

archrelease: copy trunk to community-x86_64

Added:
  cmst/repos/community-x86_64/
  cmst/repos/community-x86_64/PKGBUILD
(from rev 421315, cmst/trunk/PKGBUILD)

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

Copied: cmst/repos/community-x86_64/PKGBUILD (from rev 421315, 
cmst/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-01-09 22:24:16 UTC (rev 421316)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter 
+# Contributor: Andrew Bibb 
+pkgname=cmst
+pkgver=2018.01.06
+pkgrel=1
+pkgdesc="A QT based GUI front end for the connman connection manager"
+arch=('x86_64')
+url="https://github.com/andrew-bibb/cmst;
+license=('custom:MIT')
+depends=('qt5-base' 'connman' 'libxkbcommon-x11' 'hicolor-icon-theme')
+source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz")
+sha256sums=('30bb83272284ffac4abda4b190aa3099e72ab67ed5075275dfef38145a040365')
+
+build() {
+   cd "$pkgname-$pkgver"
+   qmake-qt5 DISTRO=arch
+   make 
+}
+
+
+package() {
+   cd "$pkgname-$pkgver"
+   make INSTALL_ROOT="$pkgdir/" install
+}


[arch-commits] Commit in ruby2.5/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:21:53
  Author: svenstaro
Revision: 421315

archrelease: copy trunk to community-x86_64

Added:
  ruby2.5/repos/community-x86_64/
  ruby2.5/repos/community-x86_64/PKGBUILD
(from rev 421314, ruby2.5/trunk/PKGBUILD)

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

Copied: ruby2.5/repos/community-x86_64/PKGBUILD (from rev 421314, 
ruby2.5/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-01-09 22:21:53 UTC (rev 421315)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+_rubyver=2.5
+pkgname=ruby2.5
+pkgver=2.5.3
+pkgdesc='An object-oriented language for quick and easy programming (version 
2.5)'
+pkgrel=1
+arch=(x86_64)
+url='http://www.ruby-lang.org/en/'
+license=(BSD custom)
+depends=(gdbm openssl libffi libyaml gmp zlib rubygems)
+optdepends=('tk: for Ruby/TK')
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('6dcae0e8d0bacdb2cbde636e2030596308b5af53f2eb85d3adccb67b02e6f8f9751e8117d12f8484829fdd9d995f6e327f701d9b433bcf94f1f59d13a1fd7518')
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/opt/ruby${_rubyver} \
+--program-suffix=-${_rubyver} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package() {
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -dm755 $pkgdir/usr/bin
+  install -dm755 $pkgdir/usr/lib
+
+  for i in erb irb rdoc ri ruby testrb rake gem; do
+ln -s /opt/$pkgname/bin/$i-${_rubyver} $pkgdir/usr/bin/$i-${_rubyver}
+ln -s /opt/$pkgname/bin/$i-${_rubyver} $pkgdir/opt/$pkgname/bin/$i
+  done
+
+ln -s /opt/$pkgname/lib/libruby.so.${_rubyver} 
$pkgdir/usr/lib/libruby.so.${_rubyver}
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/$pkgname/BSDL"
+}


[arch-commits] Commit in ruby2.5/trunk (PKGBUILD)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:21:50
  Author: svenstaro
Revision: 421314

upgpkg: ruby2.5 2.5.3-1

Modified:
  ruby2.5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 22:20:06 UTC (rev 421313)
+++ PKGBUILD2019-01-09 22:21:50 UTC (rev 421314)
@@ -57,6 +57,6 @@
 
 ln -s /opt/$pkgname/lib/libruby.so.${_rubyver} 
$pkgdir/usr/lib/libruby.so.${_rubyver}
 
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
-  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/$pkgname/BSDL"
 }


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

2019-01-09 Thread Alad Wenter via arch-commits
Date: Wednesday, January 9, 2019 @ 22:20:06
  Author: alad
Revision: 421313

import cmst

Added:
  cmst/
  cmst/repos/
  cmst/trunk/
  cmst/trunk/PKGBUILD

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

Added: cmst/trunk/PKGBUILD
===
--- cmst/trunk/PKGBUILD (rev 0)
+++ cmst/trunk/PKGBUILD 2019-01-09 22:20:06 UTC (rev 421313)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter 
+# Contributor: Andrew Bibb 
+pkgname=cmst
+pkgver=2018.01.06
+pkgrel=1
+pkgdesc="A QT based GUI front end for the connman connection manager"
+arch=('x86_64')
+url="https://github.com/andrew-bibb/cmst;
+license=('custom:MIT')
+depends=('qt5-base' 'connman' 'libxkbcommon-x11' 'hicolor-icon-theme')
+source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz")
+sha256sums=('30bb83272284ffac4abda4b190aa3099e72ab67ed5075275dfef38145a040365')
+
+build() {
+   cd "$pkgname-$pkgver"
+   qmake-qt5 DISTRO=arch
+   make 
+}
+
+
+package() {
+   cd "$pkgname-$pkgver"
+   make INSTALL_ROOT="$pkgdir/" install
+}


[arch-commits] Commit in (4 files)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:16:11
  Author: svenstaro
Revision: 421312

Add ruby2.5-bundler for Gitlab

Added:
  ruby2.5-bundler/
  ruby2.5-bundler/repos/
  ruby2.5-bundler/trunk/
  ruby2.5-bundler/trunk/PKGBUILD

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

Added: ruby2.5-bundler/trunk/PKGBUILD
===
--- ruby2.5-bundler/trunk/PKGBUILD  (rev 0)
+++ ruby2.5-bundler/trunk/PKGBUILD  2019-01-09 22:16:11 UTC (rev 421312)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sergey Shatunov 
+# Contributor: Jonne Haß 
+
+_rubyver=2.5
+_gemname=bundler
+pkgname=ruby${_rubyver}-${_gemname}
+pkgver=1.17.1
+pkgrel=1
+pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
+arch=('any')
+url="http://bundler.io;
+license=('MIT')
+depends=('ruby2.5')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('6adf044096b7716c8b0dae5f559506c65dcb8fd8a8a57428ac25331ca3a85b7cb399fb40b79aeccb0908d172686df9213b86f69286c3e383373ff5ee6f3b414d')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby-${_rubyver} -rubygems -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-${_rubyver} install 
--no-user-install --ignore-dependencies \
+--no-ri --no-rdoc -i "$pkgdir/$_gemdir" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+
+  install -d "$pkgdir/usr/bin/"
+  ln -s "$_gemdir/bin/bundle" "$pkgdir/usr/bin/bundle-${_rubyver}"
+}


[arch-commits] Commit in (ruby2.5 ruby2.5/repos ruby2.5/trunk ruby2.5/trunk/PKGBUILD)

2019-01-09 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 9, 2019 @ 22:13:52
  Author: svenstaro
Revision: 421311

Add ruby2.5 for Gitlab

Added:
  ruby2.5/
  ruby2.5/repos/
  ruby2.5/trunk/
  ruby2.5/trunk/PKGBUILD

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

Added: ruby2.5/trunk/PKGBUILD
===
--- ruby2.5/trunk/PKGBUILD  (rev 0)
+++ ruby2.5/trunk/PKGBUILD  2019-01-09 22:13:52 UTC (rev 421311)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+_rubyver=2.5
+pkgname=ruby2.5
+pkgver=2.5.3
+pkgdesc='An object-oriented language for quick and easy programming (version 
2.5)'
+pkgrel=1
+arch=(x86_64)
+url='http://www.ruby-lang.org/en/'
+license=(BSD custom)
+depends=(gdbm openssl libffi libyaml gmp zlib rubygems)
+optdepends=('tk: for Ruby/TK')
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('6dcae0e8d0bacdb2cbde636e2030596308b5af53f2eb85d3adccb67b02e6f8f9751e8117d12f8484829fdd9d995f6e327f701d9b433bcf94f1f59d13a1fd7518')
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/opt/ruby${_rubyver} \
+--program-suffix=-${_rubyver} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package() {
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -dm755 $pkgdir/usr/bin
+  install -dm755 $pkgdir/usr/lib
+
+  for i in erb irb rdoc ri ruby testrb rake gem; do
+ln -s /opt/$pkgname/bin/$i-${_rubyver} $pkgdir/usr/bin/$i-${_rubyver}
+ln -s /opt/$pkgname/bin/$i-${_rubyver} $pkgdir/opt/$pkgname/bin/$i
+  done
+
+ln -s /opt/$pkgname/lib/libruby.so.${_rubyver} 
$pkgdir/usr/lib/libruby.so.${_rubyver}
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+}


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

2019-01-09 Thread Johannes Löthberg via arch-commits
Date: Wednesday, January 9, 2019 @ 22:03:12
  Author: demize
Revision: 421310

db-move: moved python-msgpack from [community-testing] to [community] (x86_64)

Added:
  python-msgpack/repos/community-x86_64/PKGBUILD
(from rev 421309, python-msgpack/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  python-msgpack/repos/community-testing-x86_64/
  python-msgpack/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 +
 community-x86_64/PKGBUILD |   55 
 2 files changed, 52 insertions(+), 55 deletions(-)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2019-01-09 21:32:11 UTC (rev 421309)
+++ community-x86_64/PKGBUILD   2019-01-09 22:03:12 UTC (rev 421310)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Sébastien "Seblu" Luttringer
-
-pkgbase=python-msgpack
-pkgname=('python-msgpack' 'python2-msgpack')
-pkgver=0.5.6
-pkgrel=2
-
-url='https://github.com/msgpack/msgpack-python'
-arch=('x86_64')
-license=('Apache')
-
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-six' 'python2-six')
-
-source=(msgpack-python-$pkgver.tar.gz::https://github.com/msgpack/msgpack-python/archive/$pkgver.tar.gz)
-
-md5sums=('e05e0edfebdd32d11b02bea88381595e')
-
-build() {
-  cd msgpack-python-$pkgver
-  python setup.py build --build-lib=build/python
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd msgpack-python-$pkgver
-  msg2 'python'
-  PYTHONPATH=$PWD/build/python py.test test
-  msg2 'python2'
-  PYTHONPATH=$PWD/build/python2 py.test2 test
-}
-
-package_python-msgpack() {
-  pkgdesc='MessagePack serializer implementation for Python'
-  depends=('python')
-
-  cd msgpack-python-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-}
-
-package_python2-msgpack() {
-  pkgdesc='MessagePack serializer implementation for Python2'
-  depends=('python2')
-
-  cd msgpack-python-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-msgpack/repos/community-x86_64/PKGBUILD (from rev 421309, 
python-msgpack/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-01-09 22:03:12 UTC (rev 421310)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien "Seblu" Luttringer
+
+pkgbase=python-msgpack
+pkgname=('python-msgpack' 'python2-msgpack')
+pkgver=0.6.0
+pkgrel=1
+
+url='https://github.com/msgpack/msgpack-python'
+arch=('x86_64')
+license=('Apache')
+
+makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-six' 'python2-six')
+
+source=(msgpack-python-$pkgver.tar.gz::https://github.com/msgpack/msgpack-python/archive/v$pkgver.tar.gz)
+
+md5sums=('4b1c5db81133f9992179aa773e6ed3a0')
+
+build() {
+  cd msgpack-python-$pkgver
+  python setup.py build --build-lib=build/python
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd msgpack-python-$pkgver
+  PYTHONPATH=$PWD/build/python py.test test
+  PYTHONPATH=$PWD/build/python2 py.test2 test
+}
+
+package_python-msgpack() {
+  pkgdesc='MessagePack serializer implementation for Python'
+  depends=('python')
+
+  cd msgpack-python-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+}
+
+package_python2-msgpack() {
+  pkgdesc='MessagePack serializer implementation for Python2'
+  depends=('python2')
+
+  cd msgpack-python-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Wednesday, January 9, 2019 @ 21:32:06
  Author: anthraxx
Revision: 421308

upgpkg: sn0int 0.8.0-1

Modified:
  sn0int/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 21:15:08 UTC (rev 421307)
+++ PKGBUILD2019-01-09 21:32:06 UTC (rev 421308)
@@ -2,9 +2,9 @@
 # Contributor: kpcyrd 
 
 pkgname=sn0int
-pkgver=0.6.0
+pkgver=0.8.0
 pkgrel=1
-pkgdesc='OSINT framework and package manager'
+pkgdesc='Semi-automatic OSINT framework and package manager'
 url='https://github.com/kpcyrd/sn0int'
 arch=('x86_64')
 license=('GPL3')
@@ -12,7 +12,7 @@
 makedepends=('cargo' 'python-sphinx')
 install=sn0int.install
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('755b7e4ebcaf51973c8e5152267564f4642087536473dc7116f9a3724ddccea764e99fb8bbec6b4f7c076daf0f88f5b0f924118525165c71e04659cf50886abd')
+sha512sums=('77280ffc51a4637fb2c72c7519ec1d047cfdfc199ff123cb3dca2498c48241cd7911e7970c1a1ae138198108216689c2bf4ebd2846bae95e2affdcd79a4b90ab')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-01-09 Thread Levente Polyak via arch-commits
Date: Wednesday, January 9, 2019 @ 21:32:11
  Author: anthraxx
Revision: 421309

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   88 +++
 sn0int.install |   18 +--
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 21:32:06 UTC (rev 421308)
+++ PKGBUILD2019-01-09 21:32:11 UTC (rev 421309)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
-
-pkgname=sn0int
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='OSINT framework and package manager'
-url='https://github.com/kpcyrd/sn0int'
-arch=('x86_64')
-license=('GPL3')
-depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
-makedepends=('cargo' 'python-sphinx')
-install=sn0int.install
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('755b7e4ebcaf51973c8e5152267564f4642087536473dc7116f9a3724ddccea764e99fb8bbec6b4f7c076daf0f88f5b0f924118525165c71e04659cf50886abd')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-  make -C docs man
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
-
-  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/PKGBUILD (from rev 421308, 
sn0int/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 21:32:11 UTC (rev 421309)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: kpcyrd 
+
+pkgname=sn0int
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Semi-automatic OSINT framework and package manager'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('GPL3')
+depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
+makedepends=('cargo' 'python-sphinx')
+install=sn0int.install
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('77280ffc51a4637fb2c72c7519ec1d047cfdfc199ff123cb3dca2498c48241cd7911e7970c1a1ae138198108216689c2bf4ebd2846bae95e2affdcd79a4b90ab')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+  make -C docs man
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
+
+  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: sn0int.install
===
--- sn0int.install  2019-01-09 21:32:06 UTC (rev 421308)
+++ sn0int.install  2019-01-09 21:32:11 UTC (rev 421309)
@@ -1,9 +0,0 @@
-post_install() {
-  setcap cap_sys_chroot=ep usr/bin/sn0int 2> /dev/null
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/sn0int.install (from rev 421308, 
sn0int/trunk/sn0int.install)
===
--- sn0int.install  (rev 0)
+++ 

  1   2   3   >