[arch-commits] Commit in go/trunk (default-buildmode-pie.patch)

2020-05-18 Thread Morten Linderud via arch-commits
Date: Monday, May 18, 2020 @ 17:42:31
  Author: foxboron
Revision: 629583

Remove buildmode patch

Deleted:
  go/trunk/default-buildmode-pie.patch

-+
 default-buildmode-pie.patch |   13 -
 1 file changed, 13 deletions(-)

Deleted: default-buildmode-pie.patch
===
--- default-buildmode-pie.patch 2020-05-18 17:42:12 UTC (rev 629582)
+++ default-buildmode-pie.patch 2020-05-18 17:42:31 UTC (rev 629583)
@@ -1,13 +0,0 @@
-diff --git a/src/cmd/go/internal/work/init.go 
b/src/cmd/go/internal/work/init.go
-index 7f894f5..a517887 100644
 a/src/cmd/go/internal/work/init.go
-+++ b/src/cmd/go/internal/work/init.go
-@@ -131,7 +131,7 @@ func buildModeInit() {
-   ldBuildmode = "c-shared"
-   case "default":
-   switch cfg.Goos {
--  case "android":
-+  case "android", "linux":
-   codegenArg = "-shared"
-   ldBuildmode = "pie"
-   case "darwin":


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

2020-05-18 Thread Morten Linderud via arch-commits
Date: Monday, May 18, 2020 @ 17:40:51
  Author: foxboron
Revision: 629580

upgpkg: go 2:1.14.3-1 - FS#60928 Remove go-pie

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-18 17:40:46 UTC (rev 629579)
+++ PKGBUILD2020-05-18 17:40:51 UTC (rev 629580)
@@ -11,42 +11,36 @@
 # Contributor: Daniel YC Lin 
 # Contributor: John Luebs 
 
-pkgbase=go
-pkgname=(go go-pie)
+pkgname=go
 epoch=2
-pkgver=1.14.2
+pkgver=1.14.3
 pkgrel=1
+pkgdesc='Core compiler tools for the Go programming language'
 arch=(x86_64)
 url='https://golang.org/'
 license=(BSD)
 makedepends=(git go perl)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('98de84e69726a66da7b4e58eac41b99cbe274d7e8906eeb8a5b7eb0aadee7f7c'
-'be1269689de3cf5c926cf7de07f88d2a6d1ecbfc86694baaf5baee3bdcfdd79a')
+replaces=(go-pie)
+provides=(go-pie)
+options=(!strip staticlibs)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
+validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
+sha256sums=('93023778d4d1797b7bc6a53e86c3a9b150c923953225f8a48a2d5fabc971af56'
+'SKIP')
 
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
 build() {
   export GOARCH=amd64
   export GOROOT_FINAL=/usr/lib/go
   export GOROOT_BOOTSTRAP=/usr/lib/go
   export GOPATH="$srcdir/"
+  export GOROOT="$srcdir/$pkgname"
+  export GOBIN="$GOROOT/bin"
 
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
+  cd "$pkgname/src"
+  ./make.bash --no-clean -v
 
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
+  PATH="$GOBIN:$PATH" go install -v -race std
+  PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
 }
 
 check() {
@@ -53,24 +47,18 @@
   export GOARCH=amd64
   export GOROOT_FINAL=/usr/lib/go
   export GOROOT_BOOTSTRAP=/usr/lib/go
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
+  export GOROOT="$srcdir/$pkgname"
   export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
+  export PATH="$srcdir/$pkgname/bin:$PATH"
   export GO_TEST_TIMEOUT_SCALE=2
 
-  cd $pkgbase/src
+  cd $pkgname/src
   ./run.bash --no-rebuild -v -v -v -k
 }
 
-_package() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
+package() {
+  cd "$pkgname"
 
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
   install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
   cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
   cp -r doc/* "$pkgdir/usr/share/doc/go"
@@ -86,26 +74,7 @@
   # TODO: Figure out if really needed
   rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
 
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=("go=$epoch:$pkgver-$pkgrel")
-  conflicts=(go)
-
-  _package $pkgname
-
-  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
-  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
-  # Make sure it exists without rebuilding std with -buildmode=pie.
-  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
-}
-
 # vim: ts=2 sw=2 et


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

2020-05-17 Thread Morten Linderud via arch-commits
Date: Sunday, May 17, 2020 @ 16:00:41
  Author: foxboron
Revision: 628249

upgpkg: i3-gaps 4.18.1-2

Modified:
  i3-gaps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-17 15:47:15 UTC (rev 628248)
+++ PKGBUILD2020-05-17 16:00:41 UTC (rev 628249)
@@ -4,7 +4,7 @@
 pkgname=i3-gaps
 _pkgsourcename=i3
 pkgver=4.18.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
 arch=('i686' 'x86_64')
 url='https://github.com/Airblader/i3'
@@ -37,6 +37,7 @@
   cd build
 
   ../i3-$pkgver/configure \
+--disable-sanitizers \
 --prefix=/usr \
 --sysconfdir=/etc
   make


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

2020-05-17 Thread Morten Linderud via arch-commits
Date: Sunday, May 17, 2020 @ 16:00:49
  Author: foxboron
Revision: 628250

archrelease: copy trunk to community-x86_64

Added:
  i3-gaps/repos/community-x86_64/PKGBUILD
(from rev 628249, i3-gaps/trunk/PKGBUILD)
Deleted:
  i3-gaps/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-17 16:00:41 UTC (rev 628249)
+++ PKGBUILD2020-05-17 16:00:49 UTC (rev 628250)
@@ -1,53 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Ingo Bürk 
-
-pkgname=i3-gaps
-_pkgsourcename=i3
-pkgver=4.18.1
-pkgrel=1
-pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
-arch=('i686' 'x86_64')
-url='https://github.com/Airblader/i3'
-license=('BSD')
-provides=('i3-wm')
-conflicts=('i3-wm')
-groups=('i3')
-depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
- 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
- 'libxkbcommon-x11')
-makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
-optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
-'dmenu: As menu.'
-'i3lock: For locking your screen.'
-'i3status: To display system information with a bar.'
-'perl-json-xs: For i3-save-tree'
-'perl-anyevent-i3: For i3-save-tree')
-backup=(etc/i3/config)
-options=('docs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('3f709e7b38938fa152ca730b9940634c5b1bcf3d9db38d023b30820d522df31d')
-
-prepare(){
-  mkdir build
-  cd "${_pkgsourcename}-${pkgver}"
-  autoreconf -fvi
-}
-
-build() {
-  cd build
-
-  ../i3-$pkgver/configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: i3-gaps/repos/community-x86_64/PKGBUILD (from rev 628249, 
i3-gaps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-17 16:00:49 UTC (rev 628250)
@@ -0,0 +1,54 @@
+# Maintainer: Morten Linderud 
+# Contributor: Ingo Bürk 
+
+pkgname=i3-gaps
+_pkgsourcename=i3
+pkgver=4.18.1
+pkgrel=2
+pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
+arch=('i686' 'x86_64')
+url='https://github.com/Airblader/i3'
+license=('BSD')
+provides=('i3-wm')
+conflicts=('i3-wm')
+groups=('i3')
+depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
+ 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
+ 'libxkbcommon-x11')
+makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
+optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
+'dmenu: As menu.'
+'i3lock: For locking your screen.'
+'i3status: To display system information with a bar.'
+'perl-json-xs: For i3-save-tree'
+'perl-anyevent-i3: For i3-save-tree')
+backup=(etc/i3/config)
+options=('docs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
+sha256sums=('3f709e7b38938fa152ca730b9940634c5b1bcf3d9db38d023b30820d522df31d')
+
+prepare(){
+  mkdir build
+  cd "${_pkgsourcename}-${pkgver}"
+  autoreconf -fvi
+}
+
+build() {
+  cd build
+
+  ../i3-$pkgver/configure \
+--disable-sanitizers \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 12:36:37
  Author: foxboron
Revision: 628176

addpkg: barrier 2.3.2-2

Added:
  barrier/
  barrier/repos/
  barrier/trunk/


[arch-commits] Commit in barrier/trunk (CHANGELOG.rst PKGBUILD)

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 12:36:43
  Author: foxboron
Revision: 628177

upgpkg: barrier 2.3.2-2

Added:
  barrier/trunk/CHANGELOG.rst
  barrier/trunk/PKGBUILD

---+
 CHANGELOG.rst |   60 +++
 PKGBUILD  |   86 
 2 files changed, 146 insertions(+)

Added: CHANGELOG.rst
===
--- CHANGELOG.rst   (rev 0)
+++ CHANGELOG.rst   2020-05-16 12:36:43 UTC (rev 628177)
@@ -0,0 +1,60 @@
+Changelog for package base ``barrier``
+==
+
+2.3.2-1 - 2019-10-12
+
+
+- Updated to upstream release 2.3.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+2.3.1-1 - 2019-09-25
+
+
+- Updated to upstream release 2.3.1_.
+
+  Upstream release notes since version 2.1.2_:
+
+  * Fixes for the international US keyboard (2.3.1_)
+  * Misc. Fixes and Improvements (2.3.0_)
+
+2.1.2-2 - 2018-12-29
+
+
+- The ``barrier`` package now only contains the Barrier GUI, while
+  a new package ``barrier-headless`` contains the server and client
+  CLI binaries. Users that don't require the GUI can now install only
+  the ``barrier-headless`` package and avoid the ``qt5-base`` dependency
+  required by the Barrier GUI.
+
+  The ``barrier`` package automatically pulls in the ``barrier-headless``
+  package.
+
+2.1.2-1 - 2018-12-29
+
+
+- Updated to upstream release 2.1.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+**Note:** While this release has been tagged as ``2.1.2`` by upstream,
+the actual version number shown by the Barrier programs is ``2.2.0``.
+
+2.1.1-2 - 2018-05-30
+
+
+- Work around Barrier `issue 49`_.
+
+2.1.1-1 - 2018-05-20
+
+
+- Updated to upstream release 2.1.1_, which contains the following
+  changes:
+
+  * Fixed ``.desktop`` file.
+
+
+.. _2.1.1: https://github.com/debauchee/barrier/releases/tag/v2.1.1
+.. _2.1.2: https://github.com/debauchee/barrier/releases/tag/v2.1.2
+.. _2.3.0: https://github.com/debauchee/barrier/releases/tag/v2.3.0
+.. _2.3.1: https://github.com/debauchee/barrier/releases/tag/v2.3.1
+.. _2.3.2: https://github.com/debauchee/barrier/releases/tag/v2.3.2
+.. _issue 49: https://github.com/debauchee/barrier/issues/49

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-16 12:36:43 UTC (rev 628177)
@@ -0,0 +1,86 @@
+# Maintainer: Morten Linderud 
+# Contributor: Tilman BLUMENBACH 
+
+pkgname=(barrier barrier-headless)
+pkgver=2.3.2
+pkgrel=2
+pkgdesc="Open-source KVM software based on Synergy"
+arch=(x86_64)
+url="https://github.com/debauchee/barrier;
+license=("custom:GPL2WithOpenSSLException")
+changelog=CHANGELOG.rst
+depends=(curl avahi libx11 libxrandr libxext
+libxinerama xorgproto libxtst libxi
+libsm libice openssl)
+makedepends=(cmake qt5-base hicolor-icon-theme)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/debauchee/barrier/archive/v${pkgver}.tar.gz;)
+sha256sums=('6b92a70c5f4d625065842d133386982ec2ad1db2a809af47e46ab8ce2acd39b5')
+
+
+build() {
+cd "barrier-${pkgver}"
+
+mkdir -p build
+cd build
+
+cmake -G "Unix Makefiles" \
+-D CMAKE_BUILD_TYPE:STRING=Release \
+-D CMAKE_INSTALL_PREFIX:STRING=/usr \
+-D BARRIER_REVISION:STRING= \
+-D BARRIER_VERSION_STAGE:STRING=RELEASE \
+..
+make
+}
+
+_package_common() {
+# Install binaries:
+cd "barrier-${pkgver}/build"
+DESTDIR="${pkgdir}" make install
+
+# Install the license:
+cd ..
+install -m 644 -D LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+# Install the manpages:
+mkdir -p "${pkgdir}/usr/share/man/man1"
+install -m 644 doc/*.1 "${pkgdir}/usr/share/man/man1"
+
+# Install the examples:
+mkdir -p "${pkgdir}/usr/share/doc/${pkgname}"
+install -m 644 doc/barrier.conf* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_barrier() {
+pkgdesc="Open-source KVM software based on Synergy (GUI)"
+depends=("barrier-headless=${pkgver}-${pkgrel}" qt5-base 
hicolor-icon-theme)
+
+# Install all the files:
+_package_common
+
+# Now go and delete files that are already in
+# barrier-headless:
+for file in \
+/usr/share/doc \
+/usr/share/man \
+/usr/bin/barrier{s,c} \
+;do
+rm -rf "${pkgdir}/${file}"
+done
+}
+
+package_barrier-headless() {
+pkgdesc="Open-source KVM software based on Synergy (client and server CLI 
binaries)"
+
+# Install all the files:
+_package_common
+
+# Now go and delete the GUI-related files:
+for file in \
+/usr/bin/barrier \
+/usr/share/applications \

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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 12:36:51
  Author: foxboron
Revision: 628178

archrelease: copy trunk to community-x86_64

Added:
  barrier/repos/community-x86_64/
  barrier/repos/community-x86_64/CHANGELOG.rst
(from rev 628177, barrier/trunk/CHANGELOG.rst)
  barrier/repos/community-x86_64/PKGBUILD
(from rev 628177, barrier/trunk/PKGBUILD)

---+
 CHANGELOG.rst |   60 +++
 PKGBUILD  |   86 
 2 files changed, 146 insertions(+)

Copied: barrier/repos/community-x86_64/CHANGELOG.rst (from rev 628177, 
barrier/trunk/CHANGELOG.rst)
===
--- community-x86_64/CHANGELOG.rst  (rev 0)
+++ community-x86_64/CHANGELOG.rst  2020-05-16 12:36:51 UTC (rev 628178)
@@ -0,0 +1,60 @@
+Changelog for package base ``barrier``
+==
+
+2.3.2-1 - 2019-10-12
+
+
+- Updated to upstream release 2.3.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+2.3.1-1 - 2019-09-25
+
+
+- Updated to upstream release 2.3.1_.
+
+  Upstream release notes since version 2.1.2_:
+
+  * Fixes for the international US keyboard (2.3.1_)
+  * Misc. Fixes and Improvements (2.3.0_)
+
+2.1.2-2 - 2018-12-29
+
+
+- The ``barrier`` package now only contains the Barrier GUI, while
+  a new package ``barrier-headless`` contains the server and client
+  CLI binaries. Users that don't require the GUI can now install only
+  the ``barrier-headless`` package and avoid the ``qt5-base`` dependency
+  required by the Barrier GUI.
+
+  The ``barrier`` package automatically pulls in the ``barrier-headless``
+  package.
+
+2.1.2-1 - 2018-12-29
+
+
+- Updated to upstream release 2.1.2_, for which there is no upstream
+  changelog available (apart from the VCS history).
+
+**Note:** While this release has been tagged as ``2.1.2`` by upstream,
+the actual version number shown by the Barrier programs is ``2.2.0``.
+
+2.1.1-2 - 2018-05-30
+
+
+- Work around Barrier `issue 49`_.
+
+2.1.1-1 - 2018-05-20
+
+
+- Updated to upstream release 2.1.1_, which contains the following
+  changes:
+
+  * Fixed ``.desktop`` file.
+
+
+.. _2.1.1: https://github.com/debauchee/barrier/releases/tag/v2.1.1
+.. _2.1.2: https://github.com/debauchee/barrier/releases/tag/v2.1.2
+.. _2.3.0: https://github.com/debauchee/barrier/releases/tag/v2.3.0
+.. _2.3.1: https://github.com/debauchee/barrier/releases/tag/v2.3.1
+.. _2.3.2: https://github.com/debauchee/barrier/releases/tag/v2.3.2
+.. _issue 49: https://github.com/debauchee/barrier/issues/49

Copied: barrier/repos/community-x86_64/PKGBUILD (from rev 628177, 
barrier/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-16 12:36:51 UTC (rev 628178)
@@ -0,0 +1,86 @@
+# Maintainer: Morten Linderud 
+# Contributor: Tilman BLUMENBACH 
+
+pkgname=(barrier barrier-headless)
+pkgver=2.3.2
+pkgrel=2
+pkgdesc="Open-source KVM software based on Synergy"
+arch=(x86_64)
+url="https://github.com/debauchee/barrier;
+license=("custom:GPL2WithOpenSSLException")
+changelog=CHANGELOG.rst
+depends=(curl avahi libx11 libxrandr libxext
+libxinerama xorgproto libxtst libxi
+libsm libice openssl)
+makedepends=(cmake qt5-base hicolor-icon-theme)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/debauchee/barrier/archive/v${pkgver}.tar.gz;)
+sha256sums=('6b92a70c5f4d625065842d133386982ec2ad1db2a809af47e46ab8ce2acd39b5')
+
+
+build() {
+cd "barrier-${pkgver}"
+
+mkdir -p build
+cd build
+
+cmake -G "Unix Makefiles" \
+-D CMAKE_BUILD_TYPE:STRING=Release \
+-D CMAKE_INSTALL_PREFIX:STRING=/usr \
+-D BARRIER_REVISION:STRING= \
+-D BARRIER_VERSION_STAGE:STRING=RELEASE \
+..
+make
+}
+
+_package_common() {
+# Install binaries:
+cd "barrier-${pkgver}/build"
+DESTDIR="${pkgdir}" make install
+
+# Install the license:
+cd ..
+install -m 644 -D LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+# Install the manpages:
+mkdir -p "${pkgdir}/usr/share/man/man1"
+install -m 644 doc/*.1 "${pkgdir}/usr/share/man/man1"
+
+# Install the examples:
+mkdir -p "${pkgdir}/usr/share/doc/${pkgname}"
+install -m 644 doc/barrier.conf* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_barrier() {
+pkgdesc="Open-source KVM software based on Synergy (GUI)"
+depends=("barrier-headless=${pkgver}-${pkgrel}" qt5-base 
hicolor-icon-theme)
+
+# Install all the files:
+_package_common
+
+# Now go and delete files that are already in
+# barrier-headless:
+for file in \
+/usr/share/doc \
+

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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 11:45:08
  Author: foxboron
Revision: 628173

Removed community-any for toolbox

Deleted:
  toolbox/repos/community-any/


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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 11:44:57
  Author: foxboron
Revision: 628171

upgpkg: toolbox 0.0.90-1

Modified:
  toolbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-16 11:33:27 UTC (rev 628170)
+++ PKGBUILD2020-05-16 11:44:57 UTC (rev 628171)
@@ -1,15 +1,16 @@
 # Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
 
 pkgname=toolbox
-pkgver=0.0.18
+pkgver=0.0.90
 pkgrel=1
 pkgdesc='Unprivileged development environment'
-arch=(any)
+arch=(x86_64)
 url='https://github.com/containers/toolbox'
 license=(APACHE)
 depends=(podman bash)
-makedepends=(shellcheck go-md2man bash-completion ninja git meson)
-_commit=7b460e390d7e5f8a90038c9d0f03a56dc622bd1c  # tags/0.0.18^0
+makedepends=(go shellcheck go-md2man bash-completion ninja git meson)
+_commit=1e3d25c426920a7f8bf116ca08811ac752763f11 # tags/0.0.90^0
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 
@@ -19,6 +20,11 @@
 }
 
 build() {
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
   arch-meson toolbox build -D profile_dir=/etc/profile.d
   ninja -C build
 }


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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 11:45:03
  Author: foxboron
Revision: 628172

archrelease: copy trunk to community-x86_64

Added:
  toolbox/repos/community-x86_64/
  toolbox/repos/community-x86_64/PKGBUILD
(from rev 628171, toolbox/trunk/PKGBUILD)

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

Copied: toolbox/repos/community-x86_64/PKGBUILD (from rev 628171, 
toolbox/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-16 11:45:03 UTC (rev 628172)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=toolbox
+pkgver=0.0.90
+pkgrel=1
+pkgdesc='Unprivileged development environment'
+arch=(x86_64)
+url='https://github.com/containers/toolbox'
+license=(APACHE)
+depends=(podman bash)
+makedepends=(go shellcheck go-md2man bash-completion ninja git meson)
+_commit=1e3d25c426920a7f8bf116ca08811ac752763f11 # tags/0.0.90^0
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd toolbox
+  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  arch-meson toolbox build -D profile_dir=/etc/profile.d
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}


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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 11:29:34
  Author: foxboron
Revision: 628168

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-16 11:29:27 UTC (rev 628167)
+++ PKGBUILD2020-05-16 11:29:34 UTC (rev 628168)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.19.4
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=bd151db6d3def40df47e4407f6a537e7f3cbd969 # 0.19.4
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export GOFLAGS='-buildmode=pie -trimpath'
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make VERSION=v$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 628167, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-16 11:29:34 UTC (rev 628168)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.19.5
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=9f1b099e290f6e73d7dead475b34a180a18eb9a5 # 0.19.5
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make VERSION=v$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:


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

2020-05-16 Thread Morten Linderud via arch-commits
Date: Saturday, May 16, 2020 @ 11:29:27
  Author: foxboron
Revision: 628167

upgpkg: k9s 0.19.5-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-16 11:25:27 UTC (rev 628166)
+++ PKGBUILD2020-05-16 11:29:27 UTC (rev 628167)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.19.4
+pkgver=0.19.5
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=bd151db6d3def40df47e4407f6a537e7f3cbd969 # 0.19.4
+_commit=9f1b099e290f6e73d7dead475b34a180a18eb9a5 # 0.19.5
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 
@@ -20,9 +20,11 @@
 
 build() {
   cd $pkgname
-  export GOFLAGS='-buildmode=pie -trimpath'
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
   make VERSION=v$pkgver build
 }
 


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

2020-05-15 Thread Morten Linderud via arch-commits
Date: Friday, May 15, 2020 @ 22:12:46
  Author: foxboron
Revision: 628129

archrelease: copy trunk to community-x86_64

Added:
  raft/repos/community-x86_64/PKGBUILD
(from rev 628128, raft/trunk/PKGBUILD)
Deleted:
  raft/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 22:12:39 UTC (rev 628128)
+++ PKGBUILD2020-05-15 22:12:46 UTC (rev 628129)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=raft
-pkgver=0.9.19
-pkgrel=1
-pkgdesc="C implementation of the Raft consensus protocol"
-arch=('x86_64')
-url="https://github.com/canonical/raft;
-license=('LGPL3')
-depends=('libuv')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('a018e35f103d8311eb436bea9696b03b88a8a3a25ebab61daec3d1af4d20828e')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "${pkgname}-${pkgver}"
-   make check || true
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   rm -rf "${pkgdir}/usr/bin"
-}

Copied: raft/repos/community-x86_64/PKGBUILD (from rev 628128, 
raft/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 22:12:46 UTC (rev 628129)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=raft
+pkgver=0.9.20
+pkgrel=1
+pkgdesc="C implementation of the Raft consensus protocol"
+arch=('x86_64')
+url="https://github.com/canonical/raft;
+license=('LGPL3')
+depends=('libuv')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('209de04651fd3492e74936da50f67e019a273bbf429f352221eb4ca1dc230cfb')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+   make check || true
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   rm -rf "${pkgdir}/usr/bin"
+}


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

2020-05-15 Thread Morten Linderud via arch-commits
Date: Friday, May 15, 2020 @ 22:12:39
  Author: foxboron
Revision: 628128

upgpkg: raft 0.9.20-1

Modified:
  raft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 22:08:25 UTC (rev 628127)
+++ PKGBUILD2020-05-15 22:12:39 UTC (rev 628128)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Hipp 
 
 pkgname=raft
-pkgver=0.9.19
+pkgver=0.9.20
 pkgrel=1
 pkgdesc="C implementation of the Raft consensus protocol"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('LGPL3')
 depends=('libuv')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('a018e35f103d8311eb436bea9696b03b88a8a3a25ebab61daec3d1af4d20828e')
+sha256sums=('209de04651fd3492e74936da50f67e019a273bbf429f352221eb4ca1dc230cfb')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2020-05-15 Thread Morten Linderud via arch-commits
Date: Friday, May 15, 2020 @ 22:08:25
  Author: foxboron
Revision: 628127

archrelease: copy trunk to community-x86_64

Added:
  staticcheck/repos/community-x86_64/PKGBUILD
(from rev 628126, staticcheck/trunk/PKGBUILD)
Deleted:
  staticcheck/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 22:08:18 UTC (rev 628126)
+++ PKGBUILD2020-05-15 22:08:25 UTC (rev 628127)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=staticcheck
-pkgver=2020.1.3
-pkgrel=1
-pkgdesc="Staticcheck - The advanced Go linter"
-arch=('x86_64')
-url="https://staticcheck.io;
-license=("MIT")
-depends=('glibc')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
-md5sums=('0032e437aa43b5dfe0c84f3e1bb9a266')
-
-prepare(){
-   cd "go-tools-$pkgver"
-   mkdir -p bin
-}
-
-build(){
-   cd "go-tools-$pkgver"
-   export GOFLAGS="-buildmode=pie -trimpath"
-   export CGO_CFLAGS="$CFLAGS"
-   export CGO_LDFLAGS="$LDFLAGS"
-   go build -o bin/staticcheck ./cmd/staticcheck
-}
-
-check(){
-   cd "go-tools-$pkgver"
-   GOROOT="/usr/lib/go" go test -v ./...
-}
-
-package(){
-   cd "go-tools-$pkgver"
-   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
-   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
-   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
-}

Copied: staticcheck/repos/community-x86_64/PKGBUILD (from rev 628126, 
staticcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 22:08:25 UTC (rev 628127)
@@ -0,0 +1,40 @@
+# Maintainer: Morten Linderud 
+
+pkgname=staticcheck
+pkgver=2020.1.4
+pkgrel=1
+pkgdesc="Staticcheck - The advanced Go linter"
+arch=('x86_64')
+url="https://staticcheck.io;
+license=("MIT")
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
+md5sums=('c0d4c51c76384c682d6bc014bd26bf0d')
+
+prepare(){
+   cd "go-tools-$pkgver"
+   mkdir -p bin
+}
+
+build(){
+   cd "go-tools-$pkgver"
+   export CGO_LDFLAGS="${LDFLAGS}"
+   export CGO_CFLAGS="${CFLAGS}"
+   export CGO_CPPFLAGS="${CPPFLAGS}"
+   export CGO_CXXFLAGS="${CXXFLAGS}"
+   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+   go build -o bin/staticcheck ./cmd/staticcheck
+}
+
+check(){
+   cd "go-tools-$pkgver"
+   GOROOT="/usr/lib/go" go test -v ./...
+}
+
+package(){
+   cd "go-tools-$pkgver"
+   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
+   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
+}


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

2020-05-15 Thread Morten Linderud via arch-commits
Date: Friday, May 15, 2020 @ 22:08:18
  Author: foxboron
Revision: 628126

upgpkg: staticcheck 2020.1.4-1

Modified:
  staticcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 21:55:18 UTC (rev 628125)
+++ PKGBUILD2020-05-15 22:08:18 UTC (rev 628126)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=staticcheck
-pkgver=2020.1.3
+pkgver=2020.1.4
 pkgrel=1
 pkgdesc="Staticcheck - The advanced Go linter"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
-md5sums=('0032e437aa43b5dfe0c84f3e1bb9a266')
+md5sums=('c0d4c51c76384c682d6bc014bd26bf0d')
 
 prepare(){
cd "go-tools-$pkgver"
@@ -19,9 +19,11 @@
 
 build(){
cd "go-tools-$pkgver"
-   export GOFLAGS="-buildmode=pie -trimpath"
-   export CGO_CFLAGS="$CFLAGS"
-   export CGO_LDFLAGS="$LDFLAGS"
+   export CGO_LDFLAGS="${LDFLAGS}"
+   export CGO_CFLAGS="${CFLAGS}"
+   export CGO_CPPFLAGS="${CPPFLAGS}"
+   export CGO_CXXFLAGS="${CXXFLAGS}"
+   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
go build -o bin/staticcheck ./cmd/staticcheck
 }
 


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 12:30:43
  Author: foxboron
Revision: 627926

archrelease: copy trunk to community-any

Added:
  python-language-server/repos/community-any/PKGBUILD
(from rev 627925, python-language-server/trunk/PKGBUILD)
Deleted:
  python-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 12:30:34 UTC (rev 627925)
+++ PKGBUILD2020-05-14 12:30:43 UTC (rev 627926)
@@ -1,51 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: fenuks
-
-pkgname=python-language-server
-pkgver=0.32.0
-pkgrel=2
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
-optdepends=("python-mccabe: for complexity checking"
-"python-rope: for completions and renaming"
-"python-pyflakes: for linter to detect various errors"
-"flake8: for code linting"
-"python-pycodestyle: for style checking"
-"python-pylint: for code linting"
-"autopep8: for code formatting"
-"yapf: for code formatting (preferred over autopep8)"
-"python-pydocstyle: for docstring style checking")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
-  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
-  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
-  "python-numpy" "python-pandas" "python-matplotlib")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
-
-
-prepare(){
-cd "${pkgname}-${pkgver}"
-sed -i "s/ujson.*/usjon'/" setup.py
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test -k 'not test_pyqt_completion'
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-language-server/repos/community-any/PKGBUILD (from rev 627925, 
python-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 12:30:43 UTC (rev 627926)
@@ -0,0 +1,51 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: fenuks
+
+pkgname=python-language-server
+pkgver=0.32.0
+pkgrel=3
+pkgdesc="An implementation of the Language Server Protocol for Python"
+arch=("any")
+url="https://github.com/palantir/python-language-server;
+license=("MIT")
+depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
+optdepends=("python-mccabe: for complexity checking"
+"python-rope: for completions and renaming"
+"python-pyflakes: for linter to detect various errors"
+"flake8: for code linting"
+"python-pycodestyle: for style checking"
+"python-pylint: for code linting"
+"autopep8: for code formatting"
+"yapf: for code formatting (preferred over autopep8)"
+"python-pydocstyle: for docstring style checking")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
+  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
+  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
+  "python-numpy" "python-pandas" "python-matplotlib")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
+
+
+prepare(){
+cd "${pkgname}-${pkgver}"
+sed -i "s/ujson.*/ujson'/" setup.py
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test -k 'not test_pyqt_completion'
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 12:30:34
  Author: foxboron
Revision: 627925

upgpkg: python-language-server 0.32.0-3

Don't multi-task when building

Modified:
  python-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 12:07:04 UTC (rev 627924)
+++ PKGBUILD2020-05-14 12:30:34 UTC (rev 627925)
@@ -4,7 +4,7 @@
 
 pkgname=python-language-server
 pkgver=0.32.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An implementation of the Language Server Protocol for Python"
 arch=("any")
 url="https://github.com/palantir/python-language-server;
@@ -29,7 +29,7 @@
 
 prepare(){
 cd "${pkgname}-${pkgver}"
-sed -i "s/ujson.*/usjon'/" setup.py
+sed -i "s/ujson.*/ujson'/" setup.py
 }
 
 build() {


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 12:07:04
  Author: foxboron
Revision: 627924

archrelease: copy trunk to community-any

Added:
  python-language-server/repos/community-any/PKGBUILD
(from rev 627923, python-language-server/trunk/PKGBUILD)
Deleted:
  python-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 12:06:52 UTC (rev 627923)
+++ PKGBUILD2020-05-14 12:07:04 UTC (rev 627924)
@@ -1,45 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: fenuks
-
-pkgname=python-language-server
-pkgver=0.32.0
-pkgrel=1
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
-optdepends=("python-mccabe: for complexity checking"
-"python-rope: for completions and renaming"
-"python-pyflakes: for linter to detect various errors"
-"flake8: for code linting"
-"python-pycodestyle: for style checking"
-"python-pylint: for code linting"
-"autopep8: for code formatting"
-"yapf: for code formatting (preferred over autopep8)"
-"python-pydocstyle: for docstring style checking")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
-  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
-  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
-  "python-numpy" "python-pandas" "python-matplotlib")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
-
-build() {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test -k 'not test_pyqt_completion'
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-language-server/repos/community-any/PKGBUILD (from rev 627923, 
python-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 12:07:04 UTC (rev 627924)
@@ -0,0 +1,51 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: fenuks
+
+pkgname=python-language-server
+pkgver=0.32.0
+pkgrel=2
+pkgdesc="An implementation of the Language Server Protocol for Python"
+arch=("any")
+url="https://github.com/palantir/python-language-server;
+license=("MIT")
+depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
+optdepends=("python-mccabe: for complexity checking"
+"python-rope: for completions and renaming"
+"python-pyflakes: for linter to detect various errors"
+"flake8: for code linting"
+"python-pycodestyle: for style checking"
+"python-pylint: for code linting"
+"autopep8: for code formatting"
+"yapf: for code formatting (preferred over autopep8)"
+"python-pydocstyle: for docstring style checking")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
+  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
+  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
+  "python-numpy" "python-pandas" "python-matplotlib")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
+
+
+prepare(){
+cd "${pkgname}-${pkgver}"
+sed -i "s/ujson.*/usjon'/" setup.py
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test -k 'not test_pyqt_completion'
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 12:06:52
  Author: foxboron
Revision: 627923

upgpkg: python-language-server 0.32.0-2

Modified:
  python-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 12:04:23 UTC (rev 627922)
+++ PKGBUILD2020-05-14 12:06:52 UTC (rev 627923)
@@ -4,7 +4,7 @@
 
 pkgname=python-language-server
 pkgver=0.32.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An implementation of the Language Server Protocol for Python"
 arch=("any")
 url="https://github.com/palantir/python-language-server;
@@ -26,6 +26,12 @@
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
 sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
 
+
+prepare(){
+cd "${pkgname}-${pkgver}"
+sed -i "s/ujson.*/usjon'/" setup.py
+}
+
 build() {
 cd "${pkgname}-${pkgver}"
 python setup.py build


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 10:38:54
  Author: foxboron
Revision: 627913

upgpkg: python-language-server 0.32.0-1

Ignored pyqt test until further notice

Modified:
  python-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 10:24:00 UTC (rev 627912)
+++ PKGBUILD2020-05-14 10:38:54 UTC (rev 627913)
@@ -3,7 +3,7 @@
 # Contributor: fenuks
 
 pkgname=python-language-server
-pkgver=0.31.8
+pkgver=0.32.0
 pkgrel=1
 pkgdesc="An implementation of the Language Server Protocol for Python"
 arch=("any")
@@ -24,7 +24,7 @@
   "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
   "python-numpy" "python-pandas" "python-matplotlib")
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('f5685e1a6a3f6a2529ff75ea0676c59e769024302b2434564a5e7005d056eb82')
+sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
 
 build() {
 cd "${pkgname}-${pkgver}"
@@ -33,7 +33,7 @@
 
 check() {
 cd "${pkgname}-${pkgver}"
-py.test
+py.test -k 'not test_pyqt_completion'
 }
 
 package() {


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

2020-05-14 Thread Morten Linderud via arch-commits
Date: Thursday, May 14, 2020 @ 10:39:03
  Author: foxboron
Revision: 627914

archrelease: copy trunk to community-any

Added:
  python-language-server/repos/community-any/PKGBUILD
(from rev 627913, python-language-server/trunk/PKGBUILD)
Deleted:
  python-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 10:38:54 UTC (rev 627913)
+++ PKGBUILD2020-05-14 10:39:03 UTC (rev 627914)
@@ -1,45 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: fenuks
-
-pkgname=python-language-server
-pkgver=0.31.8
-pkgrel=1
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
-optdepends=("python-mccabe: for complexity checking"
-"python-rope: for completions and renaming"
-"python-pyflakes: for linter to detect various errors"
-"flake8: for code linting"
-"python-pycodestyle: for style checking"
-"python-pylint: for code linting"
-"autopep8: for code formatting"
-"yapf: for code formatting (preferred over autopep8)"
-"python-pydocstyle: for docstring style checking")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
-  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
-  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
-  "python-numpy" "python-pandas" "python-matplotlib")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('f5685e1a6a3f6a2529ff75ea0676c59e769024302b2434564a5e7005d056eb82')
-
-build() {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-language-server/repos/community-any/PKGBUILD (from rev 627913, 
python-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 10:39:03 UTC (rev 627914)
@@ -0,0 +1,45 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: fenuks
+
+pkgname=python-language-server
+pkgver=0.32.0
+pkgrel=1
+pkgdesc="An implementation of the Language Server Protocol for Python"
+arch=("any")
+url="https://github.com/palantir/python-language-server;
+license=("MIT")
+depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
+optdepends=("python-mccabe: for complexity checking"
+"python-rope: for completions and renaming"
+"python-pyflakes: for linter to detect various errors"
+"flake8: for code linting"
+"python-pycodestyle: for style checking"
+"python-pylint: for code linting"
+"autopep8: for code formatting"
+"yapf: for code formatting (preferred over autopep8)"
+"python-pydocstyle: for docstring style checking")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
+  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
+  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
+  "python-numpy" "python-pandas" "python-matplotlib")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('3702a133100d1540e6789c01f1a183b2668262078fbb17b4d2495f5999e2ba48')
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test -k 'not test_pyqt_completion'
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:35:14
  Author: foxboron
Revision: 627786

archrelease: copy trunk to community-x86_64

Added:
  cni-plugins/repos/community-x86_64/PKGBUILD
(from rev 627785, cni-plugins/trunk/PKGBUILD)
Deleted:
  cni-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 21:35:04 UTC (rev 627785)
+++ PKGBUILD2020-05-13 21:35:14 UTC (rev 627786)
@@ -1,29 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=cni-plugins
-pkgver=0.8.5
-pkgrel=1
-pkgdesc='Some standard networking plugins, maintained by the CNI team'
-arch=(x86_64)
-url="https://github.com/containernetworking/plugins;
-license=(Apache)
-depends=(glibc)
-makedepends=(go-pie)
-source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('e404ef69da189e2cc3e77ae1054fbea5232086066f2963d1ec824f63c02aede020ad8600d821ec47ae695043bd2c4a176d9e02b9a059024ff3a2fbeee9cb797a')
-
-build() {
-  cd plugins-$pkgver
-  export GOFLAGS="-trimpath"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  ./build_linux.sh
-}
-
-package() {
-  cd plugins-$pkgver/bin
-  for bin in *; do
-install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
-  done
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: cni-plugins/repos/community-x86_64/PKGBUILD (from rev 627785, 
cni-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 21:35:14 UTC (rev 627786)
@@ -0,0 +1,32 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=cni-plugins
+pkgver=0.8.6
+pkgrel=1
+pkgdesc='Some standard networking plugins, maintained by the CNI team'
+arch=(x86_64)
+url="https://github.com/containernetworking/plugins;
+license=(Apache)
+depends=(glibc)
+makedepends=(go)
+source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha512sums=('8815de8b375c737c3a1951b0a7ef5786209fdcf723aa1bc7c2dab7e1bbdee4933a7237f41bdee4208828b457bc79ec69ff68db060c52bab13863f42b042480c8')
+
+build() {
+  cd plugins-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  ./build_linux.sh
+}
+
+package() {
+  cd plugins-$pkgver/bin
+  for bin in *; do
+install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
+  done
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:35:04
  Author: foxboron
Revision: 627785

upgpkg: cni-plugins 0.8.6-1

Modified:
  cni-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 21:25:53 UTC (rev 627784)
+++ PKGBUILD2020-05-13 21:35:04 UTC (rev 627785)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=cni-plugins
-pkgver=0.8.5
+pkgver=0.8.6
 pkgrel=1
 pkgdesc='Some standard networking plugins, maintained by the CNI team'
 arch=(x86_64)
@@ -9,14 +9,17 @@
 url="https://github.com/containernetworking/plugins;
 license=(Apache)
 depends=(glibc)
-makedepends=(go-pie)
+makedepends=(go)
 source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('e404ef69da189e2cc3e77ae1054fbea5232086066f2963d1ec824f63c02aede020ad8600d821ec47ae695043bd2c4a176d9e02b9a059024ff3a2fbeee9cb797a')
+sha512sums=('8815de8b375c737c3a1951b0a7ef5786209fdcf723aa1bc7c2dab7e1bbdee4933a7237f41bdee4208828b457bc79ec69ff68db060c52bab13863f42b042480c8')
 
 build() {
   cd plugins-$pkgver
-  export GOFLAGS="-trimpath"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
   export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
   ./build_linux.sh
 }
 


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:25:53
  Author: foxboron
Revision: 627784

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 21:25:45 UTC (rev 627783)
+++ PKGBUILD2020-05-13 21:25:53 UTC (rev 627784)
@@ -1,51 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.9.1
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp runc
- slirp4netns libsystemd fuse-overlayfs skopeo)
-makedepends=(go go-md2man git btrfs-progs)
-optdepends=('catatonit: --init flag support'
-'crun: support for unified cgroupsv2'
-'btrfs-progs: support btrfs backend devices')
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd libpod
-  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 627783, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 21:25:53 UTC (rev 627784)
@@ -0,0 +1,51 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.9.2
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp runc
+ slirp4netns libsystemd fuse-overlayfs skopeo)
+makedepends=(go go-md2man git btrfs-progs)
+optdepends=('catatonit: --init flag support'
+'crun: support for unified cgroupsv2'
+'btrfs-progs: support btrfs backend devices')
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libpod
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  export BUILDTAGS='seccomp varlink systemd'
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd libpod
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd libpod
+  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
+}


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:25:45
  Author: foxboron
Revision: 627783

upgpkg: podman 1.9.2-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 21:17:28 UTC (rev 627782)
+++ PKGBUILD2020-05-13 21:25:45 UTC (rev 627783)
@@ -3,7 +3,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=1.9.1
+pkgver=1.9.2
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:16:04
  Author: foxboron
Revision: 627780

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 627779, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 21:15:56 UTC (rev 627779)
+++ PKGBUILD2020-05-13 21:16:04 UTC (rev 627780)
@@ -1,31 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=gopass
-pkgver=1.9.1
-pkgrel=1
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-'xsel: clipboard support'
-'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('a70affc278b5d46582a3362c28f1aff8be4481aae3d07f3b7e200117fc2ac79466c475d558fe5a642b0102a46fc95242334f406deca6ee4abd7d5e9f674451ab')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 627779, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 21:16:04 UTC (rev 627780)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+
+pkgname=gopass
+pkgver=1.9.2
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+'xsel: clipboard support'
+'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha512sums=('90be234718c4c26ee6e92565ce609d5f075d5e574827e15ff57a6d9e71f1933add7d76aa26b39602d5a72485890bfe8e158dc89213098377899d0f721aacf1d7')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 21:15:56
  Author: foxboron
Revision: 627779

upgpkg: gopass 1.9.2-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 21:08:16 UTC (rev 627778)
+++ PKGBUILD2020-05-13 21:15:56 UTC (rev 627779)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=gopass
-pkgver=1.9.1
+pkgver=1.9.2
 pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
@@ -12,7 +12,7 @@
 'xsel: clipboard support'
 'xclip: clipboard support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('a70affc278b5d46582a3362c28f1aff8be4481aae3d07f3b7e200117fc2ac79466c475d558fe5a642b0102a46fc95242334f406deca6ee4abd7d5e9f674451ab')
+sha512sums=('90be234718c4c26ee6e92565ce609d5f075d5e574827e15ff57a6d9e71f1933add7d76aa26b39602d5a72485890bfe8e158dc89213098377899d0f721aacf1d7')
 
 build(){
   cd "${pkgname}-${pkgver}"


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 20:53:50
  Author: foxboron
Revision: 627776

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 20:53:40 UTC (rev 627775)
+++ PKGBUILD2020-05-13 20:53:50 UTC (rev 627776)
@@ -1,41 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Dziedzic 
-# Contributor: Nicolás de la torre 
-# Contributor: Ryan Coyner 
-# Contributor: Jens Maucher 
-
-pkgname=python-rope
-pkgver=0.16.0
-pkgrel=2
-pkgdesc='Refactoring library'
-arch=('any')
-url='https://github.com/python-rope/rope'
-license=('GPL')
-makedepends=('python' 'python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/python-rope/rope/archive/$pkgver.tar.gz;
-
"ast.patch::https://github.com/python-rope/rope/commit/c6574094b9b087c0ff2aa11506f42b667c913e2b.patch;)
-sha256sums=('262be6917c72c190dbe0730af0de756fbc04ee6b70d35e27e60caf275e876c51'
-'09dcdc5704ea88920778917a7f188205adb5106de8693afea3c256f4901a84cc')
-
-prepare() {
-  cd "rope-$pkgver"
-  patch -Np1 < "../ast.patch"
-}
-
-build(){
-  cd "rope-$pkgver"
-  python setup.py build
-}
-
-check(){
-  cd "rope-$pkgver"
-  python -m unittest
-}
-
-package() {
-  cd "rope-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-rope/repos/community-any/PKGBUILD (from rev 627775, 
python-rope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 20:53:50 UTC (rev 627776)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Dziedzic 
+# Contributor: Nicolás de la torre 
+# Contributor: Ryan Coyner 
+# Contributor: Jens Maucher 
+
+pkgname=python-rope
+pkgver=0.17.0
+pkgrel=1
+pkgdesc='Refactoring library'
+arch=('any')
+url='https://github.com/python-rope/rope'
+license=('GPL')
+makedepends=('python' 'python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python-rope/rope/archive/$pkgver.tar.gz;
+
"ast.patch::https://github.com/python-rope/rope/commit/c6574094b9b087c0ff2aa11506f42b667c913e2b.patch;)
+sha256sums=('43a0150a431639ac63a5b4e0520a31eda6d7d0c9d41345f21316a848d6b8e738'
+'09dcdc5704ea88920778917a7f188205adb5106de8693afea3c256f4901a84cc')
+
+prepare() {
+  cd "rope-$pkgver"
+  patch -Np1 < "../ast.patch"
+}
+
+build(){
+  cd "rope-$pkgver"
+  python setup.py build
+}
+
+check(){
+  cd "rope-$pkgver"
+  python -m unittest
+}
+
+package() {
+  cd "rope-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 20:53:40
  Author: foxboron
Revision: 627775

upgpkg: python-rope 0.17.0-1

Modified:
  python-rope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 20:27:52 UTC (rev 627774)
+++ PKGBUILD2020-05-13 20:53:40 UTC (rev 627775)
@@ -6,8 +6,8 @@
 # Contributor: Jens Maucher 
 
 pkgname=python-rope
-pkgver=0.16.0
-pkgrel=2
+pkgver=0.17.0
+pkgrel=1
 pkgdesc='Refactoring library'
 arch=('any')
 url='https://github.com/python-rope/rope'
@@ -15,7 +15,7 @@
 makedepends=('python' 'python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/python-rope/rope/archive/$pkgver.tar.gz;
 
"ast.patch::https://github.com/python-rope/rope/commit/c6574094b9b087c0ff2aa11506f42b667c913e2b.patch;)
-sha256sums=('262be6917c72c190dbe0730af0de756fbc04ee6b70d35e27e60caf275e876c51'
+sha256sums=('43a0150a431639ac63a5b4e0520a31eda6d7d0c9d41345f21316a848d6b8e738'
 '09dcdc5704ea88920778917a7f188205adb5106de8693afea3c256f4901a84cc')
 
 prepare() {


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:25:30
  Author: foxboron
Revision: 627760

archrelease: copy trunk to community-x86_64

Added:
  raft/repos/community-x86_64/PKGBUILD
(from rev 627759, raft/trunk/PKGBUILD)
Deleted:
  raft/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:25:21 UTC (rev 627759)
+++ PKGBUILD2020-05-13 19:25:30 UTC (rev 627760)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=raft
-pkgver=0.9.18
-pkgrel=1
-pkgdesc="C implementation of the Raft consensus protocol"
-arch=('x86_64')
-url="https://github.com/canonical/raft;
-license=('LGPL3')
-depends=('libuv')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('a674c11f62720cf0b2c851af8469e55e6a13cee1563811fcef1fcca320853c3e')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "${pkgname}-${pkgver}"
-   make check || true
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   rm -rf "${pkgdir}/usr/bin"
-}

Copied: raft/repos/community-x86_64/PKGBUILD (from rev 627759, 
raft/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:25:30 UTC (rev 627760)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=raft
+pkgver=0.9.19
+pkgrel=1
+pkgdesc="C implementation of the Raft consensus protocol"
+arch=('x86_64')
+url="https://github.com/canonical/raft;
+license=('LGPL3')
+depends=('libuv')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('a018e35f103d8311eb436bea9696b03b88a8a3a25ebab61daec3d1af4d20828e')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+   make check || true
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   rm -rf "${pkgdir}/usr/bin"
+}


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:25:21
  Author: foxboron
Revision: 627759

upgpkg: raft 0.9.19-1

Modified:
  raft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:23:50 UTC (rev 627758)
+++ PKGBUILD2020-05-13 19:25:21 UTC (rev 627759)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Hipp 
 
 pkgname=raft
-pkgver=0.9.18
+pkgver=0.9.19
 pkgrel=1
 pkgdesc="C implementation of the Raft consensus protocol"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('LGPL3')
 depends=('libuv')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('a674c11f62720cf0b2c851af8469e55e6a13cee1563811fcef1fcca320853c3e')
+sha256sums=('a018e35f103d8311eb436bea9696b03b88a8a3a25ebab61daec3d1af4d20828e')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:23:50
  Author: foxboron
Revision: 627758

archrelease: copy trunk to community-x86_64

Added:
  conmon/repos/community-x86_64/PKGBUILD
(from rev 627757, conmon/trunk/PKGBUILD)
Deleted:
  conmon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:23:42 UTC (rev 627757)
+++ PKGBUILD2020-05-13 19:23:50 UTC (rev 627758)
@@ -1,30 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=conmon
-pkgver=2.0.15
-pkgrel=1
-epoch=1
-pkgdesc='OCI container runtime monitor'
-arch=(x86_64)
-url='https://github.com/containers/conmon'
-license=(APACHE)
-depends=(glibc glib2 systemd-libs)
-makedepends=(git)
-_commit=1bddbf7051a973f4a4fecf06faa0c48e82f1e9e1 # tags/v2.0.15
-source=("git+https://github.com/containers/conmon#commit=${_commit};)
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd conmon
-  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
-}
-
-package() {
-  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
-}

Copied: conmon/repos/community-x86_64/PKGBUILD (from rev 627757, 
conmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:23:50 UTC (rev 627758)
@@ -0,0 +1,30 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=conmon
+pkgver=2.0.16
+pkgrel=1
+epoch=1
+pkgdesc='OCI container runtime monitor'
+arch=(x86_64)
+url='https://github.com/containers/conmon'
+license=(APACHE)
+depends=(glibc glib2 systemd-libs)
+makedepends=(git)
+_commit=a97780984207f29652af90fa3dc4e8e7576548e7 # tags/v2.0.16
+source=("git+https://github.com/containers/conmon#commit=${_commit};)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd conmon
+  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
+}
+
+package() {
+  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
+}


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:23:42
  Author: foxboron
Revision: 627757

upgpkg: conmon 1:2.0.16-1

Modified:
  conmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:23:21 UTC (rev 627756)
+++ PKGBUILD2020-05-13 19:23:42 UTC (rev 627757)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=conmon
-pkgver=2.0.15
+pkgver=2.0.16
 pkgrel=1
 epoch=1
 pkgdesc='OCI container runtime monitor'
@@ -11,7 +11,7 @@
 license=(APACHE)
 depends=(glibc glib2 systemd-libs)
 makedepends=(git)
-_commit=1bddbf7051a973f4a4fecf06faa0c48e82f1e9e1 # tags/v2.0.15
+_commit=a97780984207f29652af90fa3dc4e8e7576548e7 # tags/v2.0.16
 source=("git+https://github.com/containers/conmon#commit=${_commit};)
 md5sums=('SKIP')
 


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:22:12
  Author: foxboron
Revision: 627753

upgpkg: buildah 1.14.9-1

Modified:
  buildah/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-13 19:21:53 UTC (rev 627752)
+++ PKGBUILD2020-05-13 19:22:12 UTC (rev 627753)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=buildah
-pkgver=1.14.8
+pkgver=1.14.9
 pkgrel=1
 pkgdesc="A tool which facilitates building OCI images"
 arch=(x86_64)
@@ -9,9 +9,9 @@
 url="https://github.com/containers/buildah;
 license=(Apache)
 depends=(runc skopeo slirp4netns)
-makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
+makedepends=(go git bash-bats btrfs-progs device-mapper gpgme libassuan
  bzip2 go-md2man runc skopeo)
-_commit=155ce56a2cd2d5608cf43c998f1728af5e7a499b # tags/v1.14.8
+_commit=f3e0e16690ac1370953bb76516053acf399776a4 # tags/v1.14.9
 source=(git+https://github.com/containers/buildah.git#commit=$_commit)
 md5sums=('SKIP')
 
@@ -22,14 +22,16 @@
 
 build() {
   cd $pkgname 
-  export GOFLAGS="-trimpath"
-  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
   make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub seccomp"
 }
 
 package() {
   cd $pkgname
-  make DESTDIR="$pkgdir" PREFIX=usr install
-  make DESTDIR="$pkgdir" PREFIX=usr install.completions
+  make DESTDIR="$pkgdir" PREFIX=usr install install.completions
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


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

2020-05-13 Thread Morten Linderud via arch-commits
Date: Wednesday, May 13, 2020 @ 19:22:21
  Author: foxboron
Revision: 627754

archrelease: copy trunk to community-x86_64

Added:
  buildah/repos/community-x86_64/PKGBUILD
(from rev 627753, buildah/trunk/PKGBUILD)
Deleted:
  buildah/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-13 19:22:12 UTC (rev 627753)
+++ PKGBUILD2020-05-13 19:22:21 UTC (rev 627754)
@@ -1,35 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=buildah
-pkgver=1.14.8
-pkgrel=1
-pkgdesc="A tool which facilitates building OCI images"
-arch=(x86_64)
-url="https://github.com/containers/buildah;
-license=(Apache)
-depends=(runc skopeo slirp4netns)
-makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
- bzip2 go-md2man runc skopeo)
-_commit=155ce56a2cd2d5608cf43c998f1728af5e7a499b # tags/v1.14.8
-source=(git+https://github.com/containers/buildah.git#commit=$_commit)
-md5sums=('SKIP')
-
-pkgver() {
-  cd buildah
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname 
-  export GOFLAGS="-trimpath"
-  export CGO_LDFLAGS="$LDFLAGS"
-  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub seccomp"
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" PREFIX=usr install
-  make DESTDIR="$pkgdir" PREFIX=usr install.completions
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 627753, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-13 19:22:21 UTC (rev 627754)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=buildah
+pkgver=1.14.9
+pkgrel=1
+pkgdesc="A tool which facilitates building OCI images"
+arch=(x86_64)
+url="https://github.com/containers/buildah;
+license=(Apache)
+depends=(runc skopeo slirp4netns)
+makedepends=(go git bash-bats btrfs-progs device-mapper gpgme libassuan
+ bzip2 go-md2man runc skopeo)
+_commit=f3e0e16690ac1370953bb76516053acf399776a4 # tags/v1.14.9
+source=(git+https://github.com/containers/buildah.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd buildah
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname 
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub seccomp"
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" PREFIX=usr install install.completions
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:48:22
  Author: foxboron
Revision: 626171

upgpkg: udiskie 2.2.0-1

Modified:
  udiskie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-10 11:47:00 UTC (rev 626170)
+++ PKGBUILD2020-05-10 11:48:22 UTC (rev 626171)
@@ -4,7 +4,7 @@
 # Contributor: Byron Clark 
 
 pkgname=udiskie
-pkgver=2.1.1
+pkgver=2.2.0
 pkgrel=1
 pkgdesc="Removable disk automounter using udisks"
 arch=("any")
@@ -14,7 +14,7 @@
 makedepends=("asciidoc" "python-setuptools")
 optdepends=("libappindicator-gtk3: --appindicator support")
 
source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
-sha256sums=('7e022523a2b7a769acb07c9d582ae7d7013143cfc986e03d63df0e7197cbffbf')
+sha256sums=('1041bdf33e64371a68fe40ff242a7010244f4e90021cdd1435fd62ad1c5fcc50')
 
 build(){
cd "$pkgname-$pkgver"


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

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:48:30
  Author: foxboron
Revision: 626172

archrelease: copy trunk to community-any

Added:
  udiskie/repos/community-any/PKGBUILD
(from rev 626171, udiskie/trunk/PKGBUILD)
Deleted:
  udiskie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-10 11:48:22 UTC (rev 626171)
+++ PKGBUILD2020-05-10 11:48:30 UTC (rev 626172)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contibutor: Pierre Neidhardt 
-# Contributor: Daniel Wallace 
-# Contributor: Byron Clark 
-
-pkgname=udiskie
-pkgver=2.1.1
-pkgrel=1
-pkgdesc="Removable disk automounter using udisks"
-arch=("any")
-url="https://pypi.python.org/pypi/udiskie;
-license=("MIT")
-depends=("udisks2" "python" "python-gobject" "python-yaml" "python-docopt" 
"gtk3" "libnotify" "python-keyutils")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("libappindicator-gtk3: --appindicator support")
-source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
-sha256sums=('7e022523a2b7a769acb07c9d582ae7d7013143cfc986e03d63df0e7197cbffbf')
-
-build(){
-   cd "$pkgname-$pkgver"
-   python setup.py build
-   make -C doc
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
-   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-   install -dm755 "$pkgdir/usr/share/zsh/site-functions"
-   install -m644 completions/zsh/* "$pkgdir/usr/share/zsh/site-functions"
-}

Copied: udiskie/repos/community-any/PKGBUILD (from rev 626171, 
udiskie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-10 11:48:30 UTC (rev 626172)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Contibutor: Pierre Neidhardt 
+# Contributor: Daniel Wallace 
+# Contributor: Byron Clark 
+
+pkgname=udiskie
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Removable disk automounter using udisks"
+arch=("any")
+url="https://pypi.python.org/pypi/udiskie;
+license=("MIT")
+depends=("udisks2" "python" "python-gobject" "python-yaml" "python-docopt" 
"gtk3" "libnotify" "python-keyutils")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("libappindicator-gtk3: --appindicator support")
+source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
+sha256sums=('1041bdf33e64371a68fe40ff242a7010244f4e90021cdd1435fd62ad1c5fcc50')
+
+build(){
+   cd "$pkgname-$pkgver"
+   python setup.py build
+   make -C doc
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
+   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+   install -dm755 "$pkgdir/usr/share/zsh/site-functions"
+   install -m644 completions/zsh/* "$pkgdir/usr/share/zsh/site-functions"
+}


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

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:47:00
  Author: foxboron
Revision: 626170

archrelease: copy trunk to community-x86_64

Added:
  jgmenu/repos/community-x86_64/PKGBUILD
(from rev 626169, jgmenu/trunk/PKGBUILD)
Deleted:
  jgmenu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-10 11:46:52 UTC (rev 626169)
+++ PKGBUILD2020-05-10 11:47:00 UTC (rev 626170)
@@ -1,30 +0,0 @@
-# Maintainer: Mortne Linderu 
-# Contributor: Johan Malm 
-
-pkgname=jgmenu
-pkgver=4.1.0
-pkgrel=1
-pkgdesc="Simple, independent, contemporary-looking X11 menu, designed for 
scripting, ricing and tweaking"
-arch=('i686' 'x86_64')
-url="https://www.github.com/johanmalm/jgmenu;
-license=('GPL')
-depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
-source=("${pkgname}-${pkgver}.tar.gz::https://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('0a693db7295200b22f24e0d8ab3986353911aa214cd8199f3ec583710dc72a92')
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr --with-lx --with-pmenu
-   make
-}
-
-check(){
-   cd "$pkgname-$pkgver"
-   make check
-   make test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install
-}

Copied: jgmenu/repos/community-x86_64/PKGBUILD (from rev 626169, 
jgmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-10 11:47:00 UTC (rev 626170)
@@ -0,0 +1,29 @@
+# Maintainer: Mortne Linderu 
+# Contributor: Johan Malm 
+
+pkgname=jgmenu
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Simple, independent, contemporary-looking X11 menu, designed for 
scripting, ricing and tweaking"
+arch=('i686' 'x86_64')
+url="https://www.github.com/johanmalm/jgmenu;
+license=('GPL')
+depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
+source=("${pkgname}-${pkgver}.tar.gz::https://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
+sha256sums=('30893e28905dae8f5ed1fda56ad09d131bbd035c5e62348d2f192c3356286e1f')
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr --with-lx --with-pmenu
+   make
+}
+
+check(){
+   cd "$pkgname-$pkgver"
+   make test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install
+}


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

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:46:52
  Author: foxboron
Revision: 626169

upgpkg: jgmenu 4.2.0-1

Modified:
  jgmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-10 11:43:43 UTC (rev 626168)
+++ PKGBUILD2020-05-10 11:46:52 UTC (rev 626169)
@@ -2,7 +2,7 @@
 # Contributor: Johan Malm 
 
 pkgname=jgmenu
-pkgver=4.1.0
+pkgver=4.2.0
 pkgrel=1
 pkgdesc="Simple, independent, contemporary-looking X11 menu, designed for 
scripting, ricing and tweaking"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
 
source=("${pkgname}-${pkgver}.tar.gz::https://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('0a693db7295200b22f24e0d8ab3986353911aa214cd8199f3ec583710dc72a92')
+sha256sums=('30893e28905dae8f5ed1fda56ad09d131bbd035c5e62348d2f192c3356286e1f')
 
 build() {
cd "$pkgname-$pkgver"
@@ -20,7 +20,6 @@
 
 check(){
cd "$pkgname-$pkgver"
-   make check
make test
 }
 


[arch-commits] Commit in gopass/trunk (clipboard.patch)

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:43:35
  Author: foxboron
Revision: 626167

upgpkg: gopass 1.9.1-1

Deleted:
  gopass/trunk/clipboard.patch

-+
 clipboard.patch |   36 
 1 file changed, 36 deletions(-)

Deleted: clipboard.patch
===
--- clipboard.patch 2020-05-10 11:41:55 UTC (rev 626166)
+++ clipboard.patch 2020-05-10 11:43:35 UTC (rev 626167)
@@ -1,36 +0,0 @@
-From 05979a825ab10ca014052d55194273a43808b9f4 Mon Sep 17 00:00:00 2001
-From: Dominik Schulz 
-Date: Sun, 3 May 2020 21:15:32 +0200
-Subject: [PATCH] Properly specify aliases on the default show action (#1319)
-
-Fixes #1318
-
-RELEASE_NOTES=[BUGFIX] Fix -c and -C for default show action.
-
-Signed-off-by: Dominik Schulz 

- app.go | 10 ++
- 1 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/app.go b/app.go
-index 8c2d0ffc..0fdcc783 100644
 a/app.go
-+++ b/app.go
-@@ -70,12 +70,14 @@ func setupApp(ctx context.Context, sv semver.Version) 
(context.Context, *cli.App
-   Usage: "Assume yes on all yes/no questions or use the 
default on all others",
-   },
-   {
--  Name:  "clip, c",
--  Usage: "Copy the first line of the secret into the 
clipboard",
-+  Name:"clip",
-+  Aliases: []string{"c"},
-+  Usage:   "Copy the first line of the secret into the 
clipboard",
-   },
-   {
--  Name:  "alsoclip, C",
--  Usage: "Copy the first line of the secret into the 
clipboard and show everything",
-+  Name:"alsoclip",
-+  Aliases: []string{"C"},
-+  Usage:   "Copy the first line of the secret into the 
clipboard and show everything",
-   },
-   }


[arch-commits] Commit in gopass/repos/community-x86_64 (3 files)

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:43:43
  Author: foxboron
Revision: 626168

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 626167, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD
  gopass/repos/community-x86_64/clipboard.patch

-+
 PKGBUILD|   69 --
 clipboard.patch |   36 
 2 files changed, 31 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-10 11:43:35 UTC (rev 626167)
+++ PKGBUILD2020-05-10 11:43:43 UTC (rev 626168)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=gopass
-pkgver=1.9.0
-pkgrel=2
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-'xsel: clipboard support'
-'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;
-"clipboard.patch")
-sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca'
-
'05442c85c4ffe4d579aee990cd75eee7fc93972d8adf82c423a2f2b79fab67ced132f64e941cb5f2681106879555f2f8b1db8a33181588283dd6fc741bd51e30')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 < "$srcdir/clipboard.patch"
-}
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 626167, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-10 11:43:43 UTC (rev 626168)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+
+pkgname=gopass
+pkgver=1.9.1
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+'xsel: clipboard support'
+'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha512sums=('a70affc278b5d46582a3362c28f1aff8be4481aae3d07f3b7e200117fc2ac79466c475d558fe5a642b0102a46fc95242334f406deca6ee4abd7d5e9f674451ab')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: clipboard.patch
===
--- clipboard.patch 2020-05-10 11:43:35 UTC (rev 626167)
+++ clipboard.patch 2020-05-10 11:43:43 UTC (rev 626168)
@@ -1,36 +0,0 @@
-From 05979a825ab10ca014052d55194273a43808b9f4 Mon Sep 17 00:00:00 2001
-From: Dominik Schulz 
-Date: Sun, 3 May 2020 21:15:32 +0200
-Subject: [PATCH] Properly specify aliases on the default show action (#1319)
-
-Fixes #1318
-
-RELEASE_NOTES=[BUGFIX] Fix -c and -C for default show action.
-
-Signed-off-by: Dominik Schulz 

- app.go | 10 ++
- 1 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/app.go b/app.go
-index 8c2d0ffc..0fdcc783 100644
 a/app.go
-+++ b/app.go
-@@ -70,12 +70,14 @@ func setupApp(ctx context.Context, sv semver.Version) 
(context.Context, *cli.App
-   Usage: "Assume yes on all yes/no questions or use the 
default on all others",
-   },
-   {
--  Name:  "clip, c",
--  Usage: "Copy the first line of the secret into the 
clipboard",
-+  Name:"clip",
-+  Aliases: []string{"c"},
-+  Usage:   "Copy the first line of the secret into the 
clipboard",
-   },
-   {
--  Name:  "alsoclip, C",
--  Usage: "Copy the first line of the secret into the 
clipboard and show everything",
-+  Name:"alsoclip",
-+  Aliases: []string{"C"},
-+  Usage:   "Copy the first line of the secret into the 
clipboard and show everything",
- 

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

2020-05-10 Thread Morten Linderud via arch-commits
Date: Sunday, May 10, 2020 @ 11:41:55
  Author: foxboron
Revision: 626166

upgpkg: gopass 1.9.1-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-10 11:33:10 UTC (rev 626165)
+++ PKGBUILD2020-05-10 11:41:55 UTC (rev 626166)
@@ -1,8 +1,8 @@
 # Maintainer: Morten Linderud 
 
 pkgname=gopass
-pkgver=1.9.0
-pkgrel=2
+pkgver=1.9.1
+pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
 url="https://github.com/gopasspw/gopass;
@@ -11,16 +11,9 @@
 optdepends=('xdotool: for typing passwords selected by dmenu'
 'xsel: clipboard support'
 'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;
-"clipboard.patch")
-sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca'
-
'05442c85c4ffe4d579aee990cd75eee7fc93972d8adf82c423a2f2b79fab67ced132f64e941cb5f2681106879555f2f8b1db8a33181588283dd6fc741bd51e30')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha512sums=('a70affc278b5d46582a3362c28f1aff8be4481aae3d07f3b7e200117fc2ac79466c475d558fe5a642b0102a46fc95242334f406deca6ee4abd7d5e9f674451ab')
 
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 < "$srcdir/clipboard.patch"
-}
-
 build(){
   cd "${pkgname}-${pkgver}"
   export GOPATH="${srcdir}"


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 17:33:00
  Author: foxboron
Revision: 626045

archrelease: copy trunk to community-x86_64

Added:
  staticcheck/repos/community-x86_64/
  staticcheck/repos/community-x86_64/PKGBUILD
(from rev 626044, staticcheck/trunk/PKGBUILD)

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

Copied: staticcheck/repos/community-x86_64/PKGBUILD (from rev 626044, 
staticcheck/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-09 17:33:00 UTC (rev 626045)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=staticcheck
+pkgver=2020.1.3
+pkgrel=1
+pkgdesc="Staticcheck - The advanced Go linter"
+arch=('x86_64')
+url="https://staticcheck.io;
+license=("MIT")
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
+md5sums=('0032e437aa43b5dfe0c84f3e1bb9a266')
+
+prepare(){
+   cd "go-tools-$pkgver"
+   mkdir -p bin
+}
+
+build(){
+   cd "go-tools-$pkgver"
+   export GOFLAGS="-buildmode=pie -trimpath"
+   export CGO_CFLAGS="$CFLAGS"
+   export CGO_LDFLAGS="$LDFLAGS"
+   go build -o bin/staticcheck ./cmd/staticcheck
+}
+
+check(){
+   cd "go-tools-$pkgver"
+   GOROOT="/usr/lib/go" go test -v ./...
+}
+
+package(){
+   cd "go-tools-$pkgver"
+   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
+   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
+}


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 17:32:53
  Author: foxboron
Revision: 626044

upgpkg: staticcheck 2020.1.3-1

Added:
  staticcheck/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 17:32:53 UTC (rev 626044)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=staticcheck
+pkgver=2020.1.3
+pkgrel=1
+pkgdesc="Staticcheck - The advanced Go linter"
+arch=('x86_64')
+url="https://staticcheck.io;
+license=("MIT")
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
+md5sums=('0032e437aa43b5dfe0c84f3e1bb9a266')
+
+prepare(){
+   cd "go-tools-$pkgver"
+   mkdir -p bin
+}
+
+build(){
+   cd "go-tools-$pkgver"
+   export GOFLAGS="-buildmode=pie -trimpath"
+   export CGO_CFLAGS="$CFLAGS"
+   export CGO_LDFLAGS="$LDFLAGS"
+   go build -o bin/staticcheck ./cmd/staticcheck
+}
+
+check(){
+   cd "go-tools-$pkgver"
+   GOROOT="/usr/lib/go" go test -v ./...
+}
+
+package(){
+   cd "go-tools-$pkgver"
+   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
+   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
+}


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 17:32:46
  Author: foxboron
Revision: 626043

addpkg: staticcheck 2020.1.3-1

Added:
  staticcheck/
  staticcheck/repos/
  staticcheck/trunk/


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:34:46
  Author: foxboron
Revision: 625970

upgpkg: baidupcs-go 3.6.2-2

Removed go get usage and updated to current guidelines

Modified:
  baidupcs-go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 14:33:24 UTC (rev 625969)
+++ PKGBUILD2020-05-09 14:34:46 UTC (rev 625970)
@@ -2,32 +2,25 @@
 
 pkgname=baidupcs-go
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Terminal utility for Baidu Network Disk"
 arch=('x86_64')
 url="https://github.com/iikira/BaiduPCS-Go;
 license=('Apache')
 depends=('glibc')
-makedepends=('go-pie' 'git')
+makedepends=('go' 'git')
 conflicts=("baidupcs")
 provides=("baidupcs")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/iikira/BaiduPCS-Go/archive/v$pkgver.tar.gz;)
 
sha512sums=('e7248521cade634aa41224c88b8dd07cac3a84d0f262c369447c4c4872e52c9431dcee38b42cf6360c13a64cc1b6bce1cc4199de54602b4e8bac95b37a68688c')
 
-prepare() {
-  cd BaiduPCS-Go-$pkgver
-
-  mkdir -p .gopath/src/github.com/iikira
-  ln -sf "$PWD" .gopath/src/github.com/iikira/BaiduPCS-Go
-  export GOPATH="$PWD/.gopath:/usr/share/gocode"
-
-  go get github.com/iikira/args github.com/olekukonko/tablewriter 
github.com/peterh/liner \
- github.com/urfave/cli
-}
-
 build() {
   cd BaiduPCS-Go-$pkgver
-  go build -ldflags "-extldflags ${LDFLAGS}" -o baidupcs-go
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o baidupcs-go
 }
 
 package() {


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:34:54
  Author: foxboron
Revision: 625971

archrelease: copy trunk to community-x86_64

Added:
  baidupcs-go/repos/community-x86_64/PKGBUILD
(from rev 625970, baidupcs-go/trunk/PKGBUILD)
Deleted:
  baidupcs-go/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 14:34:46 UTC (rev 625970)
+++ PKGBUILD2020-05-09 14:34:54 UTC (rev 625971)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=baidupcs-go
-pkgver=3.6.2
-pkgrel=1
-pkgdesc="Terminal utility for Baidu Network Disk"
-arch=('x86_64')
-url="https://github.com/iikira/BaiduPCS-Go;
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-conflicts=("baidupcs")
-provides=("baidupcs")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/iikira/BaiduPCS-Go/archive/v$pkgver.tar.gz;)
-sha512sums=('e7248521cade634aa41224c88b8dd07cac3a84d0f262c369447c4c4872e52c9431dcee38b42cf6360c13a64cc1b6bce1cc4199de54602b4e8bac95b37a68688c')
-
-prepare() {
-  cd BaiduPCS-Go-$pkgver
-
-  mkdir -p .gopath/src/github.com/iikira
-  ln -sf "$PWD" .gopath/src/github.com/iikira/BaiduPCS-Go
-  export GOPATH="$PWD/.gopath:/usr/share/gocode"
-
-  go get github.com/iikira/args github.com/olekukonko/tablewriter 
github.com/peterh/liner \
- github.com/urfave/cli
-}
-
-build() {
-  cd BaiduPCS-Go-$pkgver
-  go build -ldflags "-extldflags ${LDFLAGS}" -o baidupcs-go
-}
-
-package() {
-  cd BaiduPCS-Go-$pkgver
-  install -Dm755 baidupcs-go "$pkgdir"/usr/bin/baidupcs
-}

Copied: baidupcs-go/repos/community-x86_64/PKGBUILD (from rev 625970, 
baidupcs-go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 14:34:54 UTC (rev 625971)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=baidupcs-go
+pkgver=3.6.2
+pkgrel=2
+pkgdesc="Terminal utility for Baidu Network Disk"
+arch=('x86_64')
+url="https://github.com/iikira/BaiduPCS-Go;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+conflicts=("baidupcs")
+provides=("baidupcs")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/iikira/BaiduPCS-Go/archive/v$pkgver.tar.gz;)
+sha512sums=('e7248521cade634aa41224c88b8dd07cac3a84d0f262c369447c4c4872e52c9431dcee38b42cf6360c13a64cc1b6bce1cc4199de54602b4e8bac95b37a68688c')
+
+build() {
+  cd BaiduPCS-Go-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o baidupcs-go
+}
+
+package() {
+  cd BaiduPCS-Go-$pkgver
+  install -Dm755 baidupcs-go "$pkgdir"/usr/bin/baidupcs
+}


[arch-commits] Commit in dns-over-https/trunk (PKGBUILD)

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:33:16
  Author: foxboron
Revision: 625968

upgpkg: dns-over-https 2.2.1-3

Removed go get usage and updated to current guidelines

Modified:
  dns-over-https/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 14:31:09 UTC (rev 625967)
+++ PKGBUILD2020-05-09 14:33:16 UTC (rev 625968)
@@ -1,10 +1,11 @@
 # Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
 # Contributor: Sherlock Holo 
 # Contributor: Ariel AxionL 
 
 pkgname=dns-over-https
 pkgver=2.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Client and server software to query DNS over HTTPS, using Google 
DNS-over-HTTPS protocol"
 url="https://github.com/m13253/dns-over-https;
 arch=('x86_64')
@@ -12,23 +13,30 @@
 backup=('etc/dns-over-https/doh-client.conf'
 'etc/dns-over-https/doh-server.conf')
 provides=('dns-over-https-client' 'dns-over-https-server')
-makedepends=('go-pie' 'golang-golang-x-crypto' 'golang-golang-x-net' 
'golang-golang-x-sys' 'git')
+makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/m13253/dns-over-https/archive/v$pkgver.tar.gz;)
 sha256sums=('49cf259a4756950d1653126b2609d2c713782aab8194915c4be11bf0017ba4f0')
 
-build() {
-  mkdir -p "$srcdir"/go/src
-  export GOPATH="$srcdir/go:/usr/share/gocode"
-
-  cd "$srcdir"/$pkgname-$pkgver
+prepare(){
+  cd "$pkgname-$pkgver"
   sed -i 's/\/local//g' systemd/doh-{client,server}.service
+}
 
-  go get github.com/BurntSushi/toml github.com/gorilla/handlers 
github.com/miekg/dns
-  
-  go build -gcflags "all=-trimpath=$PWD" -asmflags "all=-trimpath=$PWD" 
-ldflags "-w -s -extldflags $LDFLAGS" -v -o client ./doh-client
-  go build -gcflags "all=-trimpath=$PWD" -asmflags "all=-trimpath=$PWD" 
-ldflags "-w -s -extldflags $LDFLAGS" -v -o server ./doh-server
+build() {
+  cd "$pkgname-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -v -o client ./doh-client
+  go build -v -o server ./doh-server
 }
 
+check(){
+  cd "$pkgname-$pkgver"
+  go test -v ./...
+}
+
 package() {
   cd $pkgname-$pkgver
   install -Dm755 client "$pkgdir"/usr/bin/doh-client


[arch-commits] Commit in dns-over-https/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:33:24
  Author: foxboron
Revision: 625969

archrelease: copy trunk to community-x86_64

Added:
  dns-over-https/repos/community-x86_64/PKGBUILD
(from rev 625968, dns-over-https/trunk/PKGBUILD)
Deleted:
  dns-over-https/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 14:33:16 UTC (rev 625968)
+++ PKGBUILD2020-05-09 14:33:24 UTC (rev 625969)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sherlock Holo 
-# Contributor: Ariel AxionL 
-
-pkgname=dns-over-https
-pkgver=2.2.1
-pkgrel=2
-pkgdesc="Client and server software to query DNS over HTTPS, using Google 
DNS-over-HTTPS protocol"
-url="https://github.com/m13253/dns-over-https;
-arch=('x86_64')
-license=('MIT')
-backup=('etc/dns-over-https/doh-client.conf'
-'etc/dns-over-https/doh-server.conf')
-provides=('dns-over-https-client' 'dns-over-https-server')
-makedepends=('go-pie' 'golang-golang-x-crypto' 'golang-golang-x-net' 
'golang-golang-x-sys' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/m13253/dns-over-https/archive/v$pkgver.tar.gz;)
-sha256sums=('49cf259a4756950d1653126b2609d2c713782aab8194915c4be11bf0017ba4f0')
-
-build() {
-  mkdir -p "$srcdir"/go/src
-  export GOPATH="$srcdir/go:/usr/share/gocode"
-
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i 's/\/local//g' systemd/doh-{client,server}.service
-
-  go get github.com/BurntSushi/toml github.com/gorilla/handlers 
github.com/miekg/dns
-  
-  go build -gcflags "all=-trimpath=$PWD" -asmflags "all=-trimpath=$PWD" 
-ldflags "-w -s -extldflags $LDFLAGS" -v -o client ./doh-client
-  go build -gcflags "all=-trimpath=$PWD" -asmflags "all=-trimpath=$PWD" 
-ldflags "-w -s -extldflags $LDFLAGS" -v -o server ./doh-server
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 client "$pkgdir"/usr/bin/doh-client
-  install -Dm644 doh-client/doh-client.conf 
"$pkgdir"/etc/dns-over-https/doh-client.conf
-  install -Dm644 systemd/doh-client.service 
"$pkgdir"/usr/lib/systemd/system/doh-client.service
-  install -Dm755 NetworkManager/dispatcher.d/doh-client 
"$pkgdir"/etc/NetworkManager/dispatcher.d/doh-client
-
-  install -Dm755 server "$pkgdir"/usr/bin/doh-server
-  install -Dm644 doh-server/doh-server.conf 
"$pkgdir"/etc/dns-over-https/doh-server.conf
-  install -Dm644 systemd/doh-server.service 
"$pkgdir"/usr/lib/systemd/system/doh-server.service
-  install -Dm755 NetworkManager/dispatcher.d/doh-server 
"$pkgdir"/etc/NetworkManager/dispatcher.d/doh-server
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dns-over-https/repos/community-x86_64/PKGBUILD (from rev 625968, 
dns-over-https/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 14:33:24 UTC (rev 625969)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+# Contributor: Sherlock Holo 
+# Contributor: Ariel AxionL 
+
+pkgname=dns-over-https
+pkgver=2.2.1
+pkgrel=3
+pkgdesc="Client and server software to query DNS over HTTPS, using Google 
DNS-over-HTTPS protocol"
+url="https://github.com/m13253/dns-over-https;
+arch=('x86_64')
+license=('MIT')
+backup=('etc/dns-over-https/doh-client.conf'
+'etc/dns-over-https/doh-server.conf')
+provides=('dns-over-https-client' 'dns-over-https-server')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/m13253/dns-over-https/archive/v$pkgver.tar.gz;)
+sha256sums=('49cf259a4756950d1653126b2609d2c713782aab8194915c4be11bf0017ba4f0')
+
+prepare(){
+  cd "$pkgname-$pkgver"
+  sed -i 's/\/local//g' systemd/doh-{client,server}.service
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -v -o client ./doh-client
+  go build -v -o server ./doh-server
+}
+
+check(){
+  cd "$pkgname-$pkgver"
+  go test -v ./...
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 client "$pkgdir"/usr/bin/doh-client
+  install -Dm644 doh-client/doh-client.conf 
"$pkgdir"/etc/dns-over-https/doh-client.conf
+  install -Dm644 systemd/doh-client.service 
"$pkgdir"/usr/lib/systemd/system/doh-client.service
+  install -Dm755 NetworkManager/dispatcher.d/doh-client 
"$pkgdir"/etc/NetworkManager/dispatcher.d/doh-client
+
+  install -Dm755 server "$pkgdir"/usr/bin/doh-server
+  install -Dm644 doh-server/doh-server.conf 
"$pkgdir"/etc/dns-over-https/doh-server.conf
+  install -Dm644 systemd/doh-server.service 
"$pkgdir"/usr/lib/systemd/system/doh-server.service
+  install -Dm755 NetworkManager/dispatcher.d/doh-server 
"$pkgdir"/etc/NetworkManager/dispatcher.d/doh-server
+
+  install -Dm644 LICENSE 

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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:31:09
  Author: foxboron
Revision: 625967

archrelease: copy trunk to community-x86_64

Added:
  glider/repos/community-x86_64/PKGBUILD
(from rev 625966, glider/trunk/PKGBUILD)
Deleted:
  glider/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 14:31:02 UTC (rev 625966)
+++ PKGBUILD2020-05-09 14:31:09 UTC (rev 625967)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=glider
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="A forward proxy with multiple protocols support"
-arch=('x86_64')
-url="https://github.com/nadoo/glider;
-license=('GPL')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
-sha512sums=('cd2f1dcec0f4b9d4836e766ecd406cd94cbe26ccaaf42834f5c322815967a1ad1e6fc85fe4e07fdcd7591ef513b1d672bd09ba69f3efe14f97417d577a772c05')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir"/.gopath
-  mkdir -p "$GOPATH"/src/github.com/nadoo
-  ln -sf "$srcdir"/glider-$pkgver "$GOPATH"/src/github.com/nadoo/glider
-
-  go get github.com/nadoo/conflag github.com/nadoo/go-shadowsocks2
-}
-
-build() {
-  cd glider-$pkgver
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}"
-
-}
-
-package() {
-  cd glider-$pkgver
-  install -Dm755 glider "$pkgdir"/usr/bin/glider
-  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
-  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
-}

Copied: glider/repos/community-x86_64/PKGBUILD (from rev 625966, 
glider/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 14:31:09 UTC (rev 625967)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+
+pkgname=glider
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="A forward proxy with multiple protocols support"
+arch=('x86_64')
+url="https://github.com/nadoo/glider;
+license=('GPL')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
+sha512sums=('cd2f1dcec0f4b9d4836e766ecd406cd94cbe26ccaaf42834f5c322815967a1ad1e6fc85fe4e07fdcd7591ef513b1d672bd09ba69f3efe14f97417d577a772c05')
+
+build() {
+  cd glider-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o glider .
+
+}
+
+check(){
+  cd glider-$pkgver
+  go test -v ./...
+}
+
+package() {
+  cd glider-$pkgver
+  install -Dm755 glider "$pkgdir"/usr/bin/glider
+  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
+  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
+}


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:31:02
  Author: foxboron
Revision: 625966

upgpkg: glider 0.10.0-2

Removed go get usage and updated to current guidelines

Modified:
  glider/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 14:29:03 UTC (rev 625965)
+++ PKGBUILD2020-05-09 14:31:02 UTC (rev 625966)
@@ -1,33 +1,31 @@
 # Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
 
 pkgname=glider
 pkgver=0.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A forward proxy with multiple protocols support"
 arch=('x86_64')
 url="https://github.com/nadoo/glider;
 license=('GPL')
 depends=('glibc')
-makedepends=('go-pie' 'git')
+makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
 
sha512sums=('cd2f1dcec0f4b9d4836e766ecd406cd94cbe26ccaaf42834f5c322815967a1ad1e6fc85fe4e07fdcd7591ef513b1d672bd09ba69f3efe14f97417d577a772c05')
 
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir"/.gopath
-  mkdir -p "$GOPATH"/src/github.com/nadoo
-  ln -sf "$srcdir"/glider-$pkgver "$GOPATH"/src/github.com/nadoo/glider
+build() {
+  cd glider-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o glider .
 
-  go get github.com/nadoo/conflag github.com/nadoo/go-shadowsocks2
 }
 
-build() {
+check(){
   cd glider-$pkgver
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}"
-
+  go test -v ./...
 }
 
 package() {


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:29:03
  Author: foxboron
Revision: 625965

archrelease: copy trunk to community-x86_64

Added:
  rclone/repos/community-x86_64/PKGBUILD
(from rev 625964, rclone/trunk/PKGBUILD)
Deleted:
  rclone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 14:28:55 UTC (rev 625964)
+++ PKGBUILD2020-05-09 14:29:03 UTC (rev 625965)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rclone
-pkgver=1.51.0
-pkgrel=3
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('x86_64')
-url="https://rclone.org/;
-license=('MIT')
-depends=('glibc')
-optdepends=('fuse2: for rclone mount')
-makedepends=('python' 'pandoc' 'go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz;)
-sha512sums=('b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916')
-
-prepare() {
-  cd rclone-$pkgver
-
-  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
-
-  mkdir -p .gopath/src/github.com/rclone
-  ln -sf "$PWD" .gopath/src/github.com/rclone/rclone
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/rclone/rclone
-}
-
-build() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
-
-  PATH="$GOPATH/bin:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html 
MANUAL.txt
-
-  ./rclone genautocomplete bash rclone.bash_completion
-  ./rclone genautocomplete zsh rclone.zsh_completion
-}
-
-check() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
-  make TAG=v$pkgver test || warning "Tests failed"
-}
-
-package() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
-  make TAG=v$pkgver DESTDIR="$pkgdir" install
-
-  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
-  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
-}

Copied: rclone/repos/community-x86_64/PKGBUILD (from rev 625964, 
rclone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 14:29:03 UTC (rev 625965)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+
+pkgname=rclone
+pkgver=1.51.0
+pkgrel=4
+pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
+arch=('x86_64')
+url="https://rclone.org/;
+license=('MIT')
+depends=('glibc')
+optdepends=('fuse2: for rclone mount')
+makedepends=('python' 'pandoc' 'go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz;)
+sha512sums=('b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916')
+
+prepare() {
+  cd "rclone-$pkgver"
+  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
+}
+
+build() {
+  cd "rclone-$pkgver"
+  
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+
+  PATH=".:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html MANUAL.txt
+ ./rclone genautocomplete bash rclone.bash_completion
+ ./rclone genautocomplete zsh rclone.zsh_completion
+}
+
+check() {
+  cd "rclone-$pkgver"
+  make TAG=v$pkgver test
+}
+
+package() {
+  cd "rclone-$pkgver"
+
+  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
+
+  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
+  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
+}


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:28:55
  Author: foxboron
Revision: 625964

upgpkg: rclone 1.51.0-4

Removed go get usage and updated to current guidelines

Modified:
  rclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 14:18:51 UTC (rev 625963)
+++ PKGBUILD2020-05-09 14:28:55 UTC (rev 625964)
@@ -1,8 +1,9 @@
 # Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
 
 pkgname=rclone
 pkgver=1.51.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
 arch=('x86_64')
 url="https://rclone.org/;
@@ -9,40 +10,38 @@
 license=('MIT')
 depends=('glibc')
 optdepends=('fuse2: for rclone mount')
-makedepends=('python' 'pandoc' 'go-pie' 'git')
+makedepends=('python' 'pandoc' 'go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz;)
 
sha512sums=('b0881e09b75093abe4d31e95425a90513aed4a16d9e2dbf79023c9dc68875b90a1332204879530c450a16ab9cac475d967f7657d6f810a1e0f0d84b88d7de916')
 
 prepare() {
-  cd rclone-$pkgver
-
+  cd "rclone-$pkgver"
   sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
-
-  mkdir -p .gopath/src/github.com/rclone
-  ln -sf "$PWD" .gopath/src/github.com/rclone/rclone
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/rclone/rclone
 }
 
 build() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
+  cd "rclone-$pkgver"
+  
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
 
-  PATH="$GOPATH/bin:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html 
MANUAL.txt
-
-  ./rclone genautocomplete bash rclone.bash_completion
-  ./rclone genautocomplete zsh rclone.zsh_completion
+  PATH=".:$PATH" make TAG=v$pkgver rclone rclone.1 MANUAL.html MANUAL.txt
+ ./rclone genautocomplete bash rclone.bash_completion
+ ./rclone genautocomplete zsh rclone.zsh_completion
 }
 
 check() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
-  make TAG=v$pkgver test || warning "Tests failed"
+  cd "rclone-$pkgver"
+  make TAG=v$pkgver test
 }
 
 package() {
-  cd rclone-$pkgver/.gopath/src/github.com/rclone/rclone
-  make TAG=v$pkgver DESTDIR="$pkgdir" install
+  cd "rclone-$pkgver"
 
+  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
+
   install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
   install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
 


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:18:51
  Author: foxboron
Revision: 625963

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 625962, v2ray/trunk/PKGBUILD)
  v2ray/repos/community-x86_64/v2ray.service
(from rev 625962, v2ray/trunk/v2ray.service)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD
  v2ray/repos/community-x86_64/v2ray.service

---+
 PKGBUILD  |  115 +++-
 v2ray.service |   26 ++--
 2 files changed, 61 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 14:18:42 UTC (rev 625962)
+++ PKGBUILD2020-05-09 14:18:51 UTC (rev 625963)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=4.23.1
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2ray/v2ray-core;
-license=('MIT')
-depends=('glibc' 'v2ray-domain-list-community' 'v2ray-geoip')
-makedepends=('go-pie' 'golang-golang-x-crypto' 'golang-golang-x-net' 
'golang-golang-x-sys' 'git')
-backup=(etc/v2ray/config.json)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
-'v2ray.service')
-sha512sums=('3f5244c201a1c8e348b3928ac5ad130596db39419166273af0c45a916d365544dea7b07368ab47744317321300df13061349610c2770e8e561b5df2db691eecd'
-
'79192646438bcbd13a5a88d0093b1b6d5df603a9c2241a6260babf16f9e98d75f9e04fb3a1d926eb809a81fa935d3ff47d39cc703c609dfc906146ca58272bc7')
-
-prepare() {
-  # Try to unpin go mods
-  rm v2ray-core-$pkgver/go.{mod,sum}
-
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p "$srcdir"/build/src/v2ray.com
-
-  # mv *.com *.io *.org *.net "$srcdir"/build/src/
-  mv v2ray-core-$pkgver "$srcdir"/build/src/v2ray.com/core
-
-  # Future makedepends
-  go get github.com/golang/protobuf/proto go.starlark.net/starlark 
go.starlark.net/syntax \
- google.golang.org/grpc github.com/gorilla/websocket 
github.com/refraction-networking/utls
-
-  # Future checkdepends
-  go get github.com/golang/mock/gomock github.com/google/go-cmp/cmp \
- golang.org/x/sync/errgroup golang.org/x/xerrors github.com/miekg/dns 
h12.io/socks
-}
-
-build() {
-  go build -trimpath \
--ldflags "-extldflags ${LDFLAGS}" \
--o v2ray v2ray.com/core/main
-
-  go build -trimpath \
--ldflags "-extldflags ${LDFLAGS}" \
--o v2ctl v2ray.com/core/infra/control/main
-}
-
-check() {
-  cd "$srcdir"/build/src/v2ray.com/core
-  go test -p 1 -tags json -v -timeout 30m v2ray.com/core/...
-}
-
-package() {
-  cd "$srcdir"/build/src/v2ray.com/core
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  sed -i -e 's|/usr/bin/v2ray/v2ray|/usr/lib/v2ray/v2ray|' \
- "$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$srcdir"/v2ray -t "$pkgdir"/usr/lib/v2ray/
-  install -Dm755 "$srcdir"/v2ctl -t "$pkgdir"/usr/lib/v2ray/
-  install -dm755 "$pkgdir"/usr/bin
-  ln -s ../lib/v2ray/v2ray "$pkgdir"/usr/bin/v2ray
-  ln -s ../lib/v2ray/v2ctl "$pkgdir"/usr/bin/v2ctl
-
-  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 625962, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 14:18:51 UTC (rev 625963)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=4.23.1
+pkgrel=2
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2ray/v2ray-core;
+license=('MIT')
+depends=('glibc' 'v2ray-domain-list-community' 'v2ray-geoip')
+makedepends=('go' 'git')
+backup=(etc/v2ray/config.json)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
+'v2ray.service')
+sha512sums=('3f5244c201a1c8e348b3928ac5ad130596db39419166273af0c45a916d365544dea7b07368ab47744317321300df13061349610c2770e8e561b5df2db691eecd'
+
'79192646438bcbd13a5a88d0093b1b6d5df603a9c2241a6260babf16f9e98d75f9e04fb3a1d926eb809a81fa935d3ff47d39cc703c609dfc906146ca58272bc7')
+
+build() {
+  cd "v2ray-core-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o v2ray ./main
+  go build -o v2ctl ./infra/control/main
+}
+
+check() {
+  cd "v2ray-core-$pkgver"
+  go test -p 1 -tags json -v -timeout 30m v2ray.com/core/...
+}
+
+package() {
+  cd v2ray-core-$pkgver
+  install -Dm644 LICENSE 

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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 14:18:42
  Author: foxboron
Revision: 625962

upgpkg: v2ray 4.23.1-2

Updated v2ray to follow latest guidelines and removed go get usage.

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 12:55:55 UTC (rev 625961)
+++ PKGBUILD2020-05-09 14:18:42 UTC (rev 625962)
@@ -3,13 +3,13 @@
 
 pkgname=v2ray
 pkgver=4.23.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
 url="https://github.com/v2ray/v2ray-core;
 license=('MIT')
 depends=('glibc' 'v2ray-domain-list-community' 'v2ray-geoip')
-makedepends=('go-pie' 'golang-golang-x-crypto' 'golang-golang-x-net' 
'golang-golang-x-sys' 'git')
+makedepends=('go' 'git')
 backup=(etc/v2ray/config.json)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/v2ray/v2ray-core/archive/v$pkgver.tar.gz;
 'v2ray.service')
@@ -16,49 +16,30 @@
 
sha512sums=('3f5244c201a1c8e348b3928ac5ad130596db39419166273af0c45a916d365544dea7b07368ab47744317321300df13061349610c2770e8e561b5df2db691eecd'
 
'79192646438bcbd13a5a88d0093b1b6d5df603a9c2241a6260babf16f9e98d75f9e04fb3a1d926eb809a81fa935d3ff47d39cc703c609dfc906146ca58272bc7')
 
-prepare() {
-  # Try to unpin go mods
-  rm v2ray-core-$pkgver/go.{mod,sum}
-
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p "$srcdir"/build/src/v2ray.com
-
-  # mv *.com *.io *.org *.net "$srcdir"/build/src/
-  mv v2ray-core-$pkgver "$srcdir"/build/src/v2ray.com/core
-
-  # Future makedepends
-  go get github.com/golang/protobuf/proto go.starlark.net/starlark 
go.starlark.net/syntax \
- google.golang.org/grpc github.com/gorilla/websocket 
github.com/refraction-networking/utls
-
-  # Future checkdepends
-  go get github.com/golang/mock/gomock github.com/google/go-cmp/cmp \
- golang.org/x/sync/errgroup golang.org/x/xerrors github.com/miekg/dns 
h12.io/socks
-}
-
 build() {
-  go build -trimpath \
--ldflags "-extldflags ${LDFLAGS}" \
--o v2ray v2ray.com/core/main
-
-  go build -trimpath \
--ldflags "-extldflags ${LDFLAGS}" \
--o v2ctl v2ray.com/core/infra/control/main
+  cd "v2ray-core-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o v2ray ./main
+  go build -o v2ctl ./infra/control/main
 }
 
 check() {
-  cd "$srcdir"/build/src/v2ray.com/core
+  cd "v2ray-core-$pkgver"
   go test -p 1 -tags json -v -timeout 30m v2ray.com/core/...
 }
 
 package() {
-  cd "$srcdir"/build/src/v2ray.com/core
+  cd v2ray-core-$pkgver
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
   install -Dm644 release/config/systemd/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
   sed -i -e 's|/usr/bin/v2ray/v2ray|/usr/lib/v2ray/v2ray|' \
  "$pkgdir"/usr/lib/systemd/system/v2ray.service
   install -Dm644 release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$srcdir"/v2ray -t "$pkgdir"/usr/lib/v2ray/
-  install -Dm755 "$srcdir"/v2ctl -t "$pkgdir"/usr/lib/v2ray/
+  install -Dm755 v2ray -t "$pkgdir"/usr/lib/v2ray/
+  install -Dm755 v2ctl -t "$pkgdir"/usr/lib/v2ray/
   install -dm755 "$pkgdir"/usr/bin
   ln -s ../lib/v2ray/v2ray "$pkgdir"/usr/bin/v2ray
   ln -s ../lib/v2ray/v2ctl "$pkgdir"/usr/bin/v2ctl


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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 08:31:46
  Author: foxboron
Revision: 625910

archrelease: copy trunk to community-x86_64

Added:
  lxd/repos/community-x86_64/PKGBUILD
(from rev 625908, lxd/trunk/PKGBUILD)
  lxd/repos/community-x86_64/lxd.service
(from rev 625908, lxd/trunk/lxd.service)
  lxd/repos/community-x86_64/lxd.socket
(from rev 625908, lxd/trunk/lxd.socket)
  lxd/repos/community-x86_64/lxd.sysusers
(from rev 625908, lxd/trunk/lxd.sysusers)
Deleted:
  lxd/repos/community-x86_64/PKGBUILD
  lxd/repos/community-x86_64/lxd.service
  lxd/repos/community-x86_64/lxd.socket
  lxd/repos/community-x86_64/lxd.sysusers

--+
 PKGBUILD |  176 -
 lxd.service  |   46 +++---
 lxd.socket   |   22 +++
 lxd.sysusers |2 
 4 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 08:31:44 UTC (rev 625909)
+++ PKGBUILD2020-05-09 08:31:46 UTC (rev 625910)
@@ -1,88 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Maikel Wever 
-# Contributor: Asterios Dimitriou 
-# Contributor: Benjamin Asbach 
-# Contributer: nightuser 
-
-pkgname=lxd
-_pkgname=lxd
-_lxd=github.com/lxc/lxd
-pkgver=4.0.1
-pkgrel=1
-pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
-arch=('x86_64')
-url="https://linuxcontainers.org/lxd;
-license=('APACHE')
-depends=('lxc' 'lxcfs' 'squashfs-tools' 'dnsmasq' 'dqlite' 'libuv' 
'sqlite-replication' 'ebtables')
-makedepends=('go' 'git' 'tcl' 'apparmor' 'libseccomp')
-optdepends=(
-'lvm2: for lvm2 support'
-'thin-provisioning-tools: for thin provisioning support'
-'btrfs-progs: for btrfs storage driver support'
-'ceph: for ceph storage driver support'
-'cdrtools: VM support'
-'qemu: VM support'
-'ovmf: VM support'
-'systemd-libs: unix device hotplug support'
-)
-source=("https://github.com/lxc/lxd/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-"lxd.socket"
-"lxd.service"
-"lxd.sysusers")
-validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('bdcdf74553533824cc63d6760ab3a09a5354e8bcb4ad3d938fde1feb95f4b36b'
-'SKIP'
-'3a14638f8d0f9082c7214502421350e3b028db1e7f22e8c3fd35a2b1d9153ef4'
-'102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54'
-'d0184d9c4bb485e3aad0d4ac25ea7e85ac0f7ed6ddc96333e74fcd393a5b5ec4')
-
-
-prepare() {
-  mkdir -p "${srcdir}/go/src/github.com/lxc"
-  ln -rTsf "${_pkgname}" "${srcdir}/go/src/${_lxd}"
-}
-
-build() {
-  export GOPATH="${srcdir}/${pkgname}-${pkgver}/_dist"
-  cd "${GOPATH}/src/${_lxd}"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_CFLAGS="$CFLAGS -I/usr/include/sqlite-replication"
-  export CGO_LDFLAGS="$LDFLAGS -L/usr/lib/sqlite-replication 
-Wl,-R/usr/lib/sqlite-replication"
-  export CGO_LDFLAGS_ALLOW='-Wl,-wrap,pthread_create'
-
-  mkdir -p bin
-   go build -v -tags "netgo" -o bin/ ./lxd-p2c/...
-   go build -v -tags "agent" -o bin/ ./lxd-agent/...
-  for tool in fuidshift lxc lxc-to-lxd lxd lxd-benchmark; do
-go build -v -tags "libsqlite3" -o bin/ ./$tool/...
-  done
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  for tool in fuidshift lxc lxc-to-lxd lxd lxd-agent lxd-benchmark lxd-p2c; do
-install -p -Dm755 "bin/$tool" "${pkgdir}/usr/bin/$tool"
-  done
-
-  # Package license
-  install -Dm644 "COPYING"  "${pkgdir}/usr/share/licenses/${_pkgname}/LICENCE"
-
-  # systemd files
-  install -Dm644 "${srcdir}/lxd.service" 
"${pkgdir}/usr/lib/systemd/system/lxd.service"
-  install -Dm644 "${srcdir}/lxd.socket" 
"${pkgdir}/usr/lib/systemd/system/lxd.socket"
-
-  # logs
-  install -dm755 "${pkgdir}/var/log/lxd"
-
-  # documentation
-  mkdir -p "${pkgdir}/usr/share/doc/lxd"
-  install -p -Dm644 "doc/"* "${pkgdir}/usr/share/doc/lxd/"
-
-  # Bash completions
-  install -p -Dm644 "scripts/bash/lxd-client" 
"${pkgdir}/usr/share/bash-completion/completions/lxd"
-
-  install -Dm644 "${srcdir}/$pkgname.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lxd/repos/community-x86_64/PKGBUILD (from rev 625908, 
lxd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 08:31:46 UTC (rev 625910)
@@ -0,0 +1,88 @@
+# Maintainer: Morten Linderud 
+# Contributor: Maikel Wever 
+# Contributor: Asterios Dimitriou 
+# Contributor: Benjamin Asbach 
+# Contributer: nightuser 
+
+pkgname=lxd
+_pkgname=lxd
+_lxd=github.com/lxc/lxd
+pkgver=4.1
+pkgrel=1
+pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
+arch=('x86_64')
+url="https://linuxcontainers.org/lxd;
+license=('APACHE')
+depends=('lxc' 'lxcfs' 'squashfs-tools' 'dnsmasq' 'dqlite' 'libuv' 
'sqlite-replication' 'ebtables')
+makedepends=('go' 'git' 'tcl' 

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

2020-05-09 Thread Morten Linderud via arch-commits
Date: Saturday, May 9, 2020 @ 08:31:34
  Author: foxboron
Revision: 625908

upgpkg: lxd 4.1-1

Modified:
  lxd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 08:30:41 UTC (rev 625907)
+++ PKGBUILD2020-05-09 08:31:34 UTC (rev 625908)
@@ -7,7 +7,7 @@
 pkgname=lxd
 _pkgname=lxd
 _lxd=github.com/lxc/lxd
-pkgver=4.0.1
+pkgver=4.1
 pkgrel=1
 pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 "lxd.service"
 "lxd.sysusers")
 validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('bdcdf74553533824cc63d6760ab3a09a5354e8bcb4ad3d938fde1feb95f4b36b'
+sha256sums=('3f5231fa4a26d06f386fe03dc8779c55fe9baec8be826e9f688354ce4f917f6b'
 'SKIP'
 '3a14638f8d0f9082c7214502421350e3b028db1e7f22e8c3fd35a2b1d9153ef4'
 '102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54'


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

2020-05-07 Thread Morten Linderud via arch-commits
Date: Thursday, May 7, 2020 @ 18:51:53
  Author: foxboron
Revision: 625482

upgpkg: qutebrowser 1.11.1-1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-07 18:39:10 UTC (rev 625481)
+++ PKGBUILD2020-05-07 18:51:53 UTC (rev 625482)
@@ -4,7 +4,7 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.11.0
+pkgver=1.11.1
 pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
@@ -24,7 +24,7 @@
 
source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
 
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('e2ed9d56aa5db8a0865f7a18d5d0d796d48db161d9c04c03a935dd95e2a4182c'
+sha256sums=('7a3354cb28efcec2cc4549b8ab37e1c4b81b45c51f52e87fdfb9380100afb533'
 'SKIP')
 
 build() {


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

2020-05-07 Thread Morten Linderud via arch-commits
Date: Thursday, May 7, 2020 @ 18:52:05
  Author: foxboron
Revision: 625483

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 625482, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-07 18:51:53 UTC (rev 625482)
+++ PKGBUILD2020-05-07 18:52:05 UTC (rev 625483)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Lukas Fleischer 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="https://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback with qt5-webkit backend"
-"gst-plugins-base: media playback with qt5-webkit backend"
-"gst-plugins-good: media playback with qt5-webkit backend"
-"gst-plugins-bad: media playback with qt5-webkit backend"
-"gst-plugins-ugly: media playback with qt5-webkit backend"
-"pdfjs: displaying PDF in-browser"
-"qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('e2ed9d56aa5db8a0865f7a18d5d0d796d48db161d9c04c03a935dd95e2a4182c'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile all
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 625482, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-07 18:52:05 UTC (rev 625483)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Lukas Fleischer 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.11.1
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('7a3354cb28efcec2cc4549b8ab37e1c4b81b45c51f52e87fdfb9380100afb533'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile all
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2020-05-07 Thread Morten Linderud via arch-commits
Date: Thursday, May 7, 2020 @ 11:48:55
  Author: foxboron
Revision: 625337

archrelease: copy trunk to community-x86_64

Added:
  darktable/repos/community-x86_64/PKGBUILD
(from rev 625336, darktable/trunk/PKGBUILD)
Deleted:
  darktable/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-07 11:48:47 UTC (rev 625336)
+++ PKGBUILD2020-05-07 11:48:55 UTC (rev 625337)
@@ -1,60 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor: Christian Himpel 
-# Contributor: Johannes Hanika 
-
-pkgname=darktable
-epoch=2
-pkgver=3.0.2
-pkgrel=1
-pkgdesc="Utility to organize and develop raw images"
-arch=(x86_64)
-url="https://darktable.org;
-license=(GPL3)
-depends=(pugixml libjpeg-turbo colord-gtk libgphoto2 openexr lensfun iso-codes 
zlib
- exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp)
-optdepends=('dcraw: base curve script'
-'perl-image-exiftool: base curve script'
-'imagemagick: base curve and noise profile scripts'
-'ghostscript: noise profile script'
-'gnuplot: noise profile script')
-makedepends=(cmake intltool desktop-file-utils llvm clang python-jsonschema 
libwebp)
-source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc}
-
"fix-cmake.patch::https://github.com/darktable-org/darktable/commit/767d48e0f60e7f858e8b31a88dd8cc1258e7ee9e.patch;)
-sha256sums=('6abaf661fe9414e92bdb33b58b98ef024ccf6132b7876abaf0751ec2109f36fb'
-'SKIP'
-'cdcaf17a362c4fc551ede3ebc0933e48e20185a9fad2c18a025f0414c180ef0d')
-validpgpkeys=(C4CBC150699956E2A3268EF5BB5CC8295B1779C9  # darktable releases 

-  F10F9686652B0E949FCD94C318DCA123F949BD3B) # Pascal Obry 

-
-prepare() {
-mkdir -p build
-cd "${pkgname}-${pkgver}"
-patch -Np1 < "../fix-cmake.patch"
-}
-
-build() {
-cd build
-cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_INSTALL_LIBEXECDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=Release \
--DBINARY_PACKAGE_BUILD=1 \
--DBUILD_USERMANUAL=False \
--DUSE_LIBSECRET=ON \
--DUSE_LUA=ON \
--DUSE_COLORD=ON \
--DBUILD_CURVE_TOOLS=ON \
--DBUILD_NOISE_TOOLS=ON \
--DRAWSPEED_ENABLE_LTO=ON \
--DPROJECT_VERSION=${pkgver}
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-ln -s darktable/libdarktable.so "${pkgdir}"/usr/lib/libdarktable.so
-}

Copied: darktable/repos/community-x86_64/PKGBUILD (from rev 625336, 
darktable/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-07 11:48:55 UTC (rev 625337)
@@ -0,0 +1,58 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Christian Himpel 
+# Contributor: Johannes Hanika 
+
+pkgname=darktable
+epoch=2
+pkgver=3.0.2
+pkgrel=2
+pkgdesc="Utility to organize and develop raw images"
+arch=(x86_64)
+url="https://darktable.org;
+license=(GPL3)
+depends=(pugixml libjpeg-turbo colord-gtk libgphoto2 openexr lensfun iso-codes 
zlib
+ exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp
+ gmic)
+optdepends=('dcraw: base curve script'
+'perl-image-exiftool: base curve script'
+'imagemagick: base curve and noise profile scripts'
+'ghostscript: noise profile script'
+'gnuplot: noise profile script')
+makedepends=(cmake intltool desktop-file-utils llvm clang python-jsonschema 
libwebp)
+source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver}.tar.xz"{,.asc}
+
darktable-fix-cmake.patch::https://github.com/darktable-org/darktable/commit/767d48e0f60e7f858e8b31a88dd8cc1258e7ee9e.patch)
+sha256sums=('6abaf661fe9414e92bdb33b58b98ef024ccf6132b7876abaf0751ec2109f36fb'
+'SKIP'
+'cdcaf17a362c4fc551ede3ebc0933e48e20185a9fad2c18a025f0414c180ef0d')
+validpgpkeys=(C4CBC150699956E2A3268EF5BB5CC8295B1779C9  # darktable releases 

+  F10F9686652B0E949FCD94C318DCA123F949BD3B) # Pascal Obry 

+
+prepare() {
+cd ${pkgname}-${pkgver}
+patch -Np1 < ../darktable-fix-cmake.patch
+}
+
+build() {
+cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DBINARY_PACKAGE_BUILD=1 \
+-DBUILD_USERMANUAL=False \
+

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

2020-05-07 Thread Morten Linderud via arch-commits
Date: Thursday, May 7, 2020 @ 11:48:47
  Author: foxboron
Revision: 625336

upgpkg: darktable 2:3.0.2-2

lut3d needs the gmic dependency

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-07 11:48:03 UTC (rev 625335)
+++ PKGBUILD2020-05-07 11:48:47 UTC (rev 625336)
@@ -7,13 +7,14 @@
 pkgname=darktable
 epoch=2
 pkgver=3.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Utility to organize and develop raw images"
 arch=(x86_64)
 url="https://darktable.org;
 license=(GPL3)
 depends=(pugixml libjpeg-turbo colord-gtk libgphoto2 openexr lensfun iso-codes 
zlib
- exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp)
+ exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp
+ gmic)
 optdepends=('dcraw: base curve script'
 'perl-image-exiftool: base curve script'
 'imagemagick: base curve and noise profile scripts'


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

2020-05-06 Thread Morten Linderud via arch-commits
Date: Wednesday, May 6, 2020 @ 22:08:03
  Author: foxboron
Revision: 625211

archrelease: copy trunk to community-any

Added:
  archlinux-repro/repos/community-any/PKGBUILD
(from rev 625210, archlinux-repro/trunk/PKGBUILD)
Deleted:
  archlinux-repro/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-06 22:07:56 UTC (rev 625210)
+++ PKGBUILD2020-05-06 22:08:03 UTC (rev 625211)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jelle van der Waa 
-
-pkgname=archlinux-repro
-pkgver=20200502
-pkgrel=1
-pkgdesc='Tools to reproduce Arch Linux packages'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
-url="http://github.com/archlinux/archlinux-repro;
-source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('136ac317ad5ff081e42baed996ab1848508531a3625fd15685a59540b4d6435f'
-'SKIP')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: archlinux-repro/repos/community-any/PKGBUILD (from rev 625210, 
archlinux-repro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-06 22:08:03 UTC (rev 625211)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jelle van der Waa 
+
+pkgname=archlinux-repro
+pkgver=20200507
+pkgrel=1
+pkgdesc='Tools to reproduce Arch Linux packages'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'asciidoc')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils' 'zstd')
+url="http://github.com/archlinux/archlinux-repro;
+source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
+sha256sums=('5575518e77eacc9e6c730af7d6d6c9c8bc5adeac2da26da3da08072eb8dd575f'
+'SKIP')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-05-06 Thread Morten Linderud via arch-commits
Date: Wednesday, May 6, 2020 @ 22:07:56
  Author: foxboron
Revision: 625210

upgpkg: archlinux-repro 20200507-1

Modified:
  archlinux-repro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-06 21:50:05 UTC (rev 625209)
+++ PKGBUILD2020-05-06 22:07:56 UTC (rev 625210)
@@ -2,17 +2,17 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=archlinux-repro
-pkgver=20200502
+pkgver=20200507
 pkgrel=1
 pkgdesc='Tools to reproduce Arch Linux packages'
 arch=('any')
 license=('MIT')
 makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils' 'zstd')
 url="http://github.com/archlinux/archlinux-repro;
 
source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('136ac317ad5ff081e42baed996ab1848508531a3625fd15685a59540b4d6435f'
+sha256sums=('5575518e77eacc9e6c730af7d6d6c9c8bc5adeac2da26da3da08072eb8dd575f'
 'SKIP')
 
 build(){


[arch-commits] Commit in gopass/trunk (PKGBUILD clipboard.patch)

2020-05-03 Thread Morten Linderud via arch-commits
Date: Sunday, May 3, 2020 @ 20:30:29
  Author: foxboron
Revision: 624637

upgpkg: gopass 1.9.0-2

Added:
  gopass/trunk/clipboard.patch
Modified:
  gopass/trunk/PKGBUILD

-+
 PKGBUILD|   14 +++---
 clipboard.patch |   36 
 2 files changed, 47 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-03 20:30:06 UTC (rev 624636)
+++ PKGBUILD2020-05-03 20:30:29 UTC (rev 624637)
@@ -1,7 +1,8 @@
 # Maintainer: Morten Linderud 
+
 pkgname=gopass
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
 url="https://github.com/gopasspw/gopass;
@@ -10,9 +11,16 @@
 optdepends=('xdotool: for typing passwords selected by dmenu'
 'xsel: clipboard support'
 'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;
+"clipboard.patch")
+sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca'
+
'05442c85c4ffe4d579aee990cd75eee7fc93972d8adf82c423a2f2b79fab67ced132f64e941cb5f2681106879555f2f8b1db8a33181588283dd6fc741bd51e30')
 
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 < "$srcdir/clipboard.patch"
+}
+
 build(){
   cd "${pkgname}-${pkgver}"
   export GOPATH="${srcdir}"

Added: clipboard.patch
===
--- clipboard.patch (rev 0)
+++ clipboard.patch 2020-05-03 20:30:29 UTC (rev 624637)
@@ -0,0 +1,36 @@
+From 05979a825ab10ca014052d55194273a43808b9f4 Mon Sep 17 00:00:00 2001
+From: Dominik Schulz 
+Date: Sun, 3 May 2020 21:15:32 +0200
+Subject: [PATCH] Properly specify aliases on the default show action (#1319)
+
+Fixes #1318
+
+RELEASE_NOTES=[BUGFIX] Fix -c and -C for default show action.
+
+Signed-off-by: Dominik Schulz 
+---
+ app.go | 10 ++
+ 1 files changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/app.go b/app.go
+index 8c2d0ffc..0fdcc783 100644
+--- a/app.go
 b/app.go
+@@ -70,12 +70,14 @@ func setupApp(ctx context.Context, sv semver.Version) 
(context.Context, *cli.App
+   Usage: "Assume yes on all yes/no questions or use the 
default on all others",
+   },
+   {
+-  Name:  "clip, c",
+-  Usage: "Copy the first line of the secret into the 
clipboard",
++  Name:"clip",
++  Aliases: []string{"c"},
++  Usage:   "Copy the first line of the secret into the 
clipboard",
+   },
+   {
+-  Name:  "alsoclip, C",
+-  Usage: "Copy the first line of the secret into the 
clipboard and show everything",
++  Name:"alsoclip",
++  Aliases: []string{"C"},
++  Usage:   "Copy the first line of the secret into the 
clipboard and show everything",
+   },
+   }


[arch-commits] Commit in gopass/repos/community-x86_64 (3 files)

2020-05-03 Thread Morten Linderud via arch-commits
Date: Sunday, May 3, 2020 @ 20:30:46
  Author: foxboron
Revision: 624638

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 624637, gopass/trunk/PKGBUILD)
  gopass/repos/community-x86_64/clipboard.patch
(from rev 624637, gopass/trunk/clipboard.patch)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

-+
 PKGBUILD|   68 ++
 clipboard.patch |   36 
 2 files changed, 74 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-03 20:30:29 UTC (rev 624637)
+++ PKGBUILD2020-05-03 20:30:46 UTC (rev 624638)
@@ -1,30 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=gopass
-pkgver=1.9.0
-pkgrel=1
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-'xsel: clipboard support'
-'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 624637, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-03 20:30:46 UTC (rev 624638)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=gopass
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+'xsel: clipboard support'
+'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;
+"clipboard.patch")
+sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca'
+
'05442c85c4ffe4d579aee990cd75eee7fc93972d8adf82c423a2f2b79fab67ced132f64e941cb5f2681106879555f2f8b1db8a33181588283dd6fc741bd51e30')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 < "$srcdir/clipboard.patch"
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gopass/repos/community-x86_64/clipboard.patch (from rev 624637, 
gopass/trunk/clipboard.patch)
===
--- clipboard.patch (rev 0)
+++ clipboard.patch 2020-05-03 20:30:46 UTC (rev 624638)
@@ -0,0 +1,36 @@
+From 05979a825ab10ca014052d55194273a43808b9f4 Mon Sep 17 00:00:00 2001
+From: Dominik Schulz 
+Date: Sun, 3 May 2020 21:15:32 +0200
+Subject: [PATCH] Properly specify aliases on the default show action (#1319)
+
+Fixes #1318
+
+RELEASE_NOTES=[BUGFIX] Fix -c and -C for default show action.
+
+Signed-off-by: Dominik Schulz 
+---
+ app.go | 10 ++
+ 1 files changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/app.go b/app.go
+index 8c2d0ffc..0fdcc783 100644
+--- a/app.go
 b/app.go
+@@ -70,12 +70,14 @@ func setupApp(ctx context.Context, sv semver.Version) 
(context.Context, *cli.App
+   Usage: "Assume yes on all yes/no questions or use the 
default on all others",
+   },
+   {
+-  Name:  "clip, c",
+-  Usage: "Copy the first line of the secret into the 
clipboard",
++  Name:"clip",
++  Aliases: []string{"c"},
++  Usage:   "Copy the first line of the secret into the 
clipboard",
+   },
+   {
+-  Name:  "alsoclip, C",
+-  Usage: "Copy the first line of the secret into the 
clipboard and show everything",
++  Name:"alsoclip",
++  Aliases: 

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

2020-05-03 Thread Morten Linderud via arch-commits
Date: Sunday, May 3, 2020 @ 11:24:17
  Author: foxboron
Revision: 624593

archrelease: copy trunk to community-any

Added:
  archlinux-repro/repos/community-any/PKGBUILD
(from rev 624592, archlinux-repro/trunk/PKGBUILD)
Deleted:
  archlinux-repro/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-03 11:24:09 UTC (rev 624592)
+++ PKGBUILD2020-05-03 11:24:17 UTC (rev 624593)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jelle van der Waa 
-
-pkgname=archlinux-repro
-pkgver=20200429
-pkgrel=1
-pkgdesc='Tools to reproduce Arch Linux packages'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
-url="http://github.com/archlinux/archlinux-repro;
-source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('5359404e868658a8afedf39cccaad78e8dec26fb757a9212c1b17e257c07784c'
-'SKIP')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: archlinux-repro/repos/community-any/PKGBUILD (from rev 624592, 
archlinux-repro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-03 11:24:17 UTC (rev 624593)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jelle van der Waa 
+
+pkgname=archlinux-repro
+pkgver=20200502
+pkgrel=1
+pkgdesc='Tools to reproduce Arch Linux packages'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'asciidoc')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
+url="http://github.com/archlinux/archlinux-repro;
+source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
+sha256sums=('136ac317ad5ff081e42baed996ab1848508531a3625fd15685a59540b4d6435f'
+'SKIP')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-05-03 Thread Morten Linderud via arch-commits
Date: Sunday, May 3, 2020 @ 11:24:09
  Author: foxboron
Revision: 624592

upgpkg: archlinux-repro 20200502-1

Modified:
  archlinux-repro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-03 09:45:46 UTC (rev 624591)
+++ PKGBUILD2020-05-03 11:24:09 UTC (rev 624592)
@@ -2,7 +2,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=archlinux-repro
-pkgver=20200429
+pkgver=20200502
 pkgrel=1
 pkgdesc='Tools to reproduce Arch Linux packages'
 arch=('any')
@@ -12,7 +12,7 @@
 url="http://github.com/archlinux/archlinux-repro;
 
source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('5359404e868658a8afedf39cccaad78e8dec26fb757a9212c1b17e257c07784c'
+sha256sums=('136ac317ad5ff081e42baed996ab1848508531a3625fd15685a59540b4d6435f'
 'SKIP')
 
 build(){


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

2020-05-02 Thread Morten Linderud via arch-commits
Date: Saturday, May 2, 2020 @ 12:16:42
  Author: foxboron
Revision: 624355

upgpkg: k9s 0.19.4-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-02 12:12:20 UTC (rev 624354)
+++ PKGBUILD2020-05-02 12:16:42 UTC (rev 624355)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.19.3
+pkgver=0.19.4
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=486a2afb40cea8aab1fb1270512dfee172137d49 # 0.19.3
+_commit=bd151db6d3def40df47e4407f6a537e7f3cbd969 # 0.19.4
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-05-02 Thread Morten Linderud via arch-commits
Date: Saturday, May 2, 2020 @ 12:16:50
  Author: foxboron
Revision: 624356

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-02 12:16:42 UTC (rev 624355)
+++ PKGBUILD2020-05-02 12:16:50 UTC (rev 624356)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.19.3
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=486a2afb40cea8aab1fb1270512dfee172137d49 # 0.19.3
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export GOFLAGS='-buildmode=pie -trimpath'
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make VERSION=v$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 624355, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-02 12:16:50 UTC (rev 624356)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.19.4
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=bd151db6d3def40df47e4407f6a537e7f3cbd969 # 0.19.4
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export GOFLAGS='-buildmode=pie -trimpath'
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make VERSION=v$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:


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

2020-05-02 Thread Morten Linderud via arch-commits
Date: Saturday, May 2, 2020 @ 12:12:11
  Author: foxboron
Revision: 624353

upgpkg: gopass 1.9.0-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-02 10:58:15 UTC (rev 624352)
+++ PKGBUILD2020-05-02 12:12:11 UTC (rev 624353)
@@ -1,29 +1,24 @@
 # Maintainer: Morten Linderud 
 pkgname=gopass
-pkgver=1.8.6
-pkgrel=4
+pkgver=1.9.0
+pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
 url="https://github.com/gopasspw/gopass;
 license=('MIT')
-makedepends=('go-pie')
+makedepends=('go')
 optdepends=('xdotool: for typing passwords selected by dmenu'
 'xsel: clipboard support'
 'xclip: clipboard support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('7acdb095cf8913954044c3206eab020f197542334798c6b94724709c3953b12f7e5b73ce8c1aa4bfd5df3acf1f424b64bfa94f9a8f68fa7116ed14c8a0f2e6f0')
+sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca')
 
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src
-  mv "${pkgname}-${pkgver}"/vendor/* src/
-  mkdir -p src/github.com/gopasspw
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-}
-
 build(){
   cd "${pkgname}-${pkgver}"
   export GOPATH="${srcdir}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
   make build
   make completion
 }


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

2020-05-02 Thread Morten Linderud via arch-commits
Date: Saturday, May 2, 2020 @ 12:12:20
  Author: foxboron
Revision: 624354

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 624353, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-02 12:12:11 UTC (rev 624353)
+++ PKGBUILD2020-05-02 12:12:20 UTC (rev 624354)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=gopass
-pkgver=1.8.6
-pkgrel=4
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go-pie')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-'xsel: clipboard support'
-'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha512sums=('7acdb095cf8913954044c3206eab020f197542334798c6b94724709c3953b12f7e5b73ce8c1aa4bfd5df3acf1f424b64bfa94f9a8f68fa7116ed14c8a0f2e6f0')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src
-  mv "${pkgname}-${pkgver}"/vendor/* src/
-  mkdir -p src/github.com/gopasspw
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-}
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 624353, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-02 12:12:20 UTC (rev 624354)
@@ -0,0 +1,30 @@
+# Maintainer: Morten Linderud 
+pkgname=gopass
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+'xsel: clipboard support'
+'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha512sums=('5f0dbc42bcdbb5acdb36806b24cc607115eb403e3ca5268818590dccf23e62f5337e570b77c5fadd42e9b508fb419b51603a6cb6bb4abe6d9fa334c9710d61ca')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-05-01 Thread Morten Linderud via arch-commits
Date: Friday, May 1, 2020 @ 10:46:27
  Author: foxboron
Revision: 623730

upgpkg: podman 1.9.1-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-01 10:35:22 UTC (rev 623729)
+++ PKGBUILD2020-05-01 10:46:27 UTC (rev 623730)
@@ -3,8 +3,8 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=1.9.0
-pkgrel=2
+pkgver=1.9.1
+pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
 url='https://github.com/containers/libpod'


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

2020-05-01 Thread Morten Linderud via arch-commits
Date: Friday, May 1, 2020 @ 10:46:35
  Author: foxboron
Revision: 623731

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-01 10:46:27 UTC (rev 623730)
+++ PKGBUILD2020-05-01 10:46:35 UTC (rev 623731)
@@ -1,51 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.9.0
-pkgrel=2
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp runc
- slirp4netns libsystemd fuse-overlayfs skopeo)
-makedepends=(go go-md2man git btrfs-progs)
-optdepends=('catatonit: --init flag support'
-'crun: support for unified cgroupsv2'
-'btrfs-progs: support btrfs backend devices')
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd libpod
-  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 623730, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-01 10:46:35 UTC (rev 623731)
@@ -0,0 +1,51 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp runc
+ slirp4netns libsystemd fuse-overlayfs skopeo)
+makedepends=(go go-md2man git btrfs-progs)
+optdepends=('catatonit: --init flag support'
+'crun: support for unified cgroupsv2'
+'btrfs-progs: support btrfs backend devices')
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libpod
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  export BUILDTAGS='seccomp varlink systemd'
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd libpod
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd libpod
+  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
+}


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

2020-04-30 Thread Morten Linderud via arch-commits
Date: Thursday, April 30, 2020 @ 19:31:10
  Author: foxboron
Revision: 623350

archrelease: copy trunk to community-x86_64

Added:
  fuse-overlayfs/repos/community-x86_64/PKGBUILD
(from rev 623349, fuse-overlayfs/trunk/PKGBUILD)
Deleted:
  fuse-overlayfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-30 19:31:02 UTC (rev 623349)
+++ PKGBUILD2020-04-30 19:31:10 UTC (rev 623350)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Adrian Perez de Castro 
-
-pkgdesc='FUSE implementation of overlayfs'
-pkgname=fuse-overlayfs
-pkgver=1.0.0
-pkgrel=1
-arch=(x86_64)
-url=https://github.com/containers/fuse-overlayfs
-license=(GPL3)
-depends=(fuse3)
-makedepends=(git)
-_commit=561d0287dc2ec73cd7167798611272fb5eef6f58 # 1.0.0
-source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed;)
-validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
-sha512sums=('SKIP')
-
-build () {
-   cd "${pkgname}"
-   autoreconf -fis
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin
-   make
-}
-
-check(){
-   cd "${pkgname}"
-   make check
-}
-
-package (){
-   cd "${pkgname}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: fuse-overlayfs/repos/community-x86_64/PKGBUILD (from rev 623349, 
fuse-overlayfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-30 19:31:10 UTC (rev 623350)
@@ -0,0 +1,40 @@
+# Maintainer: Morten Linderud 
+# Contributor: Adrian Perez de Castro 
+
+pkgdesc='FUSE implementation of overlayfs'
+pkgname=fuse-overlayfs
+pkgver=1.0.0
+pkgrel=2
+arch=(x86_64)
+url=https://github.com/containers/fuse-overlayfs
+license=(GPL3)
+depends=(fuse3)
+makedepends=(git)
+_commit=561d0287dc2ec73cd7167798611272fb5eef6f58 # 1.0.0
+source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed;)
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha512sums=('SKIP')
+
+prepare(){
+   cd "${pkgname}"
+   git cherry-pick -n 26e4226a41a9e16fed8b413f8379e8e57b69a7e5
+}
+
+build () {
+   cd "${pkgname}"
+   autoreconf -fis
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin
+   make
+}
+
+check(){
+   cd "${pkgname}"
+   make check
+}
+
+package (){
+   cd "${pkgname}"
+   make DESTDIR="${pkgdir}" install
+}


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

2020-04-30 Thread Morten Linderud via arch-commits
Date: Thursday, April 30, 2020 @ 19:31:02
  Author: foxboron
Revision: 623349

upgpkg: fuse-overlayfs 1.0.0-2

Modified:
  fuse-overlayfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-30 19:25:51 UTC (rev 623348)
+++ PKGBUILD2020-04-30 19:31:02 UTC (rev 623349)
@@ -4,7 +4,7 @@
 pkgdesc='FUSE implementation of overlayfs'
 pkgname=fuse-overlayfs
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url=https://github.com/containers/fuse-overlayfs
 license=(GPL3)
@@ -15,6 +15,11 @@
 validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
 sha512sums=('SKIP')
 
+prepare(){
+   cd "${pkgname}"
+   git cherry-pick -n 26e4226a41a9e16fed8b413f8379e8e57b69a7e5
+}
+
 build () {
cd "${pkgname}"
autoreconf -fis


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

2020-04-29 Thread Morten Linderud via arch-commits
Date: Wednesday, April 29, 2020 @ 21:44:10
  Author: foxboron
Revision: 622327

upgpkg: archlinux-repro 20200429-1

Modified:
  archlinux-repro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-29 21:14:00 UTC (rev 622326)
+++ PKGBUILD2020-04-29 21:44:10 UTC (rev 622327)
@@ -2,7 +2,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=archlinux-repro
-pkgver=20200427
+pkgver=20200429
 pkgrel=1
 pkgdesc='Tools to reproduce Arch Linux packages'
 arch=('any')
@@ -12,7 +12,7 @@
 url="http://github.com/archlinux/archlinux-repro;
 
source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('e58612db68c398c437b45bea451b697e5c673699a4b69c8d194928c2a51eb14b'
+sha256sums=('5359404e868658a8afedf39cccaad78e8dec26fb757a9212c1b17e257c07784c'
 'SKIP')
 
 build(){


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

2020-04-29 Thread Morten Linderud via arch-commits
Date: Wednesday, April 29, 2020 @ 21:44:18
  Author: foxboron
Revision: 622328

archrelease: copy trunk to community-any

Added:
  archlinux-repro/repos/community-any/PKGBUILD
(from rev 622327, archlinux-repro/trunk/PKGBUILD)
Deleted:
  archlinux-repro/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-29 21:44:10 UTC (rev 622327)
+++ PKGBUILD2020-04-29 21:44:18 UTC (rev 622328)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jelle van der Waa 
-
-pkgname=archlinux-repro
-pkgver=20200427
-pkgrel=1
-pkgdesc='Tools to reproduce Arch Linux packages'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
-url="http://github.com/archlinux/archlinux-repro;
-source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('e58612db68c398c437b45bea451b697e5c673699a4b69c8d194928c2a51eb14b'
-'SKIP')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: archlinux-repro/repos/community-any/PKGBUILD (from rev 622327, 
archlinux-repro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-29 21:44:18 UTC (rev 622328)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jelle van der Waa 
+
+pkgname=archlinux-repro
+pkgver=20200429
+pkgrel=1
+pkgdesc='Tools to reproduce Arch Linux packages'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'asciidoc')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
+url="http://github.com/archlinux/archlinux-repro;
+source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
+sha256sums=('5359404e868658a8afedf39cccaad78e8dec26fb757a9212c1b17e257c07784c'
+'SKIP')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-04-27 Thread Morten Linderud via arch-commits
Date: Monday, April 27, 2020 @ 19:45:13
  Author: foxboron
Revision: 621926

upgpkg: archlinux-repro 20200427-1

Modified:
  archlinux-repro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-27 19:40:51 UTC (rev 621925)
+++ PKGBUILD2020-04-27 19:45:13 UTC (rev 621926)
@@ -2,7 +2,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=archlinux-repro
-pkgver=20200411.1
+pkgver=20200427
 pkgrel=1
 pkgdesc='Tools to reproduce Arch Linux packages'
 arch=('any')
@@ -12,7 +12,7 @@
 url="http://github.com/archlinux/archlinux-repro;
 
source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('9795557ec576ac24bf7656951ab6bc9e1d03214a63b5532359114eba7d2e'
+sha256sums=('e58612db68c398c437b45bea451b697e5c673699a4b69c8d194928c2a51eb14b'
 'SKIP')
 
 build(){


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

2020-04-27 Thread Morten Linderud via arch-commits
Date: Monday, April 27, 2020 @ 19:45:21
  Author: foxboron
Revision: 621927

archrelease: copy trunk to community-any

Added:
  archlinux-repro/repos/community-any/PKGBUILD
(from rev 621926, archlinux-repro/trunk/PKGBUILD)
Deleted:
  archlinux-repro/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-27 19:45:13 UTC (rev 621926)
+++ PKGBUILD2020-04-27 19:45:21 UTC (rev 621927)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jelle van der Waa 
-
-pkgname=archlinux-repro
-pkgver=20200411.1
-pkgrel=1
-pkgdesc='Tools to reproduce Arch Linux packages'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
-url="http://github.com/archlinux/archlinux-repro;
-source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('9795557ec576ac24bf7656951ab6bc9e1d03214a63b5532359114eba7d2e'
-'SKIP')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: archlinux-repro/repos/community-any/PKGBUILD (from rev 621926, 
archlinux-repro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-27 19:45:21 UTC (rev 621927)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jelle van der Waa 
+
+pkgname=archlinux-repro
+pkgver=20200427
+pkgrel=1
+pkgdesc='Tools to reproduce Arch Linux packages'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'asciidoc')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils')
+url="http://github.com/archlinux/archlinux-repro;
+source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
+sha256sums=('e58612db68c398c437b45bea451b697e5c673699a4b69c8d194928c2a51eb14b'
+'SKIP')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-04-27 Thread Morten Linderud via arch-commits
Date: Monday, April 27, 2020 @ 14:26:03
  Author: foxboron
Revision: 621891

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 621890, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-27 14:25:54 UTC (rev 621890)
+++ PKGBUILD2020-04-27 14:26:03 UTC (rev 621891)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Lukas Fleischer 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.10.2
-pkgrel=1
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="https://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback with qt5-webkit backend"
-"gst-plugins-base: media playback with qt5-webkit backend"
-"gst-plugins-good: media playback with qt5-webkit backend"
-"gst-plugins-bad: media playback with qt5-webkit backend"
-"gst-plugins-ugly: media playback with qt5-webkit backend"
-"pdfjs: displaying PDF in-browser"
-"qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('fb457cb58ab6ade66e854a3558670acf9141018f6e436ab623908f372919396a'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile all
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 621890, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-27 14:26:03 UTC (rev 621891)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Lukas Fleischer 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('e2ed9d56aa5db8a0865f7a18d5d0d796d48db161d9c04c03a935dd95e2a4182c'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile all
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2020-04-27 Thread Morten Linderud via arch-commits
Date: Monday, April 27, 2020 @ 14:25:54
  Author: foxboron
Revision: 621890

upgpkg: qutebrowser 1.11.0-1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-27 13:14:51 UTC (rev 621889)
+++ PKGBUILD2020-04-27 14:25:54 UTC (rev 621890)
@@ -4,7 +4,7 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.10.2
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
@@ -24,7 +24,7 @@
 
source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
 
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('fb457cb58ab6ade66e854a3558670acf9141018f6e436ab623908f372919396a'
+sha256sums=('e2ed9d56aa5db8a0865f7a18d5d0d796d48db161d9c04c03a935dd95e2a4182c'
 'SKIP')
 
 build() {


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 11:04:47
  Author: foxboron
Revision: 620641

archrelease: copy trunk to community-x86_64

Added:
  slirp4netns/repos/community-x86_64/PKGBUILD
(from rev 620640, slirp4netns/trunk/PKGBUILD)
Deleted:
  slirp4netns/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-25 11:04:40 UTC (rev 620640)
+++ PKGBUILD2020-04-25 11:04:47 UTC (rev 620641)
@@ -1,36 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=slirp4netns
-pkgdesc='User-mode networking for unprivileged network namespaces'
-pkgver=1.0.0
-pkgrel=1
-arch=(x86_64)
-url="https://github.com/rootless-containers/slirp4netns;
-license=(GPL2)
-depends=(glibc glib2 libcap libseccomp libslirp)
-makedepends=(git)
-_commit=a3be729152a33e692cd28b52f664defbf2e7810a # tags/v1.0.0
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: slirp4netns/repos/community-x86_64/PKGBUILD (from rev 620640, 
slirp4netns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-25 11:04:47 UTC (rev 620641)
@@ -0,0 +1,36 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=slirp4netns
+pkgdesc='User-mode networking for unprivileged network namespaces'
+pkgver=1.0.1
+pkgrel=1
+arch=(x86_64)
+url="https://github.com/rootless-containers/slirp4netns;
+license=(GPL2)
+depends=(glibc glib2 libcap libseccomp libslirp)
+makedepends=(git)
+_commit=6a7b16babc95b6a3056b33fb45b74a6f62262dd4 # tags/v1.0.1
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 11:04:40
  Author: foxboron
Revision: 620640

upgpkg: slirp4netns 1.0.1-1

Modified:
  slirp4netns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-25 10:59:31 UTC (rev 620639)
+++ PKGBUILD2020-04-25 11:04:40 UTC (rev 620640)
@@ -3,7 +3,7 @@
 
 pkgname=slirp4netns
 pkgdesc='User-mode networking for unprivileged network namespaces'
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 arch=(x86_64)
 url="https://github.com/rootless-containers/slirp4netns;
@@ -10,7 +10,7 @@
 license=(GPL2)
 depends=(glibc glib2 libcap libseccomp libslirp)
 makedepends=(git)
-_commit=a3be729152a33e692cd28b52f664defbf2e7810a # tags/v1.0.0
+_commit=6a7b16babc95b6a3056b33fb45b74a6f62262dd4 # tags/v1.0.1
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:51:38
  Author: foxboron
Revision: 620632

archrelease: copy trunk to community-x86_64

Added:
  libslirp/repos/community-x86_64/PKGBUILD
(from rev 620631, libslirp/trunk/PKGBUILD)
Deleted:
  libslirp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-25 10:51:27 UTC (rev 620631)
+++ PKGBUILD2020-04-25 10:51:38 UTC (rev 620632)
@@ -1,29 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=libslirp
-pkgver=4.2.0
-pkgrel=1
-pkgdesc='General purpose TCP-IP emulator'
-arch=(x86_64)
-url='https://gitlab.freedesktop.org/slirp/libslirp'
-license=(BSD MIT)
-depends=(glib2)
-makedepends=(git meson)
-_commit=daba14c3416fa9641ab4453a9a11e7f8bde08875  # tags/v4.2.0^0
-source=("git+$url#commit=$_commit")
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  install -Dm644 $pkgname/COPYRIGHT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libslirp/repos/community-x86_64/PKGBUILD (from rev 620631, 
libslirp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-25 10:51:38 UTC (rev 620632)
@@ -0,0 +1,30 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=libslirp
+pkgver=4.3.0
+pkgrel=1
+pkgdesc='General purpose TCP-IP emulator'
+arch=(x86_64)
+url='https://gitlab.freedesktop.org/slirp/libslirp'
+license=(BSD MIT)
+depends=(glib2)
+makedepends=(git meson)
+_commit=3b478b0028d210518b5cc16ec9f208192ad31caa # tags/v4.3.0
+source=("git+$url#commit=$_commit")
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dm644 $pkgname/COPYRIGHT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:51:27
  Author: foxboron
Revision: 620631

upgpkg: libslirp 4.3.0-1

Modified:
  libslirp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-25 10:47:30 UTC (rev 620630)
+++ PKGBUILD2020-04-25 10:51:27 UTC (rev 620631)
@@ -1,7 +1,8 @@
 # Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
 
 pkgname=libslirp
-pkgver=4.2.0
+pkgver=4.3.0
 pkgrel=1
 pkgdesc='General purpose TCP-IP emulator'
 arch=(x86_64)
@@ -9,7 +10,7 @@
 license=(BSD MIT)
 depends=(glib2)
 makedepends=(git meson)
-_commit=daba14c3416fa9641ab4453a9a11e7f8bde08875  # tags/v4.2.0^0
+_commit=3b478b0028d210518b5cc16ec9f208192ad31caa # tags/v4.3.0
 source=("git+$url#commit=$_commit")
 md5sums=('SKIP')
 


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:47:30
  Author: foxboron
Revision: 620630

archrelease: copy trunk to community-x86_64

Added:
  nvme-cli/repos/community-x86_64/PKGBUILD
(from rev 620629, nvme-cli/trunk/PKGBUILD)
Deleted:
  nvme-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-25 10:47:22 UTC (rev 620629)
+++ PKGBUILD2020-04-25 10:47:30 UTC (rev 620630)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Devin Cofer 
-# Contributor: DriverX
-# Contributor: Nicolas Quiénot 
-# Contributor: Martin Schrodt 
-
-pkgname=nvme-cli
-pkgver=1.10.1
-pkgrel=2
-pkgdesc="NVM-Express user space tooling for Linux"
-arch=('i686' 'x86_64')
-url="https://github.com/linux-nvme/nvme-cli;
-license=('GPL')
-makedepends=('libsystemd')
-# checkdepends=('python2-nose' 'python-nose')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('6be38485464e37fd822eba05eb3b47e792565350b2c0249a94528910cdc1ea31')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   make PREFIX=/usr
-}
-
-# Tests require a working NVME disk.
-# check() {
-#  cd "${pkgname}-${pkgver}"
-#  make test
-# }
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="$pkgdir" UDEVDIR=/usr/lib/udev PREFIX=/usr 
SBINDIR=/usr/bin install
-}

Copied: nvme-cli/repos/community-x86_64/PKGBUILD (from rev 620629, 
nvme-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-25 10:47:30 UTC (rev 620630)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Contributor: Devin Cofer 
+# Contributor: DriverX
+# Contributor: Nicolas Quiénot 
+# Contributor: Martin Schrodt 
+
+pkgname=nvme-cli
+pkgver=1.11.1
+pkgrel=1
+pkgdesc="NVM-Express user space tooling for Linux"
+arch=('i686' 'x86_64')
+url="https://github.com/linux-nvme/nvme-cli;
+license=('GPL')
+makedepends=('libsystemd')
+# checkdepends=('python2-nose' 'python-nose')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('7c8dddbba92cf82ff50416476fe60357ecb2048470dca33765c3f36bf89b48ac')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   make PREFIX=/usr
+}
+
+# Tests require a working NVME disk.
+# check() {
+#  cd "${pkgname}-${pkgver}"
+#  make test
+# }
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir" UDEVDIR=/usr/lib/udev PREFIX=/usr 
SBINDIR=/usr/bin install
+}


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:47:22
  Author: foxboron
Revision: 620629

upgpkg: nvme-cli 1.11.1-1

Modified:
  nvme-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-25 10:41:25 UTC (rev 620628)
+++ PKGBUILD2020-04-25 10:47:22 UTC (rev 620629)
@@ -5,8 +5,8 @@
 # Contributor: Martin Schrodt 
 
 pkgname=nvme-cli
-pkgver=1.10.1
-pkgrel=2
+pkgver=1.11.1
+pkgrel=1
 pkgdesc="NVM-Express user space tooling for Linux"
 arch=('i686' 'x86_64')
 url="https://github.com/linux-nvme/nvme-cli;
@@ -14,7 +14,7 @@
 makedepends=('libsystemd')
 # checkdepends=('python2-nose' 'python-nose')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('6be38485464e37fd822eba05eb3b47e792565350b2c0249a94528910cdc1ea31')
+sha256sums=('7c8dddbba92cf82ff50416476fe60357ecb2048470dca33765c3f36bf89b48ac')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:41:15
  Author: foxboron
Revision: 620627

upgpkg: i3-gaps 4.18.1-1

Modified:
  i3-gaps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-25 10:39:05 UTC (rev 620626)
+++ PKGBUILD2020-04-25 10:41:15 UTC (rev 620627)
@@ -3,7 +3,7 @@
 
 pkgname=i3-gaps
 _pkgsourcename=i3
-pkgver=4.18
+pkgver=4.18.1
 pkgrel=1
 pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
 arch=('i686' 'x86_64')
@@ -25,12 +25,11 @@
 backup=(etc/i3/config)
 options=('docs')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('5bd49039a0b9199a08ec752164c8bca6f8bfc7f307cd60ed9b09c833a3165813')
+sha256sums=('3f709e7b38938fa152ca730b9940634c5b1bcf3d9db38d023b30820d522df31d')
 
 prepare(){
   mkdir build
   cd "${_pkgsourcename}-${pkgver}"
-
   autoreconf -fvi
 }
 


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:41:25
  Author: foxboron
Revision: 620628

archrelease: copy trunk to community-x86_64

Added:
  i3-gaps/repos/community-x86_64/PKGBUILD
(from rev 620627, i3-gaps/trunk/PKGBUILD)
Deleted:
  i3-gaps/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-25 10:41:15 UTC (rev 620627)
+++ PKGBUILD2020-04-25 10:41:25 UTC (rev 620628)
@@ -1,54 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Ingo Bürk 
-
-pkgname=i3-gaps
-_pkgsourcename=i3
-pkgver=4.18
-pkgrel=1
-pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
-arch=('i686' 'x86_64')
-url='https://github.com/Airblader/i3'
-license=('BSD')
-provides=('i3-wm')
-conflicts=('i3-wm')
-groups=('i3')
-depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
- 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
- 'libxkbcommon-x11')
-makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
-optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
-'dmenu: As menu.'
-'i3lock: For locking your screen.'
-'i3status: To display system information with a bar.'
-'perl-json-xs: For i3-save-tree'
-'perl-anyevent-i3: For i3-save-tree')
-backup=(etc/i3/config)
-options=('docs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('5bd49039a0b9199a08ec752164c8bca6f8bfc7f307cd60ed9b09c833a3165813')
-
-prepare(){
-  mkdir build
-  cd "${_pkgsourcename}-${pkgver}"
-
-  autoreconf -fvi
-}
-
-build() {
-  cd build
-
-  ../i3-$pkgver/configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: i3-gaps/repos/community-x86_64/PKGBUILD (from rev 620627, 
i3-gaps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-25 10:41:25 UTC (rev 620628)
@@ -0,0 +1,53 @@
+# Maintainer: Morten Linderud 
+# Contributor: Ingo Bürk 
+
+pkgname=i3-gaps
+_pkgsourcename=i3
+pkgver=4.18.1
+pkgrel=1
+pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
+arch=('i686' 'x86_64')
+url='https://github.com/Airblader/i3'
+license=('BSD')
+provides=('i3-wm')
+conflicts=('i3-wm')
+groups=('i3')
+depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
+ 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
+ 'libxkbcommon-x11')
+makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
+optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
+'dmenu: As menu.'
+'i3lock: For locking your screen.'
+'i3status: To display system information with a bar.'
+'perl-json-xs: For i3-save-tree'
+'perl-anyevent-i3: For i3-save-tree')
+backup=(etc/i3/config)
+options=('docs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
+sha256sums=('3f709e7b38938fa152ca730b9940634c5b1bcf3d9db38d023b30820d522df31d')
+
+prepare(){
+  mkdir build
+  cd "${_pkgsourcename}-${pkgver}"
+  autoreconf -fvi
+}
+
+build() {
+  cd build
+
+  ../i3-$pkgver/configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:39:05
  Author: foxboron
Revision: 620626

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-25 10:38:57 UTC (rev 620625)
+++ PKGBUILD2020-04-25 10:39:05 UTC (rev 620626)
@@ -1,35 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.19.2
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=e231f18a79c6fb40a173135704564af3cf23caa0 # 0.19.2
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-build() {
-  cd $pkgname
-  export GOFLAGS='-buildmode=pie -trimpath'
-  export CGO_LDFLAGS="$LDFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  make VERSION=v$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 620625, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-25 10:39:05 UTC (rev 620626)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.19.3
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=486a2afb40cea8aab1fb1270512dfee172137d49 # 0.19.3
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export GOFLAGS='-buildmode=pie -trimpath'
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  make VERSION=v$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:


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

2020-04-25 Thread Morten Linderud via arch-commits
Date: Saturday, April 25, 2020 @ 10:38:57
  Author: foxboron
Revision: 620625

upgpkg: k9s 0.19.3-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-25 09:39:44 UTC (rev 620624)
+++ PKGBUILD2020-04-25 10:38:57 UTC (rev 620625)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.19.2
+pkgver=0.19.3
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,10 +9,15 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=e231f18a79c6fb40a173135704564af3cf23caa0 # 0.19.2
+_commit=486a2afb40cea8aab1fb1270512dfee172137d49 # 0.19.3
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
 build() {
   cd $pkgname
   export GOFLAGS='-buildmode=pie -trimpath'


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

2020-04-22 Thread Morten Linderud via arch-commits
Date: Wednesday, April 22, 2020 @ 22:25:33
  Author: foxboron
Revision: 617742

upgpkg: lxd 4.0.1-1

Modified:
  lxd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-22 22:13:17 UTC (rev 617741)
+++ PKGBUILD2020-04-22 22:25:33 UTC (rev 617742)
@@ -7,7 +7,7 @@
 pkgname=lxd
 _pkgname=lxd
 _lxd=github.com/lxc/lxd
-pkgver=4.0.0
+pkgver=4.0.1
 pkgrel=1
 pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 url="https://linuxcontainers.org/lxd;
 license=('APACHE')
 depends=('lxc' 'lxcfs' 'squashfs-tools' 'dnsmasq' 'dqlite' 'libuv' 
'sqlite-replication' 'ebtables')
-makedepends=('go-pie' 'git' 'tcl' 'apparmor' 'libseccomp')
+makedepends=('go' 'git' 'tcl' 'apparmor' 'libseccomp')
 optdepends=(
 'lvm2: for lvm2 support'
 'thin-provisioning-tools: for thin provisioning support'
@@ -30,7 +30,7 @@
 "lxd.service"
 "lxd.sysusers")
 validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('cbe2ba49bb40c4497ac76b45f6a4993ea432e41f18d4a3d2b3ef69afcc6d7e02'
+sha256sums=('bdcdf74553533824cc63d6760ab3a09a5354e8bcb4ad3d938fde1feb95f4b36b'
 'SKIP'
 '3a14638f8d0f9082c7214502421350e3b028db1e7f22e8c3fd35a2b1d9153ef4'
 '102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54'
@@ -45,15 +45,16 @@
 build() {
   export GOPATH="${srcdir}/${pkgname}-${pkgver}/_dist"
   cd "${GOPATH}/src/${_lxd}"
-  export CGO_CFLAGS="-I/usr/include/sqlite-replication"
-  export CGO_LDFLAGS="-L/usr/lib/sqlite-replication 
-Wl,-R/usr/lib/sqlite-replication"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_CFLAGS="$CFLAGS -I/usr/include/sqlite-replication"
+  export CGO_LDFLAGS="$LDFLAGS -L/usr/lib/sqlite-replication 
-Wl,-R/usr/lib/sqlite-replication"
   export CGO_LDFLAGS_ALLOW='-Wl,-wrap,pthread_create'
 
   mkdir -p bin
-   go build -trimpath -v -tags "netgo" -o bin/ ./lxd-p2c/...
-   go build -trimpath -v -tags "agent" -o bin/ ./lxd-agent/...
+   go build -v -tags "netgo" -o bin/ ./lxd-p2c/...
+   go build -v -tags "agent" -o bin/ ./lxd-agent/...
   for tool in fuidshift lxc lxc-to-lxd lxd lxd-benchmark; do
-go build -trimpath -v -tags "libsqlite3" -o bin/ ./$tool/...
+go build -v -tags "libsqlite3" -o bin/ ./$tool/...
   done
 }
 


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

2020-04-22 Thread Morten Linderud via arch-commits
Date: Wednesday, April 22, 2020 @ 22:25:45
  Author: foxboron
Revision: 617743

archrelease: copy trunk to community-x86_64

Added:
  lxd/repos/community-x86_64/PKGBUILD
(from rev 617742, lxd/trunk/PKGBUILD)
  lxd/repos/community-x86_64/lxd.service
(from rev 617742, lxd/trunk/lxd.service)
  lxd/repos/community-x86_64/lxd.socket
(from rev 617742, lxd/trunk/lxd.socket)
  lxd/repos/community-x86_64/lxd.sysusers
(from rev 617742, lxd/trunk/lxd.sysusers)
Deleted:
  lxd/repos/community-x86_64/PKGBUILD
  lxd/repos/community-x86_64/lxd.service
  lxd/repos/community-x86_64/lxd.socket
  lxd/repos/community-x86_64/lxd.sysusers

--+
 PKGBUILD |  175 -
 lxd.service  |   46 +++---
 lxd.socket   |   22 +++
 lxd.sysusers |2 
 4 files changed, 123 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-22 22:25:33 UTC (rev 617742)
+++ PKGBUILD2020-04-22 22:25:45 UTC (rev 617743)
@@ -1,87 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Maikel Wever 
-# Contributor: Asterios Dimitriou 
-# Contributor: Benjamin Asbach 
-# Contributer: nightuser 
-
-pkgname=lxd
-_pkgname=lxd
-_lxd=github.com/lxc/lxd
-pkgver=4.0.0
-pkgrel=1
-pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
-arch=('x86_64')
-url="https://linuxcontainers.org/lxd;
-license=('APACHE')
-depends=('lxc' 'lxcfs' 'squashfs-tools' 'dnsmasq' 'dqlite' 'libuv' 
'sqlite-replication' 'ebtables')
-makedepends=('go-pie' 'git' 'tcl' 'apparmor' 'libseccomp')
-optdepends=(
-'lvm2: for lvm2 support'
-'thin-provisioning-tools: for thin provisioning support'
-'btrfs-progs: for btrfs storage driver support'
-'ceph: for ceph storage driver support'
-'cdrtools: VM support'
-'qemu: VM support'
-'ovmf: VM support'
-'systemd-libs: unix device hotplug support'
-)
-source=("https://github.com/lxc/lxd/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-"lxd.socket"
-"lxd.service"
-"lxd.sysusers")
-validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
-sha256sums=('cbe2ba49bb40c4497ac76b45f6a4993ea432e41f18d4a3d2b3ef69afcc6d7e02'
-'SKIP'
-'3a14638f8d0f9082c7214502421350e3b028db1e7f22e8c3fd35a2b1d9153ef4'
-'102d1d54186e0fc606a58f030231d76df6bd662b16dfd8f946e1f48e2b473b54'
-'d0184d9c4bb485e3aad0d4ac25ea7e85ac0f7ed6ddc96333e74fcd393a5b5ec4')
-
-
-prepare() {
-  mkdir -p "${srcdir}/go/src/github.com/lxc"
-  ln -rTsf "${_pkgname}" "${srcdir}/go/src/${_lxd}"
-}
-
-build() {
-  export GOPATH="${srcdir}/${pkgname}-${pkgver}/_dist"
-  cd "${GOPATH}/src/${_lxd}"
-  export CGO_CFLAGS="-I/usr/include/sqlite-replication"
-  export CGO_LDFLAGS="-L/usr/lib/sqlite-replication 
-Wl,-R/usr/lib/sqlite-replication"
-  export CGO_LDFLAGS_ALLOW='-Wl,-wrap,pthread_create'
-
-  mkdir -p bin
-   go build -trimpath -v -tags "netgo" -o bin/ ./lxd-p2c/...
-   go build -trimpath -v -tags "agent" -o bin/ ./lxd-agent/...
-  for tool in fuidshift lxc lxc-to-lxd lxd lxd-benchmark; do
-go build -trimpath -v -tags "libsqlite3" -o bin/ ./$tool/...
-  done
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  for tool in fuidshift lxc lxc-to-lxd lxd lxd-agent lxd-benchmark lxd-p2c; do
-install -p -Dm755 "bin/$tool" "${pkgdir}/usr/bin/$tool"
-  done
-
-  # Package license
-  install -Dm644 "COPYING"  "${pkgdir}/usr/share/licenses/${_pkgname}/LICENCE"
-
-  # systemd files
-  install -Dm644 "${srcdir}/lxd.service" 
"${pkgdir}/usr/lib/systemd/system/lxd.service"
-  install -Dm644 "${srcdir}/lxd.socket" 
"${pkgdir}/usr/lib/systemd/system/lxd.socket"
-
-  # logs
-  install -dm755 "${pkgdir}/var/log/lxd"
-
-  # documentation
-  mkdir -p "${pkgdir}/usr/share/doc/lxd"
-  install -p -Dm644 "doc/"* "${pkgdir}/usr/share/doc/lxd/"
-
-  # Bash completions
-  install -p -Dm644 "scripts/bash/lxd-client" 
"${pkgdir}/usr/share/bash-completion/completions/lxd"
-
-  install -Dm644 "${srcdir}/$pkgname.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lxd/repos/community-x86_64/PKGBUILD (from rev 617742, 
lxd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-22 22:25:45 UTC (rev 617743)
@@ -0,0 +1,88 @@
+# Maintainer: Morten Linderud 
+# Contributor: Maikel Wever 
+# Contributor: Asterios Dimitriou 
+# Contributor: Benjamin Asbach 
+# Contributer: nightuser 
+
+pkgname=lxd
+_pkgname=lxd
+_lxd=github.com/lxc/lxd
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="Daemon based on liblxc offering a REST API to manage containers"
+arch=('x86_64')
+url="https://linuxcontainers.org/lxd;
+license=('APACHE')
+depends=('lxc' 'lxcfs' 'squashfs-tools' 'dnsmasq' 'dqlite' 'libuv' 
'sqlite-replication' 'ebtables')
+makedepends=('go' 'git' 'tcl' 'apparmor' 

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

2020-04-22 Thread Morten Linderud via arch-commits
Date: Wednesday, April 22, 2020 @ 22:13:17
  Author: foxboron
Revision: 617741

archrelease: copy trunk to community-x86_64

Added:
  helm/repos/community-x86_64/PKGBUILD
(from rev 617740, helm/trunk/PKGBUILD)
Deleted:
  helm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-22 22:13:07 UTC (rev 617740)
+++ PKGBUILD2020-04-22 22:13:17 UTC (rev 617741)
@@ -1,49 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Lukas Grossar 
-# Contributor: Ivan Shapovalov 
-# Contributor: Wayne Cheng 
-# Contributor: Matthias Lisin 
-
-pkgname=helm
-pkgver=3.1.2
-pkgrel=3
-pkgdesc="The Kubernetes Package Manager"
-arch=("x86_64")
-url="https://helm.sh/;
-license=("Apache")
-depends=('glibc')
-makedepends=("go" "git")
-source=("git+https://github.com/helm/helm.git#tag=v$pkgver?signed;)
-validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E')
-sha256sums=('SKIP')
-
-prepare() {
-cd "${pkgname}"
-
-# fix: update unit test for go 1.14 error string change (#7835)
-# https://github.com/helm/helm/pull/7835
-git cherry-pick -n 3706aa7ca666fda6d8301c55118fa1c092f124a2 
-
-# Repair failing unit tests - failure caused by os.Stat return values for 
directory size on Linux.
-# https://github.com/helm/helm/pull/7189
-git cherry-pick -n e3976ab7a286ecbe1038a725fbc4149b95267abf
-}
-
-build() {
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-make GOFLAGS="-buildmode=pie -trimpath"
-}
-
-check(){
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-make GOFLAGS="-buildmode=pie -trimpath" test-unit
-}
-
-package(){
-cd "${pkgname}"
-install -Dm755 bin/helm -t "$pkgdir/usr/bin"
-bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
-bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
-}

Copied: helm/repos/community-x86_64/PKGBUILD (from rev 617740, 
helm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-22 22:13:17 UTC (rev 617741)
@@ -0,0 +1,40 @@
+# Maintainer: Morten Linderud 
+# Contributor: Lukas Grossar 
+# Contributor: Ivan Shapovalov 
+# Contributor: Wayne Cheng 
+# Contributor: Matthias Lisin 
+
+pkgname=helm
+pkgver=3.2.0
+pkgrel=1
+pkgdesc="The Kubernetes Package Manager"
+arch=("x86_64")
+url="https://helm.sh/;
+license=("Apache")
+depends=('glibc')
+makedepends=("go" "git")
+_commit=e11b7ce3b12db2941e90399e874513fbd24bcb71
+source=("git+https://github.com/helm/helm.git#commit=$_commit?signed;)
+validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E')
+sha256sums=('SKIP')
+
+build() {
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+make GOFLAGS="-buildmode=pie -trimpath"
+}
+
+check(){
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+make GOFLAGS="-buildmode=pie -trimpath" test-unit
+}
+
+package(){
+cd "${pkgname}"
+install -Dm755 bin/helm -t "$pkgdir/usr/bin"
+bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
+bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
+}


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

2020-04-22 Thread Morten Linderud via arch-commits
Date: Wednesday, April 22, 2020 @ 22:13:07
  Author: foxboron
Revision: 617740

upgpkg: helm 3.2.0-1

Modified:
  helm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-22 21:31:04 UTC (rev 617739)
+++ PKGBUILD2020-04-22 22:13:07 UTC (rev 617740)
@@ -5,8 +5,8 @@
 # Contributor: Matthias Lisin 
 
 pkgname=helm
-pkgver=3.1.2
-pkgrel=3
+pkgver=3.2.0
+pkgrel=1
 pkgdesc="The Kubernetes Package Manager"
 arch=("x86_64")
 url="https://helm.sh/;
@@ -13,25 +13,15 @@
 license=("Apache")
 depends=('glibc')
 makedepends=("go" "git")
-source=("git+https://github.com/helm/helm.git#tag=v$pkgver?signed;)
+_commit=e11b7ce3b12db2941e90399e874513fbd24bcb71
+source=("git+https://github.com/helm/helm.git#commit=$_commit?signed;)
 validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E')
 sha256sums=('SKIP')
 
-prepare() {
-cd "${pkgname}"
-
-# fix: update unit test for go 1.14 error string change (#7835)
-# https://github.com/helm/helm/pull/7835
-git cherry-pick -n 3706aa7ca666fda6d8301c55118fa1c092f124a2 
-
-# Repair failing unit tests - failure caused by os.Stat return values for 
directory size on Linux.
-# https://github.com/helm/helm/pull/7189
-git cherry-pick -n e3976ab7a286ecbe1038a725fbc4149b95267abf
-}
-
 build() {
 cd "${pkgname}"
 export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
 make GOFLAGS="-buildmode=pie -trimpath"
 }
 
@@ -38,6 +28,7 @@
 check(){
 cd "${pkgname}"
 export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
 make GOFLAGS="-buildmode=pie -trimpath" test-unit
 }
 


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

2020-04-18 Thread Morten Linderud via arch-commits
Date: Saturday, April 18, 2020 @ 13:54:14
  Author: foxboron
Revision: 616073

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-18 13:54:06 UTC (rev 616072)
+++ PKGBUILD2020-04-18 13:54:14 UTC (rev 616073)
@@ -1,51 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.9.0
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp runc
- slirp4netns libsystemd fuse-overlayfs skopeo)
-makedepends=(go go-md2man git btrfs-progs)
-optdepends=('catatonit: --init flag support'
-'crun: support for unified cgroupsv2'
-'btrfs-progs: support btrfs backend devices')
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CLDFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd libpod
-  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 616072, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-18 13:54:14 UTC (rev 616073)
@@ -0,0 +1,51 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.9.0
+pkgrel=2
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp runc
+ slirp4netns libsystemd fuse-overlayfs skopeo)
+makedepends=(go go-md2man git btrfs-progs)
+optdepends=('catatonit: --init flag support'
+'crun: support for unified cgroupsv2'
+'btrfs-progs: support btrfs backend devices')
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libpod
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  export BUILDTAGS='seccomp varlink systemd'
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd libpod
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd libpod
+  make install install.completions install.config DESTDIR="$pkgdir" PREFIX=/usr
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
+}


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

2020-04-18 Thread Morten Linderud via arch-commits
Date: Saturday, April 18, 2020 @ 13:54:06
  Author: foxboron
Revision: 616072

upgpkg: podman 1.9.0-2

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-18 13:45:11 UTC (rev 616071)
+++ PKGBUILD2020-04-18 13:54:06 UTC (rev 616072)
@@ -4,7 +4,7 @@
 pkgbase=podman
 pkgname=(podman podman-docker)
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
 url='https://github.com/containers/libpod'
@@ -26,7 +26,7 @@
 
 build() {
   export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CLDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
   export CGO_LDFLAGS="$LDFLAGS"
   export GOFLAGS="-buildmode=pie -trimpath"
 


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

2020-04-18 Thread Morten Linderud via arch-commits
Date: Saturday, April 18, 2020 @ 12:34:01
  Author: foxboron
Revision: 616067

archrelease: copy trunk to community-x86_64

Added:
  darktable/repos/community-x86_64/PKGBUILD
(from rev 616066, darktable/trunk/PKGBUILD)
Deleted:
  darktable/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-18 12:33:53 UTC (rev 616066)
+++ PKGBUILD2020-04-18 12:34:01 UTC (rev 616067)
@@ -1,56 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor: Christian Himpel 
-# Contributor: Johannes Hanika 
-
-pkgname=darktable
-epoch=2
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="Utility to organize and develop raw images"
-arch=(x86_64)
-url="https://darktable.org;
-license=(GPL3)
-depends=(pugixml libjpeg-turbo colord-gtk libgphoto2 openexr lensfun iso-codes 
zlib
- exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp)
-optdepends=('dcraw: base curve script'
-'perl-image-exiftool: base curve script'
-'imagemagick: base curve and noise profile scripts'
-'ghostscript: noise profile script'
-'gnuplot: noise profile script')
-makedepends=(cmake intltool desktop-file-utils llvm clang python-jsonschema 
libwebp)
-source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc})
-sha256sums=('c54b3921da14a97c99ab2f79feca468cf2abca65adf907dba6216e47edab7cb7'
-'SKIP')
-validpgpkeys=(C4CBC150699956E2A3268EF5BB5CC8295B1779C9  # darktable releases 

-  F10F9686652B0E949FCD94C318DCA123F949BD3B) # Pascal Obry 

-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-cmake ../${pkgname}-${pkgver/rc/~rc} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_INSTALL_LIBEXECDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=Release \
--DBINARY_PACKAGE_BUILD=1 \
--DBUILD_USERMANUAL=False \
--DUSE_LIBSECRET=ON \
--DUSE_LUA=ON \
--DUSE_COLORD=ON \
--DBUILD_CURVE_TOOLS=ON \
--DBUILD_NOISE_TOOLS=ON \
--DRAWSPEED_ENABLE_LTO=ON \
--DPROJECT_VERSION=${pkgver}
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-ln -s darktable/libdarktable.so "${pkgdir}"/usr/lib/libdarktable.so
-}

Copied: darktable/repos/community-x86_64/PKGBUILD (from rev 616066, 
darktable/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-18 12:34:01 UTC (rev 616067)
@@ -0,0 +1,60 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Christian Himpel 
+# Contributor: Johannes Hanika 
+
+pkgname=darktable
+epoch=2
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Utility to organize and develop raw images"
+arch=(x86_64)
+url="https://darktable.org;
+license=(GPL3)
+depends=(pugixml libjpeg-turbo colord-gtk libgphoto2 openexr lensfun iso-codes 
zlib
+ exiv2 flickcurl openjpeg2 graphicsmagick lua osm-gps-map libsecret 
openmp)
+optdepends=('dcraw: base curve script'
+'perl-image-exiftool: base curve script'
+'imagemagick: base curve and noise profile scripts'
+'ghostscript: noise profile script'
+'gnuplot: noise profile script')
+makedepends=(cmake intltool desktop-file-utils llvm clang python-jsonschema 
libwebp)
+source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc}
+
"fix-cmake.patch::https://github.com/darktable-org/darktable/commit/767d48e0f60e7f858e8b31a88dd8cc1258e7ee9e.patch;)
+sha256sums=('6abaf661fe9414e92bdb33b58b98ef024ccf6132b7876abaf0751ec2109f36fb'
+'SKIP'
+'cdcaf17a362c4fc551ede3ebc0933e48e20185a9fad2c18a025f0414c180ef0d')
+validpgpkeys=(C4CBC150699956E2A3268EF5BB5CC8295B1779C9  # darktable releases 

+  F10F9686652B0E949FCD94C318DCA123F949BD3B) # Pascal Obry 

+
+prepare() {
+mkdir -p build
+cd "${pkgname}-${pkgver}"
+patch -Np1 < "../fix-cmake.patch"
+}
+
+build() {
+cd build
+cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DBINARY_PACKAGE_BUILD=1 \
+-DBUILD_USERMANUAL=False \
+-DUSE_LIBSECRET=ON \
+-DUSE_LUA=ON \
+-DUSE_COLORD=ON \
+-DBUILD_CURVE_TOOLS=ON \
+-DBUILD_NOISE_TOOLS=ON \
+-DRAWSPEED_ENABLE_LTO=ON \
+-DPROJECT_VERSION=${pkgver}
+make
+}
+
+package() {
+cd build
+make 

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

2020-04-18 Thread Morten Linderud via arch-commits
Date: Saturday, April 18, 2020 @ 12:33:53
  Author: foxboron
Revision: 616066

upgpkg: darktable 2:3.0.2-1

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-18 12:33:00 UTC (rev 616065)
+++ PKGBUILD2020-04-18 12:33:53 UTC (rev 616066)
@@ -6,7 +6,7 @@
 
 pkgname=darktable
 epoch=2
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="Utility to organize and develop raw images"
 arch=(x86_64)
@@ -20,19 +20,23 @@
 'ghostscript: noise profile script'
 'gnuplot: noise profile script')
 makedepends=(cmake intltool desktop-file-utils llvm clang python-jsonschema 
libwebp)
-source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc})
-sha256sums=('c54b3921da14a97c99ab2f79feca468cf2abca65adf907dba6216e47edab7cb7'
-'SKIP')
+source=("https://github.com/darktable-org/darktable/releases/download/release-${pkgver}/darktable-${pkgver/rc/.rc}.tar.xz"{,.asc}
+
"fix-cmake.patch::https://github.com/darktable-org/darktable/commit/767d48e0f60e7f858e8b31a88dd8cc1258e7ee9e.patch;)
+sha256sums=('6abaf661fe9414e92bdb33b58b98ef024ccf6132b7876abaf0751ec2109f36fb'
+'SKIP'
+'cdcaf17a362c4fc551ede3ebc0933e48e20185a9fad2c18a025f0414c180ef0d')
 validpgpkeys=(C4CBC150699956E2A3268EF5BB5CC8295B1779C9  # darktable releases 

   F10F9686652B0E949FCD94C318DCA123F949BD3B) # Pascal Obry 

 
 prepare() {
 mkdir -p build
+cd "${pkgname}-${pkgver}"
+patch -Np1 < "../fix-cmake.patch"
 }
 
 build() {
 cd build
-cmake ../${pkgname}-${pkgver/rc/~rc} \
+cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
 -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib \


<    5   6   7   8   9   10   11   12   13   14   >