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

2021-04-18 Thread Daurnimator via arch-commits
Date: Monday, April 19, 2021 @ 00:09:10
  Author: daurnimator
Revision: 919963

archrelease: copy trunk to community-x86_64

Added:
  kustomize/repos/community-x86_64/PKGBUILD
(from rev 919962, kustomize/trunk/PKGBUILD)
Deleted:
  kustomize/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-19 00:08:54 UTC (rev 919962)
+++ PKGBUILD2021-04-19 00:09:10 UTC (rev 919963)
@@ -1,56 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Daurnimator 
-
-pkgname=kustomize
-pkgver=4.0.5
-pkgrel=1
-pkgdesc="Template-free customization of Kubernetes YAML manifests"
-arch=('x86_64')
-url="https://github.com/kubernetes-sigs/kustomize;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3eb6c5893829970d7b2d0afec515e3180148d36dd4c2e216ef52a4f2ef7e0680a22cf64600d351fd8f3a520cea61b73c6c945781561a314824d4c97f481b1746')
-
-build(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags " \
-  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
-  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
-  -extldflags ${LDFLAGS}" \
-.
-}
-
-check(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  go test ./...
-}
-
-package(){
-  cd "kustomize-kustomize-v${pkgver}/kustomize"
-
-  # install completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
-  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
-  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
-  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
-
-  # install binary
-  install -D kustomize "${pkgdir}/usr/bin/kustomize"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kustomize/repos/community-x86_64/PKGBUILD (from rev 919962, 
kustomize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-19 00:09:10 UTC (rev 919963)
@@ -0,0 +1,57 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Daurnimator 
+
+pkgname=kustomize
+pkgver=4.1.2
+pkgrel=1
+pkgdesc="Template-free customization of Kubernetes YAML manifests"
+arch=('x86_64')
+url="https://github.com/kubernetes-sigs/kustomize;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+optdepends=('helm')
+source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('767d3b0bcd83312b0775422cb234eb2925102e9ad5266dd2856db9cf997e7ad3424c86606246cbe2d65aa3b8d1ab65f643cde802d53a405feb77b89f0ca5d539')
+
+build(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags " \
+  -X sigs.k8s.io/kustomize/api/provenance.version=${pkgver} \
+  -X sigs.k8s.io/kustomize/api/provenance.buildDate=$(date -u 
+'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
+  -extldflags ${LDFLAGS}" \
+.
+}
+
+check(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  go test ./...
+}
+
+package(){
+  cd "kustomize-kustomize-v${pkgver}/kustomize"
+
+  # install completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./kustomize completion bash >  
"${pkgdir}/usr/share/bash-completion/completions/kustomize"
+  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
+  ./kustomize completion zsh >  
"${pkgdir}/usr/share/zsh/site-functions/_kustomize"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
+  ./kustomize completion fish >  
"${pkgdir}/usr/share/fish/vendor_completions.d/kustomize.fish"
+
+  # install binary
+  install -D kustomize "${pkgdir}/usr/bin/kustomize"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-04-18 Thread Daurnimator via arch-commits
Date: Monday, April 19, 2021 @ 00:08:54
  Author: daurnimator
Revision: 919962

upgpkg: kustomize 4.1.2-1

Modified:
  kustomize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 23:27:21 UTC (rev 919961)
+++ PKGBUILD2021-04-19 00:08:54 UTC (rev 919962)
@@ -2,7 +2,7 @@
 # Maintainer: Daurnimator 
 
 pkgname=kustomize
-pkgver=4.0.5
+pkgver=4.1.2
 pkgrel=1
 pkgdesc="Template-free customization of Kubernetes YAML manifests"
 arch=('x86_64')
@@ -10,8 +10,9 @@
 license=('Apache')
 makedepends=('go')
 depends=('glibc')
+optdepends=('helm')
 
source=("https://github.com/kubernetes-sigs/kustomize/archive/kustomize/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3eb6c5893829970d7b2d0afec515e3180148d36dd4c2e216ef52a4f2ef7e0680a22cf64600d351fd8f3a520cea61b73c6c945781561a314824d4c97f481b1746')
+sha512sums=('767d3b0bcd83312b0775422cb234eb2925102e9ad5266dd2856db9cf997e7ad3424c86606246cbe2d65aa3b8d1ab65f643cde802d53a405feb77b89f0ca5d539')
 
 build(){
   cd "kustomize-kustomize-v${pkgver}/kustomize"


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 23:27:21
  Author: bgyorgy
Revision: 919961

Add to gnome-extra group

Geary is part of the GNOME World. See:
https://gitlab.gnome.org/GNOME/gnome-build-meta/-/commit/36bba42d0097e6bc81c256677f3ab69c4331bd0f

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 22:40:30 UTC (rev 919960)
+++ PKGBUILD2021-04-18 23:27:21 UTC (rev 919961)
@@ -10,6 +10,7 @@
 arch=(x86_64)
 url=https://wiki.gnome.org/Apps/Geary
 license=(GPL3)
+groups=(gnome-extra)
 depends=(
   cairo
   enchant


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

2021-04-18 Thread Connor Behan via arch-commits
Date: Sunday, April 18, 2021 @ 22:40:30
  Author: cbehan
Revision: 919960

archrelease: copy trunk to community-x86_64

Added:
  mesa-dri1/repos/community-x86_64/LICENSE
(from rev 919959, mesa-dri1/trunk/LICENSE)
  mesa-dri1/repos/community-x86_64/PKGBUILD
(from rev 919959, mesa-dri1/trunk/PKGBUILD)
  mesa-dri1/repos/community-x86_64/mesa-dri1-python3.patch
(from rev 919959, mesa-dri1/trunk/mesa-dri1-python3.patch)
  mesa-dri1/repos/community-x86_64/mesa-dri1-symbol-visibility.patch
(from rev 919959, mesa-dri1/trunk/mesa-dri1-symbol-visibility.patch)
Deleted:
  mesa-dri1/repos/community-x86_64/LICENSE
  mesa-dri1/repos/community-x86_64/PKGBUILD

---+
 LICENSE   |  164 
 PKGBUILD  |  234 
 mesa-dri1-python3.patch   | 8893 
 mesa-dri1-symbol-visibility.patch |   72 
 4 files changed, 9166 insertions(+), 197 deletions(-)

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


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

2021-04-18 Thread Eli Schwartz via arch-commits
Date: Sunday, April 18, 2021 @ 22:36:03
  Author: eschwartz
Revision: 919959

archrelease: copy trunk to community-any

Added:
  fanficfare/repos/community-any/PKGBUILD
(from rev 919958, fanficfare/trunk/PKGBUILD)
  fanficfare/repos/community-any/changelog.txt
(from rev 919958, fanficfare/trunk/changelog.txt)
Deleted:
  fanficfare/repos/community-any/PKGBUILD
  fanficfare/repos/community-any/changelog.txt

---+
 PKGBUILD  |   60 
 changelog.txt |  140 
 2 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 22:35:41 UTC (rev 919958)
+++ PKGBUILD2021-04-18 22:36:03 UTC (rev 919959)
@@ -1,30 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=FanFicFare
-pkgname=fanficfare
-pkgver=4.0.2
-pkgrel=1
-pkgdesc="A tool for downloading fanfiction to eBook formats"
-arch=('any')
-url="https://github.com/JimmXinu/${_pkgname};
-license=('Apache')
-changelog=changelog.txt
-_deps=('beautifulsoup4' 'brotli' 'chardet' 'cloudscraper' 'html5lib' 
'html2text'
-   'requests-file')
-depends=("${_deps[@]/#/python-}")
-optdepends=('python-pillow: support for converting/resizing story images and 
covers')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('be325020ca33851d80fd899422036da27dd10876343fa59ba2c36652577f205d')
-b2sums=('c94c5c6b53f8eaf8f0882225e9a7b2020992d211134db7b7c29f244fefb9c5197702ba02ed0b7d61f1250858c8b6ef35e65b697aec52a43d63eb05ee44aa0363')
-
-build() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-
-python setup.py build
-}
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: fanficfare/repos/community-any/PKGBUILD (from rev 919958, 
fanficfare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 22:36:03 UTC (rev 919959)
@@ -0,0 +1,30 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=FanFicFare
+pkgname=fanficfare
+pkgver=4.1.0
+pkgrel=1
+pkgdesc="A tool for downloading fanfiction to eBook formats"
+arch=('any')
+url="https://github.com/JimmXinu/${_pkgname};
+license=('Apache')
+changelog=changelog.txt
+_deps=('beautifulsoup4' 'brotli' 'chardet' 'cloudscraper' 'html5lib' 
'html2text'
+   'requests-file')
+depends=("${_deps[@]/#/python-}")
+optdepends=('python-pillow: support for converting/resizing story images and 
covers')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('18cc709ed903f8c01507a5da4acdea1a862efaf67cd6b2f8e00d03d36483398a')
+b2sums=('3b9c5ea7511f6d52b9a364e541de6cc0975264926697c35c45ee26cc04c0cd61c986e0b47de4a2d944b11abff6148802b8695000369d1a780f6e3f346ee2b96e')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py build
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}

Deleted: changelog.txt
===
--- changelog.txt   2021-04-18 22:35:41 UTC (rev 919958)
+++ changelog.txt   2021-04-18 22:36:03 UTC (rev 919959)
@@ -1,70 +0,0 @@
-Version 4.0.2 - 21 Feb 2021
-- Fix for BG job race conditions.
-- Fix writer_txt import removeAllEntities
-- Update plugin about.html
-- Fix reduce_zalgo not imported.
-
-Version 4.0.0 - 18 Feb 2021
-- Major refactoring/rewrite of network fetching and caching layer using
-  `requests` library.
-- use_browser_cache feature added -- Read fanfiction.net stories from your
-  Chrome or FireFox browser cache in addition / instead of the network. Many
-  thanks to Sidney Markowitz for the stellar help with this. See
-  BrowserCacheFeature Wiki Page.
-- Add additional_images setting for html & epub formats. Close #648
-- Fix for 'Updating' (anonymous?) author in adapter_wuxiaworldsite. For #657
-- Allow tweak_fg_sleep etc with any site, add defaults settings for
-  basexenforo, fictionalley and fictionpress.
-- Drag/drop of 'emails'--look for story URL in Content-Base header for
-  Thunderbird RSS 'emails'.
-- Apply 'email' proc flag when processing dragged .eml files--which are
-  emails.
-- Update translations.
-- Fix adapter_webnovelcom for some site changes. Closes #644
-- Allow tweak_fg_sleep etc with any site, add defaults settings for
-  basexenforo, fictionalley and fictionpress.
-- fanficauthors.net doesn't use login anymore. Closes #651
-- BG % done by stories AND chapters.
-- Restore multi-process background jobs as one process per site.
-- Don't count continue_on_chapter_error chapters when checking vs 'new
-  chapters'.
-- More properly get msg payload fromemail drag and drop. Closes #645
-- Give adapter_archiveofourownorg a get_section_url() for quicker rejects
-  checks from email.
-- Convert 

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

2021-04-18 Thread Eli Schwartz via arch-commits
Date: Sunday, April 18, 2021 @ 22:35:41
  Author: eschwartz
Revision: 919958

upgpkg: fanficfare 4.1.0-1: upstream release

Modified:
  fanficfare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 22:35:19 UTC (rev 919957)
+++ PKGBUILD2021-04-18 22:35:41 UTC (rev 919958)
@@ -2,7 +2,7 @@
 
 _pkgname=FanFicFare
 pkgname=fanficfare
-pkgver=4.0.2
+pkgver=4.1.0
 pkgrel=1
 pkgdesc="A tool for downloading fanfiction to eBook formats"
 arch=('any')
@@ -14,8 +14,8 @@
 depends=("${_deps[@]/#/python-}")
 optdepends=('python-pillow: support for converting/resizing story images and 
covers')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('be325020ca33851d80fd899422036da27dd10876343fa59ba2c36652577f205d')
-b2sums=('c94c5c6b53f8eaf8f0882225e9a7b2020992d211134db7b7c29f244fefb9c5197702ba02ed0b7d61f1250858c8b6ef35e65b697aec52a43d63eb05ee44aa0363')
+sha256sums=('18cc709ed903f8c01507a5da4acdea1a862efaf67cd6b2f8e00d03d36483398a')
+b2sums=('3b9c5ea7511f6d52b9a364e541de6cc0975264926697c35c45ee26cc04c0cd61c986e0b47de4a2d944b11abff6148802b8695000369d1a780f6e3f346ee2b96e')
 
 build() {
 cd "${srcdir}/${_pkgname}-${pkgver}"


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

2021-04-18 Thread Connor Behan via arch-commits
Date: Sunday, April 18, 2021 @ 22:35:19
  Author: cbehan
Revision: 919957

upgpkg: mesa-dri1 7.11.2-11: Add build fixes by loqs

Added:
  mesa-dri1/trunk/mesa-dri1-python3.patch
  mesa-dri1/trunk/mesa-dri1-symbol-visibility.patch
Modified:
  mesa-dri1/trunk/PKGBUILD

---+
 PKGBUILD  |   14 
 mesa-dri1-python3.patch   | 8893 
 mesa-dri1-symbol-visibility.patch |   72 
 3 files changed, 8974 insertions(+), 5 deletions(-)

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


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

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 22:30:45
  Author: heftig
Revision: 412887

archrelease: copy trunk to extra-x86_64

Added:
  gjs/repos/extra-x86_64/PKGBUILD
(from rev 412886, gjs/trunk/PKGBUILD)
Deleted:
  gjs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 22:29:59 UTC (rev 412886)
+++ PKGBUILD2021-04-18 22:30:45 UTC (rev 412887)
@@ -1,45 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gjs
-pkgver=1.68.0
-pkgrel=2
-epoch=2
-pkgdesc="Javascript Bindings for GNOME"
-url="https://wiki.gnome.org/Projects/Gjs;
-arch=(x86_64)
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js78 dconf readline)
-makedepends=(gobject-introspection git meson dbus)
-checkdepends=(valgrind xorg-server-xvfb gtk3 gtk4)
-provides=(libgjs.so)
-_commit=87f0d0889127305ceb559c5451f29269d2f46f3b  # tags/1.68.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
---buildtype release \
--D installed_tests=false \
--D profiler=disabled
-  meson compile -C build
-}
-
-check() {
-  xvfb-run -s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  depends+=(libreadline.so)
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gjs/repos/extra-x86_64/PKGBUILD (from rev 412886, gjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 22:30:45 UTC (rev 412887)
@@ -0,0 +1,48 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gjs
+pkgver=1.68.0
+pkgrel=3
+epoch=2
+pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs;
+arch=(x86_64)
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js78 dconf readline)
+makedepends=(gobject-introspection git meson dbus)
+checkdepends=(valgrind xorg-server-xvfb gtk3 gtk4)
+provides=(libgjs.so)
+_commit=87f0d0889127305ceb559c5451f29269d2f46f3b  # tags/1.68.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Fix _LocalFilePrototype
+  git cherry-pick -n ec9385b89cb2bce0615093c3c957cbbb5ea6b769
+}
+
+build() {
+  arch-meson $pkgname build \
+--buildtype release \
+-D installed_tests=false \
+-D profiler=disabled
+  meson compile -C build
+}
+
+check() {
+  xvfb-run -s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libreadline.so)
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 22:29:59
  Author: heftig
Revision: 412886

1.68.0-3

Modified:
  gjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 22:16:38 UTC (rev 412885)
+++ PKGBUILD2021-04-18 22:29:59 UTC (rev 412886)
@@ -3,7 +3,7 @@
 
 pkgname=gjs
 pkgver=1.68.0
-pkgrel=2
+pkgrel=3
 epoch=2
 pkgdesc="Javascript Bindings for GNOME"
 url="https://wiki.gnome.org/Projects/Gjs;
@@ -24,6 +24,9 @@
 
 prepare() {
   cd $pkgname
+
+  # Fix _LocalFilePrototype
+  git cherry-pick -n ec9385b89cb2bce0615093c3c957cbbb5ea6b769
 }
 
 build() {


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

2021-04-18 Thread Sébastien Luttringer via arch-commits
Date: Sunday, April 18, 2021 @ 22:17:20
  Author: seblu
Revision: 919956

db-remove: ferm removed by seblu

Deleted:
  ferm/repos/community-any/


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

2021-04-18 Thread Sébastien Luttringer via arch-commits
Date: Sunday, April 18, 2021 @ 22:16:38
  Author: seblu
Revision: 412885

db-move: moved bird from [testing] to [extra] (x86_64)

Added:
  bird/repos/extra-x86_64/PKGBUILD
(from rev 412884, bird/repos/testing-x86_64/PKGBUILD)
  bird/repos/extra-x86_64/bird.service
(from rev 412884, bird/repos/testing-x86_64/bird.service)
Deleted:
  bird/repos/extra-x86_64/PKGBUILD
  bird/repos/extra-x86_64/bird.service
  bird/repos/testing-x86_64/

---+
 /PKGBUILD |   53 
 /bird.service |   24 
 extra-x86_64/PKGBUILD |   64 
 extra-x86_64/bird.service |   12 
 4 files changed, 77 insertions(+), 76 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2021-04-18 22:08:02 UTC (rev 412884)
+++ extra-x86_64/PKGBUILD   2021-04-18 22:16:38 UTC (rev 412885)
@@ -1,64 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=bird
-pkgver=2.0.8
-pkgrel=1
-pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babel routing daemon'
-arch=('x86_64')
-url='https://bird.network.cz/'
-license=('GPL2')
-backup=('etc/bird.conf')
-depends=('glibc' 'readline' 'ncurses' 'libssh')
-replaces=('bird6')
-source=("https://bird.network.cz/download/$pkgname-$pkgver.tar.gz;
-'bird.service')
-sha512sums=('5f8ad63b1dcdcfdfd4c98f55601dda3a07dea3099fc51b52a340650ca475bd943ee6aac31a1e7735b7596b279e338697c65728754b97108ae687a05f566c94e2'
-
'7321e51fea464914241b21a40be8de2251b650ff470730b6e460a4476ef10c17be3b2eb9e2ac96a9a956de5cc8e3b92417f9c920ae24ab9b06e58b887dd9e49e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---docdir=/usr/share/doc/$pkgname
-  make
-}
-
-package () {
-
-  cd $pkgbase-$pkgver
-  make \
-prefix="$pkgdir/usr" \
-sysconfdir="$pkgdir/etc" \
-sbindir="$pkgdir/usr/bin" \
-localstatedir="$pkgdir/var" \
-docdir="$pkgdir/usr/share/doc/$pkgname" \
-install
-
-  # no /var inside pkg
-  rm -r "$pkgdir/var"
-
-  # systemd
-  install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
-
-  # overwrite invalid default config file (see FS#57096)
-  install -D -m 644 doc/bird.conf.example2 "$pkgdir/etc/bird.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bird/repos/extra-x86_64/PKGBUILD (from rev 412884, 
bird/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2021-04-18 22:16:38 UTC (rev 412885)
@@ -0,0 +1,53 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=bird
+pkgver=2.0.8
+pkgrel=3
+pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babel routing daemon'
+arch=('x86_64')
+url='https://bird.network.cz/'
+license=('GPL2')
+backup=('etc/bird.conf')
+depends=('glibc' 'readline' 'ncurses' 'libssh')
+replaces=('bird6')
+options=(!emptydirs)
+source=("https://bird.network.cz/download/$pkgname-$pkgver.tar.gz;
+'bird.service')
+sha256sums=('19d2de83ee25a307b9e5b9e58797dd68766d439bcee33e3ac617ed502370e7f6'
+'4aa1e8d41229badd276aa3747f613e7df34761892add2258c63bdb5097dfeb2b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--runstatedir=/run/$pkgname \
+--docdir=/usr/share/doc/$pkgname
+  make
+}
+
+package () {
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # systemd
+  install -D -m 644 "$srcdir/bird.service" 
"$pkgdir/usr/lib/systemd/system/bird.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/bird.service
===
--- extra-x86_64/bird.service   2021-04-18 22:08:02 UTC (rev 412884)
+++ extra-x86_64/bird.service   2021-04-18 22:16:38 UTC (rev 412885)
@@ -1,12 +0,0 @@
-[Unit]
-Description=BIRD routing daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/bird
-ExecReload=/usr/bin/birdc configure
-ExecStop=/usr/bin/birdc down
-
-[Install]

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

2021-04-18 Thread Fabio Castelli via arch-commits
Date: Sunday, April 18, 2021 @ 22:13:36
  Author: muflone
Revision: 919955

archrelease: copy trunk to community-any

Added:
  gscan2pdf/repos/community-any/PKGBUILD
(from rev 919954, gscan2pdf/trunk/PKGBUILD)
Deleted:
  gscan2pdf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 22:09:56 UTC (rev 919954)
+++ PKGBUILD2021-04-18 22:13:36 UTC (rev 919955)
@@ -1,49 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Tristelune  
-# Contributor: LeCrayonVert 
-# Contributor: yugrotavele 
-# Contributor: Sven Salzwedel 
-# Contributor: Olaf Leidinger 
-
-pkgname=gscan2pdf
-pkgver=2.11.2
-pkgrel=1
-pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
-arch=('any')
-url='http://gscan2pdf.sourceforge.net/'
-license=('GPL')
-depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
- 'perl-gtk3-simplelist' 'perl-data-uuid'
- 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
- 'perl-locale-codes' 'perl-locale-gettext' 'perl-log-log4perl' 
'perl-pdf-api2'
- 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
- 'perl-try-tiny' 'perl-pdf-builder' 'perl-gtk3-imageview' 'unpaper')
-optdepends=('djvulibre: DjVu image format'
-'gocr: OCR support'
-'xdg-utils: email as PDF'
-'tesseract: OCR support'
-'cuneiform: OCR support'
-'pdftk: PDF encryption'
-'java-commons-lang: PDF encryption')
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('046994d14b97d3caf2369ea4f9de3774785fb02cb8e0bdedced8a972f501f3d7b0cd24a80a1832352030d2d7e2aae46a15e10ed457aa8d247f5db00cf57bac81')
-options=('!emptydirs')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  perl Makefile.PL
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
-  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  # Delete unuseful files
-  find "${pkgdir}" -name '.packlist' -delete
-  find "${pkgdir}" -name '*.pod' -delete
-}

Copied: gscan2pdf/repos/community-any/PKGBUILD (from rev 919954, 
gscan2pdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 22:13:36 UTC (rev 919955)
@@ -0,0 +1,49 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Tristelune  
+# Contributor: LeCrayonVert 
+# Contributor: yugrotavele 
+# Contributor: Sven Salzwedel 
+# Contributor: Olaf Leidinger 
+
+pkgname=gscan2pdf
+pkgver=2.12.0
+pkgrel=1
+pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
+arch=('any')
+url='http://gscan2pdf.sourceforge.net/'
+license=('GPL')
+depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
+ 'perl-gtk3-simplelist' 'perl-data-uuid'
+ 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
+ 'perl-locale-codes' 'perl-locale-gettext' 'perl-log-log4perl' 
'perl-pdf-api2'
+ 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
+ 'perl-try-tiny' 'perl-pdf-builder' 'perl-gtk3-imageview' 'unpaper')
+optdepends=('djvulibre: DjVu image format'
+'gocr: OCR support'
+'xdg-utils: email as PDF'
+'tesseract: OCR support'
+'cuneiform: OCR support'
+'pdftk: PDF encryption'
+'java-commons-lang: PDF encryption')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('3ee59057a501e17cdbafe5b967d4139f8775e7e9108edff7d988dfaed1134a006b70b90fd3448bf2e49bc9ae12eb4348bd159e8f2fce94830dcea153d9fdf451')
+options=('!emptydirs')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  # Delete unuseful files
+  find "${pkgdir}" -name '.packlist' -delete
+  find "${pkgdir}" -name '*.pod' -delete
+}


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

2021-04-18 Thread Fabio Castelli via arch-commits
Date: Sunday, April 18, 2021 @ 22:09:56
  Author: muflone
Revision: 919954

upgpkg: gscan2pdf 2.12.0-1

Modified:
  gscan2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 21:42:08 UTC (rev 919953)
+++ PKGBUILD2021-04-18 22:09:56 UTC (rev 919954)
@@ -6,7 +6,7 @@
 # Contributor: Olaf Leidinger 
 
 pkgname=gscan2pdf
-pkgver=2.11.2
+pkgver=2.12.0
 pkgrel=1
 pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
 arch=('any')
@@ -26,7 +26,7 @@
 'pdftk: PDF encryption'
 'java-commons-lang: PDF encryption')
 
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('046994d14b97d3caf2369ea4f9de3774785fb02cb8e0bdedced8a972f501f3d7b0cd24a80a1832352030d2d7e2aae46a15e10ed457aa8d247f5db00cf57bac81')
+sha512sums=('3ee59057a501e17cdbafe5b967d4139f8775e7e9108edff7d988dfaed1134a006b70b90fd3448bf2e49bc9ae12eb4348bd159e8f2fce94830dcea153d9fdf451')
 options=('!emptydirs')
 
 build() {


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

2021-04-18 Thread Sébastien Luttringer via arch-commits
Date: Sunday, April 18, 2021 @ 22:08:02
  Author: seblu
Revision: 412884

archrelease: copy trunk to testing-x86_64

Added:
  less/repos/testing-x86_64/
  less/repos/testing-x86_64/PKGBUILD
(from rev 412883, less/trunk/PKGBUILD)

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

Copied: less/repos/testing-x86_64/PKGBUILD (from rev 412883, 
less/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-04-18 22:08:02 UTC (rev 412884)
@@ -0,0 +1,31 @@
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=less
+pkgver=581
+pkgrel=1
+epoch=1
+pkgdesc='A terminal based program for viewing text files'
+license=('GPL3')
+arch=('x86_64')
+url='https://www.greenwoodsoftware.com/less/'
+depends=('glibc' 'ncurses' 'pcre2')
+validpgpkeys=('AE27252BD6846E7D6EAE1DD6F153A7C833235259') # Mark Nudelman
+source=("https://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz;
+
"$pkgname-$pkgver.tar.gz.sig::https://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.sig;)
+sha256sums=('1d077f83fe7867e0ecfd278eab3122326b21c22c9161366189c38e09b96a2c65'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  sh configure --prefix=/usr --sysconfdir=/etc --with-regex=pcre2
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-04-18 Thread Sébastien Luttringer via arch-commits
Date: Sunday, April 18, 2021 @ 22:07:57
  Author: seblu
Revision: 412883

upgpkg: less 1:581-1

Modified:
  less/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 21:31:23 UTC (rev 412882)
+++ PKGBUILD2021-04-18 22:07:57 UTC (rev 412883)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=less
-pkgver=563
+pkgver=581
 pkgrel=1
 epoch=1
 pkgdesc='A terminal based program for viewing text files'
@@ -14,7 +14,7 @@
 validpgpkeys=('AE27252BD6846E7D6EAE1DD6F153A7C833235259') # Mark Nudelman
 source=("https://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz;
 
"$pkgname-$pkgver.tar.gz.sig::https://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.sig;)
-sha256sums=('ce5b6d2b9fc4442d7a07c93ab128d2dff2ce09a1d4f2d055b95cf28dd0dc9a9a'
+sha256sums=('1d077f83fe7867e0ecfd278eab3122326b21c22c9161366189c38e09b96a2c65'
 'SKIP')
 
 build() {


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 21:42:08
  Author: arojas
Revision: 919953

archrelease: copy trunk to community-x86_64

Added:
  python-rpy2/repos/community-x86_64/PKGBUILD
(from rev 919952, python-rpy2/trunk/PKGBUILD)
Deleted:
  python-rpy2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 21:41:58 UTC (rev 919952)
+++ PKGBUILD2021-04-18 21:42:08 UTC (rev 919953)
@@ -1,23 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Oliver Sherouse 
-# Contributor: David Scholl  
-# Contributor: David Pretty  
-
-pkgname=python-rpy2
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="A very simple, yet robust, Python interface to the R Programming 
Language."
-arch=(x86_64)
-url="https://rpy2.github.io/;
-license=(MPL GPL LGPL)
-depends=(python-cffi python-numpy python-tzlocal r)
-makedepends=(python-setuptools)
-optdepends=('python-pandas: conversion between rpy and pandas')
-source=("https://pypi.io/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
-sha256sums=('a39f2d75c24c688d5f48dfb2ef82efc006f2a51591941743026e1182353bf558')
-
-package() {
-  cd rpy2-$pkgver
-
-  python setup.py install --prefix=/usr --install-data=/usr/share 
--root="$pkgdir" --optimize=1
-}

Copied: python-rpy2/repos/community-x86_64/PKGBUILD (from rev 919952, 
python-rpy2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 21:42:08 UTC (rev 919953)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Oliver Sherouse 
+# Contributor: David Scholl  
+# Contributor: David Pretty  
+
+pkgname=python-rpy2
+pkgver=3.4.4
+pkgrel=1
+pkgdesc="A very simple, yet robust, Python interface to the R Programming 
Language."
+arch=(x86_64)
+url="https://rpy2.github.io/;
+license=(MPL GPL LGPL)
+depends=(python-cffi python-numpy python-tzlocal r)
+makedepends=(python-setuptools)
+optdepends=('python-pandas: conversion between rpy and pandas')
+source=("https://pypi.io/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
+sha256sums=('e198862701bfc6d3da4a2fcf18910d71521b385283abdb2121e07b874add8e50')
+
+package() {
+  cd rpy2-$pkgver
+
+  python setup.py install --prefix=/usr --install-data=/usr/share 
--root="$pkgdir" --optimize=1
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 21:41:58
  Author: arojas
Revision: 919952

Update to 3.4.4

Modified:
  python-rpy2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 20:54:51 UTC (rev 919951)
+++ PKGBUILD2021-04-18 21:41:58 UTC (rev 919952)
@@ -4,7 +4,7 @@
 # Contributor: David Pretty  
 
 pkgname=python-rpy2
-pkgver=3.4.3
+pkgver=3.4.4
 pkgrel=1
 pkgdesc="A very simple, yet robust, Python interface to the R Programming 
Language."
 arch=(x86_64)
@@ -14,7 +14,7 @@
 makedepends=(python-setuptools)
 optdepends=('python-pandas: conversion between rpy and pandas')
 source=("https://pypi.io/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
-sha256sums=('a39f2d75c24c688d5f48dfb2ef82efc006f2a51591941743026e1182353bf558')
+sha256sums=('e198862701bfc6d3da4a2fcf18910d71521b385283abdb2121e07b874add8e50')
 
 package() {
   cd rpy2-$pkgver


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

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 21:31:23
  Author: felixonmars
Revision: 412882

archrelease: copy trunk to extra-x86_64

Added:
  libglvnd/repos/extra-x86_64/LICENSE
(from rev 412881, libglvnd/trunk/LICENSE)
  libglvnd/repos/extra-x86_64/PKGBUILD
(from rev 412881, libglvnd/trunk/PKGBUILD)
Deleted:
  libglvnd/repos/extra-x86_64/LICENSE
  libglvnd/repos/extra-x86_64/PKGBUILD

--+
 LICENSE  |   52 ++---
 PKGBUILD |   69 +
 2 files changed, 64 insertions(+), 57 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2021-04-18 21:31:05 UTC (rev 412881)
+++ LICENSE 2021-04-18 21:31:23 UTC (rev 412882)
@@ -1,26 +0,0 @@
-Copyright (c) 2013, NVIDIA CORPORATION.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and/or associated documentation files (the
-"Materials"), to deal in the Materials without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Materials, and to
-permit persons to whom the Materials are furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-unaltered in all copies or substantial portions of the Materials.
-Any additions, deletions, or changes to the original source files
-must be clearly indicated in accompanying documentation.
-
-If only executable code is distributed, then the accompanying
-documentation must state that "this software is based in part on the
-work of the Khronos Group."
-
-THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Copied: libglvnd/repos/extra-x86_64/LICENSE (from rev 412881, 
libglvnd/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2021-04-18 21:31:23 UTC (rev 412882)
@@ -0,0 +1,26 @@
+Copyright (c) 2013, NVIDIA CORPORATION.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and/or associated documentation files (the
+"Materials"), to deal in the Materials without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Materials, and to
+permit persons to whom the Materials are furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+unaltered in all copies or substantial portions of the Materials.
+Any additions, deletions, or changes to the original source files
+must be clearly indicated in accompanying documentation.
+
+If only executable code is distributed, then the accompanying
+documentation must state that "this software is based in part on the
+work of the Khronos Group."
+
+THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 21:31:05 UTC (rev 412881)
+++ PKGBUILD2021-04-18 21:31:23 UTC (rev 412882)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=libglvnd
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="The GL Vendor-Neutral Dispatch library"
-arch=('x86_64')
-url="https://github.com/NVIDIA/libglvnd;
-license=('custom:BSD-like')
-makedepends=('libxext' 'libx11' 'xorgproto' 'python' 'meson')
-provides=('libgl' 'libegl' 'libgles')
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${pkgver}/libglvnd-v${pkgver}.tar.gz;
-LICENSE)
-sha512sums=('01db155f02fa21f4217ee5ca6dd8eeed3d20672c8aaa43475bd112921716ee8d4124e01f80a89587ddc8ebfa4a552c5e02d70726222702cce1601a6e6f4bc22b'
-
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
-
-build() {
-  arch-meson $pkgname-v$pkgver build \
--D gles1=false
-
-  ninja -C build
-}
-
-package() {
-  

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

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 21:31:05
  Author: felixonmars
Revision: 412881

upgpkg: libglvnd 1.3.2-2: add a patch for FS#70488

Modified:
  libglvnd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:57:52 UTC (rev 412880)
+++ PKGBUILD2021-04-18 21:31:05 UTC (rev 412881)
@@ -2,7 +2,7 @@
 
 pkgname=libglvnd
 pkgver=1.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="The GL Vendor-Neutral Dispatch library"
 arch=('x86_64')
 url="https://github.com/NVIDIA/libglvnd;
@@ -9,11 +9,18 @@
 license=('custom:BSD-like')
 makedepends=('libxext' 'libx11' 'xorgproto' 'python' 'meson')
 provides=('libgl' 'libegl' 'libgles')
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${pkgver}/libglvnd-v${pkgver}.tar.gz;
+source=("https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$pkgver/libglvnd-v$pkgver.tar.gz;
+
https://gitlab.freedesktop.org/glvnd/libglvnd/-/commit/a527411da713b2068974c46d7129326520dc5923.patch
 LICENSE)
 
sha512sums=('01db155f02fa21f4217ee5ca6dd8eeed3d20672c8aaa43475bd112921716ee8d4124e01f80a89587ddc8ebfa4a552c5e02d70726222702cce1601a6e6f4bc22b'
+
'10f630d141f65d8d54adf434b3c0b56c937f495336a873737cbea1b0ca07728b430bd44a7f3f712c5ae20a37b71a864301205c590bd251897155e60b1b1e7e6d'
 
'bf0f4a7e04220a407400f89226ecc1f798cc43035f2538cc8860e5088e1f84140baf0d4b0b28f66e4b802d4d6925769a1297c24e1ba39c1c093902b2931781a5')
 
+prepare() {
+  # https://bugs.archlinux.org/task/70488
+  patch -d $pkgname-v$pkgver -p1 < 
a527411da713b2068974c46d7129326520dc5923.patch
+}
+
 build() {
   arch-meson $pkgname-v$pkgver build \
 -D gles1=false


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

2021-04-18 Thread Eli Schwartz via arch-commits
Date: Sunday, April 18, 2021 @ 20:54:51
  Author: eschwartz
Revision: 919951

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/PKGBUILD
(from rev 919950, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  211 ++---
 1 file changed, 106 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 20:54:33 UTC (rev 919950)
+++ PKGBUILD2021-04-18 20:54:51 UTC (rev 919951)
@@ -1,105 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgbase=calibre
-pkgname=calibre
-pkgver=5.14.0
-pkgrel=2
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dbus' 'dnspython'
-  'feedparser' 'html2text' 'html5-parser' 'lxml' 'markdown' 
'mechanize' 'msgpack'
-  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
-  'pyqtwebengine' 'regex' 'zeroconf')
-depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusb'
- 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-svg' 'ttf-liberation' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
-checkdepends=('xorg-server-xvfb')
-optdepends=('poppler: required for converting pdf to html'
-'speech-dispatcher: TTS support in the viewer')
-conflicts=('calibre-common' 'calibre-python3')
-replaces=('calibre-common' 'calibre-python3')
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('186cce57b6990af0b014282fa1d3d914fffc11e40d8495ea43d91485534e1271'
-'SKIP')
-b2sums=('3f503b2d32adb355a034b8573485fdedcebcc2670a9bf00fbeca07d84bc14f2c43530db1e15196f354d61adbad504cdb2d6cf8c6ca5bccc0cbf5e38869e6ff90'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-cd "${pkgbase}-${pkgver}"
-
-# Desktop integration (e.g. enforce arch defaults)
-# Use uppercase naming scheme, don't delete config files under fakeroot.
-sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
--e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
--e "s/^Name=calibre/Name=Calibre/g" \
--i  src/calibre/linux.py
-
-cd resources
-
-# Remove unneeded files
-rm ${pkgbase}-portable.* mozilla-ca-certs.pem
-
-# use system mathjax
-rm -r mathjax
-}
-
-build() {
-cd "${pkgbase}-${pkgver}"
-
-LANG='en_US.UTF-8' python setup.py build
-LANG='en_US.UTF-8' python setup.py gui
-python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
-LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
-LANG='en_US.UTF-8' python setup.py rapydscript
-}
-
-check() {
-cd "${pkgbase}-${pkgver}"
-
-_test_excludes=(
-# merely testing if a runtime-optional feature optdepend is importable
-'speech_dispatcher'
-# tests if a completely unused module is bundled
-'pycryptodome'
-)
-
-# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
-LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
-}
-
-package() {
-cd "${pkgbase}-${pkgver}"
-
-# If this directory doesn't exist, zsh completion won't install.
-install -d "${pkgdir}/usr/share/zsh/site-functions"
-
-LANG='en_US.UTF-8' python setup.py install \
---staging-root="${pkgdir}/usr" \
---prefix=/usr
-
-cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-# not needed at runtime
-rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
-
-# Compiling bytecode FS#33392
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python3 -m compileall -d "${_destdir}" "${_file}"
-python3 -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 919950, 
calibre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)

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

2021-04-18 Thread Eli Schwartz via arch-commits
Date: Sunday, April 18, 2021 @ 20:54:33
  Author: eschwartz
Revision: 919950

upgpkg: calibre 5.16.0-1: upstream release

add support for new system plugin path option

qt5-imageformats is needed because calibre now tests for webp support
and is required by EPUB 3.3 anyway

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:42:42 UTC (rev 919949)
+++ PKGBUILD2021-04-18 20:54:33 UTC (rev 919950)
@@ -8,8 +8,8 @@
 
 pkgbase=calibre
 pkgname=calibre
-pkgver=5.14.0
-pkgrel=2
+pkgver=5.16.0
+pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
@@ -20,7 +20,7 @@
   'pyqtwebengine' 'regex' 'zeroconf')
 depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libusb'
  'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
- "${_py_deps[@]/#/python-}" 'qt5-svg' 'ttf-liberation' 'udisks2')
+ "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
 makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
 checkdepends=('xorg-server-xvfb')
 optdepends=('poppler: required for converting pdf to html'
@@ -29,9 +29,9 @@
 replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('186cce57b6990af0b014282fa1d3d914fffc11e40d8495ea43d91485534e1271'
+sha256sums=('7e4b0d5ac59001361601953c56667c715d4a5081a80b71f4389314b447260735'
 'SKIP')
-b2sums=('3f503b2d32adb355a034b8573485fdedcebcc2670a9bf00fbeca07d84bc14f2c43530db1e15196f354d61adbad504cdb2d6cf8c6ca5bccc0cbf5e38869e6ff90'
+b2sums=('afd135b43960094682c234831ae44b1b714d313f5d01b4a26bc9252d54a8728faa57f3ad1db07241a819d91b70e90730957bcfb608f230efc4fc44a0f37e2857'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
@@ -88,7 +88,8 @@
 
 LANG='en_US.UTF-8' python setup.py install \
 --staging-root="${pkgdir}/usr" \
---prefix=/usr
+--prefix=/usr \
+--system-plugins-location=/usr/share/calibre/system-plugins
 
 cp -a man-pages/ "${pkgdir}/usr/share/man"
 


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 19:57:52
  Author: arojas
Revision: 412880

archrelease: copy trunk to extra-x86_64

Added:
  libical/repos/extra-x86_64/PKGBUILD
(from rev 412879, libical/trunk/PKGBUILD)
Deleted:
  libical/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:57:42 UTC (rev 412879)
+++ PKGBUILD2021-04-18 19:57:52 UTC (rev 412880)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=libical
-pkgver=3.0.9
-pkgrel=2
-pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
-arch=('x86_64')
-url='https://github.com/libical/libical'
-license=('LGPL' 'MPL')
-depends=('glibc' 'glib2' 'icu' 'db' 'libxml2')
-makedepends=('cmake' 'gtk-doc' 'doxygen' 'vala' 'gobject-introspection')
-checkdepends=('python-gobject')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('4a9894d82776437cb2ef16df70bffb52da7b4fd57b52a4f6941430b3b1f9830829f0775fb495411f67393581bda1304b54c9f0031bc3d4ada56d2204900cb268')
-
-build() {
-  cmake -H"${pkgname}-${pkgver}" -Bbuild \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DGOBJECT_INTROSPECTION=true \
--DICAL_GLIB_VAPI=true \
--DSHARED_ONLY=true
-  cmake --build build
-}
-
-check() {
-  cmake --build build --target test
-}
-
-package() {
-  DESTDIR="${pkgdir}" cmake --build build --target install
-}

Copied: libical/repos/extra-x86_64/PKGBUILD (from rev 412879, 
libical/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:57:52 UTC (rev 412880)
@@ -0,0 +1,35 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=libical
+pkgver=3.0.10
+pkgrel=1
+pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
+arch=('x86_64')
+url='https://github.com/libical/libical'
+license=('LGPL' 'MPL')
+depends=('glibc' 'glib2' 'icu' 'db' 'libxml2')
+makedepends=('cmake' 'gtk-doc' 'doxygen' 'vala' 'gobject-introspection')
+checkdepends=('python-gobject')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('e32ccaff9b8a501f340567a1221c580023e4ed79918519bfa88aee2c0e8b62f5ea37e10907f2eb6fbd346a57408708a74e30aaf9a57a8d711eae30ddc974ddd0')
+
+build() {
+  cmake -H"${pkgname}-${pkgver}" -Bbuild \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DGOBJECT_INTROSPECTION=true \
+-DICAL_GLIB_VAPI=true \
+-DSHARED_ONLY=true
+  cmake --build build
+}
+
+check() {
+  cmake --build build --target test
+}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --build build --target install
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 19:57:42
  Author: arojas
Revision: 412879

Update to 3.0.10

Modified:
  libical/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:47:38 UTC (rev 412878)
+++ PKGBUILD2021-04-18 19:57:42 UTC (rev 412879)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=libical
-pkgver=3.0.9
-pkgrel=2
+pkgver=3.0.10
+pkgrel=1
 pkgdesc="An open source reference implementation of the icalendar data type 
and serialization format"
 arch=('x86_64')
 url='https://github.com/libical/libical'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'gtk-doc' 'doxygen' 'vala' 'gobject-introspection')
 checkdepends=('python-gobject')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('4a9894d82776437cb2ef16df70bffb52da7b4fd57b52a4f6941430b3b1f9830829f0775fb495411f67393581bda1304b54c9f0031bc3d4ada56d2204900cb268')
+sha512sums=('e32ccaff9b8a501f340567a1221c580023e4ed79918519bfa88aee2c0e8b62f5ea37e10907f2eb6fbd346a57408708a74e30aaf9a57a8d711eae30ddc974ddd0')
 
 build() {
   cmake -H"${pkgname}-${pkgver}" -Bbuild \


[arch-commits] Commit in gnome-shell/repos/testing-x86_64 (4 files)

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 19:47:18
  Author: heftig
Revision: 412875

archrelease: copy trunk to testing-x86_64

Added:
  gnome-shell/repos/testing-x86_64/PKGBUILD
(from rev 412874, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/testing-x86_64/gnome-shell.install
(from rev 412874, gnome-shell/trunk/gnome-shell.install)
Deleted:
  gnome-shell/repos/testing-x86_64/PKGBUILD
  gnome-shell/repos/testing-x86_64/gnome-shell.install

-+
 PKGBUILD|  110 +++---
 gnome-shell.install |   14 +++---
 2 files changed, 67 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:46:16 UTC (rev 412874)
+++ PKGBUILD2021-04-18 19:47:18 UTC (rev 412875)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
-arch=(x86_64)
-license=(GPL2)
-depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session gtk4
- gnome-settings-daemon gnome-themes-extra gsettings-desktop-schemas
- libcanberra-pulse libgdm libsecret mutter nm-connection-editor unzip
- gstreamer libibus gnome-autoar gnome-disk-utility gst-plugin-pipewire)
-makedepends=(gtk-doc gnome-control-center evolution-data-server
- gobject-introspection git meson sassc asciidoc bash-completion)
-optdepends=('gnome-control-center: System settings'
-'evolution-data-server: Evolution calendar integration')
-groups=(gnome)
-install=gnome-shell.install
-_commit=1f0ef7fb4692f8ad6a040567f29097e0c3688e52  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
-  git submodule update
-}
-  
-build() {
-  arch-meson $pkgname build -D gtk_doc=true
-  meson compile -C build
-}
-
-package() {
-  depends+=(libmutter-8.so)
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-shell/repos/testing-x86_64/PKGBUILD (from rev 412874, 
gnome-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:47:18 UTC (rev 412875)
@@ -0,0 +1,60 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
+arch=(x86_64)
+license=(GPL)
+depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session gtk4
+ gnome-settings-daemon gnome-themes-extra gsettings-desktop-schemas
+ libcanberra-pulse libgdm libsecret mutter nm-connection-editor unzip
+ gstreamer libibus gnome-autoar gnome-disk-utility gst-plugin-pipewire)
+makedepends=(gtk-doc gnome-control-center evolution-data-server
+ gobject-introspection git meson sassc asciidoc bash-completion)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-control-center: System settings'
+'evolution-data-server: Evolution calendar integration')
+groups=(gnome)
+install=gnome-shell.install
+_commit=d9e953e93ca3df38600f0286bf58a8d0e6812e7d  # master
+source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  meson compile -C build
+}
+
+check() (
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  export XDG_RUNTIME_DIR
+
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
+  meson test -C build --print-errorlogs
+)
+
+package() {
+  depends+=(libmutter-8.so)
+  DESTDIR="$pkgdir" meson install -C build
+}

Deleted: gnome-shell.install
===
--- gnome-shell.install 2021-04-18 19:46:16 UTC (rev 412874)
+++ gnome-shell.install 2021-04-18 19:47:18 UTC (rev 412875)
@@ -1,7 +0,0 @@
-post_install() {
-  setcap cap_sys_nice+ep usr/bin/gnome-shell
-}
-
-post_upgrade() {
-  post_install
-}

Copied: gnome-shell/repos/testing-x86_64/gnome-shell.install (from rev 412874, 
gnome-shell/trunk/gnome-shell.install)
===
--- gnome-shell.install (rev 0)
+++ gnome-shell.install 2021-04-18 19:47:18 UTC (rev 412875)
@@ -0,0 +1,7 @@

[arch-commits] Commit in mutter/repos/testing-x86_64 (4 files)

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 19:47:18
  Author: heftig
Revision: 412876

archrelease: copy trunk to testing-x86_64

Added:
  mutter/repos/testing-x86_64/PKGBUILD
(from rev 412874, mutter/trunk/PKGBUILD)
  mutter/repos/testing-x86_64/mutter.install
(from rev 412874, mutter/trunk/mutter.install)
Deleted:
  mutter/repos/testing-x86_64/PKGBUILD
  mutter/repos/testing-x86_64/mutter.install

+
 PKGBUILD   |  127 +--
 mutter.install |   14 +++---
 2 files changed, 76 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:47:18 UTC (rev 412875)
+++ PKGBUILD2021-04-18 19:47:18 UTC (rev 412876)
@@ -1,58 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Michael Kanis 
-
-pkgname=mutter
-pkgver=40.0+52+gd2a492de9
-pkgrel=1
-pkgdesc="A window manager for GNOME"
-url="https://gitlab.gnome.org/GNOME/mutter;
-arch=(x86_64)
-license=(GPL)
-depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
- libcanberra startup-notification zenity libsm gnome-desktop upower
- libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire
- xorg-xwayland graphene libxkbfile)
-makedepends=(gobject-introspection git egl-wayland meson xorg-server)
-checkdepends=(xorg-server-xvfb)
-provides=(libmutter-8.so)
-groups=(gnome)
-install=mutter.install
-_commit=d2a492de94297d815c8140356b93b6befffdfde0  # master
-source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
-  LDFLAGS+=" -Wl,-Bsymbolic-functions"
-  arch-meson $pkgname build \
--D egl_device=true \
--D wayland_eglstream=true \
--D installed_tests=false \
--D profiler=false
-  meson compile -C build
-}
-
-check() (
-  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
-  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/data}"
-  export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
-
-  # Stacking test flaky
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
-meson test -C build --print-errorlogs || :
-)
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: mutter/repos/testing-x86_64/PKGBUILD (from rev 412874, 
mutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:47:18 UTC (rev 412876)
@@ -0,0 +1,69 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=40.0+55+gf4f82bcb9
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+url="https://gitlab.gnome.org/GNOME/mutter;
+arch=(x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
+ libcanberra startup-notification zenity libsm gnome-desktop upower
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire
+ xorg-xwayland graphene libxkbfile)
+makedepends=(gobject-introspection git egl-wayland meson xorg-server)
+checkdepends=(xorg-server-xvfb pipewire-media-session)
+provides=(libmutter-8.so)
+groups=(gnome)
+install=mutter.install
+_commit=f4f82bcb96936fe108c0dd06936010ab5dee13ee  # master
+source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS+=" -Wl,-Bsymbolic-functions"
+  arch-meson $pkgname build \
+-D egl_device=true \
+-D wayland_eglstream=true \
+-D installed_tests=false \
+-D profiler=false
+  meson compile -C build
+}
+
+_check() (
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/data}"
+  export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
+
+  pipewire &
+  _p1=$!
+
+  pipewire-media-session &
+  _p2=$!
+
+  trap "kill $_p1 $_p2; wait" EXIT
+
+  meson test -C build --print-errorlogs
+)
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
+bash -c "$(declare -f _check); _check"
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}

Deleted: mutter.install
===
--- mutter.install  2021-04-18 19:47:18 UTC (rev 412875)
+++ mutter.install  2021-04-18 19:47:18 UTC (rev 412876)
@@ -1,7 +0,0 @@
-post_install() {
-  setcap cap_sys_nice+ep usr/bin/mutter
-}
-
-post_upgrade() {
-  post_install
-}

Copied: mutter/repos/testing-x86_64/mutter.install (from rev 412874, 

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

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 19:46:16
  Author: heftig
Revision: 412874

40.0+39+gd9e953e93-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:38:03 UTC (rev 412873)
+++ PKGBUILD2021-04-18 19:46:16 UTC (rev 412874)
@@ -3,13 +3,13 @@
 # Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
 arch=(x86_64)
-license=(GPL2)
+license=(GPL)
 depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session gtk4
  gnome-settings-daemon gnome-themes-extra gsettings-desktop-schemas
  libcanberra-pulse libgdm libsecret mutter nm-connection-editor unzip
@@ -16,11 +16,12 @@
  gstreamer libibus gnome-autoar gnome-disk-utility gst-plugin-pipewire)
 makedepends=(gtk-doc gnome-control-center evolution-data-server
  gobject-introspection git meson sassc asciidoc bash-completion)
+checkdepends=(xorg-server-xvfb)
 optdepends=('gnome-control-center: System settings'
 'evolution-data-server: Evolution calendar integration')
 groups=(gnome)
 install=gnome-shell.install
-_commit=1f0ef7fb4692f8ad6a040567f29097e0c3688e52  # master
+_commit=d9e953e93ca3df38600f0286bf58a8d0e6812e7d  # master
 source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'
@@ -38,12 +39,21 @@
   git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
   git submodule update
 }
-  
+
 build() {
   arch-meson $pkgname build -D gtk_doc=true
   meson compile -C build
 }
 
+check() (
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  export XDG_RUNTIME_DIR
+
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
+  meson test -C build --print-errorlogs
+)
+
 package() {
   depends+=(libmutter-8.so)
   DESTDIR="$pkgdir" meson install -C build


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

2021-04-18 Thread Alexander Rødseth via arch-commits
Date: Sunday, April 18, 2021 @ 19:42:42
  Author: arodseth
Revision: 919949

archrelease: copy trunk to community-x86_64

Added:
  grim/repos/community-x86_64/PKGBUILD
(from rev 919948, grim/trunk/PKGBUILD)
Deleted:
  grim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:33:54 UTC (rev 919948)
+++ PKGBUILD2021-04-18 19:42:42 UTC (rev 919949)
@@ -1,25 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: emersion 
-
-pkgname=grim
-pkgver=1.3.2
-pkgrel=1
-pkgdesc='Screenshot utility for Wayland'
-arch=(x86_64)
-url='https://github.com/emersion/grim'
-license=(MIT)
-depends=(cairo libjpeg-turbo wayland)
-makedepends=(fish git meson ninja pango scdoc wayland-protocols)
-source=("git+$url#commit=c2efce7ffcfb70df5ea197f729da83be79d54f34") # tag: 
v1.3.2
-sha256sums=('SKIP')
-
-build() {
-  arch-meson build $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 $pkgname/LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: grim/repos/community-x86_64/PKGBUILD (from rev 919948, 
grim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:42:42 UTC (rev 919949)
@@ -0,0 +1,25 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: emersion 
+
+pkgname=grim
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='Screenshot utility for Wayland'
+arch=(x86_64)
+url='https://github.com/emersion/grim'
+license=(MIT)
+depends=(cairo libjpeg-turbo wayland)
+makedepends=(fish git meson ninja pango scdoc wayland-protocols)
+source=("git+$url#commit=c2efce7ffcfb70df5ea197f729da83be79d54f34") # tag: 
v1.3.2
+sha256sums=('SKIP')
+
+build() {
+  arch-meson build $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 $pkgname/LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-04-18 Thread Jan Steffens via arch-commits
Date: Sunday, April 18, 2021 @ 19:38:03
  Author: heftig
Revision: 412873

40.0+55+gf4f82bcb9-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:26:26 UTC (rev 412872)
+++ PKGBUILD2021-04-18 19:38:03 UTC (rev 412873)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=40.0+52+gd2a492de9
+pkgver=40.0+55+gf4f82bcb9
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://gitlab.gnome.org/GNOME/mutter;
@@ -14,11 +14,11 @@
  libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire
  xorg-xwayland graphene libxkbfile)
 makedepends=(gobject-introspection git egl-wayland meson xorg-server)
-checkdepends=(xorg-server-xvfb)
+checkdepends=(xorg-server-xvfb pipewire-media-session)
 provides=(libmutter-8.so)
 groups=(gnome)
 install=mutter.install
-_commit=d2a492de94297d815c8140356b93b6befffdfde0  # master
+_commit=f4f82bcb96936fe108c0dd06936010ab5dee13ee  # master
 source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -42,16 +42,27 @@
   meson compile -C build
 }
 
-check() (
+_check() (
   mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
   glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/data}"
   export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
 
-  # Stacking test flaky
+  pipewire &
+  _p1=$!
+
+  pipewire-media-session &
+  _p2=$!
+
+  trap "kill $_p1 $_p2; wait" EXIT
+
+  meson test -C build --print-errorlogs
+)
+
+check() {
   dbus-run-session xvfb-run \
 -s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
-meson test -C build --print-errorlogs || :
-)
+bash -c "$(declare -f _check); _check"
+}
 
 package() {
   DESTDIR="$pkgdir" meson install -C build


[arch-commits] Commit in perl-ppix-regexp/repos/community-any (PKGBUILD PKGBUILD)

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 19:33:54
  Author: felixonmars
Revision: 919948

archrelease: copy trunk to community-any

Added:
  perl-ppix-regexp/repos/community-any/PKGBUILD
(from rev 919947, perl-ppix-regexp/trunk/PKGBUILD)
Deleted:
  perl-ppix-regexp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:33:39 UTC (rev 919947)
+++ PKGBUILD2021-04-18 19:33:54 UTC (rev 919948)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-ppix-regexp
-pkgver=0.079
-pkgrel=1
-pkgdesc="Parse regular expressions"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/PPIx-Regexp;
-depends=('perl-list-moreutils' 'perl-ppi' 'perl-task-weaken')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-Regexp-$pkgver.tar.gz;)
-sha512sums=('456b3ebf5ab8c2a3449e23c57807f32511e861dcd937fda20dbb5dc3a71cbe1f26647826dda3d50ca9b4bf79712a99562aca29952beb35ecf39610c53f02301b')
-
-build() {
-  cd PPIx-Regexp-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd PPIx-Regexp-$pkgver
-  make test
-}
-
-package() {
-  cd PPIx-Regexp-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-ppix-regexp/repos/community-any/PKGBUILD (from rev 919947, 
perl-ppix-regexp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:33:54 UTC (rev 919948)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-ppix-regexp
+pkgver=0.080
+pkgrel=1
+pkgdesc="Parse regular expressions"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/PPIx-Regexp;
+depends=('perl-list-moreutils' 'perl-ppi' 'perl-task-weaken')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-Regexp-$pkgver.tar.gz;)
+sha512sums=('6e4f91b1544d4f87079296e7032114dad55505647523ae21638ac157d3f9b47da644829b0813d35383a7d870149ccc58c77f73f3794a004f5634403c891e6254')
+
+build() {
+  cd PPIx-Regexp-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd PPIx-Regexp-$pkgver
+  make test
+}
+
+package() {
+  cd PPIx-Regexp-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-ppix-regexp/trunk (PKGBUILD)

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 19:33:39
  Author: felixonmars
Revision: 919947

upgpkg: perl-ppix-regexp 0.080-1

Modified:
  perl-ppix-regexp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:33:34 UTC (rev 919946)
+++ PKGBUILD2021-04-18 19:33:39 UTC (rev 919947)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-ppix-regexp
-pkgver=0.079
+pkgver=0.080
 pkgrel=1
 pkgdesc="Parse regular expressions"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('perl-list-moreutils' 'perl-ppi' 'perl-task-weaken')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-Regexp-$pkgver.tar.gz;)
-sha512sums=('456b3ebf5ab8c2a3449e23c57807f32511e861dcd937fda20dbb5dc3a71cbe1f26647826dda3d50ca9b4bf79712a99562aca29952beb35ecf39610c53f02301b')
+sha512sums=('6e4f91b1544d4f87079296e7032114dad55505647523ae21638ac157d3f9b47da644829b0813d35383a7d870149ccc58c77f73f3794a004f5634403c891e6254')
 
 build() {
   cd PPIx-Regexp-$pkgver


[arch-commits] Commit in perl-ppix-quotelike/repos/community-any (PKGBUILD PKGBUILD)

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 19:33:34
  Author: felixonmars
Revision: 919946

archrelease: copy trunk to community-any

Added:
  perl-ppix-quotelike/repos/community-any/PKGBUILD
(from rev 919945, perl-ppix-quotelike/trunk/PKGBUILD)
Deleted:
  perl-ppix-quotelike/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:33:20 UTC (rev 919945)
+++ PKGBUILD2021-04-18 19:33:34 UTC (rev 919946)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-ppix-quotelike
-pkgver=0.016
-pkgrel=1
-pkgdesc="Parse Perl string literals and string-literal-like things"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/PPIx-QuoteLike;
-depends=('perl-ppi')
-makedepends=('perl-ppix-regexp' 'perl-readonly')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-QuoteLike-$pkgver.tar.gz;)
-sha512sums=('68933307f77cb0926f61249f1d80397443d02ccbf900051cdb7d091b7fe7923fe3705ed39975428e251cad58eeef2b3614c34863618541dea37e5aa98a73e1ba')
-
-build() {
-  cd PPIx-QuoteLike-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd PPIx-QuoteLike-$pkgver
-  make test
-}
-
-package() {
-  cd PPIx-QuoteLike-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-ppix-quotelike/repos/community-any/PKGBUILD (from rev 919945, 
perl-ppix-quotelike/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:33:34 UTC (rev 919946)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-ppix-quotelike
+pkgver=0.017
+pkgrel=1
+pkgdesc="Parse Perl string literals and string-literal-like things"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/PPIx-QuoteLike;
+depends=('perl-ppi')
+makedepends=('perl-ppix-regexp' 'perl-readonly')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-QuoteLike-$pkgver.tar.gz;)
+sha512sums=('ec51e4ee529e18305a5255d9d0d04a5868963481157c31ffbb92e3492c4153117b54b14c1c75b1792fdeb91d68c2a0596b7ace829a25b27a53dc4ec785d48bca')
+
+build() {
+  cd PPIx-QuoteLike-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd PPIx-QuoteLike-$pkgver
+  make test
+}
+
+package() {
+  cd PPIx-QuoteLike-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-ppix-quotelike/trunk (PKGBUILD)

2021-04-18 Thread Felix Yan via arch-commits
Date: Sunday, April 18, 2021 @ 19:33:20
  Author: felixonmars
Revision: 919945

upgpkg: perl-ppix-quotelike 0.017-1

Modified:
  perl-ppix-quotelike/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:23:58 UTC (rev 919944)
+++ PKGBUILD2021-04-18 19:33:20 UTC (rev 919945)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-ppix-quotelike
-pkgver=0.016
+pkgver=0.017
 pkgrel=1
 pkgdesc="Parse Perl string literals and string-literal-like things"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('perl-ppix-regexp' 'perl-readonly')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/W/WY/WYANT/PPIx-QuoteLike-$pkgver.tar.gz;)
-sha512sums=('68933307f77cb0926f61249f1d80397443d02ccbf900051cdb7d091b7fe7923fe3705ed39975428e251cad58eeef2b3614c34863618541dea37e5aa98a73e1ba')
+sha512sums=('ec51e4ee529e18305a5255d9d0d04a5868963481157c31ffbb92e3492c4153117b54b14c1c75b1792fdeb91d68c2a0596b7ace829a25b27a53dc4ec785d48bca')
 
 build() {
   cd PPIx-QuoteLike-$pkgver


[arch-commits] Commit in cups/repos/extra-x86_64 (20 files)

2021-04-18 Thread Evangelos Foutras via arch-commits
Date: Sunday, April 18, 2021 @ 19:26:26
  Author: foutrelis
Revision: 412872

archrelease: copy trunk to extra-x86_64

Added:
  cups/repos/extra-x86_64/PKGBUILD
(from rev 412871, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
(from rev 412871, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-x86_64/cups-freebind.patch
(from rev 412871, cups/trunk/cups-freebind.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 412871, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 412871, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 412871, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 412871, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/cups.sysusers
(from rev 412871, cups/trunk/cups.sysusers)
  cups/repos/extra-x86_64/guid.patch
(from rev 412871, cups/trunk/guid.patch)
  cups/repos/extra-x86_64/increase_timeout.patch
(from rev 412871, cups/trunk/increase_timeout.patch)
Deleted:
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
  cups/repos/extra-x86_64/cups-freebind.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam
  cups/repos/extra-x86_64/cups.sysusers
  cups/repos/extra-x86_64/guid.patch
  cups/repos/extra-x86_64/increase_timeout.patch

--+
 PKGBUILD |  390 -
 cups-1.6.2-statedir.patch|   24 +-
 cups-freebind.patch  |   30 +--
 cups-no-export-ssllibs.patch |   24 +-
 cups.install |   56 ++---
 cups.logrotate   |   10 -
 cups.pam |6 
 cups.sysusers|4 
 guid.patch   |   84 
 increase_timeout.patch   |  103 +-
 10 files changed, 367 insertions(+), 364 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:26:14 UTC (rev 412871)
+++ PKGBUILD2021-04-18 19:26:26 UTC (rev 412872)
@@ -1,195 +0,0 @@
-# Maintainer: Andreas Radke 
-
-pkgbase="cups"
-pkgname=('libcups' 'cups')
-#_commit=be75d5d99a54c5f62608f7b9e98748d4c7045ec1 # master 2020-11-27
-pkgver=2.3.3op2
-pkgrel=2
-epoch=1
-arch=('x86_64')
-license=('Apache' 'custom')
-#url="https://www.cups.org/;
-url="https://github.com/OpenPrinting/cups;
-makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
- 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 
'dbus'
- 'avahi'  'hicolor-icon-theme' 'systemd' 'libxcrypt' 'inetutils' 
'libpaper' 'valgrind'
- 'git')
-source=(#https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
-
https://github.com/OpenPrinting/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
-#"git+https://github.com/OpenPrinting/cups#commit=$_commit;
-cups.logrotate
-cups.pam
-cups.sysusers
-# improve build and linking
-cups-no-export-ssllibs.patch
-cups-1.6.2-statedir.patch
-# bugfixes
-cups-freebind.patch
-guid.patch
-# upstream fixes
-increase_timeout.patch
-)
-sha256sums=('deb3575bbe79c0ae963402787f265bfcf8d804a71fc2c94318a74efec86f96df'
-'SKIP'
-'d87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
-'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
-'06173dfaea37bdd9b39b3e09aba98c34ae7112a2f521db45a688907d8848caa2'
-'ff3eb0782af0405f5dafe89e04b1b4ea7a49afc5496860d724343bd04f375832'
-'23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
-'3385047b9ac8a7b13aeb8f0ca55d15f793ce7283516db0155fe28a67923c592d'
-'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
-'2ca30beed3e67314dd44edfb2ada9a89301e4cb058b72e9d2704d130e5f57d1c')
-validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
-validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
-validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
-
-
-#pkgver() {
-#  cd $pkgbase
-#  git describe --tags | sed 's/-/+/g' | sed 's/v//'
-#}
-
-prepare() {
-
-  cd "${pkgbase}"-${pkgver}
-
-  # improve build and linking
-  # Do not export SSL libs in cups-config
-  patch -Np1 -i "${srcdir}"/cups-no-export-ssllibs.patch
-  # move /var/run -> /run for pid file
-  patch -Np1 -i "${srcdir}"/cups-1.6.2-statedir.patch
-
-  # bug fixes
-
-  # https://github.com/OpenPrinting/cups/issues/53
-  # use IP_FREEBIND, because cupsd cannot bind to not yet existing IP address
-  patch -Np1 -i "${srcdir}"/cups-freebind.patch
-
-  # 

[arch-commits] Commit in cups/trunk (PKGBUILD increase_timeout.patch)

2021-04-18 Thread Evangelos Foutras via arch-commits
Date: Sunday, April 18, 2021 @ 19:26:14
  Author: foutrelis
Revision: 412871

upgpkg: cups 1:2.3.3op2-3: use newer patch for usb timeout

Modified:
  cups/trunk/PKGBUILD
  cups/trunk/increase_timeout.patch

+
 PKGBUILD   |6 ++--
 increase_timeout.patch |   65 ---
 2 files changed, 37 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:26:49 UTC (rev 412870)
+++ PKGBUILD2021-04-18 19:26:14 UTC (rev 412871)
@@ -4,7 +4,7 @@
 pkgname=('libcups' 'cups')
 #_commit=be75d5d99a54c5f62608f7b9e98748d4c7045ec1 # master 2020-11-27
 pkgver=2.3.3op2
-pkgrel=2
+pkgrel=3
 epoch=1
 arch=('x86_64')
 license=('Apache' 'custom')
@@ -38,7 +38,7 @@
 '23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
 '3385047b9ac8a7b13aeb8f0ca55d15f793ce7283516db0155fe28a67923c592d'
 'd4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
-'2ca30beed3e67314dd44edfb2ada9a89301e4cb058b72e9d2704d130e5f57d1c')
+'72a04cb74c4b6240affbc32cf759562cca94efccc213210780b1e7b98f00dfd5')
 validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
 validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
 validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
@@ -68,7 +68,7 @@
   # FS#56818 - https://github.com/apple/cups/issues/5236
   patch -Np1 -i "${srcdir}"/guid.patch
 
-  # FS#70382 - https://github.com/OpenPrinting/cups/pull/160
+  # FS#70382 - https://github.com/OpenPrinting/cups/pull/174
   patch -Np1 -i "${srcdir}"/increase_timeout.patch
 
   # Rebuild configure script for not zipping man-pages.

Modified: increase_timeout.patch
===
--- increase_timeout.patch  2021-04-18 18:26:49 UTC (rev 412870)
+++ increase_timeout.patch  2021-04-18 19:26:14 UTC (rev 412871)
@@ -1,28 +1,16 @@
-From 1e495c5e8b14d55b9773f864bdf600f5c8ab5317 Mon Sep 17 00:00:00 2001
+From c37d71b1a31d26a4790166e2508822b18934a5c0 Mon Sep 17 00:00:00 2001
 From: Zdenek Dohnal 
-Date: Wed, 24 Mar 2021 13:22:11 +0100
-Subject: [PATCH] Some older USB devices (Samsung ML series) are not capable of
- sending
+Date: Tue, 13 Apr 2021 15:44:14 +0200
+Subject: [PATCH 1/2] backend/usb-libusb.c: Use 60s timeout for reading at
+ backchannel
 
-USB bulks within reading timeout (250ms) when `usb` backend is reading
-data from back-channel. The transaction ends with timeout, the whole
-job ends garbled and the device prints out 'INTERNAL ERROR - Incomplete
-Session by time out'.
-
-This behavior is a regression introduced by commit db53b49265ba, which
-simplified the read loop, but put a 250ms timeout instead of the
-original 60s in `libusb_bulk_transfer()`.
-
-The timeout used in this PR is tested by two Fedora users
-([Samsung ML-2240](https://bugzilla.redhat.com/show_bug.cgi?id=1942326),
-[Samsung ML-1665](https://bugzilla.redhat.com/show_bug.cgi?id=1935318))
-and works for them.
+Some older models malfunction if timeout is too short.
 ---
- backend/usb-libusb.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
+ backend/usb-libusb.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/backend/usb-libusb.c b/backend/usb-libusb.c
-index d6b0eb423..06e420fbd 100644
+index d6b0eb423..fbb0d9d89 100644
 --- a/backend/usb-libusb.c
 +++ b/backend/usb-libusb.c
 @@ -1704,7 +1704,7 @@ static void *read_thread(void *reference)
@@ -30,21 +18,36 @@
  g.printer->read_endp,
  readbuffer, rbytes,
 -, 250);
-+, 2000);
++, 6);
  if (readstatus == LIBUSB_SUCCESS && rbytes > 0)
  {
fprintf(stderr, "DEBUG: Read %d bytes of back-channel data...\n", 
(int)rbytes);
-@@ -1718,11 +1718,11 @@ static void *read_thread(void *reference)
-   fputs("DEBUG: Got USB return aborted during read.\n", stderr);
- 
-/*
--* Make sure this loop executes no more than once every 250 miliseconds...
-+* Make sure this loop executes no more than once every 2 seconds...
+
+From 4cb6f6806cdbe040d478b266a1d351b19341dd79 Mon Sep 17 00:00:00 2001
+From: Zdenek Dohnal 
+Date: Tue, 13 Apr 2021 15:47:37 +0200
+Subject: [PATCH 2/2] backend/usb-libusb.c: Revert enforcing read limits
+
+This commit reverts the change introduced by 2.2.12 [1] - its
+implementation caused a regression with Lexmark filters.
+
+[1]
+https://github.com/apple/cups/commit/35e927f83529cd9b4bc37bcd418c50e307fced35
+---
+ backend/usb-libusb.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/backend/usb-libusb.c b/backend/usb-libusb.c
+index fbb0d9d89..89b5182f7 100644
+--- a/backend/usb-libusb.c
 

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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 19:23:58
  Author: bgyorgy
Revision: 919944

archrelease: copy trunk to community-staging-x86_64

Added:
  librttopo/repos/community-staging-x86_64/PKGBUILD
(from rev 919943, librttopo/trunk/PKGBUILD)
Deleted:
  librttopo/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:23:51 UTC (rev 919943)
+++ PKGBUILD2021-04-18 19:23:58 UTC (rev 919944)
@@ -1,34 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Samuel Fernando Mesa 
-
-pkgname=librttopo
-pkgver=1.1.0
-pkgrel=2
-pkgdesc="RT Topology Library"
-arch=('x86_64')
-url="https://git.osgeo.org/gitea/rttopo/librttopo;
-license=('GPL2')
-depends=('geos' 'proj')
-makedepends=('cmake')
-source=(https://git.osgeo.org/gitea/rttopo/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('2e2fcabb48193a712a6c76ac9a9be2a53f82e32f91a2bc834d9f1b4fa9cd879f')
-
-check() {
-  cd "${srcdir}"/$pkgname
-
-  make check
-}
-
-build() {
-  cd "${srcdir}"/$pkgname
-  
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname
-  
-  make DESTDIR="${pkgdir}" install
-}

Copied: librttopo/repos/community-staging-x86_64/PKGBUILD (from rev 919943, 
librttopo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:23:58 UTC (rev 919944)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Samuel Fernando Mesa 
+
+pkgname=librttopo
+pkgver=1.1.0
+pkgrel=3
+pkgdesc="RT Topology Library"
+arch=('x86_64')
+url="https://git.osgeo.org/gitea/rttopo/librttopo;
+license=('GPL2')
+depends=('geos')
+source=(https://git.osgeo.org/gitea/rttopo/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('2e2fcabb48193a712a6c76ac9a9be2a53f82e32f91a2bc834d9f1b4fa9cd879f')
+
+prepare() {
+  cd "${srcdir}"/$pkgname
+  
+  ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}"/$pkgname
+  
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname
+  
+  make DESTDIR="${pkgdir}" install
+}


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 19:23:51
  Author: bgyorgy
Revision: 919943

upgpkg: librttopo 1.1.0-3: Remove unused proj dependency

Modified:
  librttopo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:20:58 UTC (rev 919942)
+++ PKGBUILD2021-04-18 19:23:51 UTC (rev 919943)
@@ -3,26 +3,24 @@
 
 pkgname=librttopo
 pkgver=1.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="RT Topology Library"
 arch=('x86_64')
 url="https://git.osgeo.org/gitea/rttopo/librttopo;
 license=('GPL2')
-depends=('geos' 'proj')
-makedepends=('cmake')
+depends=('geos')
 
source=(https://git.osgeo.org/gitea/rttopo/$pkgname/archive/$pkgname-$pkgver.tar.gz)
 sha256sums=('2e2fcabb48193a712a6c76ac9a9be2a53f82e32f91a2bc834d9f1b4fa9cd879f')
 
-check() {
+prepare() {
   cd "${srcdir}"/$pkgname
-
-  make check
+  
+  ./autogen.sh
 }
 
 build() {
   cd "${srcdir}"/$pkgname
   
-  ./autogen.sh
   ./configure --prefix=/usr
   make
 }


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

2021-04-18 Thread Alexander Rødseth via arch-commits
Date: Sunday, April 18, 2021 @ 19:20:58
  Author: arodseth
Revision: 919942

archrelease: copy trunk to community-x86_64

Added:
  grim/repos/community-x86_64/PKGBUILD
(from rev 919941, grim/trunk/PKGBUILD)
Deleted:
  grim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:20:53 UTC (rev 919941)
+++ PKGBUILD2021-04-18 19:20:58 UTC (rev 919942)
@@ -1,25 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: emersion 
-
-pkgname=grim
-pkgver=1.3.1
-pkgrel=2
-pkgdesc='Screenshot utility for Wayland'
-arch=(x86_64)
-url='https://github.com/emersion/grim'
-license=(MIT)
-depends=(cairo libjpeg-turbo wayland)
-makedepends=(fish git meson ninja pango scdoc wayland-protocols)
-source=("git+$url#commit=fe8993533ed245c468b5122d7394154066d02c86") # tag: 
v1.3.1
-sha256sums=('SKIP')
-
-build() {
-  arch-meson build $pkgname
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 $pkgname/LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: grim/repos/community-x86_64/PKGBUILD (from rev 919941, 
grim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:20:58 UTC (rev 919942)
@@ -0,0 +1,25 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: emersion 
+
+pkgname=grim
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='Screenshot utility for Wayland'
+arch=(x86_64)
+url='https://github.com/emersion/grim'
+license=(MIT)
+depends=(cairo libjpeg-turbo wayland)
+makedepends=(fish git meson ninja pango scdoc wayland-protocols)
+source=("git+$url#commit=c2efce7ffcfb70df5ea197f729da83be79d54f34") # tag: 
v1.3.2
+sha256sums=('SKIP')
+
+build() {
+  arch-meson build $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 $pkgname/LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-04-18 Thread Alexander Rødseth via arch-commits
Date: Sunday, April 18, 2021 @ 19:20:53
  Author: arodseth
Revision: 919941

upgpkg: grim 1.3.2-1

Modified:
  grim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:16:40 UTC (rev 919940)
+++ PKGBUILD2021-04-18 19:20:53 UTC (rev 919941)
@@ -2,8 +2,8 @@
 # Contributor: emersion 
 
 pkgname=grim
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.2
+pkgrel=1
 pkgdesc='Screenshot utility for Wayland'
 arch=(x86_64)
 url='https://github.com/emersion/grim'
@@ -10,7 +10,7 @@
 license=(MIT)
 depends=(cairo libjpeg-turbo wayland)
 makedepends=(fish git meson ninja pango scdoc wayland-protocols)
-source=("git+$url#commit=fe8993533ed245c468b5122d7394154066d02c86") # tag: 
v1.3.1
+source=("git+$url#commit=c2efce7ffcfb70df5ea197f729da83be79d54f34") # tag: 
v1.3.2
 sha256sums=('SKIP')
 
 build() {


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

2021-04-18 Thread Christian Hesse via arch-commits
Date: Sunday, April 18, 2021 @ 19:16:40
  Author: eworm
Revision: 919940

update bundled gdal

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:05:23 UTC (rev 919939)
+++ PKGBUILD2021-04-18 19:16:40 UTC (rev 919940)
@@ -9,7 +9,7 @@
 pkgrel=3
 _mysql_version=${pkgver}
 _connector_version=${pkgver}
-_gdal_version=3.2.1
+_gdal_version=3.2.2
 _boost_version=1.73.0
 _antlr4_version=4.9.2
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
@@ -37,7 +37,7 @@
 'SKIP'
 '9af06495a6a080fed62da70978f1cb0c66f058edd5ea9eda9345a64bf8ec688f'
 'SKIP'
-'6c588b58fcb63ff3f288eb9f02d76791c0955ba9210d98c3abd879c770ae28ea'
+'a7e1e414e5c405af48982bf4724a3da64a05770254f2ce8affb5f58a7604ca57'
 '4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402'
 'cdf687f23bc6e8d52dbee9fa02b23d755e80f88476f0fc2e7c4c71cdfed3792f'
 '2d0f6dcf38f22e49ef7ab9de0230484f1ffac41b7ac40feaf5ef4538ae2f7a18'


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 19:05:23
  Author: jelle
Revision: 919939

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 19:05:15 UTC (rev 919938)
+++ PKGBUILD2021-04-18 19:05:23 UTC (rev 919939)
@@ -1,58 +0,0 @@
-# Maintainer: jelle van der Waa 
-# Contributor: Felix Kaiser 
-
-pkgbase=python-mock
-pkgname=(python2-mock python-mock)
-pkgver=3.0.5
-pkgrel=5
-pkgdesc='Mocking and Patching Library for Testing'
-url='http://www.voidspace.org.uk/python/mock/'
-makedepends=('python2' 'python' 'python-pbr' 'python2-pbr')
-checkdepends=('python2-funcsigs')
-license=('BSD')
-arch=('any')
-source=(mock-$pkgver.tar.gz::https://github.com/testing-cabal/mock/archive/$pkgver.tar.gz)
-sha512sums=('9ab4f0c794f5701ba1367d982cf79a5662d4233753d12ed9c88ae20282db1f44be73f84c4d9f6d03ff64926b8c1b6d0c9a79b2a4724a3eb36c247ffd4ab03e2d')
-
-prepare() {
-  cd "$srcdir/mock-$pkgver"
-  # use unittest instead of unittest2 as they are the same on recent python*
-  sed -i 's/unittest2/unittest/g' mock/tests/*.py
-
-  cd "$srcdir"
-  cp -rf "mock-$pkgver" "mock2-$pkgver"
-}
-
-build() {
-  cd "$srcdir/mock-$pkgver"
-  python3 setup.py build
-
-  cd "$srcdir/mock2-$pkgver"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/mock-$pkgver"
-  echo 'python tests'
-  python -m unittest discover
-
-  cd "$srcdir/mock2-$pkgver"
-  echo 'python2 tests'
-  # Remove Python 3 only test
-  rm mock/tests/testhelpers_py3.py
-  python2 -m unittest discover
-}
-
-package_python-mock() {
-depends=('python' 'python-six' 'python-pbr')
-  cd "$srcdir/mock-$pkgver"
-  python3 setup.py install --optimize=1 --root="$pkgdir"
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-mock() {
-depends=('python2' 'python2-six' 'python2-pbr' 'python2-funcsigs') # 
Backported Py > 3.3 functionality
-  cd "$srcdir/mock2-$pkgver"
-  python2 setup.py install --optimize=1 --root="$pkgdir"
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-mock/repos/community-any/PKGBUILD (from rev 919938, 
python-mock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 19:05:23 UTC (rev 919939)
@@ -0,0 +1,59 @@
+# Maintainer: jelle van der Waa 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-mock
+pkgname=(python2-mock python-mock)
+pkgver=3.0.5
+pkgrel=6
+pkgdesc='Mocking and Patching Library for Testing'
+url='http://www.voidspace.org.uk/python/mock/'
+makedepends=('python2' 'python' 'python-pbr' 'python2-pbr')
+checkdepends=('python2-funcsigs')
+license=('BSD')
+arch=('any')
+source=(mock-$pkgver.tar.gz::https://github.com/testing-cabal/mock/archive/$pkgver.tar.gz)
+sha512sums=('9ab4f0c794f5701ba1367d982cf79a5662d4233753d12ed9c88ae20282db1f44be73f84c4d9f6d03ff64926b8c1b6d0c9a79b2a4724a3eb36c247ffd4ab03e2d')
+
+prepare() {
+  cd "$srcdir/mock-$pkgver"
+  # use unittest instead of unittest2 as they are the same on recent python*
+  sed -i 's/unittest2/unittest/g' mock/tests/*.py
+
+  cd "$srcdir"
+  cp -rf "mock-$pkgver" "mock2-$pkgver"
+}
+
+build() {
+  export PYTHONHASHSEED=0
+  cd "$srcdir/mock-$pkgver"
+  python3 setup.py build
+
+  cd "$srcdir/mock2-$pkgver"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/mock-$pkgver"
+  echo 'python tests'
+  python -m unittest discover
+
+  cd "$srcdir/mock2-$pkgver"
+  echo 'python2 tests'
+  # Remove Python 3 only test
+  rm mock/tests/testhelpers_py3.py
+  python2 -m unittest discover
+}
+
+package_python-mock() {
+depends=('python' 'python-six' 'python-pbr')
+  cd "$srcdir/mock-$pkgver"
+  python3 setup.py install --optimize=1 --root="$pkgdir"
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-mock() {
+depends=('python2' 'python2-six' 'python2-pbr' 'python2-funcsigs') # 
Backported Py > 3.3 functionality
+  cd "$srcdir/mock2-$pkgver"
+  python2 setup.py install --optimize=1 --root="$pkgdir"
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 19:05:15
  Author: jelle
Revision: 919938

upgpkg: python-mock 3.0.5-6

Modified:
  python-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 19:03:48 UTC (rev 919937)
+++ PKGBUILD2021-04-18 19:05:15 UTC (rev 919938)
@@ -4,7 +4,7 @@
 pkgbase=python-mock
 pkgname=(python2-mock python-mock)
 pkgver=3.0.5
-pkgrel=5
+pkgrel=6
 pkgdesc='Mocking and Patching Library for Testing'
 url='http://www.voidspace.org.uk/python/mock/'
 makedepends=('python2' 'python' 'python-pbr' 'python2-pbr')
@@ -24,6 +24,7 @@
 }
 
 build() {
+  export PYTHONHASHSEED=0
   cd "$srcdir/mock-$pkgver"
   python3 setup.py build
 


[arch-commits] Commit in gdal/trunk (PKGBUILD poppler-20.08.0.patch)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 19:03:40
  Author: bgyorgy
Revision: 919936

upgpkg: gdal 3.2.2-1: Update to new version (soname changed)

Modified:
  gdal/trunk/PKGBUILD
Deleted:
  gdal/trunk/poppler-20.08.0.patch

---+
 PKGBUILD  |   17 ++---
 poppler-20.08.0.patch |   42 --
 2 files changed, 6 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:56:40 UTC (rev 919935)
+++ PKGBUILD2021-04-18 19:03:40 UTC (rev 919936)
@@ -4,8 +4,8 @@
 
 pkgbase=gdal
 pkgname=('gdal' 'python-gdal')
-pkgver=3.0.4
-pkgrel=23
+pkgver=3.2.2
+pkgrel=1
 pkgdesc="A translator library for raster geospatial data formats"
 arch=('x86_64')
 url="http://www.gdal.org/;
@@ -12,7 +12,7 @@
 license=('custom')
 depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 
'libspatialite' 'libtiff' 'netcdf'
  'openjpeg2' 'poppler' 'cfitsio' 'sqlite' 'mariadb-libs' 
'postgresql-libs' 'xerces-c' 'json-c')
-makedepends=('perl' 'swig' 'chrpath' 'doxygen' 'python-numpy' 'boost')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen' 'python-breathe' 'python-numpy' 
'python-sphinx' 'boost')
 optdepends=('postgresql: postgresql database support'
 'mariadb: mariadb database support'
 'perl: perl binding support')
@@ -19,10 +19,8 @@
 options=('!emptydirs')
 changelog=$pkgbase.changelog
 
source=(https://download.osgeo.org/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz
-poppler-20.08.0.patch
 gdal-perl-vendor.patch)
-sha256sums=('5569a4daa1abcbba47a9d535172fc335194d9214fdb96cd0f139bb57329ae277'
-'dc8ccbc9a672a8489a1660fa66804d74c3015c47b44e2d41e17f8609249279df'
+sha256sums=('a7e1e414e5c405af48982bf4724a3da64a05770254f2ce8affb5f58a7604ca57'
 '2103b98f2f15954f042d5620658b30d703125927bde2e5eb671c5facb6c2f5ed')
 
 prepare() {
@@ -31,9 +29,6 @@
 # Fix mandir
   sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure
 
-# Fix build with poppler 20.08.0
-  patch -Np2 -i "${srcdir}"/poppler-20.08.0.patch
-
 # Fix Perl bindings installation path
   patch -Np0 -i "${srcdir}"/gdal-perl-vendor.patch
 }
@@ -53,7 +48,7 @@
   make man
 
   cd "${srcdir}"/$pkgbase-$pkgver/swig/python
-  python3 setup.py build
+  python setup.py build
 }
 
 package_gdal () {
@@ -80,7 +75,7 @@
   optdepends=()
 
   cd "${srcdir}"/$pkgbase-$pkgver/swig/python
-  python3 setup.py install --root="$pkgdir" --optimize=1
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm755 -t "${pkgdir}"/usr/bin scripts/*.py
 
   install -dm755 "${pkgdir}"/usr/share/licenses

Deleted: poppler-20.08.0.patch
===
--- poppler-20.08.0.patch   2021-04-18 18:56:40 UTC (rev 919935)
+++ poppler-20.08.0.patch   2021-04-18 19:03:40 UTC (rev 919936)
@@ -1,42 +0,0 @@
-From 93e85e58b20eef678ac669083042d95f8586c2d6 Mon Sep 17 00:00:00 2001
-From: Even Rouault 
-Date: Mon, 3 Aug 2020 14:52:25 +0200
-Subject: [PATCH] Unix build: fix detection of minor version number of Poppler
- with the new YY.MM.X numbering scheme (fixes #2823) (#2825)
-
-Authored-by: @chris2553

- gdal/configure| 4 ++--
- gdal/configure.ac | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/gdal/configure b/gdal/configure
-index 4dab50a48ba..e4cc4ada347 100755
 a/gdal/configure
-+++ b/gdal/configure
-@@ -40695,8 +40695,8 @@ $as_echo "yes" >&6; }
- fi
- if test "$POPPLER_VERSION" != ""; then
- HAVE_POPPLER=yes
--POPPLER_MAJOR_VERSION=`expr $POPPLER_VERSION : '\([0-9]*\)'`
--POPPLER_MINOR_VERSION=`expr $POPPLER_VERSION : '[0-9]*\.\([0-9]*\)'`
-+POPPLER_MAJOR_VERSION=`echo $POPPLER_VERSION | cut -d'.' -f1`
-+POPPLER_MINOR_VERSION=`echo $POPPLER_VERSION | cut -d'.' -f2 | sed -e 
's/^0//'`
- POPPLER_CFLAGS=`echo $POPPLER_CFLAGS $POPPLER_CFLAGS | sed 
"s/include\/poppler/include/"`
- fi
- else
-diff --git a/gdal/configure.ac b/gdal/configure.ac
-index 126ddb5ba42..f9893f844bd 100644
 a/gdal/configure.ac
-+++ b/gdal/configure.ac
-@@ -4945,8 +4945,8 @@ if test "$with_poppler" != "no" -a "$with_poppler" != 
""; then
- [POPPLER_VERSION=`$PKG_CONFIG --modversion poppler`], 
[POPPLER_VERSION=])
- if test "$POPPLER_VERSION" != ""; then
- HAVE_POPPLER=yes
--POPPLER_MAJOR_VERSION=`expr $POPPLER_VERSION : '\([[0-9]]*\)'`
--POPPLER_MINOR_VERSION=`expr $POPPLER_VERSION : 
'[[0-9]]*\.\([[0-9]]*\)'`
-+POPPLER_MAJOR_VERSION=`echo $POPPLER_VERSION | cut -d'.' -f1`
-+POPPLER_MINOR_VERSION=`echo $POPPLER_VERSION | cut -d'.' -f2 | sed -e 
's/^0//'`
- POPPLER_CFLAGS=`echo $POPPLER_CFLAGS $POPPLER_CFLAGS | sed 
"s/include\/poppler/include/"`
- fi
- else


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 19:03:48
  Author: bgyorgy
Revision: 919937

archrelease: copy trunk to community-staging-x86_64

Added:
  gdal/repos/community-staging-x86_64/
  gdal/repos/community-staging-x86_64/PKGBUILD
(from rev 919936, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch
(from rev 919936, gdal/trunk/gdal-perl-vendor.patch)
  gdal/repos/community-staging-x86_64/gdal.changelog
(from rev 919936, gdal/trunk/gdal.changelog)

+
 PKGBUILD   |   83 
 gdal-perl-vendor.patch |   18 +++
 gdal.changelog |  120 +++
 3 files changed, 221 insertions(+)

Copied: gdal/repos/community-staging-x86_64/PKGBUILD (from rev 919936, 
gdal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-04-18 19:03:48 UTC (rev 919937)
@@ -0,0 +1,83 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgbase=gdal
+pkgname=('gdal' 'python-gdal')
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="A translator library for raster geospatial data formats"
+arch=('x86_64')
+url="http://www.gdal.org/;
+license=('custom')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 
'libspatialite' 'libtiff' 'netcdf'
+ 'openjpeg2' 'poppler' 'cfitsio' 'sqlite' 'mariadb-libs' 
'postgresql-libs' 'xerces-c' 'json-c')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen' 'python-breathe' 'python-numpy' 
'python-sphinx' 'boost')
+optdepends=('postgresql: postgresql database support'
+'mariadb: mariadb database support'
+'perl: perl binding support')
+options=('!emptydirs')
+changelog=$pkgbase.changelog
+source=(https://download.osgeo.org/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz
+gdal-perl-vendor.patch)
+sha256sums=('a7e1e414e5c405af48982bf4724a3da64a05770254f2ce8affb5f58a7604ca57'
+'2103b98f2f15954f042d5620658b30d703125927bde2e5eb671c5facb6c2f5ed')
+
+prepare() {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+# Fix mandir
+  sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure
+
+# Fix Perl bindings installation path
+  patch -Np0 -i "${srcdir}"/gdal-perl-vendor.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+  ./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 
--with-geotiff \
+  --with-mysql --with-curl --with-hdf5 --with-perl --with-geos \
+  --with-png --with-poppler --with-spatialite --with-openjpeg
+
+# workaround for bug #13646
+#   sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
+#   sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
+
+  make
+  make man
+
+  cd "${srcdir}"/$pkgbase-$pkgver/swig/python
+  python setup.py build
+}
+
+package_gdal () {
+  cd "${srcdir}"/$pkgbase-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install-man
+
+# install license
+  install -Dm644 LICENSE.TXT "${pkgdir}"/usr/share/licenses/$pkgbase/LICENSE
+
+# Remove RPATH
+  eval local $(perl -V:vendorarch)
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OSR/OSR.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OGR/OGR.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/GDAL.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/Const/Const.so
+  chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GNM/GNM.so
+}
+
+package_python-gdal () {
+  pkgdesc="Python bindings for GDAL"
+  depends=("gdal=$pkgver" 'python-numpy')
+  optdepends=()
+
+  cd "${srcdir}"/$pkgbase-$pkgver/swig/python
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm755 -t "${pkgdir}"/usr/bin scripts/*.py
+
+  install -dm755 "${pkgdir}"/usr/share/licenses
+  ln -s $pkgbase "${pkgdir}"/usr/share/licenses/$pkgname
+}

Copied: gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch (from rev 
919936, gdal/trunk/gdal-perl-vendor.patch)
===
--- community-staging-x86_64/gdal-perl-vendor.patch 
(rev 0)
+++ community-staging-x86_64/gdal-perl-vendor.patch 2021-04-18 19:03:48 UTC 
(rev 919937)
@@ -0,0 +1,18 @@
+Description: pass INSTALLDIRS=vendor to Makefile.PL to get stuff into the 
right place
+Origin: vendor
+Forwarded: not-needed
+Author: gregor herrmann 
+
+--- swig/perl/Makefile.orig2018-12-14 22:34:20.0 +0100
 swig/perl/Makefile 2018-12-25 17:52:06.053358428 +0100
+@@ -10 +10 @@
+-  perl Makefile.PL INSTALL_BASE=$(INST_PREFIX)
++  perl Makefile.PL INSTALLDIRS=vendor
+ 
+ test: build
+   $(MAKE) -f Makefile_Geo__GDAL test
+--- swig/perl/GNUmakefile.orig 2018-12-14 22:34:20.0 +0100
 swig/perl/GNUmakefile  2018-12-25 

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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 18:56:40
  Author: bgyorgy
Revision: 919935

archrelease: copy trunk to community-staging-x86_64

Added:
  libgeotiff/repos/community-staging-x86_64/
  libgeotiff/repos/community-staging-x86_64/PKGBUILD
(from rev 919934, libgeotiff/trunk/PKGBUILD)
  libgeotiff/repos/community-staging-x86_64/libgeotiff.changelog
(from rev 919934, libgeotiff/trunk/libgeotiff.changelog)

--+
 PKGBUILD |   31 +++
 libgeotiff.changelog |   25 +
 2 files changed, 56 insertions(+)

Copied: libgeotiff/repos/community-staging-x86_64/PKGBUILD (from rev 919934, 
libgeotiff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-04-18 18:56:40 UTC (rev 919935)
@@ -0,0 +1,31 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brad Fanella 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=libgeotiff
+pkgver=1.6.0
+pkgrel=3
+pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
+arch=('x86_64')
+url="https://github.com/OSGeo/libgeotiff;
+license=('custom')
+depends=('libtiff' 'proj' 'libjpeg-turbo')
+changelog=$pkgname.changelog
+source=(https://github.com/OSGeo/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('9311017e5284cffb86f2c7b7a9df1fb5ebcdc61c30468fb2e6bca36e4272ebca')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/libgeotiff/LICENSE
+}

Copied: libgeotiff/repos/community-staging-x86_64/libgeotiff.changelog (from 
rev 919934, libgeotiff/trunk/libgeotiff.changelog)
===
--- community-staging-x86_64/libgeotiff.changelog   
(rev 0)
+++ community-staging-x86_64/libgeotiff.changelog   2021-04-18 18:56:40 UTC 
(rev 919935)
@@ -0,0 +1,25 @@
+2020-07-06 Jaroslav Lichtblau 
+   * libgeotiff 1.6.0-1
+
+2019-06-16 Jaroslav Lichtblau 
+   * libgeotiff 1.5.1-1
+
+2018-12-18 Jaroslav Lichtblau 
+   * libgeotiff 1.4.3-1
+
+2018-05-16 Jaroslav Lichtblau 
+   * libgeotiff 1.4.2-2
+   * proj 5.0.1 soname rebuild
+
+2016-09-14 Jaroslav Lichtblau 
+   * libgeotiff 1.4.2-1
+   * proj 4.9.3 soname rebuild
+
+2015-03-12 Jaroslav Lichtblau 
+   * libgeotiff 1.4.1-2 proj rebuild
+
+2015-01-22 Jaroslav Lichtblau 
+   * libgeotiff 1.4.1-1
+
+2012-10-28 Jaroslav Lichtblau 
+   * libgeotiff 1.4.0-1


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 18:56:33
  Author: bgyorgy
Revision: 919934

upgpkg: libgeotiff 1.6.0-3: Rebuild for proj 8

Modified:
  libgeotiff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:48:53 UTC (rev 919933)
+++ PKGBUILD2021-04-18 18:56:33 UTC (rev 919934)
@@ -5,7 +5,7 @@
 
 pkgname=libgeotiff
 pkgver=1.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
 arch=('x86_64')
 url="https://github.com/OSGeo/libgeotiff;


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:48:53
  Author: jelle
Revision: 919933

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:48:44 UTC (rev 919932)
+++ PKGBUILD2021-04-18 18:48:53 UTC (rev 919933)
@@ -1,51 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: lilydjwg 
-
-pkgbase=python-dateutil
-pkgname=('python-dateutil' 'python2-dateutil')
-pkgver=2.8.1
-pkgrel=5
-pkgdesc="Provides powerful extensions to the standard datetime module"
-arch=('any')
-license=('BSD' 'Apache')
-url="https://github.com/dateutil/dateutil;
-makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-six' 
'python2-six')
-checkdepends=('python-pytest' 'python-freezegun' 'python-hypothesis')
-source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha256sums=('73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c'
-'SKIP')
-validpgpkeys=('6B49ACBADCF6BD1CA20667ABCD54FCE3D964BEFB') # Paul Ganssle 

-
-prepare() {
-  cd "$srcdir"
-
-  cp -r  python-dateutil-$pkgver python2-dateutil-$pkgver
-}
-
-build() {
-  cd "$srcdir"/python-dateutil-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python2-dateutil-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-dateutil-$pkgver
-  pytest -W ignore::pytest.PytestUnknownMarkWarning # 
https://github.com/pytest-dev/pytest/issues/5678
-}
-
-package_python-dateutil() {
-depends=('python-six')
-  cd "$srcdir"/python-dateutil-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-dateutil() {
-depends=('python2-six')
-  cd "$srcdir"/python2-dateutil-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-dateutil/repos/community-any/PKGBUILD (from rev 919932, 
python-dateutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:48:53 UTC (rev 919933)
@@ -0,0 +1,52 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: lilydjwg 
+
+pkgbase=python-dateutil
+pkgname=('python-dateutil' 'python2-dateutil')
+pkgver=2.8.1
+pkgrel=6
+pkgdesc="Provides powerful extensions to the standard datetime module"
+arch=('any')
+license=('BSD' 'Apache')
+url="https://github.com/dateutil/dateutil;
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-six' 
'python2-six')
+checkdepends=('python-pytest' 'python-freezegun' 'python-hypothesis')
+source=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+sha256sums=('73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c'
+'SKIP')
+validpgpkeys=('6B49ACBADCF6BD1CA20667ABCD54FCE3D964BEFB') # Paul Ganssle 

+
+prepare() {
+  cd "$srcdir"
+
+  cp -r  python-dateutil-$pkgver python2-dateutil-$pkgver
+}
+
+build() {
+  cd "$srcdir"/python-dateutil-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py build
+
+  cd "$srcdir"/python2-dateutil-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-dateutil-$pkgver
+  pytest -W ignore::pytest.PytestUnknownMarkWarning # 
https://github.com/pytest-dev/pytest/issues/5678
+}
+
+package_python-dateutil() {
+depends=('python-six')
+  cd "$srcdir"/python-dateutil-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-dateutil() {
+depends=('python2-six')
+  cd "$srcdir"/python2-dateutil-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:48:44
  Author: jelle
Revision: 919932

upgpkg: python-dateutil 2.8.1-6

Modified:
  python-dateutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:11:41 UTC (rev 919931)
+++ PKGBUILD2021-04-18 18:48:44 UTC (rev 919932)
@@ -5,7 +5,7 @@
 pkgbase=python-dateutil
 pkgname=('python-dateutil' 'python2-dateutil')
 pkgver=2.8.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Provides powerful extensions to the standard datetime module"
 arch=('any')
 license=('BSD' 'Apache')
@@ -25,6 +25,7 @@
 
 build() {
   cd "$srcdir"/python-dateutil-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py build
 
   cd "$srcdir"/python2-dateutil-$pkgver


[arch-commits] Commit in prometheus-memcached-exporter/repos/extra-x86_64 (6 files)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:26:49
  Author: jelle
Revision: 412870

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-memcached-exporter/repos/extra-x86_64/PKGBUILD
(from rev 412869, prometheus-memcached-exporter/trunk/PKGBUILD)
  
prometheus-memcached-exporter/repos/extra-x86_64/prometheus-memcached-exporter.conf
(from rev 412869, 
prometheus-memcached-exporter/trunk/prometheus-memcached-exporter.conf)
  
prometheus-memcached-exporter/repos/extra-x86_64/prometheus-memcached-exporter.service
(from rev 412869, 
prometheus-memcached-exporter/trunk/prometheus-memcached-exporter.service)
Deleted:
  prometheus-memcached-exporter/repos/extra-x86_64/PKGBUILD
  
prometheus-memcached-exporter/repos/extra-x86_64/prometheus-memcached-exporter.conf
  
prometheus-memcached-exporter/repos/extra-x86_64/prometheus-memcached-exporter.service

---+
 PKGBUILD  |  108 
 prometheus-memcached-exporter.conf|4 -
 prometheus-memcached-exporter.service |   56 
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:26:42 UTC (rev 412869)
+++ PKGBUILD2021-04-18 18:26:49 UTC (rev 412870)
@@ -1,54 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=prometheus-memcached-exporter
-pkgver=0.8.0
-pkgrel=2
-pkgdesc="Exports metrics from memcached servers for consumption by Prometheus"
-arch=('x86_64')
-url="https://github.com/prometheus/memcached_exporter;
-license=('Apache')
-depends=(glibc memcached)
-makedepends=(go)
-backup=('etc/conf.d/prometheus-memcached-exporter')
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/memcached_exporter/archive/v${pkgver}.tar.gz
 prometheus-memcached-exporter.service
-prometheus-memcached-exporter.conf)
-sha512sums=('dac99c425f51ea939ec2e96ed7e51fe4b657f3e5b3ce0cb650d2614994ac6565b9bd31e4ededaac8394b35ac4a7977d11e2d9155a04df1f78a8e97c86ae26bdc'
-
'13ae8e9cc8445cffab1e51f000fbe5ca0dd2a30532f8303957dc376c8891552e719681e49ffd8a83c4cd01aca897031770c9d96ed92276ff85c2e32c4fa999ee'
-
'bc92af08207bee78a48cc764f038d6f5175b0051873f1238d90531f81d9b403085ec7ac62dfe934ee804794426c6bed4c309b374a418c9f7a4dbdbb157d58c23')
-
-check() {
-  cd memcached_exporter-$pkgver
-  memcached_pids=()
-  memcached -p 11211 -U 11211 >/dev/null& memcached_pids+=($!)
-
-  local ret=0
-  go test ./... || ret=1
-
-  kill ${memcached_pids[@]}
-
-  return $ret
-}
-
-build() {
-  cd memcached_exporter-$pkgver
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\" \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
--o memcached_exporter cmd/memcached_exporter/main.go
-}
-
-package() {
-  install -Dm644 prometheus-memcached-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-memcached-exporter.service
-  install -Dm644 prometheus-memcached-exporter.conf 
"${pkgdir}"/etc/conf.d/prometheus-memcached-exporter
-
-  cd memcached_exporter-$pkgver
-  install -Dm755 memcached_exporter 
"$pkgdir"/usr/bin/prometheus-memcached-exporter
-}

Copied: prometheus-memcached-exporter/repos/extra-x86_64/PKGBUILD (from rev 
412869, prometheus-memcached-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:26:49 UTC (rev 412870)
@@ -0,0 +1,54 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=prometheus-memcached-exporter
+pkgver=0.8.0
+pkgrel=3
+pkgdesc="Exports metrics from memcached servers for consumption by Prometheus"
+arch=('x86_64')
+url="https://github.com/prometheus/memcached_exporter;
+license=('Apache')
+depends=(glibc memcached)
+makedepends=(go)
+backup=('etc/conf.d/prometheus-memcached-exporter')
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/memcached_exporter/archive/v${pkgver}.tar.gz
 prometheus-memcached-exporter.service
+prometheus-memcached-exporter.conf)
+sha512sums=('dac99c425f51ea939ec2e96ed7e51fe4b657f3e5b3ce0cb650d2614994ac6565b9bd31e4ededaac8394b35ac4a7977d11e2d9155a04df1f78a8e97c86ae26bdc'
+
'13ae8e9cc8445cffab1e51f000fbe5ca0dd2a30532f8303957dc376c8891552e719681e49ffd8a83c4cd01aca897031770c9d96ed92276ff85c2e32c4fa999ee'
+
'bc92af08207bee78a48cc764f038d6f5175b0051873f1238d90531f81d9b403085ec7ac62dfe934ee804794426c6bed4c309b374a418c9f7a4dbdbb157d58c23')
+
+check() {
+  cd memcached_exporter-$pkgver
+  memcached_pids=()
+  

[arch-commits] Commit in prometheus-memcached-exporter/trunk (PKGBUILD)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:26:42
  Author: jelle
Revision: 412869

Make package reproducible by fixing builddate

Modified:
  prometheus-memcached-exporter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:24:10 UTC (rev 412868)
+++ PKGBUILD2021-04-18 18:26:42 UTC (rev 412869)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus-memcached-exporter
 pkgver=0.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Exports metrics from memcached servers for consumption by Prometheus"
 arch=('x86_64')
 url="https://github.com/prometheus/memcached_exporter;
@@ -41,7 +41,7 @@
   -X github.com/prometheus/common/version.Revision=$pkgver \
   -X github.com/prometheus/common/version.Branch=tarball \
   -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
-d=@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
 -o memcached_exporter cmd/memcached_exporter/main.go
 }
 


[arch-commits] Commit in prometheus-node-exporter/repos/extra-x86_64 (8 files)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:24:10
  Author: jelle
Revision: 412868

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
(from rev 412867, prometheus-node-exporter/trunk/PKGBUILD)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
(from rev 412867, 
prometheus-node-exporter/trunk/prometheus-node-exporter.conf)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
(from rev 412867, 
prometheus-node-exporter/trunk/prometheus-node-exporter.service)
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers
(from rev 412867, 
prometheus-node-exporter/trunk/prometheus-node-exporter.sysusers)
Deleted:
  prometheus-node-exporter/repos/extra-x86_64/PKGBUILD
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.conf
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.service
  prometheus-node-exporter/repos/extra-x86_64/prometheus-node-exporter.sysusers

---+
 PKGBUILD  |  120 ++--
 prometheus-node-exporter.conf |2 
 prometheus-node-exporter.service  |   36 +-
 prometheus-node-exporter.sysusers |2 
 4 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:24:00 UTC (rev 412867)
+++ PKGBUILD2021-04-18 18:24:10 UTC (rev 412868)
@@ -1,60 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=prometheus-node-exporter
-pkgver=1.1.2
-pkgrel=1
-
-pkgdesc='Exporter for machine metrics'
-url='https://github.com/prometheus/node_exporter'
-arch=('x86_64')
-license=('Apache')
-
-depends=('glibc')
-makedepends=('go' 'git')
-
-backup=('etc/conf.d/prometheus-node-exporter')
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
-prometheus-node-exporter.conf
-prometheus-node-exporter.service
-prometheus-node-exporter.sysusers)
-
-sha256sums=('edb40c783bd5767f174b916c89a768496ccae0f74811ba1d03c57c32cd250bbd'
-'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
-'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
-'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
-
-build() {
-  cd node_exporter-$pkgver
-
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-check() {
-  cd node_exporter-$pkgver
-
-  make collector/fixtures/sys/.unpacked
-  go test ./...
-  ./end-to-end-test.sh
-}
-
-package () {
-  install -Dm644 prometheus-node-exporter.conf 
"$pkgdir"/etc/conf.d/prometheus-node-exporter
-  install -Dm644 prometheus-node-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-node-exporter.service
-  install -Dm644 prometheus-node-exporter.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus-node-exporter.conf
-
-  cd node_exporter-$pkgver
-
-  install -Dm755 node_exporter "$pkgdir"/usr/bin/prometheus-node-exporter
-}

Copied: prometheus-node-exporter/repos/extra-x86_64/PKGBUILD (from rev 412867, 
prometheus-node-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:24:10 UTC (rev 412868)
@@ -0,0 +1,60 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus-node-exporter
+pkgver=1.1.2
+pkgrel=2
+
+pkgdesc='Exporter for machine metrics'
+url='https://github.com/prometheus/node_exporter'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go' 'git')
+
+backup=('etc/conf.d/prometheus-node-exporter')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/prometheus/node_exporter/archive/v$pkgver.tar.gz;
+prometheus-node-exporter.conf
+prometheus-node-exporter.service
+prometheus-node-exporter.sysusers)
+
+sha256sums=('edb40c783bd5767f174b916c89a768496ccae0f74811ba1d03c57c32cd250bbd'
+'ce93e2b95bfc86a8a046e2f9175408e1cbffa784fd3b65dd141fde70b5bb2585'
+'457e305760323f941d20248e2ca5817ae4a8b5586f79a2331b968bf3baa66c5b'
+'c7fd0b1793dfe7a354a28e978d3c79e7195eaf43376b9eece37e996fe0772c5c')
+
+build() {
+  cd node_exporter-$pkgver
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+  -X 

[arch-commits] Commit in prometheus-node-exporter/trunk (PKGBUILD)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:24:00
  Author: jelle
Revision: 412867

Make builddate configurable

Modified:
  prometheus-node-exporter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:23:31 UTC (rev 412866)
+++ PKGBUILD2021-04-18 18:24:00 UTC (rev 412867)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus-node-exporter
 pkgver=1.1.2
-pkgrel=1
+pkgrel=2
 
 pkgdesc='Exporter for machine metrics'
 url='https://github.com/prometheus/node_exporter'
@@ -37,7 +37,7 @@
   -X github.com/prometheus/common/version.Revision=$pkgver \
   -X github.com/prometheus/common/version.Branch=tarball \
   -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
-d=@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
 .
 }
 


[arch-commits] Commit in prometheus-blackbox-exporter/repos/extra-x86_64 (4 files)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:23:31
  Author: jelle
Revision: 412866

archrelease: copy trunk to extra-x86_64

Added:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
(from rev 412865, prometheus-blackbox-exporter/trunk/PKGBUILD)
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service
(from rev 412865, 
prometheus-blackbox-exporter/trunk/prometheus-blackbox-exporter.service)
Deleted:
  prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD
  
prometheus-blackbox-exporter/repos/extra-x86_64/prometheus-blackbox-exporter.service

--+
 PKGBUILD |   82 -
 prometheus-blackbox-exporter.service |   56 +++---
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:23:22 UTC (rev 412865)
+++ PKGBUILD2021-04-18 18:23:31 UTC (rev 412866)
@@ -1,41 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=prometheus-blackbox-exporter
-pkgver=0.18.0
-pkgrel=2
-pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
-arch=('x86_64')
-url="https://github.com/prometheus/blackbox_exporter;
-license=('Apache')
-depends=(glibc)
-makedepends=(go git)
-source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
-sha512sums=('6579d190c755515d4e5f05e2b6ed4d811010874dba1e16eaf6052e97c655f87aec33550f22ff173d2f3bbc77d091fb4fccad059f62ca6fbb33a372d48ae692f0'
-
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
-
-check() {
-  cd blackbox_exporter-$pkgver
-  go test ./...
-}
-
-build() {
-  cd blackbox_exporter-$pkgver
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags ${LDFLAGS} \
-  -X github.com/prometheus/common/version.Version=$pkgver \
-  -X github.com/prometheus/common/version.Revision=$pkgver \
-  -X github.com/prometheus/common/version.Branch=tarball \
-  -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
-.
-}
-
-package() {
-  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
-  cd blackbox_exporter-$pkgver
-  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
-}

Copied: prometheus-blackbox-exporter/repos/extra-x86_64/PKGBUILD (from rev 
412865, prometheus-blackbox-exporter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:23:31 UTC (rev 412866)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=prometheus-blackbox-exporter
+pkgver=0.18.0
+pkgrel=3
+pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
+arch=('x86_64')
+url="https://github.com/prometheus/blackbox_exporter;
+license=('Apache')
+depends=(glibc)
+makedepends=(go git)
+source=($pkgname-$pkgver.tar.gz::https://github.com/prometheus/blackbox_exporter/archive/v${pkgver}.tar.gz
 prometheus-blackbox-exporter.service)
+sha512sums=('6579d190c755515d4e5f05e2b6ed4d811010874dba1e16eaf6052e97c655f87aec33550f22ff173d2f3bbc77d091fb4fccad059f62ca6fbb33a372d48ae692f0'
+
'b32d7772cbd8a2fc741d827a7f221d1302ab0c5833c095e5b6dc6befa46a1b12c22e91252fd0e4cf07c9c309d6315c6e1d020508a3b891ab9f7f7d690eae')
+
+check() {
+  cd blackbox_exporter-$pkgver
+  go test ./...
+}
+
+build() {
+  cd blackbox_exporter-$pkgver
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+  -X github.com/prometheus/common/version.Version=$pkgver \
+  -X github.com/prometheus/common/version.Revision=$pkgver \
+  -X github.com/prometheus/common/version.Branch=tarball \
+  -X github.com/prometheus/common/version.BuildUser=someone@builder \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
--date=@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+.
+}
+
+package() {
+  install -Dm644 prometheus-blackbox-exporter.service 
"$pkgdir"/usr/lib/systemd/system/prometheus-blackbox-exporter.service
+  cd blackbox_exporter-$pkgver
+  install -Dm755 blackbox_exporter 
"$pkgdir"/usr/bin/prometheus-blackbox-exporter
+}

Deleted: prometheus-blackbox-exporter.service
===
--- prometheus-blackbox-exporter.service2021-04-18 18:23:22 UTC (rev 
412865)
+++ prometheus-blackbox-exporter.service2021-04-18 18:23:31 UTC (rev 
412866)
@@ -1,28 +0,0 @@

[arch-commits] Commit in prometheus-blackbox-exporter/trunk (PKGBUILD)

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 18:23:22
  Author: jelle
Revision: 412865

Make the package reproducible by passing the correct date

Modified:
  prometheus-blackbox-exporter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 15:52:18 UTC (rev 412864)
+++ PKGBUILD2021-04-18 18:23:22 UTC (rev 412865)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus-blackbox-exporter
 pkgver=0.18.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Allows blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and 
ICMP"
 arch=('x86_64')
 url="https://github.com/prometheus/blackbox_exporter;
@@ -30,7 +30,7 @@
   -X github.com/prometheus/common/version.Revision=$pkgver \
   -X github.com/prometheus/common/version.Branch=tarball \
   -X github.com/prometheus/common/version.BuildUser=someone@builder \
-  -X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
+  -X github.com/prometheus/common/version.BuildDate=$(date 
--date=@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)" \
 .
 }
 


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 18:11:41
  Author: bgyorgy
Revision: 919931

Remove libtiff from makedepends, it was a missing dependency in proj

Modified:
  libspatialite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:09:45 UTC (rev 919930)
+++ PKGBUILD2021-04-18 18:11:41 UTC (rev 919931)
@@ -10,7 +10,6 @@
 url="https://www.gaia-gis.it/fossil/libspatialite;
 license=('MPL' 'GPL' 'LGPL')
 depends=('geos' 'libfreexl' 'librttopo' 'libxml2' 'minizip' 'proj' 'sqlite')
-makedepends=('libtiff')
 source=(https://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz)
 sha256sums=('eecbc94311c78012d059ebc0fae86ea5ef6eecb13303e6e82b3753c1b3409e98')
 


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 18:09:45
  Author: bgyorgy
Revision: 919930

archrelease: copy trunk to community-staging-x86_64

Added:
  proj/repos/community-staging-x86_64/PKGBUILD
(from rev 919929, proj/trunk/PKGBUILD)
  proj/repos/community-staging-x86_64/proj.changelog
(from rev 919929, proj/trunk/proj.changelog)
Deleted:
  proj/repos/community-staging-x86_64/PKGBUILD
  proj/repos/community-staging-x86_64/proj.changelog

+
 PKGBUILD   |   81 --
 proj.changelog |  106 +++
 2 files changed, 93 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:09:37 UTC (rev 919929)
+++ PKGBUILD2021-04-18 18:09:45 UTC (rev 919930)
@@ -1,41 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Mateusz Herych 
-# Contributor: dibblethewrecker 
-# Contributor: William Rea 
-
-pkgname=proj
-pkgver=8.0.0
-pkgrel=1
-pkgdesc='Cartographic Projections library'
-arch=('x86_64')
-url="https://trac.osgeo.org/proj/;
-license=('MIT')
-makedepends=('autoconf' 'sqlite' 'libtiff')
-changelog=$pkgname.changelog
-source=(https://github.com/OSGeo/PROJ/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
-https://download.osgeo.org/proj/proj-data-1.5.tar.gz)
-sha256sums=('aa5d4b934450149a350aed7e5fbac880e2f7d3fa2f251c26cb64228f96a2109e'
-'868ac0ef68fa5767208004bcad68a6097b0b52edaa96f3f43adccae33809423a')
-
-check(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make check
-}
-
-build(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  autoreconf -if
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-#   bsdtar --no-same-owner -xzvf "${srcdir}"/proj-data-1.5.tar.gz -C 
"${pkgdir}"/usr/share/$pkgname
-}

Copied: proj/repos/community-staging-x86_64/PKGBUILD (from rev 919929, 
proj/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:09:45 UTC (rev 919930)
@@ -0,0 +1,40 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Mateusz Herych 
+# Contributor: dibblethewrecker 
+# Contributor: William Rea 
+
+pkgname=proj
+pkgver=8.0.0
+pkgrel=2
+pkgdesc='Cartographic Projections library'
+arch=('x86_64')
+url="https://trac.osgeo.org/proj/;
+license=('MIT')
+depends=('curl' 'libtiff' 'sqlite')
+changelog=$pkgname.changelog
+source=(https://github.com/OSGeo/PROJ/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
+https://download.osgeo.org/proj/proj-data-1.5.tar.gz)
+sha256sums=('aa5d4b934450149a350aed7e5fbac880e2f7d3fa2f251c26cb64228f96a2109e'
+'868ac0ef68fa5767208004bcad68a6097b0b52edaa96f3f43adccae33809423a')
+
+build(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+check(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+#   bsdtar --no-same-owner -xzvf "${srcdir}"/proj-data-1.5.tar.gz -C 
"${pkgdir}"/usr/share/$pkgname
+}

Deleted: proj.changelog
===
--- proj.changelog  2021-04-18 18:09:37 UTC (rev 919929)
+++ proj.changelog  2021-04-18 18:09:45 UTC (rev 919930)
@@ -1,53 +0,0 @@
-2021-04-05 Jaroslav Lichtblau 
-   * proj 8.0.0-1
-
-2020-07-06 Jaroslav Lichtblau 
-   * proj 6.3.2-1
-
-2020-02-13 Jaroslav Lichtblau 
-   * proj 6.3.1-1
-
-2020-01-25 Jaroslav Lichtblau 
-   * proj 6.3.0-1
-
-2019-11-22 Jaroslav Lichtblau 
-   * proj 6.2.1-1
-
-2019-09-18 Jaroslav Lichtblau 
-   * proj 6.2.0-1
-
-2019-06-16 Jaroslav Lichtblau 
-   * proj 6.1.0-1
-
-2018-09-30 Jaroslav Lichtblau 
-   * proj 5.2.0-1
-
-2018-08-14 Jaroslav Lichtblau 
-   * proj 5.1.0-1
-
-2018-05-16 Jaroslav Lichtblau 
-   * proj 5.0.1-1
-
-2016-09-14 Jaroslav Lichtblau 
-   * proj 4.9.3-1
-
-2016-01-09 Jaroslav Lichtblau 
-   * proj 4.9.2-1
-
-2015-03-12 Jaroslav Lichtblau 
-   * proj 4.9.1-1
-
-2013-12-25 Jaroslav Lichtblau 
-   * proj 4.8.0-3 static library removed
-
-2013-02-24 Jaroslav Lichtblau 
-   * proj 4.8.0-2 chenyx06a.zip file location fix
-
-2012-05-05 Jaroslav Lichtblau 
-   * proj 4.8.0-1
-
-2012-03-11 Jaroslav Lichtblau 
-   * proj 4.7.0-2 adopted, package signed, FS#27119 fixed
-
-2007-06-27 tardo 
-   * Fixed license dir | license -> licenses

Copied: proj/repos/community-staging-x86_64/proj.changelog (from rev 919929, 
proj/trunk/proj.changelog)
===
--- proj.changelog  (rev 0)
+++ proj.changelog  

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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 18:09:37
  Author: bgyorgy
Revision: 919929

upgpkg: proj 8.0.0-2: Add curl, libtiff and sqlite to dependencies

Modified:
  proj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 18:04:20 UTC (rev 919928)
+++ PKGBUILD2021-04-18 18:09:37 UTC (rev 919929)
@@ -5,12 +5,12 @@
 
 pkgname=proj
 pkgver=8.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Cartographic Projections library'
 arch=('x86_64')
 url="https://trac.osgeo.org/proj/;
 license=('MIT')
-makedepends=('autoconf' 'sqlite' 'libtiff')
+depends=('curl' 'libtiff' 'sqlite')
 changelog=$pkgname.changelog
 
source=(https://github.com/OSGeo/PROJ/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
 https://download.osgeo.org/proj/proj-data-1.5.tar.gz)
@@ -17,20 +17,19 @@
 sha256sums=('aa5d4b934450149a350aed7e5fbac880e2f7d3fa2f251c26cb64228f96a2109e'
 '868ac0ef68fa5767208004bcad68a6097b0b52edaa96f3f43adccae33809423a')
 
-check(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make check
-}
-
 build(){
   cd "${srcdir}"/$pkgname-$pkgver
 
-  autoreconf -if
   ./configure --prefix=/usr
   make
 }
 
+check(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make check
+}
+
 package() {
   cd "${srcdir}"/$pkgname-$pkgver
 


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 18:04:20
  Author: arojas
Revision: 919928

archrelease: copy trunk to community-x86_64

Added:
  strawberry/repos/community-x86_64/PKGBUILD
(from rev 919927, strawberry/trunk/PKGBUILD)
Deleted:
  strawberry/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 18:04:09 UTC (rev 919927)
+++ PKGBUILD2021-04-18 18:04:20 UTC (rev 919928)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
-
-pkgname=strawberry
-pkgver=0.9.2
-pkgrel=1
-pkgdesc="A music player aimed at audio enthusiasts and music collectors"
-arch=(x86_64)
-url="https://www.strawbs.org/;
-license=(GPL3)
-depends=(qt6-base chromaprint protobuf gst-plugins-base gst-plugins-good 
udisks2 libcdio libgpod libmtp fftw)
-makedepends=(cmake boost qt6-tools)
-optdepends=('gst-libav: additional codecs'
-'gst-plugins-bad: additional codecs'
-'gst-plugins-ugly: additional codecs')
-source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('e9bf7dd862364dd7debf5651d8e44acd74380be11c27e7c9b1e33203eeacb266')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_WITH_QT6=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: strawberry/repos/community-x86_64/PKGBUILD (from rev 919927, 
strawberry/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 18:04:20 UTC (rev 919928)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+
+pkgname=strawberry
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="A music player aimed at audio enthusiasts and music collectors"
+arch=(x86_64)
+url="https://www.strawbs.org/;
+license=(GPL3)
+depends=(qt6-base chromaprint protobuf gst-plugins-base gst-plugins-good 
udisks2 libcdio libgpod libmtp fftw)
+makedepends=(cmake boost qt6-tools)
+optdepends=('gst-libav: additional codecs'
+'gst-plugins-bad: additional codecs'
+'gst-plugins-ugly: additional codecs')
+source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('0fe9c38c4d1e2f10c1130dbd87ea6e740bef729fe78820a84ffabe524a80c83e')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_WITH_QT6=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 18:04:09
  Author: arojas
Revision: 919927

Update to 0.9.3

Modified:
  strawberry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 17:37:35 UTC (rev 919926)
+++ PKGBUILD2021-04-18 18:04:09 UTC (rev 919927)
@@ -2,7 +2,7 @@
 # Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
 
 pkgname=strawberry
-pkgver=0.9.2
+pkgver=0.9.3
 pkgrel=1
 pkgdesc="A music player aimed at audio enthusiasts and music collectors"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 'gst-plugins-bad: additional codecs'
 'gst-plugins-ugly: additional codecs')
 
source=("https://github.com/jonaski/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('e9bf7dd862364dd7debf5651d8e44acd74380be11c27e7c9b1e33203eeacb266')
+sha256sums=('0fe9c38c4d1e2f10c1130dbd87ea6e740bef729fe78820a84ffabe524a80c83e')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 17:37:35
  Author: bgyorgy
Revision: 919926

archrelease: copy trunk to community-staging-x86_64

Added:
  libspatialite/repos/community-staging-x86_64/
  libspatialite/repos/community-staging-x86_64/PKGBUILD
(from rev 919925, libspatialite/trunk/PKGBUILD)

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

Copied: libspatialite/repos/community-staging-x86_64/PKGBUILD (from rev 919925, 
libspatialite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-04-18 17:37:35 UTC (rev 919926)
@@ -0,0 +1,26 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brian Galey 
+# Contributor: Pietro Zambelli 
+
+pkgname=libspatialite
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="SQLite extension to support spatial data types and operations"
+arch=('x86_64')
+url="https://www.gaia-gis.it/fossil/libspatialite;
+license=('MPL' 'GPL' 'LGPL')
+depends=('geos' 'libfreexl' 'librttopo' 'libxml2' 'minizip' 'proj' 'sqlite')
+makedepends=('libtiff')
+source=(https://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz)
+sha256sums=('eecbc94311c78012d059ebc0fae86ea5ef6eecb13303e6e82b3753c1b3409e98')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 17:37:29
  Author: bgyorgy
Revision: 919925

upgpkg: libspatialite 5.0.1-1: Update to new version

Modified:
  libspatialite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 17:22:13 UTC (rev 919924)
+++ PKGBUILD2021-04-18 17:37:29 UTC (rev 919925)
@@ -3,25 +3,24 @@
 # Contributor: Pietro Zambelli 
 
 pkgname=libspatialite
-pkgver=4.3.0.a
-pkgrel=6
+pkgver=5.0.1
+pkgrel=1
 pkgdesc="SQLite extension to support spatial data types and operations"
 arch=('x86_64')
 url="https://www.gaia-gis.it/fossil/libspatialite;
 license=('MPL' 'GPL' 'LGPL')
-depends=('geos' 'libfreexl' 'libxml2' 'proj' 'sqlite')
-source=(https://www.gaia-gis.it/gaia-sins/$pkgname-4.3.0a.tar.gz)
-sha256sums=('88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499')
+depends=('geos' 'libfreexl' 'librttopo' 'libxml2' 'minizip' 'proj' 'sqlite')
+makedepends=('libtiff')
+source=(https://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz)
+sha256sums=('eecbc94311c78012d059ebc0fae86ea5ef6eecb13303e6e82b3753c1b3409e98')
 
 build() {
-  cd "${srcdir}"/$pkgname-4.3.0a
-
-  ./configure --prefix=/usr --enable-libxml2 CFLAGS="$CFLAGS 
-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1"
+  cd "${srcdir}"/$pkgname-$pkgver
+  ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}"/$pkgname-4.3.0a
-
+  cd "${srcdir}"/$pkgname-$pkgver
   make DESTDIR="${pkgdir}" install
 }


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

2021-04-18 Thread Maxime Gauduin via arch-commits
Date: Sunday, April 18, 2021 @ 17:22:13
  Author: alucryd
Revision: 919924

archrelease: copy trunk to community-x86_64

Added:
  rgbds/repos/community-x86_64/PKGBUILD
(from rev 919923, rgbds/trunk/PKGBUILD)
Deleted:
  rgbds/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 17:22:08 UTC (rev 919923)
+++ PKGBUILD2021-04-18 17:22:13 UTC (rev 919924)
@@ -1,43 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Vaporeon 
-
-pkgname=rgbds
-pkgver=0.4.2
-pkgrel=2
-pkgdesc='Rednex GameBoy Development System'
-arch=(x86_64)
-url=https://github.com/rednex/rgbds/
-license=(MIT)
-depends=(
-  glibc
-  libpng
-)
-makedepends=(
-  cmake
-  git
-  ninja
-)
-_tag=ede982b50a68a6253ffbab17dc4184710b08032f
-source=(git+https://github.com/rednex/rgbds.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
-  cd rgbds
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cmake -S rgbds -B build -G Ninja \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm 644 rgbds/LICENSE -t "${pkgdir}"/usr/share/licenses/rgbds/
-  find rgbds/contrib/zsh_compl -type f -exec install -Dm 644 {} -t 
"${pkgdir}"/usr/share/zsh/site-functions/ \;
-}
-
-# vim: ts=2 sw=2 et:

Copied: rgbds/repos/community-x86_64/PKGBUILD (from rev 919923, 
rgbds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 17:22:13 UTC (rev 919924)
@@ -0,0 +1,43 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Vaporeon 
+
+pkgname=rgbds
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Rednex GameBoy Development System'
+arch=(x86_64)
+url=https://github.com/rednex/rgbds/
+license=(MIT)
+depends=(
+  glibc
+  libpng
+)
+makedepends=(
+  cmake
+  git
+  ninja
+)
+_tag=432c769d604a481bdb96e9f13c53289ed5028b0b
+source=(git+https://github.com/rednex/rgbds.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd rgbds
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cmake -S rgbds -B build -G Ninja \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 rgbds/LICENSE -t "${pkgdir}"/usr/share/licenses/rgbds/
+  find rgbds/contrib/zsh_compl -type f -exec install -Dm 644 {} -t 
"${pkgdir}"/usr/share/zsh/site-functions/ \;
+}
+
+# vim: ts=2 sw=2 et:


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

2021-04-18 Thread Maxime Gauduin via arch-commits
Date: Sunday, April 18, 2021 @ 17:22:08
  Author: alucryd
Revision: 919923

upgpkg: rgbds 0.5.0-1

Modified:
  rgbds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 15:47:11 UTC (rev 919922)
+++ PKGBUILD2021-04-18 17:22:08 UTC (rev 919923)
@@ -2,8 +2,8 @@
 # Contributor: Vaporeon 
 
 pkgname=rgbds
-pkgver=0.4.2
-pkgrel=2
+pkgver=0.5.0
+pkgrel=1
 pkgdesc='Rednex GameBoy Development System'
 arch=(x86_64)
 url=https://github.com/rednex/rgbds/
@@ -17,7 +17,7 @@
   git
   ninja
 )
-_tag=ede982b50a68a6253ffbab17dc4184710b08032f
+_tag=432c769d604a481bdb96e9f13c53289ed5028b0b
 source=(git+https://github.com/rednex/rgbds.git#tag=${_tag})
 sha256sums=(SKIP)
 


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 15:52:18
  Author: jelle
Revision: 412864

archrelease: copy trunk to extra-x86_64

Added:
  prometheus/repos/extra-x86_64/PKGBUILD
(from rev 412863, prometheus/trunk/PKGBUILD)
  prometheus/repos/extra-x86_64/prometheus.conf
(from rev 412863, prometheus/trunk/prometheus.conf)
  prometheus/repos/extra-x86_64/prometheus.service
(from rev 412863, prometheus/trunk/prometheus.service)
  prometheus/repos/extra-x86_64/prometheus.sysusers
(from rev 412863, prometheus/trunk/prometheus.sysusers)
Deleted:
  prometheus/repos/extra-x86_64/PKGBUILD
  prometheus/repos/extra-x86_64/prometheus.conf
  prometheus/repos/extra-x86_64/prometheus.service
  prometheus/repos/extra-x86_64/prometheus.sysusers

-+
 PKGBUILD|  158 +-
 prometheus.conf |2 
 prometheus.service  |   60 +-
 prometheus.sysusers |2 
 4 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 15:52:08 UTC (rev 412863)
+++ PKGBUILD2021-04-18 15:52:18 UTC (rev 412864)
@@ -1,79 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=prometheus
-pkgver=2.26.0
-pkgrel=1
-
-pkgdesc='An open-source systems monitoring and alerting toolkit'
-url='https://prometheus.io'
-arch=('x86_64')
-license=('Apache')
-
-depends=('glibc')
-makedepends=('go' 'git' 'bzr' 'yarn')
-
-backup=('etc/prometheus/prometheus.yml' 'etc/conf.d/prometheus')
-
-source=("prometheus-v$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz;
-prometheus.service
-prometheus.sysusers
-prometheus.conf)
-
-sha256sums=('d2f5187946198e8d0ef820fb4f7e360d3d1b40587c70f6b7061a3a73b6ce90ab'
-'f358986865bd3d06dc47a265aeb3b5ef64aa644e831f07731c2fc7af64d9e98f'
-'2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f'
-'6d32deb125381cbebac11b6953a7d9a65eb7e50f209dc1e22c63facf678a3070')
-
-build() {
-  cd prometheus-$pkgver
-
-  LDFLAGS="-extldflags $LDFLAGS \
--X github.com/prometheus/common/version.Version=$pkgver \
--X github.com/prometheus/common/version.Revision=$pkgver \
--X github.com/prometheus/common/version.Branch=tarball \
--X github.com/prometheus/common/version.BuildUser=someone@builder \
--X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
-
-  make assets
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external $LDFLAGS" \
-./cmd/prometheus
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external $LDFLAGS" \
-./cmd/promtool
-}
-
-check() {
-  cd prometheus-$pkgver
-
-  go test -short ./...
-}
-
-package() {
-  install -Dm644 prometheus.service 
"$pkgdir"/usr/lib/systemd/system/prometheus.service
-  install -Dm644 prometheus.sysusers 
"$pkgdir"/usr/lib/sysusers.d/prometheus.conf
-  install -Dm644 prometheus.conf "${pkgdir}"/etc/conf.d/prometheus
-
-  cd prometheus-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin prometheus promtool
-  install -Dm640 -g210 -t "$pkgdir"/etc/prometheus 
documentation/examples/prometheus.yml
-  install -dm755 -o210 -g210 "$pkgdir"/var/lib/prometheus
-
-  # Web
-  install -dm755 "$pkgdir"/usr/share/prometheus/web/ui
-  cp -R web/ui/{static,templates} "$pkgdir"/usr/share/prometheus/web/ui/
-
-  # Examples
-  install -Dm644 -t "$pkgdir"/usr/share/doc/prometheus/examples 
documentation/examples/prometheus*.yml
-  cp -R consoles console_libraries "$pkgdir"/usr/share/doc/prometheus/examples
-
-}

Copied: prometheus/repos/extra-x86_64/PKGBUILD (from rev 412863, 
prometheus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 15:52:18 UTC (rev 412864)
@@ -0,0 +1,79 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=prometheus
+pkgver=2.26.0
+pkgrel=2
+
+pkgdesc='An open-source systems monitoring and alerting toolkit'
+url='https://prometheus.io'
+arch=('x86_64')
+license=('Apache')
+
+depends=('glibc')
+makedepends=('go' 'git' 'bzr' 'yarn')
+
+backup=('etc/prometheus/prometheus.yml' 'etc/conf.d/prometheus')
+
+source=("prometheus-v$pkgver.tar.gz::https://github.com/prometheus/prometheus/archive/v$pkgver.tar.gz;
+prometheus.service
+prometheus.sysusers
+prometheus.conf)
+
+sha256sums=('d2f5187946198e8d0ef820fb4f7e360d3d1b40587c70f6b7061a3a73b6ce90ab'
+'f358986865bd3d06dc47a265aeb3b5ef64aa644e831f07731c2fc7af64d9e98f'
+'2747fabb4e56b808361eb7dd7acf9729ab8973d1ebe2f857dd56f6c71f71e45f'
+'6d32deb125381cbebac11b6953a7d9a65eb7e50f209dc1e22c63facf678a3070')
+
+build() {
+  cd prometheus-$pkgver
+
+  LDFLAGS="-extldflags $LDFLAGS \
+-X 

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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 15:52:08
  Author: jelle
Revision: 412863

Fix build date to make it reproducible

Modified:
  prometheus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 14:24:30 UTC (rev 412862)
+++ PKGBUILD2021-04-18 15:52:08 UTC (rev 412863)
@@ -2,7 +2,7 @@
 
 pkgname=prometheus
 pkgver=2.26.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc='An open-source systems monitoring and alerting toolkit'
 url='https://prometheus.io'
@@ -32,7 +32,7 @@
 -X github.com/prometheus/common/version.Revision=$pkgver \
 -X github.com/prometheus/common/version.Branch=tarball \
 -X github.com/prometheus/common/version.BuildUser=someone@builder \
--X github.com/prometheus/common/version.BuildDate=$(date 
-d@"$SOURCE_DATE_EPOCH" +%Y%m%d-%H:%M:%S)"
+-X github.com/prometheus/common/version.BuildDate=$(date -u 
'+%Y%m%d-%H:%M:%S' --date=@${SOURCE_DATE_EPOCH})"
 
   make assets
   go build \


[arch-commits] Commit in xdg-desktop-portal-wlr/trunk (PKGBUILD)

2021-04-18 Thread Maxim Baz via arch-commits
Date: Sunday, April 18, 2021 @ 15:47:08
  Author: maximbaz
Revision: 919921

upgpkg: xdg-desktop-portal-wlr 0.3.0-1

Modified:
  xdg-desktop-portal-wlr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 14:59:07 UTC (rev 919920)
+++ PKGBUILD2021-04-18 15:47:08 UTC (rev 919921)
@@ -3,7 +3,7 @@
 # Contributor: Stefan Tatschner 
 
 pkgname=xdg-desktop-portal-wlr
-pkgver=0.2.0
+pkgver=0.3.0
 pkgrel=1
 pkgdesc='xdg-desktop-portal backend for wlroots'
 url="https://github.com/emersion/xdg-desktop-portal-wlr;
@@ -10,12 +10,12 @@
 arch=('x86_64')
 license=('MIT')
 provides=('xdg-desktop-portal-impl')
-depends=('xdg-desktop-portal' 'pipewire')
-makedepends=('meson' 'wayland-protocols' 'wayland')
+depends=('xdg-desktop-portal' 'pipewire' 'iniparser')
+makedepends=('meson' 'wayland-protocols' 'wayland' 'scdoc')
 source=(
   
"${pkgname}-${pkgver}::https://github.com/emersion/xdg-desktop-portal-wlr/archive/v${pkgver}.tar.gz;
 )
-sha512sums=('9b01919b380510389710c005901810ac6fa00299f2b35a37fa949aab361438ab08c30fc95b88e1805dcea7e97ebe2d19111693f82eee545864077347d2659ca9')
+sha512sums=('2b01fab18296cb95cf659ff5a74ed6bf1482c033fdb274904bf2c3ea736dd3c8cb2e82f0662439a88f81ae86cc2fca2fbc3c1a9c72267ba126571973a7662e3d')
 
 build () {
cd "${pkgname}-${pkgver}"


[arch-commits] Commit in xdg-desktop-portal-wlr/repos/community-x86_64 (2 files)

2021-04-18 Thread Maxim Baz via arch-commits
Date: Sunday, April 18, 2021 @ 15:47:11
  Author: maximbaz
Revision: 919922

archrelease: copy trunk to community-x86_64

Added:
  xdg-desktop-portal-wlr/repos/community-x86_64/PKGBUILD
(from rev 919921, xdg-desktop-portal-wlr/trunk/PKGBUILD)
Deleted:
  xdg-desktop-portal-wlr/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 15:47:08 UTC (rev 919921)
+++ PKGBUILD2021-04-18 15:47:11 UTC (rev 919922)
@@ -1,31 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Stefan Tatschner 
-
-pkgname=xdg-desktop-portal-wlr
-pkgver=0.2.0
-pkgrel=1
-pkgdesc='xdg-desktop-portal backend for wlroots'
-url="https://github.com/emersion/xdg-desktop-portal-wlr;
-arch=('x86_64')
-license=('MIT')
-provides=('xdg-desktop-portal-impl')
-depends=('xdg-desktop-portal' 'pipewire')
-makedepends=('meson' 'wayland-protocols' 'wayland')
-source=(
-  
"${pkgname}-${pkgver}::https://github.com/emersion/xdg-desktop-portal-wlr/archive/v${pkgver}.tar.gz;
-)
-sha512sums=('9b01919b380510389710c005901810ac6fa00299f2b35a37fa949aab361438ab08c30fc95b88e1805dcea7e97ebe2d19111693f82eee545864077347d2659ca9')
-
-build () {
-   cd "${pkgname}-${pkgver}"
-   arch-meson -Dsd-bus-provider=libsystemd build
-   ninja -C build
-}
-
-package () {
-   cd "${pkgname}-${pkgver}"
-   DESTDIR="${pkgdir}" ninja -C build install
-   install -Dm644 -t "$pkgdir/usr/share/licenses/${pkgname}" LICENSE
-}
-

Copied: xdg-desktop-portal-wlr/repos/community-x86_64/PKGBUILD (from rev 
919921, xdg-desktop-portal-wlr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 15:47:11 UTC (rev 919922)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Stefan Tatschner 
+
+pkgname=xdg-desktop-portal-wlr
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='xdg-desktop-portal backend for wlroots'
+url="https://github.com/emersion/xdg-desktop-portal-wlr;
+arch=('x86_64')
+license=('MIT')
+provides=('xdg-desktop-portal-impl')
+depends=('xdg-desktop-portal' 'pipewire' 'iniparser')
+makedepends=('meson' 'wayland-protocols' 'wayland' 'scdoc')
+source=(
+  
"${pkgname}-${pkgver}::https://github.com/emersion/xdg-desktop-portal-wlr/archive/v${pkgver}.tar.gz;
+)
+sha512sums=('2b01fab18296cb95cf659ff5a74ed6bf1482c033fdb274904bf2c3ea736dd3c8cb2e82f0662439a88f81ae86cc2fca2fbc3c1a9c72267ba126571973a7662e3d')
+
+build () {
+   cd "${pkgname}-${pkgver}"
+   arch-meson -Dsd-bus-provider=libsystemd build
+   ninja -C build
+}
+
+package () {
+   cd "${pkgname}-${pkgver}"
+   DESTDIR="${pkgdir}" ninja -C build install
+   install -Dm644 -t "$pkgdir/usr/share/licenses/${pkgname}" LICENSE
+}
+


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 14:59:07
  Author: jelle
Revision: 919920

archrelease: copy trunk to community-x86_64

Added:
  openrct2/repos/community-x86_64/PKGBUILD
(from rev 919919, openrct2/trunk/PKGBUILD)
Deleted:
  openrct2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 14:58:59 UTC (rev 919919)
+++ PKGBUILD2021-04-18 14:59:07 UTC (rev 919920)
@@ -1,46 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Graham Edgecombe 
-
-pkgname=openrct2
-pkgver=0.3.3
-pkgrel=2
-pkgdesc='Open source re-implementation of Roller Coaster Tycoon 2 (requires 
full
- copy of the game)'
-arch=('x86_64')
-url='https://openrct2.io'
-license=('GPL3')
-depends=('hicolor-icon-theme' 'sdl2' 'curl' 'speexdsp' 'fontconfig'
- 'libpng' 'openssl' 'libzip' 'icu' 'duktape' 'benchmark')
-makedepends=('cmake' 'nlohmann-json')
-optdepends=('zenity: System dialog box support (GNOME/GTK)'
-'kdialog: System dialog box support (KDE)'
-'alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-source=($pkgname-$pkgver.tar.gz::https://github.com/OpenRCT2/OpenRCT2/archive/v$pkgver.tar.gz)
-sha256sums=('71f9d1ae8477e1e9881a6f9759bddac71346e8ba42238d22514ae3d872b54fd2')
-
-build() {
-  cd "$srcdir/OpenRCT2-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
--DSTATIC=off -DWITH_TESTS=on -DCMAKE_INSTALL_LIBDIR=/usr/lib ..
-  make all g2
-}
-
-check() {
-  cd "$srcdir/OpenRCT2-$pkgver"
-
-  mkdir -p build
-  make test
-}
-
-package() {
-  cd "$srcdir/OpenRCT2-$pkgver/build"
-
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir/usr/lib/libopenrct2.a"
-  rmdir "$pkgdir/usr/lib"
-}

Copied: openrct2/repos/community-x86_64/PKGBUILD (from rev 919919, 
openrct2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 14:59:07 UTC (rev 919920)
@@ -0,0 +1,46 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Graham Edgecombe 
+
+pkgname=openrct2
+pkgver=0.3.3
+pkgrel=3
+pkgdesc='Open source re-implementation of Roller Coaster Tycoon 2 (requires 
full
+ copy of the game)'
+arch=('x86_64')
+url='https://openrct2.io'
+license=('GPL3')
+depends=('hicolor-icon-theme' 'sdl2' 'curl' 'speexdsp' 'fontconfig'
+ 'libpng' 'openssl' 'libzip' 'icu' 'duktape' 'benchmark')
+makedepends=('cmake' 'nlohmann-json')
+optdepends=('zenity: System dialog box support (GNOME/GTK)'
+'kdialog: System dialog box support (KDE)'
+'alsa-lib: ALSA audio driver'
+'libpulse: PulseAudio audio driver')
+source=($pkgname-$pkgver.tar.gz::https://github.com/OpenRCT2/OpenRCT2/archive/v$pkgver.tar.gz)
+sha256sums=('71f9d1ae8477e1e9881a6f9759bddac71346e8ba42238d22514ae3d872b54fd2')
+
+build() {
+  cd "$srcdir/OpenRCT2-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
+-DSTATIC=off -DWITH_TESTS=on -DCMAKE_INSTALL_LIBDIR=/usr/lib ..
+  make all g2
+}
+
+check() {
+  cd "$srcdir/OpenRCT2-$pkgver"
+
+  mkdir -p build
+  make test
+}
+
+package() {
+  cd "$srcdir/OpenRCT2-$pkgver/build"
+
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir/usr/lib/libopenrct2.a"
+  rmdir "$pkgdir/usr/lib"
+}


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 14:58:59
  Author: jelle
Revision: 919919

Make openrct2 reproducible

Modified:
  openrct2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 14:41:55 UTC (rev 919918)
+++ PKGBUILD2021-04-18 14:58:59 UTC (rev 919919)
@@ -3,7 +3,7 @@
 
 pkgname=openrct2
 pkgver=0.3.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Open source re-implementation of Roller Coaster Tycoon 2 (requires 
full
  copy of the game)'
 arch=('x86_64')


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

2021-04-18 Thread Florian Pritz via arch-commits
Date: Sunday, April 18, 2021 @ 14:41:55
  Author: bluewind
Revision: 919918

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 14:41:52 UTC (rev 919917)
+++ PKGBUILD2021-04-18 14:41:55 UTC (rev 919918)
@@ -1,52 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: David McInnis 
-# Contributor:  jyantis 
-
-pkgname=python-internetarchive
-pkgver=2.0.1
-pkgrel=1
-pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
-arch=('any')
-url='https://github.com/jjjake/ia-wrapper'
-license=('AGPL3')
-depends=('python'
- 'python-six'
- 'python-yaml'
- 'python-requests'
- 'python-jsonpatch'
- 'python-docopt'
- 'python-jsonpointer'
- 'python-args'
- 'python-tqdm'
- 'python-schema'
-)
-makedepends=('python-setuptools')
-optdepends=('python-ujson: faster json parsing'
-'python-gevent: concurrent downloads'
-'cython: speedups')
-checkdepends=(python-responses
-  python-pytest
- )
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz;)
-sha256sums=('273174465110aa61c5b91b4383581ddf562634f608b5cc281d534ca732e74840')
-
-build() {
-  cd internetarchive-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd internetarchive-${pkgver}
-
-  python setup.py test
-}
-
-package() {
-  cd internetarchive-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-internetarchive/repos/community-any/PKGBUILD (from rev 919917, 
python-internetarchive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 14:41:55 UTC (rev 919918)
@@ -0,0 +1,52 @@
+# Maintainer: Florian Pritz 
+# Contributor: David McInnis 
+# Contributor:  jyantis 
+
+pkgname=python-internetarchive
+pkgver=2.0.2
+pkgrel=1
+pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
+arch=('any')
+url='https://github.com/jjjake/ia-wrapper'
+license=('AGPL3')
+depends=('python'
+ 'python-six'
+ 'python-yaml'
+ 'python-requests'
+ 'python-jsonpatch'
+ 'python-docopt'
+ 'python-jsonpointer'
+ 'python-args'
+ 'python-tqdm'
+ 'python-schema'
+)
+makedepends=('python-setuptools')
+optdepends=('python-ujson: faster json parsing'
+'python-gevent: concurrent downloads'
+'cython: speedups')
+checkdepends=(python-responses
+  python-pytest
+ )
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz;)
+sha256sums=('485e2d62f3d52dca41ecf8df7d7527974ae7c4cb7a7e34cdfd361c7d0a4f9337')
+
+build() {
+  cd internetarchive-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd internetarchive-${pkgver}
+
+  python setup.py test
+}
+
+package() {
+  cd internetarchive-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-04-18 Thread Florian Pritz via arch-commits
Date: Sunday, April 18, 2021 @ 14:41:52
  Author: bluewind
Revision: 919917

upgpkg: python-internetarchive 2.0.2-1: upstream update

Modified:
  python-internetarchive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 14:24:35 UTC (rev 919916)
+++ PKGBUILD2021-04-18 14:41:52 UTC (rev 919917)
@@ -3,7 +3,7 @@
 # Contributor:  jyantis 
 
 pkgname=python-internetarchive
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
 arch=('any')
@@ -28,7 +28,7 @@
   python-pytest
  )
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz;)
-sha256sums=('273174465110aa61c5b91b4383581ddf562634f608b5cc281d534ca732e74840')
+sha256sums=('485e2d62f3d52dca41ecf8df7d7527974ae7c4cb7a7e34cdfd361c7d0a4f9337')
 
 build() {
   cd internetarchive-${pkgver}


[arch-commits] Commit in gfeeds (3 files)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 14:24:35
  Author: bgyorgy
Revision: 919916

archrelease: copy trunk to community-any

Added:
  gfeeds/repos/
  gfeeds/repos/community-any/
  gfeeds/repos/community-any/PKGBUILD
(from rev 919915, gfeeds/trunk/PKGBUILD)

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

Copied: gfeeds/repos/community-any/PKGBUILD (from rev 919915, 
gfeeds/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-04-18 14:24:35 UTC (rev 919916)
@@ -0,0 +1,26 @@
+# Maintainer: Balló György 
+# Contributor: Gabriele Musco 
+
+pkgname=gfeeds
+pkgver=0.16.2
+pkgrel=3
+pkgdesc='RSS/Atom feed reader for GNOME'
+arch=('any')
+url='https://gfeeds.gabmus.org/'
+license=('GPL3')
+depends=('libhandy' 'python-beautifulsoup4' 'python-cssselect' 
'python-dateutil'
+ 'python-feedparser' 'python-gobject' 'python-html5lib' 
'python-listparser' 'python-lxml'
+ 'python-pillow' 'python-pygments' 'python-pytz' 
'python-readability-lxml'
+ 'python-requests' 'webkit2gtk')
+makedepends=('meson' 'gobject-introspection')
+source=("https://gitlab.gnome.org/World/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f061e89a1962a5ac544ea98239c2503af8da817ded0a5bfd8094ddf43e9dd00e')
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in spamassassin/repos/extra-x86_64 (18 files)

2021-04-18 Thread Florian Pritz via arch-commits
Date: Sunday, April 18, 2021 @ 14:24:30
  Author: bluewind
Revision: 412862

archrelease: copy trunk to extra-x86_64

Added:
  spamassassin/repos/extra-x86_64/PKGBUILD
(from rev 412861, spamassassin/trunk/PKGBUILD)
  spamassassin/repos/extra-x86_64/bug_828552-openssl-1.1.0.patch
(from rev 412861, spamassassin/trunk/bug_828552-openssl-1.1.0.patch)
  spamassassin/repos/extra-x86_64/disable-sslv3.patch
(from rev 412861, spamassassin/trunk/disable-sslv3.patch)
  spamassassin/repos/extra-x86_64/edb00a8d76a625bf03227ee2f6e915c9a0d90bad.patch
(from rev 412861, 
spamassassin/trunk/edb00a8d76a625bf03227ee2f6e915c9a0d90bad.patch)
  spamassassin/repos/extra-x86_64/net-dns-1.01-compat-uribl.patch
(from rev 412861, spamassassin/trunk/net-dns-1.01-compat-uribl.patch)
  spamassassin/repos/extra-x86_64/net-dns-1.01-compat.patch
(from rev 412861, spamassassin/trunk/net-dns-1.01-compat.patch)
  spamassassin/repos/extra-x86_64/spamassassin.install
(from rev 412861, spamassassin/trunk/spamassassin.install)
  spamassassin/repos/extra-x86_64/spamassassin.service
(from rev 412861, spamassassin/trunk/spamassassin.service)
  spamassassin/repos/extra-x86_64/spamassassin.tmpfiles.d
(from rev 412861, spamassassin/trunk/spamassassin.tmpfiles.d)
Deleted:
  spamassassin/repos/extra-x86_64/PKGBUILD
  spamassassin/repos/extra-x86_64/bug_828552-openssl-1.1.0.patch
  spamassassin/repos/extra-x86_64/disable-sslv3.patch
  spamassassin/repos/extra-x86_64/edb00a8d76a625bf03227ee2f6e915c9a0d90bad.patch
  spamassassin/repos/extra-x86_64/net-dns-1.01-compat-uribl.patch
  spamassassin/repos/extra-x86_64/net-dns-1.01-compat.patch
  spamassassin/repos/extra-x86_64/spamassassin.install
  spamassassin/repos/extra-x86_64/spamassassin.service
  spamassassin/repos/extra-x86_64/spamassassin.tmpfiles.d

+
 PKGBUILD   |  176 ++--
 bug_828552-openssl-1.1.0.patch |  906 +++
 disable-sslv3.patch|  552 +++---
 edb00a8d76a625bf03227ee2f6e915c9a0d90bad.patch |   72 -
 net-dns-1.01-compat-uribl.patch|   54 -
 net-dns-1.01-compat.patch  |   28 
 spamassassin.install   |   38 
 spamassassin.service   |   24 
 spamassassin.tmpfiles.d|2 
 9 files changed, 926 insertions(+), 926 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 14:24:22 UTC (rev 412861)
+++ PKGBUILD2021-04-18 14:24:30 UTC (rev 412862)
@@ -1,88 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Dale Blount 
-# Contributor: Manolis Tzanidakis
-pkgname=spamassassin
-pkgver=3.4.5
-pkgrel=1
-pkgdesc="A mail filter to identify spam."
-arch=('x86_64')
-license=('APACHE')
-url="https://spamassassin.apache.org;
-depends=('openssl' 'zlib' 're2c' 'perl-net-dns' 'perl-io-socket-ssl'
- 'perl-libwww' 'perl-mail-spf' 'perl-http-message' 'perl-net-http'
- 'perl-io-socket-inet6' 'perl-mail-dkim' 'perl-crypt-ssleay')
-makedepends=('razor' 'perl-dbi')
-optdepends=('razor: to identify collaborately-flagged spam'
-'make: to use sa-compile'
-'gcc: to use sa-compile')
-backup=('etc/mail/spamassassin/local.cf'
-'etc/mail/spamassassin/init.pre'
-'etc/mail/spamassassin/v310.pre'
-'etc/mail/spamassassin/v312.pre'
-'etc/mail/spamassassin/v320.pre'
-'etc/mail/spamassassin/v330.pre'
-'etc/mail/spamassassin/v340.pre'
-'etc/mail/spamassassin/v341.pre'
-'etc/mail/spamassassin/v342.pre'
-   'etc/mail/spamassassin/v343.pre')
-install="${pkgname}.install"
-source=("https://ftp.fau.de/apache/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz;
-
"https://www.apache.org/dist/${pkgname}/source/Mail-SpamAssassin-${pkgver}.tar.gz.asc;
-'spamassassin.tmpfiles.d'
-'spamassassin.service')
-validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
-sha512sums=('76323d8a5be1f5451375adc8b7989f183e72d0fa52848a1356c3b7fb3da9a9328fe9f91bcc941228c2cb91180ed49583a9a8bebf1f00caf7ad898251af3b9ba3'
-'SKIP'
-
'994ebb2b6c127521676f35879017112a33da53ad99431837d06973a9abfc4aa0434ea2c9b19073ff2cc877ebe3a5a7fe8525bc93222fd05956069ce73e5ae389'
-
'5ad6aa8d992375b0989413d36ff0485f792ac9211a47e6a2a7fa5c0b9eb353aa6efe6f55da3ff4480bdef24beb4fa456c64c5a5ce72e8ad6c93c171c969fd6ee')
-
-prepare() {
-  cd "${srcdir}/Mail-SpamAssassin-${pkgver}"
-
-  sed -i t/sa_compile.t \
- -e 's#^my $temp_binpath = $Config{sitebinexp};#my $temp_binpath = 
"/bin/site_perl/";#'
-}
-
-build() {
-  cd "${srcdir}/Mail-SpamAssassin-${pkgver}"
-
-  # install module in vendor directories.
-  export PERL_USE_UNSAFE_INC=1
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor \
-  CONTACT_ADDRESS=root@localhost ENABLE_SSL=yes 

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

2021-04-18 Thread Florian Pritz via arch-commits
Date: Sunday, April 18, 2021 @ 14:24:22
  Author: bluewind
Revision: 412861

upgpkg: spamassassin 3.4.6-1: upstream update

Modified:
  spamassassin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 08:45:16 UTC (rev 412860)
+++ PKGBUILD2021-04-18 14:24:22 UTC (rev 412861)
@@ -2,7 +2,7 @@
 # Contributor: Dale Blount 
 # Contributor: Manolis Tzanidakis
 pkgname=spamassassin
-pkgver=3.4.5
+pkgver=3.4.6
 pkgrel=1
 pkgdesc="A mail filter to identify spam."
 arch=('x86_64')
@@ -31,7 +31,7 @@
 'spamassassin.tmpfiles.d'
 'spamassassin.service')
 validpgpkeys=(D8099BC79E17D7E49BC21E31FDE52F40F7D39814)
-sha512sums=('76323d8a5be1f5451375adc8b7989f183e72d0fa52848a1356c3b7fb3da9a9328fe9f91bcc941228c2cb91180ed49583a9a8bebf1f00caf7ad898251af3b9ba3'
+sha512sums=('7910852f04463a7363a2fc3b70a35adadf5714552e57c5b8ca57beaa534ee18d9f06526cdbcf8bcd5781e5ca778f98d2f84ef2efd1872fa550cfe1689440364a'
 'SKIP'
 
'994ebb2b6c127521676f35879017112a33da53ad99431837d06973a9abfc4aa0434ea2c9b19073ff2cc877ebe3a5a7fe8525bc93222fd05956069ce73e5ae389'
 
'5ad6aa8d992375b0989413d36ff0485f792ac9211a47e6a2a7fa5c0b9eb353aa6efe6f55da3ff4480bdef24beb4fa456c64c5a5ce72e8ad6c93c171c969fd6ee')


[arch-commits] Commit in python-readability-lxml (3 files)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 14:22:24
  Author: bgyorgy
Revision: 919915

archrelease: copy trunk to community-any

Added:
  python-readability-lxml/repos/
  python-readability-lxml/repos/community-any/
  python-readability-lxml/repos/community-any/PKGBUILD
(from rev 919914, python-readability-lxml/trunk/PKGBUILD)

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

Copied: python-readability-lxml/repos/community-any/PKGBUILD (from rev 919914, 
python-readability-lxml/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-04-18 14:22:24 UTC (rev 919915)
@@ -0,0 +1,25 @@
+# Maintainer: Balló György 
+# Contributor: BrainDamage
+
+_pkgname=python-readability
+pkgname=python-readability-lxml
+pkgver=0.8.1
+pkgrel=3
+pkgdesc='Fast html to text parser (article readability tool) python library'
+arch=('any')
+url='https://github.com/buriy/python-readability'
+license=('Apache')
+depends=('python-chardet' 'python-lxml')
+makedepends=('python-setuptools')
+source=("https://github.com/buriy/$_pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e6650d608174fde8e9feb07cb86c16f5d42e09e0dd446093d1b529d55f2b939a')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in python-listparser (3 files)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 14:21:45
  Author: bgyorgy
Revision: 919914

archrelease: copy trunk to community-any

Added:
  python-listparser/repos/
  python-listparser/repos/community-any/
  python-listparser/repos/community-any/PKGBUILD
(from rev 919913, python-listparser/trunk/PKGBUILD)

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

Copied: python-listparser/repos/community-any/PKGBUILD (from rev 919913, 
python-listparser/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-04-18 14:21:45 UTC (rev 919914)
@@ -0,0 +1,30 @@
+# Maintainer: Balló György 
+# Contributor: Gabriele Musco 
+
+_pkgname=listparser
+pkgname=python-listparser
+pkgver=0.18
+pkgrel=3
+pkgdesc='Python library that parses OPML, RDF+FOAF, and the iGoogle 
subscription lists'
+arch=('any')
+url='https://github.com/kurtmckee/listparser'
+license=('GPL3')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/kurtmckee/$_pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('cee2d369b8e494142e045ac72848727543f3391ad8b8489ff8a3e8a53b6b0a48')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+  python lptest.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in (9 files)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 14:20:33
  Author: bgyorgy
Revision: 919913

Move gfeeds from AUR

Also move its dependencies:
- python-listparser
- python-readability-lxml

Added:
  gfeeds/
  gfeeds/trunk/
  gfeeds/trunk/PKGBUILD
  python-listparser/
  python-listparser/trunk/
  python-listparser/trunk/PKGBUILD
  python-readability-lxml/
  python-readability-lxml/trunk/
  python-readability-lxml/trunk/PKGBUILD

+
 gfeeds/trunk/PKGBUILD  |   26 ++
 python-listparser/trunk/PKGBUILD   |   30 ++
 python-readability-lxml/trunk/PKGBUILD |   25 +
 3 files changed, 81 insertions(+)

Added: gfeeds/trunk/PKGBUILD
===
--- gfeeds/trunk/PKGBUILD   (rev 0)
+++ gfeeds/trunk/PKGBUILD   2021-04-18 14:20:33 UTC (rev 919913)
@@ -0,0 +1,26 @@
+# Maintainer: Balló György 
+# Contributor: Gabriele Musco 
+
+pkgname=gfeeds
+pkgver=0.16.2
+pkgrel=3
+pkgdesc='RSS/Atom feed reader for GNOME'
+arch=('any')
+url='https://gfeeds.gabmus.org/'
+license=('GPL3')
+depends=('libhandy' 'python-beautifulsoup4' 'python-cssselect' 
'python-dateutil'
+ 'python-feedparser' 'python-gobject' 'python-html5lib' 
'python-listparser' 'python-lxml'
+ 'python-pillow' 'python-pygments' 'python-pytz' 
'python-readability-lxml'
+ 'python-requests' 'webkit2gtk')
+makedepends=('meson' 'gobject-introspection')
+source=("https://gitlab.gnome.org/World/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f061e89a1962a5ac544ea98239c2503af8da817ded0a5bfd8094ddf43e9dd00e')
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}

Added: python-listparser/trunk/PKGBUILD
===
--- python-listparser/trunk/PKGBUILD(rev 0)
+++ python-listparser/trunk/PKGBUILD2021-04-18 14:20:33 UTC (rev 919913)
@@ -0,0 +1,30 @@
+# Maintainer: Balló György 
+# Contributor: Gabriele Musco 
+
+_pkgname=listparser
+pkgname=python-listparser
+pkgver=0.18
+pkgrel=3
+pkgdesc='Python library that parses OPML, RDF+FOAF, and the iGoogle 
subscription lists'
+arch=('any')
+url='https://github.com/kurtmckee/listparser'
+license=('GPL3')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/kurtmckee/$_pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('cee2d369b8e494142e045ac72848727543f3391ad8b8489ff8a3e8a53b6b0a48')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+  python lptest.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Added: python-readability-lxml/trunk/PKGBUILD
===
--- python-readability-lxml/trunk/PKGBUILD  (rev 0)
+++ python-readability-lxml/trunk/PKGBUILD  2021-04-18 14:20:33 UTC (rev 
919913)
@@ -0,0 +1,25 @@
+# Maintainer: Balló György 
+# Contributor: BrainDamage
+
+_pkgname=python-readability
+pkgname=python-readability-lxml
+pkgver=0.8.1
+pkgrel=3
+pkgdesc='Fast html to text parser (article readability tool) python library'
+arch=('any')
+url='https://github.com/buriy/python-readability'
+license=('Apache')
+depends=('python-chardet' 'python-lxml')
+makedepends=('python-setuptools')
+source=("https://github.com/buriy/$_pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e6650d608174fde8e9feb07cb86c16f5d42e09e0dd446093d1b529d55f2b939a')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in atom/repos/community-x86_64 (24 files)

2021-04-18 Thread Nicola Squartini via arch-commits
Date: Sunday, April 18, 2021 @ 12:54:26
  Author: tensor5
Revision: 919912

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 919911, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 919911, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 919911, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 919911, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 919911, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 919911, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/git-utils.patch
(from rev 919911, atom/trunk/git-utils.patch)
  atom/repos/community-x86_64/no-unsafe-eval-warning.patch
(from rev 919911, atom/trunk/no-unsafe-eval-warning.patch)
  atom/repos/community-x86_64/node-env-production.patch
(from rev 919911, atom/trunk/node-env-production.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 919911, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 919911, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 919911, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/git-utils.patch
  atom/repos/community-x86_64/no-unsafe-eval-warning.patch
  atom/repos/community-x86_64/node-env-production.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  280 +++---
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  304 +++
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 git-utils.patch |   22 -
 no-unsafe-eval-warning.patch|   22 -
 node-env-production.patch   |   26 +-
 symbols-view-use-system-ctags.patch |   28 +-
 use-system-apm.patch|   68 ++---
 use-system-electron.patch   |  432 +-
 12 files changed, 690 insertions(+), 690 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 12:54:07 UTC (rev 919911)
+++ PKGBUILD2021-04-18 12:54:26 UTC (rev 919912)
@@ -1,140 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.55.0
-_commit=3eeaff50711ae72357591a94a5e9a5c11b6be184
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron6' 'libxkbfile' 'ripgrep')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("git+https://github.com/atom/atom.git#commit=${_commit};
-'atom.js'
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'git-utils.patch'
-'no-unsafe-eval-warning.patch'
-'node-env-production.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('SKIP'
-'6ae4f78667a8735d24ba11a47f1ee374f65325a3d604bcd221d56e27e16ddad4'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'b3d3706519556a59ba557b695017c9debe8b23efe2782cdb440131520bc0540d'
-'ec100f5d007b31d3a3ca69919bc61e34a79bfaaacf6ababe67c9bdbf5aff1f34'
-'e90a9013d56a228c162dc033c532f12f5ae4c37f6997b2dc61d1fca1b153e0b1'
-'e321fdfe880cd465918dd1dbb90e4c7d46fc5310f20666eddf0a41cbca4f8ac8'
-'40d783794d62f12f3c429c624a84265871c7ed95f4120c9db800348896dd5437'
-'a09439c2a908ca174ff3be1f0d85071d12c792ae19748e36fe601e372d6d925b'
-'c93cc88dd704388d4b26a0de0a5938df7ff90cedf8eed0b3b8a675f9cc7d487c'
-'08ae0c93b5ec7eb7d90c65d5d2adbaca538482fba902ed1f8414024db0d21854'
-'47abdfd9faeaea79c8da73ab13bd8a93626b4ed36524c865990b048f6ba21b77')
-
-prepare() {
-  cd ${pkgname}
-
-  patch -Np1 -i ../fix-atom-sh.patch
-  patch -Np1 -i ../use-system-electron.patch
-  patch -Np1 -i ../use-system-apm.patch
-  patch -Np1 -i 

[arch-commits] Commit in atom/trunk (5 files)

2021-04-18 Thread Nicola Squartini via arch-commits
Date: Sunday, April 18, 2021 @ 12:54:07
  Author: tensor5
Revision: 919911

upgpkg: atom 1.56.0-1

Modified:
  atom/trunk/PKGBUILD
  atom/trunk/atom.js
  atom/trunk/fix-license-path.patch
  atom/trunk/fix-restart.patch
  atom/trunk/use-system-electron.patch

---+
 PKGBUILD  |   22 +++---
 atom.js   |2 +-
 fix-license-path.patch|2 +-
 fix-restart.patch |2 +-
 use-system-electron.patch |   10 +-
 5 files changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 12:33:26 UTC (rev 919910)
+++ PKGBUILD2021-04-18 12:54:07 UTC (rev 919911)
@@ -1,14 +1,14 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=atom
-pkgver=1.55.0
-_commit=3eeaff50711ae72357591a94a5e9a5c11b6be184
+pkgver=1.56.0
+_commit=9da50c7216dd9da7aa8f71c548261f2a30594144
 pkgrel=1
 pkgdesc='A hackable text editor for the 21st Century'
 arch=('x86_64')
 url='https://github.com/atom/atom'
 license=('MIT' 'custom')
-depends=('apm' 'electron6' 'libxkbfile' 'ripgrep')
+depends=('apm' 'electron9' 'libxkbfile' 'ripgrep')
 makedepends=('git' 'npm')
 optdepends=('ctags: symbol indexing support'
 'git: Git and GitHub integration')
@@ -27,17 +27,17 @@
 'use-system-apm.patch'
 'use-system-electron.patch')
 sha256sums=('SKIP'
-'6ae4f78667a8735d24ba11a47f1ee374f65325a3d604bcd221d56e27e16ddad4'
+'a4f198ae1040637ce72c163585662d94e0d59b593f69d919d0acd7044c316cac'
 '530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
 'b3d3706519556a59ba557b695017c9debe8b23efe2782cdb440131520bc0540d'
-'ec100f5d007b31d3a3ca69919bc61e34a79bfaaacf6ababe67c9bdbf5aff1f34'
-'e90a9013d56a228c162dc033c532f12f5ae4c37f6997b2dc61d1fca1b153e0b1'
+'81041c2902c42db7883f6aa09708459d4f3c6da81485e9aed16b558b3f08da4e'
+'588c1e1ddfbe4e6433c804496ea87e84a3db7f15855ae1fd1936f5b42ebe38b1'
 'e321fdfe880cd465918dd1dbb90e4c7d46fc5310f20666eddf0a41cbca4f8ac8'
 '40d783794d62f12f3c429c624a84265871c7ed95f4120c9db800348896dd5437'
 'a09439c2a908ca174ff3be1f0d85071d12c792ae19748e36fe601e372d6d925b'
 'c93cc88dd704388d4b26a0de0a5938df7ff90cedf8eed0b3b8a675f9cc7d487c'
 '08ae0c93b5ec7eb7d90c65d5d2adbaca538482fba902ed1f8414024db0d21854'
-'47abdfd9faeaea79c8da73ab13bd8a93626b4ed36524c865990b048f6ba21b77')
+'283cf31a4d13b9c4f383bc19906bbdd6db6cd2888557d244d8f58d9a66f2c4e0')
 
 prepare() {
   cd ${pkgname}
@@ -56,7 +56,7 @@
 
   ATOM_RESOURCE_PATH="${PWD}" \
   npm_config_build_from_source=true \
-  npm_config_target=$(< /usr/lib/electron6/version) \
+  npm_config_target=$(< /usr/lib/electron9/version) \
   apm install
 
   # Use system ctags
@@ -78,7 +78,7 @@
   env \
 npm_config_disturl=https://electronjs.org/headers \
 npm_config_runtime=electron \
-npm_config_target=$(< /usr/lib/electron6/version) \
+npm_config_target=$(< /usr/lib/electron9/version) \
 node-gyp rebuild
   cd ../..
 
@@ -88,8 +88,8 @@
   # Set ELECTRON_VERSION (see use-system-electron.patch)
   env \
 ELECTRON_RUN_AS_NODE=1 \
-ELECTRON_VERSION=$(< /usr/lib/electron6/version) \
-electron6 \
+ELECTRON_VERSION=$(< /usr/lib/electron9/version) \
+electron9 \
 build --no-bootstrap
 }
 

Modified: atom.js
===
--- atom.js 2021-04-18 12:33:26 UTC (rev 919910)
+++ atom.js 2021-04-18 12:54:07 UTC (rev 919911)
@@ -1,4 +1,4 @@
-#!/usr/bin/electron6
+#!/usr/bin/electron9
 
 const name = "atom";
 

Modified: fix-license-path.patch
===
--- fix-license-path.patch  2021-04-18 12:33:26 UTC (rev 919910)
+++ fix-license-path.patch  2021-04-18 12:54:07 UTC (rev 919911)
@@ -1,6 +1,6 @@
 --- a/src/main-process/atom-application.js
 +++ b/src/main-process/atom-application.js
-@@ -706,7 +706,7 @@
+@@ -691,7 +691,7 @@
  );
  this.openPathOnEvent(
'application:open-license',

Modified: fix-restart.patch
===
--- fix-restart.patch   2021-04-18 12:33:26 UTC (rev 919910)
+++ fix-restart.patch   2021-04-18 12:54:07 UTC (rev 919911)
@@ -1,6 +1,6 @@
 --- a/src/main-process/atom-application.js
 +++ b/src/main-process/atom-application.js
-@@ -2048,7 +2048,7 @@
+@@ -2038,7 +2038,7 @@
}
  
restart() {

Modified: use-system-electron.patch
===
--- use-system-electron.patch   2021-04-18 12:33:26 UTC (rev 919910)
+++ use-system-electron.patch   2021-04-18 12:54:07 UTC (rev 919911)
@@ -4,10 +4,10 @@
  "url": "https://github.com/atom/atom/issues;
},
"license": "MIT",
--  "electronVersion": "6.1.12",
+-  "electronVersion": 

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

2021-04-18 Thread Nicola Squartini via arch-commits
Date: Sunday, April 18, 2021 @ 12:33:26
  Author: tensor5
Revision: 919910

archrelease: copy trunk to community-x86_64

Added:
  apm/repos/community-x86_64/PKGBUILD
(from rev 919909, apm/trunk/PKGBUILD)
  apm/repos/community-x86_64/apm.js
(from rev 919909, apm/trunk/apm.js)
  apm/repos/community-x86_64/git-utils.patch
(from rev 919909, apm/trunk/git-utils.patch)
  apm/repos/community-x86_64/no-scripts.patch
(from rev 919909, apm/trunk/no-scripts.patch)
Deleted:
  apm/repos/community-x86_64/PKGBUILD
  apm/repos/community-x86_64/apm.js
  apm/repos/community-x86_64/git-utils.patch
  apm/repos/community-x86_64/no-scripts.patch

--+
 PKGBUILD |  216 ++---
 apm.js   |   22 ++---
 git-utils.patch  |   20 ++--
 no-scripts.patch |   42 +-
 4 files changed, 150 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 12:33:17 UTC (rev 919909)
+++ PKGBUILD2021-04-18 12:33:26 UTC (rev 919910)
@@ -1,108 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=apm
-pkgver=2.6.1
-pkgrel=2
-pkgdesc='Atom package manager'
-arch=('x86_64')
-url='https://github.com/atom/apm'
-license=('MIT')
-depends=('libsecret' 'nodejs>=10' 'npm' 'python')
-makedepends=('git')
-provides=('nodejs-atom-package-manager')
-conflicts=('nodejs-atom-package-manager')
-replaces=('nodejs-atom-package-manager')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/apm/archive/v${pkgver}.tar.gz;
-'apm.js'
-'no-scripts.patch'
-'git-utils.patch')
-sha512sums=('e4b29069b2106cc9d8179344fca4fc6032751e7b878c9302a4f4af7fcf28f638e9f0d38df4b206db85f23743a7bec0287093100fee3637ff8e771388cc44ffaf'
-
'c02c18e00c378fc968cd593bfed3ff0636a2786fa9ef212547efc30c54576f55dc94ac503b827ec79283c5deb87a22a7046565d8c630d55ed20d0ad020f8a77f'
-
'a962ecc1557bcfe92c8d771a44c3bbbd72d0bf9c81285662ef26a1f99f3604efcca0307e7edb59eb99c2cbc83db4ab844f0db0532ca990581eff28e50c42acd6'
-
'bf9f4023bfbdc7240e5ed8a87bc9097eb7a57b2bae44f1044098eb380b15ff8a12f92347b99b6754c6adb537b8310d1f47bdfd3e60db411e4d69d575ce70b2a6')
-
-_apmdir='/usr/lib/node_modules/atom-package-manager'
-
-prepare() {
-  rm -rf "${srcdir}"/apm-build
-
-  cd apm-${pkgver}
-
-  # Use custom launcher
-  rm bin/apm{,.cmd} bin/npm{,.cmd}
-  rm src/cli.coffee
-  install -m755 "${srcdir}"/apm.js bin/apm
-
-  # Don't download binary Node
-  patch -Np1 -i "${srcdir}"/no-scripts.patch
-  rm BUNDLED_NODE_VERSION script/*
-}
-
-build() {
-  cd apm-${pkgver}
-
-  npm install
-  npx coffee --compile --output lib src
-  npm uninstall coffee-script coffeelint express jasmine-focused shx node-gyp
-
-  cd node_modules/git-utils
-  patch -Np1 -i "${srcdir}/git-utils.patch"
-  node-gyp rebuild
-  cd ../..
-
-  npm pack
-}
-
-package() {
-  cd apm-${pkgver}
-
-  install -d -m755 "${pkgdir}${_apmdir}"
-  tar -xf atom-package-manager-*.tgz --strip-components 1 \
-  -C "${pkgdir}${_apmdir}"
-  cp -r node_modules "${pkgdir}${_apmdir}"
-
-  install -d -m755 "${pkgdir}/usr/bin"
-  ln -s \
-  "$(realpath --relative-to="${pkgdir}/usr/bin" 
"${pkgdir}${_apmdir}/bin/apm")" \
-  "${pkgdir}/usr/bin"
-
-  # Install license file
-  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s \
-  "$(realpath --relative-to="${pkgdir}/usr/share/licenses/${pkgname}" 
"${pkgdir}${_apmdir}/LICENSE.md")" \
-  "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Remove occurrences of ${srcdir}
-  find "${pkgdir}" -name "package.json" \
-   -exec sed -e "s|${srcdir}/apm-${pkgver}|${_apmdir}|" \
- -i '{}' \;
-
-  # Remove useless stuff
-  find "${pkgdir}"/usr/lib \
-  -name ".*" -prune -exec rm -r '{}' \; \
-  -or -name "*.a" -exec rm '{}' \; \
-  -or -name "*.bat" -exec rm '{}' \; \
-  -or -name "*.mk" -exec rm '{}' \; \
-  -or -path "*/git-utils/binding.gyp" -exec rm '{}' \; \
-  -or -path "*/git-utils/src/*.cc" -exec rm '{}' \; \
-  -or -path "*/git-utils/src/*.h" -exec rm '{}' \; \
-  -or -path "*/keytar/binding.gyp" -exec rm '{}' \; \
-  -or -path "*/keytar/src" -prune -exec rm -r '{}' \; \
-  -or -path "*/oniguruma/binding.gyp" -exec rm '{}' \; \
-  -or -path "*/oniguruma/src" -prune -exec rm -r '{}' \; \
-  -or -name "appveyor.yml" -exec rm '{}' \; \
-  -or -name "benchmark" -prune -exec rm -r '{}' \; \
-  -or -name "binding.Makefile" -exec rm '{}' \; \
-  -or -name "config.gypi" -exec rm '{}' \; \
-  -or -name "deps" -prune -exec rm -r '{}' \; \
-  -or -name "doc" -prune -exec rm -r '{}' \; \
-  -or -name "html" -prune -exec rm -r '{}' \; \
-  -or -name "Makefile" -exec rm '{}' \; \
-  -or -name "man" -prune -exec rm -r '{}' \; \
-  -or -name "obj.target" -prune -exec rm -r '{}' \; \
-  -or -name "samples" -prune -exec rm -r '{}' \; \
-  

[arch-commits] Commit in apm/trunk (PKGBUILD apm.js)

2021-04-18 Thread Nicola Squartini via arch-commits
Date: Sunday, April 18, 2021 @ 12:33:17
  Author: tensor5
Revision: 919909

upgpkg: apm 2.6.1-3

Switch to electron9 for Atom 1.56.

Modified:
  apm/trunk/PKGBUILD
  apm/trunk/apm.js

--+
 PKGBUILD |4 ++--
 apm.js   |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 11:55:26 UTC (rev 919908)
+++ PKGBUILD2021-04-18 12:33:17 UTC (rev 919909)
@@ -2,7 +2,7 @@
 
 pkgname=apm
 pkgver=2.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Atom package manager'
 arch=('x86_64')
 url='https://github.com/atom/apm'
@@ -18,7 +18,7 @@
 'no-scripts.patch'
 'git-utils.patch')
 
sha512sums=('e4b29069b2106cc9d8179344fca4fc6032751e7b878c9302a4f4af7fcf28f638e9f0d38df4b206db85f23743a7bec0287093100fee3637ff8e771388cc44ffaf'
-
'c02c18e00c378fc968cd593bfed3ff0636a2786fa9ef212547efc30c54576f55dc94ac503b827ec79283c5deb87a22a7046565d8c630d55ed20d0ad020f8a77f'
+
'36bbf34a3a7ba9ed63ed1d805be9d7906d284077ff72a4c8199efc1f04ac672c4a1a75568f2c9d81037481452d3a47c3e54370a76e9ed7b35e67fda93acd1726'
 
'a962ecc1557bcfe92c8d771a44c3bbbd72d0bf9c81285662ef26a1f99f3604efcca0307e7edb59eb99c2cbc83db4ab844f0db0532ca990581eff28e50c42acd6'
 
'bf9f4023bfbdc7240e5ed8a87bc9097eb7a57b2bae44f1044098eb380b15ff8a12f92347b99b6754c6adb537b8310d1f47bdfd3e60db411e4d69d575ce70b2a6')
 

Modified: apm.js
===
--- apm.js  2021-04-18 11:55:26 UTC (rev 919908)
+++ apm.js  2021-04-18 12:33:17 UTC (rev 919909)
@@ -4,7 +4,7 @@
 
 process.env.ATOM_RESOURCE_PATH = process.env.ATOM_RESOURCE_PATH || 
"/usr/lib/atom";
 
-process.env.ATOM_ELECTRON_VERSION = process.env.ATOM_ELECTRON_VERSION || 
require("fs").readFileSync("/usr/lib/electron6/version", "utf8");
+process.env.ATOM_ELECTRON_VERSION = process.env.ATOM_ELECTRON_VERSION || 
require("fs").readFileSync("/usr/lib/electron9/version", "utf8");
 
 require("../lib/apm-cli.js").run(process.argv.slice(2), function (error) {
 process.exitCode = Number(Boolean(error));


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

2021-04-18 Thread Jonas Witschel via arch-commits
Date: Sunday, April 18, 2021 @ 11:55:26
  Author: diabonas
Revision: 919908

archrelease: copy trunk to community-any

Added:
  py3status/repos/community-any/PKGBUILD
(from rev 919907, py3status/trunk/PKGBUILD)
Deleted:
  py3status/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 11:55:20 UTC (rev 919907)
+++ PKGBUILD2021-04-18 11:55:26 UTC (rev 919908)
@@ -1,41 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jonas Witschel 
-# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Alexis "Horgix" Chotard 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-
-pkgname=py3status
-pkgver=3.36
-pkgrel=1
-pkgdesc="An extensible i3status replacement/wrapper written in python"
-url="https://www.ultrabug.fr/tag/py3status/;
-arch=('any')
-license=('BSD')
-depends=('python' 'python-setuptools')
-checkdepends=('python-pytest-runner')
-optdepends=('i3status: for i3status modules'
-'i3blocks: for i3blocks modules'
-'python-pyudev: for udev event monitoring'
-'python-pydbus: for modules that rely on D-Bus'
-'python-tzlocal: for modules that need time zone info'
-'pacman-contrib: for the arch_updates module')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
-sha256sums=('d5c26058217975014e0b5590b4a0df535b3e7969455bdf566d96d801ae46fbba')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-check() {
-cd "$pkgname-$pkgver"
-python setup.py pytest
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-install -d "$pkgdir/usr/share/doc/$pkgname"
-install -m644 doc/* README.rst CHANGELOG "$pkgdir/usr/share/doc/$pkgname"
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: py3status/repos/community-any/PKGBUILD (from rev 919907, 
py3status/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 11:55:26 UTC (rev 919908)
@@ -0,0 +1,41 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jonas Witschel 
+# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.36
+pkgrel=2
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="https://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools')
+checkdepends=('python-pytest-runner')
+optdepends=('i3status: for i3status modules'
+'i3blocks: for i3blocks modules'
+'python-pyudev: for udev event monitoring'
+'python-pydbus: for modules that rely on D-Bus'
+'python-tzlocal: for modules that need time zone info'
+'pacman-contrib: for the arch_updates module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
+sha256sums=('d5c26058217975014e0b5590b4a0df535b3e7969455bdf566d96d801ae46fbba')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+check() {
+cd "$pkgname-$pkgver"
+python setup.py pytest
+}
+
+package() {
+cd "$pkgname-$pkgver"
+PYTHONHASHSEED=0 python setup.py install --root="$pkgdir/" --optimize=1 
--skip-build
+install -d "$pkgdir/usr/share/doc/$pkgname"
+install -m644 doc/* README.rst CHANGELOG "$pkgdir/usr/share/doc/$pkgname"
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-04-18 Thread Jonas Witschel via arch-commits
Date: Sunday, April 18, 2021 @ 11:55:20
  Author: diabonas
Revision: 919907

upgpkg: py3status 3.36-2: improve reproducibility

Make the generated Python bytecode files reproducible by ensuring that the
ordering of elements in sets and dictionaries is deterministic.

Modified:
  py3status/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 10:24:54 UTC (rev 919906)
+++ PKGBUILD2021-04-18 11:55:20 UTC (rev 919907)
@@ -6,7 +6,7 @@
 
 pkgname=py3status
 pkgver=3.36
-pkgrel=1
+pkgrel=2
 pkgdesc="An extensible i3status replacement/wrapper written in python"
 url="https://www.ultrabug.fr/tag/py3status/;
 arch=('any')
@@ -34,7 +34,7 @@
 
 package() {
 cd "$pkgname-$pkgver"
-python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+PYTHONHASHSEED=0 python setup.py install --root="$pkgdir/" --optimize=1 
--skip-build
 install -d "$pkgdir/usr/share/doc/$pkgname"
 install -m644 doc/* README.rst CHANGELOG "$pkgdir/usr/share/doc/$pkgname"
 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 10:24:48
  Author: bgyorgy
Revision: 919905

upgpkg: newsflash 1.4.0-3: Remove xdg-utils dependency

Modified:
  newsflash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 10:06:46 UTC (rev 919904)
+++ PKGBUILD2021-04-18 10:24:48 UTC (rev 919905)
@@ -4,16 +4,22 @@
 pkgname=newsflash
 _pkgname=news_flash_gtk
 pkgver=1.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Desktop application designed to complement an already existing 
web-based RSS reader account'
 arch=('x86_64')
 url='https://gitlab.com/news-flash/news_flash_gtk'
 license=('GPL3')
-depends=('libhandy' 'webkit2gtk' 'xdg-utils')
+depends=('libhandy' 'webkit2gtk')
 makedepends=('appstream-glib' 'meson' 'rust')
 
source=("https://gitlab.com/news-flash/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz;)
 sha256sums=('4cde5395e6056284decea86395b041df45ede27e4236ab141a5758c978cd')
 
+prepare() {
+  cd $_pkgname-$pkgver
+  # Update open to avoid xdg-utils dependency
+  sed -i 's/open = "1.4.0"/open = "1.7.0"/' Cargo.toml
+}
+
 build() {
   export FEEDLY_CLIENT_ID="boutroue"
   export FEEDLY_CLIENT_SECRET="FE012EGICU4ZOBDRBEOVAJA1JZYH"


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 10:24:54
  Author: bgyorgy
Revision: 919906

archrelease: copy trunk to community-x86_64

Added:
  newsflash/repos/community-x86_64/PKGBUILD
(from rev 919905, newsflash/trunk/PKGBUILD)
Deleted:
  newsflash/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 10:24:48 UTC (rev 919905)
+++ PKGBUILD2021-04-18 10:24:54 UTC (rev 919906)
@@ -1,35 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Felix Bühler 
-
-pkgname=newsflash
-_pkgname=news_flash_gtk
-pkgver=1.4.0
-pkgrel=2
-pkgdesc='Desktop application designed to complement an already existing 
web-based RSS reader account'
-arch=('x86_64')
-url='https://gitlab.com/news-flash/news_flash_gtk'
-license=('GPL3')
-depends=('libhandy' 'webkit2gtk' 'xdg-utils')
-makedepends=('appstream-glib' 'meson' 'rust')
-source=("https://gitlab.com/news-flash/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz;)
-sha256sums=('4cde5395e6056284decea86395b041df45ede27e4236ab141a5758c978cd')
-
-build() {
-  export FEEDLY_CLIENT_ID="boutroue"
-  export FEEDLY_CLIENT_SECRET="FE012EGICU4ZOBDRBEOVAJA1JZYH"
-  export PASSWORD_CRYPT_KEY="ypsSXCLhJngks9qGUAqShd8JjRaZ824wT3e"
-  export MERCURY_PARSER_USER="newsflash"
-  export MERCURY_PARSER_KEY="R4qcKEHpr9RTq6YuRAPkm9kMhjp4GuxiWG44VDk3Na4ZsN7F"
-   
-  arch-meson $_pkgname-$pkgver build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  ln -s com.gitlab.newsflash "$pkgdir/usr/bin/$pkgname"
-}

Copied: newsflash/repos/community-x86_64/PKGBUILD (from rev 919905, 
newsflash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 10:24:54 UTC (rev 919906)
@@ -0,0 +1,41 @@
+# Maintainer: Balló György 
+# Contributor: Felix Bühler 
+
+pkgname=newsflash
+_pkgname=news_flash_gtk
+pkgver=1.4.0
+pkgrel=3
+pkgdesc='Desktop application designed to complement an already existing 
web-based RSS reader account'
+arch=('x86_64')
+url='https://gitlab.com/news-flash/news_flash_gtk'
+license=('GPL3')
+depends=('libhandy' 'webkit2gtk')
+makedepends=('appstream-glib' 'meson' 'rust')
+source=("https://gitlab.com/news-flash/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz;)
+sha256sums=('4cde5395e6056284decea86395b041df45ede27e4236ab141a5758c978cd')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  # Update open to avoid xdg-utils dependency
+  sed -i 's/open = "1.4.0"/open = "1.7.0"/' Cargo.toml
+}
+
+build() {
+  export FEEDLY_CLIENT_ID="boutroue"
+  export FEEDLY_CLIENT_SECRET="FE012EGICU4ZOBDRBEOVAJA1JZYH"
+  export PASSWORD_CRYPT_KEY="ypsSXCLhJngks9qGUAqShd8JjRaZ824wT3e"
+  export MERCURY_PARSER_USER="newsflash"
+  export MERCURY_PARSER_KEY="R4qcKEHpr9RTq6YuRAPkm9kMhjp4GuxiWG44VDk3Na4ZsN7F"
+   
+  arch-meson $_pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  ln -s com.gitlab.newsflash "$pkgdir/usr/bin/$pkgname"
+}


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

2021-04-18 Thread Maxim Baz via arch-commits
Date: Sunday, April 18, 2021 @ 10:06:46
  Author: maximbaz
Revision: 919904

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 919903, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 10:06:42 UTC (rev 919903)
+++ PKGBUILD2021-04-18 10:06:46 UTC (rev 919904)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=8.6.12
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('e58bd5350b2949ce8ce6c9724171bebab86134ea6b4f7602e8cb191bce706371')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 919903, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 10:06:46 UTC (rev 919904)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.0.0
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('1af12217c6676739be0614716cda924b3c895c74e4640aefa99910d21daf7621')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2021-04-18 Thread Maxim Baz via arch-commits
Date: Sunday, April 18, 2021 @ 10:06:42
  Author: maximbaz
Revision: 919903

upgpkg: croc 9.0.0-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 10:03:38 UTC (rev 919902)
+++ PKGBUILD2021-04-18 10:06:42 UTC (rev 919903)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=8.6.12
+pkgver=9.0.0
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('e58bd5350b2949ce8ce6c9724171bebab86134ea6b4f7602e8cb191bce706371')
+sha256sums=('1af12217c6676739be0614716cda924b3c895c74e4640aefa99910d21daf7621')
 
 build() {
 cd "${pkgname}-${pkgver}"


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 10:03:38
  Author: jelle
Revision: 919902

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 10:03:32 UTC (rev 919901)
+++ PKGBUILD2021-04-18 10:03:38 UTC (rev 919902)
@@ -1,42 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot
-pkgver=1.14.0
-pkgrel=1
-pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
-arch=('any')
-license=('Apache')
-url="https://certbot.eff.org;
-depends=('ca-certificates' 'python-acme' 'python-configargparse' 
'python-configobj'
- 'python-cryptography' 'python-distro' 'python-parsedatetime'
- 'python-pyrfc3339' 'python-pytz' 'python-setuptools' 
'python-zope-component'
- 'python-zope-interface')
-checkdepends=('python-pytest')
-optdepends=('certbot-apache: Apache plugin for Let’s Encrypt client'
-'certbot-nginx: Nginx plugin for Let’s Encrypt client')
-replaces=("letsencrypt")
-source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
-sha512sums=('448129ac12bb6ca8eba6d95f9b0adee06d1250f87b490b3d8bc52761ef2fd512a37fef7ac57561ddc7317b1df5091f387e80262b54fec16bb290eb4a8fb98526'
-'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python -m pytest
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-
-  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
-  chmod 700 "$pkgdir"/var/log/letsencrypt
-}

Copied: certbot/repos/community-any/PKGBUILD (from rev 919901, 
certbot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 10:03:38 UTC (rev 919902)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot
+pkgver=1.14.0
+pkgrel=2
+pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
+arch=('any')
+license=('Apache')
+url="https://certbot.eff.org;
+depends=('ca-certificates' 'python-acme' 'python-configargparse' 
'python-configobj'
+ 'python-cryptography' 'python-distro' 'python-parsedatetime'
+ 'python-pyrfc3339' 'python-pytz' 'python-setuptools' 
'python-zope-component'
+ 'python-zope-interface')
+checkdepends=('python-pytest')
+optdepends=('certbot-apache: Apache plugin for Let’s Encrypt client'
+'certbot-nginx: Nginx plugin for Let’s Encrypt client')
+replaces=("letsencrypt")
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('448129ac12bb6ca8eba6d95f9b0adee06d1250f87b490b3d8bc52761ef2fd512a37fef7ac57561ddc7317b1df5091f387e80262b54fec16bb290eb4a8fb98526'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python -m pytest
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
+  chmod 700 "$pkgdir"/var/log/letsencrypt
+}


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

2021-04-18 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 18, 2021 @ 10:03:32
  Author: jelle
Revision: 919901

Make certbot reproducible

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 09:08:54 UTC (rev 919900)
+++ PKGBUILD2021-04-18 10:03:32 UTC (rev 919901)
@@ -3,7 +3,7 @@
 
 pkgname=certbot
 pkgver=1.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
@@ -25,6 +25,7 @@
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py build
 }
 


[arch-commits] Commit in newsflash (3 files)

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 09:08:54
  Author: bgyorgy
Revision: 919900

archrelease: copy trunk to community-x86_64

Added:
  newsflash/repos/
  newsflash/repos/community-x86_64/
  newsflash/repos/community-x86_64/PKGBUILD
(from rev 919899, newsflash/trunk/PKGBUILD)

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

Copied: newsflash/repos/community-x86_64/PKGBUILD (from rev 919899, 
newsflash/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2021-04-18 09:08:54 UTC (rev 919900)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György 
+# Contributor: Felix Bühler 
+
+pkgname=newsflash
+_pkgname=news_flash_gtk
+pkgver=1.4.0
+pkgrel=2
+pkgdesc='Desktop application designed to complement an already existing 
web-based RSS reader account'
+arch=('x86_64')
+url='https://gitlab.com/news-flash/news_flash_gtk'
+license=('GPL3')
+depends=('libhandy' 'webkit2gtk' 'xdg-utils')
+makedepends=('appstream-glib' 'meson' 'rust')
+source=("https://gitlab.com/news-flash/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz;)
+sha256sums=('4cde5395e6056284decea86395b041df45ede27e4236ab141a5758c978cd')
+
+build() {
+  export FEEDLY_CLIENT_ID="boutroue"
+  export FEEDLY_CLIENT_SECRET="FE012EGICU4ZOBDRBEOVAJA1JZYH"
+  export PASSWORD_CRYPT_KEY="ypsSXCLhJngks9qGUAqShd8JjRaZ824wT3e"
+  export MERCURY_PARSER_USER="newsflash"
+  export MERCURY_PARSER_KEY="R4qcKEHpr9RTq6YuRAPkm9kMhjp4GuxiWG44VDk3Na4ZsN7F"
+   
+  arch-meson $_pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  ln -s com.gitlab.newsflash "$pkgdir/usr/bin/$pkgname"
+}


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

2021-04-18 Thread Balló György via arch-commits
Date: Sunday, April 18, 2021 @ 09:03:16
  Author: bgyorgy
Revision: 919899

Move newsflash from AUR with 14 votes

Added:
  newsflash/
  newsflash/trunk/
  newsflash/trunk/PKGBUILD

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

Added: newsflash/trunk/PKGBUILD
===
--- newsflash/trunk/PKGBUILD(rev 0)
+++ newsflash/trunk/PKGBUILD2021-04-18 09:03:16 UTC (rev 919899)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György 
+# Contributor: Felix Bühler 
+
+pkgname=newsflash
+_pkgname=news_flash_gtk
+pkgver=1.4.0
+pkgrel=2
+pkgdesc='Desktop application designed to complement an already existing 
web-based RSS reader account'
+arch=('x86_64')
+url='https://gitlab.com/news-flash/news_flash_gtk'
+license=('GPL3')
+depends=('libhandy' 'webkit2gtk' 'xdg-utils')
+makedepends=('appstream-glib' 'meson' 'rust')
+source=("https://gitlab.com/news-flash/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz;)
+sha256sums=('4cde5395e6056284decea86395b041df45ede27e4236ab141a5758c978cd')
+
+build() {
+  export FEEDLY_CLIENT_ID="boutroue"
+  export FEEDLY_CLIENT_SECRET="FE012EGICU4ZOBDRBEOVAJA1JZYH"
+  export PASSWORD_CRYPT_KEY="ypsSXCLhJngks9qGUAqShd8JjRaZ824wT3e"
+  export MERCURY_PARSER_USER="newsflash"
+  export MERCURY_PARSER_KEY="R4qcKEHpr9RTq6YuRAPkm9kMhjp4GuxiWG44VDk3Na4ZsN7F"
+   
+  arch-meson $_pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  ln -s com.gitlab.newsflash "$pkgdir/usr/bin/$pkgname"
+}


[arch-commits] Commit in lib32-libgpg-error/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:51:22
  Author: arojas
Revision: 919898

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD
(from rev 919897, lib32-libgpg-error/trunk/PKGBUILD)
Deleted:
  lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 08:51:04 UTC (rev 919897)
+++ PKGBUILD2021-04-18 08:51:22 UTC (rev 919898)
@@ -1,39 +0,0 @@
-# Maintainer: judd 
-
-_pkgbasename=libgpg-error
-pkgname=lib32-$_pkgbasename
-pkgver=1.41
-pkgrel=1
-pkgdesc="Support library for libgcrypt (32-bit)"
-arch=(x86_64)
-url="https://www.gnupg.org;
-license=('LGPL')
-depends=('lib32-glibc' $_pkgbasename)
-source=(https://www.gnupg.org/ftp/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('578d1d8090b9f6e6cbe59d9aeebec7df81aae492f75ec343f8df530950d30866fa0a7903ca050bf7bf721413f7b2708abe34f7467e2b208cc1447ffc9bd5b9a5'
-'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06'  # NIIBE Yutaka 
(GnuPG Release Key) 
-  '6DAA6E64A76D2840571B4902528897B826403ADA') # "Werner Koch (dist 
signing 2020)"
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make
-}
-
-check() {
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  make check
-}
-
-package() {
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-}

Copied: lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD (from rev 919897, 
lib32-libgpg-error/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 08:51:22 UTC (rev 919898)
@@ -0,0 +1,39 @@
+# Maintainer: judd 
+
+_pkgbasename=libgpg-error
+pkgname=lib32-$_pkgbasename
+pkgver=1.42
+pkgrel=1
+pkgdesc="Support library for libgcrypt (32-bit)"
+arch=(x86_64)
+url="https://www.gnupg.org;
+license=('LGPL')
+depends=('lib32-glibc' $_pkgbasename)
+source=(https://www.gnupg.org/ftp/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
+sha512sums=('f6d95712a874edefc39a7746062c8037a62801a550560c5b2eab08b5b86987c1de5be60eba5fcb56d35a37db109aa32d07b7eff2bb99800c1c47d2227421a8f4'
+'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'  # NIIBE Yutaka 
(GnuPG Release Key) 
+  '6DAA6E64A76D2840571B4902528897B826403ADA') # "Werner Koch (dist 
signing 2020)"
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make
+}
+
+check() {
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  make check
+}
+
+package() {
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:51:04
  Author: arojas
Revision: 919897

Update to 1.42

Modified:
  lib32-libgpg-error/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 07:59:33 UTC (rev 919896)
+++ PKGBUILD2021-04-18 08:51:04 UTC (rev 919897)
@@ -2,7 +2,7 @@
 
 _pkgbasename=libgpg-error
 pkgname=lib32-$_pkgbasename
-pkgver=1.41
+pkgver=1.42
 pkgrel=1
 pkgdesc="Support library for libgcrypt (32-bit)"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('lib32-glibc' $_pkgbasename)
 
source=(https://www.gnupg.org/ftp/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('578d1d8090b9f6e6cbe59d9aeebec7df81aae492f75ec343f8df530950d30866fa0a7903ca050bf7bf721413f7b2708abe34f7467e2b208cc1447ffc9bd5b9a5'
+sha512sums=('f6d95712a874edefc39a7746062c8037a62801a550560c5b2eab08b5b86987c1de5be60eba5fcb56d35a37db109aa32d07b7eff2bb99800c1c47d2227421a8f4'
 'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'  # NIIBE Yutaka 
(GnuPG Release Key) 


[arch-commits] Commit in libgpod/repos (6 files)

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:43:26
  Author: arojas
Revision: 412858

archrelease: copy trunk to staging-x86_64

Added:
  libgpod/repos/staging-x86_64/
  
libgpod/repos/staging-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
(from rev 412857, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
  libgpod/repos/staging-x86_64/PKGBUILD
(from rev 412857, libgpod/trunk/PKGBUILD)
  libgpod/repos/staging-x86_64/libgpod-0.8.2-pkgconfig_overlinking.patch
(from rev 412857, libgpod/trunk/libgpod-0.8.2-pkgconfig_overlinking.patch)
  libgpod/repos/staging-x86_64/libgpod-fixswig.patch
(from rev 412857, libgpod/trunk/libgpod-fixswig.patch)
  libgpod/repos/staging-x86_64/libgpod-udev.patch
(from rev 412857, libgpod/trunk/libgpod-udev.patch)

-+
 0001-323-Segmentation-fault-when-opening-ipod.patch |   43 
 PKGBUILD|   46 ++
 libgpod-0.8.2-pkgconfig_overlinking.patch   |   11 
 libgpod-fixswig.patch   |   14 +
 libgpod-udev.patch  |   15 +
 5 files changed, 129 insertions(+)

Copied: 
libgpod/repos/staging-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
 (from rev 412857, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
===
--- staging-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch  
(rev 0)
+++ staging-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch  
2021-04-18 08:43:26 UTC (rev 412858)
@@ -0,0 +1,43 @@
+From 8dc5015ae036b219c4c9579a156886aa3a722aa5 Mon Sep 17 00:00:00 2001
+From: phantomjinx 
+Date: Sat, 9 Aug 2014 19:57:10 +0100
+Subject: [PATCH] #323 Segmentation fault when opening ipod
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+* Patch submitted in bug report from François Melchior / James Burton
+---
+ src/itdb_itunesdb.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
+index 4cc771a..1e85476 100644
+--- a/src/itdb_itunesdb.c
 b/src/itdb_itunesdb.c
+@@ -1156,6 +1156,7 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ GHashTable *pc_dict, *track_dict;
+ GValue *to_parse;
+ GArray *array;
++GValue value;
+ gint i;
+ guint32 mac_time;
+ guint64 *dbid;
+@@ -1175,11 +1176,12 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ 
+ array = (GArray*)g_value_get_boxed (to_parse);
+ for (i = 0; i < array->len; i++) {
+-   if (!G_VALUE_HOLDS (g_array_index (array, GValue *, i), 
G_TYPE_HASH_TABLE)) {
++   value = g_array_index (array, GValue, i);
++   if (!G_VALUE_HOLDS (, G_TYPE_HASH_TABLE)) {
+   continue;
+}
+ 
+-   track_dict = g_value_get_boxed (g_array_index (array, GValue *, i));
++   track_dict = g_value_get_boxed ();
+if (track_dict == NULL)
+continue;
+ 
+-- 
+2.12.2
+

Copied: libgpod/repos/staging-x86_64/PKGBUILD (from rev 412857, 
libgpod/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-04-18 08:43:26 UTC (rev 412858)
@@ -0,0 +1,46 @@
+# Maintainer: Daniel Isenmann 
+# Contributor: William Rea 
+
+pkgname=libgpod
+pkgver=0.8.3
+pkgrel=12
+pkgdesc="A shared library to access the contents of an iPod"
+arch=(x86_64)
+license=('LGPL')
+depends=('gdk-pixbuf2' 'sg3_utils' 'libimobiledevice' 'libplist' 'sqlite')
+makedepends=('intltool' 'swig' 'docbook-xsl' 'gtk-sharp-2' 'gtk-doc')
+optdepends=('gtk-sharp-2: Mono bindings')
+url="http://www.gtkpod.org/libgpod/;
+source=(https://downloads.sourceforge.net/sourceforge/gtkpod/${pkgname}-${pkgver}.tar.bz2
+libgpod-0.8.2-pkgconfig_overlinking.patch
+libgpod-fixswig.patch
+0001-323-Segmentation-fault-when-opening-ipod.patch
+libgpod-udev.patch)
+options=('!emptydirs')
+sha256sums=('638a7959d04e95f1e62abad02bd33702e4e8dfef98485ac7d9d50395c37e955d'
+'02daa2b46d0cfdee14c9d96eabf903ba4638694e669c5cb0ec462076837ac2ff'
+'86f7054dc53ee2aa756c98dc893af6718bbeb6361a0785a5c93a5592b8cc8cdd'
+'b181131ee5b42673074f8217155b4f147623cc63dd382ee4bfa2cb81cd281b20'
+'35786054ebbfab1d247d51e7c7dc7618f8ed9fc17ad3c8b590d89190728452ea')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../libgpod-0.8.2-pkgconfig_overlinking.patch
+  patch -Np1 -i ../libgpod-fixswig.patch
+  patch -Np1 -i ../0001-323-Segmentation-fault-when-opening-ipod.patch
+  patch -Np0 -i ../libgpod-udev.patch
+  sed -e 's|libplist >= 1.0|libplist-2.0 >= 2.2|' -i configure.ac # support 
libplist 2.2
+  autoreconf -vi
+}
+
+build() {
+  cd 

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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:43:10
  Author: arojas
Revision: 412857

sg3_utils 1.46 rebuild

Modified:
  libgpod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 08:39:23 UTC (rev 412856)
+++ PKGBUILD2021-04-18 08:43:10 UTC (rev 412857)
@@ -3,12 +3,12 @@
 
 pkgname=libgpod
 pkgver=0.8.3
-pkgrel=11
+pkgrel=12
 pkgdesc="A shared library to access the contents of an iPod"
 arch=(x86_64)
 license=('LGPL')
 depends=('gdk-pixbuf2' 'sg3_utils' 'libimobiledevice' 'libplist' 'sqlite')
-makedepends=('intltool' 'swig' 'docbook-xsl' 'gtk-sharp-2')
+makedepends=('intltool' 'swig' 'docbook-xsl' 'gtk-sharp-2' 'gtk-doc')
 optdepends=('gtk-sharp-2: Mono bindings')
 url="http://www.gtkpod.org/libgpod/;
 
source=(https://downloads.sourceforge.net/sourceforge/gtkpod/${pkgname}-${pkgver}.tar.bz2


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:39:23
  Author: arojas
Revision: 412856

archrelease: copy trunk to staging-x86_64

Added:
  sg3_utils/repos/staging-x86_64/
  sg3_utils/repos/staging-x86_64/PKGBUILD
(from rev 412855, sg3_utils/trunk/PKGBUILD)

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

Copied: sg3_utils/repos/staging-x86_64/PKGBUILD (from rev 412855, 
sg3_utils/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-04-18 08:39:23 UTC (rev 412856)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel Isenmann 
+
+pkgname=sg3_utils
+pkgver=1.46
+pkgrel=1
+pkgdesc="Generic SCSI utilities"
+arch=(x86_64)
+url="http://sg.danny.cz/sg/sg3_utils.html;
+license=('GPL' 'custom:BSD')
+depends=('glibc')
+source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tar.xz)
+sha512sums=('0b4caab97ccc11fb45e88219e460b37c6ff69b8f3c79e513279aef51783ff22399d141253abdbf55db198db0815bc39d30e9b1e3bd7dda5e15c5f4dae3fe89cf')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:39:02
  Author: arojas
Revision: 412855

Update to 1.46

Modified:
  sg3_utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 08:36:56 UTC (rev 412854)
+++ PKGBUILD2021-04-18 08:39:02 UTC (rev 412855)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=sg3_utils
-pkgver=1.45
+pkgver=1.46
 pkgrel=1
 pkgdesc="Generic SCSI utilities"
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=('GPL' 'custom:BSD')
 depends=('glibc')
 source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('fa25dedc447154d33937248a856af9a7ef380dda282a681d465a57d7dfc24b6c0409fa06aabf8cc28ba191e91db80fed0757b45212eddf713855574b48a97868')
+sha512sums=('0b4caab97ccc11fb45e88219e460b37c6ff69b8f3c79e513279aef51783ff22399d141253abdbf55db198db0815bc39d30e9b1e3bd7dda5e15c5f4dae3fe89cf')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:36:56
  Author: arojas
Revision: 412854

archrelease: copy trunk to testing-x86_64

Added:
  dbus-glib/repos/testing-x86_64/
  dbus-glib/repos/testing-x86_64/PKGBUILD
(from rev 412853, dbus-glib/trunk/PKGBUILD)

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

Copied: dbus-glib/repos/testing-x86_64/PKGBUILD (from rev 412853, 
dbus-glib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-04-18 08:36:56 UTC (rev 412854)
@@ -0,0 +1,34 @@
+# Maintainer: Jan de Groot 
+
+pkgname=dbus-glib
+pkgver=0.112
+pkgrel=1
+pkgdesc="GLib bindings for DBUS"
+url="https://www.freedesktop.org/wiki/Software/DBusBindings;
+arch=(x86_64)
+license=('GPL')
+depends=('dbus' 'glib2')
+makedepends=('python' 'gtk-doc')
+source=(https://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('7d550dccdfcd286e33895501829ed971eeb65c614e73aadb4a08aeef719b143a'
+'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--enable-gtk-doc \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  _c=/usr/share/bash-completion/completions
+  make DESTDIR="$pkgdir" install completiondir=$_c
+  mv "$pkgdir$_c"/{dbus-bash-completion.sh,dbus-send}
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 08:36:42
  Author: arojas
Revision: 412853

Update to 0.112

Modified:
  dbus-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-17 22:42:08 UTC (rev 412852)
+++ PKGBUILD2021-04-18 08:36:42 UTC (rev 412853)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=dbus-glib
-pkgver=0.110
-pkgrel=2
+pkgver=0.112
+pkgrel=1
 pkgdesc="GLib bindings for DBUS"
 url="https://www.freedesktop.org/wiki/Software/DBusBindings;
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=('dbus' 'glib2')
 makedepends=('python' 'gtk-doc')
 
source=(https://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('7ce4760cf66c69148f6bd6c92feaabb8812dee30846b24cd0f7395c436d7e825'
+sha256sums=('7d550dccdfcd286e33895501829ed971eeb65c614e73aadb4a08aeef719b143a'
 'SKIP')
 validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90')
 


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 07:59:33
  Author: arojas
Revision: 919896

archrelease: copy trunk to community-any

Added:
  gpodder/repos/community-any/PKGBUILD
(from rev 919895, gpodder/trunk/PKGBUILD)
Deleted:
  gpodder/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-04-18 07:59:24 UTC (rev 919895)
+++ PKGBUILD2021-04-18 07:59:33 UTC (rev 919896)
@@ -1,25 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Jan Magnus Brevik 
-
-pkgname=gpodder
-pkgver=3.10.19
-pkgrel=1
-pkgdesc='Podcast client written in Python using GTK+'
-arch=(any)
-url='https://gpodder.github.io/'
-license=(GPL3)
-depends=(gtk3 python-cairo python-dbus python-gobject python-mygpoclient 
python-podcastparser)
-makedepends=(intltool)
-optdepends=('youtube-dl: for Youtube-dl extension')
-source=(http://github.com/gpodder/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('4a2e6fcc7e674a2b5731ac3cda4a18ccec462c66e8d4a7f0b69a296b0f8775ac')
-
-build() {
-  cd $pkgname-$pkgver
-  make messages
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gpodder/repos/community-any/PKGBUILD (from rev 919895, 
gpodder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-04-18 07:59:33 UTC (rev 919896)
@@ -0,0 +1,25 @@
+# Maintainer: Balló György 
+# Contributor: Jan Magnus Brevik 
+
+pkgname=gpodder
+pkgver=3.10.19
+pkgrel=2
+pkgdesc='Podcast client written in Python using GTK'
+arch=('any')
+url='https://gpodder.github.io/'
+license=('GPL3')
+depends=('gtk3' 'python-cairo' 'dbus-python' 'python-gobject' 
'python-mygpoclient' 'python-podcastparser' 'python-requests')
+makedepends=('intltool')
+optdepends=('youtube-dl: for Youtube-dl extension')
+source=("http://github.com/gpodder/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('4a2e6fcc7e674a2b5731ac3cda4a18ccec462c66e8d4a7f0b69a296b0f8775ac')
+
+build() {
+  cd $pkgname-$pkgver
+  make messages
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2021-04-18 Thread Antonio Rojas via arch-commits
Date: Sunday, April 18, 2021 @ 07:59:24
  Author: arojas
Revision: 919895

Add missing python-requests dependency (FS#70498)

Modified:
  gpodder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-18 07:09:38 UTC (rev 919894)
+++ PKGBUILD2021-04-18 07:59:24 UTC (rev 919895)
@@ -3,12 +3,12 @@
 
 pkgname=gpodder
 pkgver=3.10.19
-pkgrel=1
+pkgrel=2
 pkgdesc='Podcast client written in Python using GTK'
 arch=('any')
 url='https://gpodder.github.io/'
 license=('GPL3')
-depends=('gtk3' 'python-cairo' 'dbus-python' 'python-gobject' 
'python-mygpoclient' 'python-podcastparser')
+depends=('gtk3' 'python-cairo' 'dbus-python' 'python-gobject' 
'python-mygpoclient' 'python-podcastparser' 'python-requests')
 makedepends=('intltool')
 optdepends=('youtube-dl: for Youtube-dl extension')
 
source=("http://github.com/gpodder/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)


  1   2   >